Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.58 KB | None | 0 0
  1. changeset:   3023:3114c85dcb55
  2. user:        Ted Pavlic <ted@tedpavlic.com>
  3. date:        Mon Jan 12 09:14:54 2009 -0500
  4. files:       License.txt Makefile common/Makefile.common common/Makefile.doc common/content/buffer.js common/content/commands.js common/content/completion.js common/content/editor.js common/content/events.js common/content/find.js common/content/help.css common/content/hints.js common/content/io.js common/content/liberator.js common/content/liberator.xul common/content/mappings.js common/content/modes.js common/content/options.js common/content/services.js common/content/style.js common/content/tabs.js common/content/template.js common/content/ui.js common/content/util.js common/modules/storage.jsm common/skin/liberator.css muttator/License.txt muttator/content/addressbook.js muttator/content/compose/compose.xul muttator/content/config.js muttator/content/mail.js muttator/content/muttator.xul vimperator/content/bookmarks.js vimperator/content/config.js vimperator/content/vimperator.xul
  5. description:
  6. Three small changes (copyright, template.js copyright, and tildetidy target)
  7.  
  8. a.) Cleaned up copyright language to match conventions.
  9. (I used the memoir document class documentation as a reference, but
  10.  these conventions are common throughout publishing)
  11.  
  12.    * The (c) symbol has no legal meaning. Only the word "Copyright" and
  13.      an encircled lowercase c are appropriate. So the word "Copyright"
  14.      was placed before each (c).
  15.  
  16.    * Each (C) was changed to (c).
  17.  
  18.    * Kris uses the correct symbols in copyright notices, but those
  19.      symbols can be problematic in terminal-mode editors. Added the word
  20.      "Copyright" as well.
  21.  
  22.    * Replaced colons/spaces after years with the word "by."
  23.  
  24. b.) Added a copyright notice to common/content/template.js. It was
  25.     missing one entirely. Please correct if it doesn't need one or if the
  26.    copyright isn't held by Martin.
  27.  
  28. c.) Also added a "tildetidy" target to Makefile common that includes a
  29.     version of the find line from the existing "clean" target (however,
  30.     this version uses "rm -fv" instead of "rm -f").
  31.  
  32.  
  33. changeset:   3024:6e8f4e664581
  34. user:        Ted Pavlic <ted@tedpavlic.com>
  35. date:        Mon Jan 12 10:03:13 2009 -0500
  36. files:       common/content/completion.js
  37. description:
  38. Manually reverting one line of commit 7a0423e63afad4c6b0be272fca8064dafc0d6b00.
  39.  
  40.     "this.contexts = { "/": this }" in CompletionContext(...)
  41.     was causing ":set defsearch=google<cr>" (and similar) to error
  42.     with infinite recursion. Restoring to
  43.     "this.contexts = { name: this }" fixes the problem, but does it
  44.     break other things?
  45.  
  46.     Please review.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement