1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-19 21:57:59 +01:00
Commit Graph

103 Commits

Author SHA1 Message Date
Kris Maglione
8b0d9586b2 Merge testing.
--HG--
rename : common/content/base.js => common/modules/base.jsm
rename : common/content/services.js => common/modules/services.jsm
rename : common/content/style.js => common/modules/styles.jsm
rename : common/content/template.js => common/modules/template.jsm
rename : common/content/util.js => common/modules/util.jsm
2010-08-31 21:09:13 -04:00
Kris Maglione
5632e14721 Prepare for merge with testing branch. 2010-08-28 15:47:45 -04:00
Kris Maglione
f1ca59a83d Use Object.keys/getOwnPropertyNames (and provide them if they don't exist). 2010-08-28 18:57:59 -04:00
Kris Maglione
924863cd61 imported patch dactylify
--HG--
rename : common/content/liberator-overlay.js => common/content/dactyl-overlay.js
rename : common/content/liberator.js => common/content/dactyl.js
rename : common/content/liberator.xul => common/content/dactyl.xul
rename : common/skin/liberator.css => common/skin/dactyl.css
rename : muttator/content/compose/liberator.dtd => muttator/content/compose/dactyl.dtd
rename : muttator/content/compose/liberator.xul => muttator/content/compose/dactyl.xul
rename : muttator/content/liberator.dtd => muttator/content/dactyl.dtd
rename : vimperator/AUTHORS => pentadactyl/AUTHORS
rename : vimperator/Donors => pentadactyl/Donors
rename : vimperator/Makefile => pentadactyl/Makefile
rename : vimperator/NEWS => pentadactyl/NEWS
rename : vimperator/TODO => pentadactyl/TODO
rename : vimperator/chrome.manifest => pentadactyl/chrome.manifest
rename : vimperator/components/about-handler.js => pentadactyl/components/about-handler.js
rename : vimperator/components/commandline-handler.js => pentadactyl/components/commandline-handler.js
rename : vimperator/components/protocols.js => pentadactyl/components/protocols.js
rename : vimperator/content/about.html => pentadactyl/content/about.html
rename : vimperator/content/about_background.png => pentadactyl/content/about_background.png
rename : vimperator/content/config.js => pentadactyl/content/config.js
rename : vimperator/content/liberator.dtd => pentadactyl/content/dactyl.dtd
rename : vimperator/content/logo.png => pentadactyl/content/logo.png
rename : vimperator/content/vimperator.svg => pentadactyl/content/pentadactyl.svg
rename : vimperator/content/vimperator.xul => pentadactyl/content/pentadactyl.xul
rename : vimperator/contrib/vim/Makefile => pentadactyl/contrib/vim/Makefile
rename : vimperator/contrib/vim/ftdetect/vimperator.vim => pentadactyl/contrib/vim/ftdetect/pentadactyl.vim
rename : vimperator/contrib/vim/mkvimball.txt => pentadactyl/contrib/vim/mkvimball.txt
rename : vimperator/contrib/vim/syntax/vimperator.vim => pentadactyl/contrib/vim/syntax/pentadactyl.vim
rename : vimperator/install.rdf => pentadactyl/install.rdf
rename : vimperator/locale/en-US/all.xml => pentadactyl/locale/en-US/all.xml
rename : vimperator/locale/en-US/autocommands.xml => pentadactyl/locale/en-US/autocommands.xml
rename : vimperator/locale/en-US/liberator.dtd => pentadactyl/locale/en-US/dactyl.dtd
rename : vimperator/locale/en-US/gui.xml => pentadactyl/locale/en-US/gui.xml
rename : vimperator/locale/en-US/intro.xml => pentadactyl/locale/en-US/intro.xml
rename : vimperator/locale/en-US/options.xml => pentadactyl/locale/en-US/options.xml
rename : vimperator/locale/en-US/tutorial.xml => pentadactyl/locale/en-US/tutorial.xml
rename : vimperator/vimperatorrc.example => pentadactyl/pentadactylrc.example
rename : vimperator/regressions.js => pentadactyl/regressions.js
rename : vimperator/skin/about.css => pentadactyl/skin/about.css
rename : vimperator/skin/icon.png => pentadactyl/skin/icon.png
rename : xulmus/content/liberator.dtd => xulmus/content/dactyl.dtd
rename : xulmus/locale/en-US/liberator.dtd => xulmus/locale/en-US/dactyl.dtd
2010-08-28 18:02:03 -04:00
Kris Maglione
daa2d5dcc5 Use JS5's strict mode. But, alas! it outlaws octal! Oh the inanity...
--HG--
branch : testing
2010-08-15 07:49:52 -04:00
Kris Maglione
bf5fb6d44e Finish adding missing copyright notices.
--HG--
branch : testing
2009-12-01 07:08:05 -05:00
Kris Maglione
91fd0e1169 Get rid of absurd strict JS warnings. 2009-11-14 04:38:36 -05:00
Kris Maglione
a72068c9f7 Refactor modules.config. 2009-11-09 03:12:27 -05:00
Kris Maglione
6a25312c7d Recfactoring:
* Standard module format. All modules are explicitly declared
   as modules, they're created via a constructor and
   instantiated automatically. They're dependency aware. They
   stringify properly.

 * Classes are declared the same way (rather like Structs
   already were). They also stringify properly. Plus, each
   instance has a rather nifty closure member that closes all
   of its methods around 'this', so you can pass them to map,
   forEach, setTimeout, etc. Modules are themselves classes,
   with a special metaclass, as it were.

 * Doug Crockford is dead, metaphorically speaking.
   Closure-based classes just don't fit into any of the common
   JavaScript frameworks, and they're inefficient and
   confusing. Now, all class and module members are accessed
   explicitly via 'this', which makes it very clear that
   they're class members and not (e.g.) local variables,
   without anything nasty like Hungarian notation.

 * Strictly one module per file. Classes that belong to a
   module live in the same file.

 * For the moment, there are quite a few utility functions
   sitting in base.c, because my class implementation used
   them, and I haven't had the time or inclination to sort them
   out. I plan to reconcile them with the current mess that is
   the util namespace.

 * Changed bracing style.
2009-11-08 20:54:31 -05:00
Doug Kearns
ddcdca1e59 Fix count processing for Textarea mode commands. 2009-10-11 02:03:16 +11:00
Kris Maglione
8292f6384c Fix mappings when mode.addMode used after initialization.
--HG--
extra : rebase_source : 03fcc73999f01ef1987cf22c0061fbcfebf0bc23
2009-10-08 15:40:18 -04:00
Kris Maglione
f374fc981a imported patch quick-cleanup 2009-10-06 20:19:15 -04:00
Martin Stubenschrott
3910c0604b Move all files to a MIT license 2009-10-03 00:32:29 +02:00
Doug Kearns
dbc99ad956 Revert "Move util.Array to modules.Array_."
This reverts commit d6cdda48a18c9fa05365b50046470fec9935fd3c.

Array_ method chaining needs fixing.
2009-09-15 13:20:06 +10:00
Doug Kearns
7c66dc2b17 Move util.Array to modules.Array_. 2009-09-14 15:19:56 +10:00
Kris Maglione
5116502bf9 Add EMBED mode. 2009-09-03 20:34:19 -04:00
Doug Kearns
97236c4839 Remove some commented-out code from Events. 2009-08-27 14:46:32 +10:00
Kris Maglione
9d77c018ca Fix something to do with <a>. 2009-08-19 14:03:14 -04:00
Doug Kearns
77458e5b8a Whitespace and semicolon fixes. 2009-08-10 02:15:23 +10:00
Doug Kearns
6d7b94daa6 Add missing semicolons. 2009-06-02 16:59:24 +10:00
Kris Maglione
ce120a7f9d Add to TODO, etc. 2009-05-23 21:24:57 -04:00
Doug Kearns
abc11f1068 Move application specific modes to config.modes. 2009-05-24 01:56:44 +10:00
Kris Maglione
43537025c6 Some esthetic and practical changes to modes and a couple of completion functions. 2009-05-05 17:23:04 -04:00
Kris Maglione
f3f70d5cb8 General cleanup related to last commit. 2009-04-15 16:31:32 -04:00
Doug Kearns
3b667419f8 Merge branch 'master' into xulmus
Conflicts:
	License.txt
2009-03-29 12:34:05 +11:00
Martin Stubenschrott
5ab1771e3c changed my email address 2009-03-28 23:38:33 +01:00
Prathyush Thota
f06f1d776e Added SearchView - '/', 'n' & 'N' 2009-03-27 23:32:03 +05:30
Doug Kearns
80beaa41df And xulmus was born. 2009-03-16 15:54:02 +11:00
Kris Maglione
0b682ef42b Fix buffer.getCurrentWord when the selection is collapsed and the word has punctuation. 2009-01-14 23:26:40 -05:00
Ted Pavlic
d29013a2fd Three small changes (copyright, template.js copyright, and tildetidy target)
a.) Cleaned up copyright language to match conventions.
(I used the memoir document class documentation as a reference, but
 these conventions are common throughout publishing)

   * The (c) symbol has no legal meaning. Only the word "Copyright" and
     an encircled lowercase c are appropriate. So the word "Copyright"
     was placed before each (c).

   * Each (C) was changed to (c).

   * Kris uses the correct symbols in copyright notices, but those
     symbols can be problematic in terminal-mode editors. Added the word
     "Copyright" as well.

   * Replaced colons/spaces after years with the word "by."

b.) Added a copyright notice to common/content/template.js. It was
    missing one entirely. Please correct if it doesn't need one or if the
    copyright isn't held by Martin.

c.) Also added a "tildetidy" target to Makefile common that includes a
    version of the find line from the existing "clean" target (however,
    this version uses "rm -fv" instead of "rm -f").
2009-01-12 09:14:54 -05:00
Doug Kearns
9729969d8b Whitespace fixes. 2009-01-12 15:32:50 +11:00
Ted Pavlic
147cdab5d2 Update copyrights for 2009. 2009-01-11 00:47:56 -05:00
Doug Kearns
61d3fae8b4 Use self as the returned object from all creation functions. 2009-01-07 14:44:35 +11:00
Kris Maglione
d7b20e26f5 Blur focused element on return to NORMAL mode. 2008-12-21 17:36:55 -05:00
Doug Kearns
5b4a1d11f8 prefer let over var in Mappings, Modes, and Options 2008-12-21 00:28:19 +11:00
Kris Maglione
74700d3aff Document some more crap. 2008-12-19 13:27:01 -05:00
Doug Kearns
194aaf46eb brace formatting fixes 2008-12-19 19:07:17 +11:00
Kris Maglione
947311dfdf Kludge the stupid urlbar focus bug better 2008-12-18 21:37:44 -05:00
Kris Maglione
ff8cd3e194 Update TODO, add :colo default (== :hi clear) 2008-12-16 16:42:10 -05:00
Kris Maglione
f617e3c174 Revert 'Fixed the issue which cannot escape from hint mode normally.' 2008-12-16 14:06:21 -05:00
anekos
548ab8fb50 Fixed the issue which cannot escape from hint mode normally. 2008-12-17 03:04:44 +09:00
Kris Maglione
b0a9411512 Fix some quirks 2008-12-16 12:02:51 -05:00
Kris Maglione
f1565ca5ce Hopefully fix quirks in last commit 2008-12-16 11:33:23 -05:00
Daniel Bainton
2c25911122 show 'Press ENTER or type command to continue' again 2008-12-16 16:31:17 +02:00
Kris Maglione
58bca7d6b3 Add commandline.status and commandline.error. Feel free to revert this. 2008-12-14 19:45:57 -05:00
Kris Maglione
485579738d Dont allow <holding-tab> to lag 2008-12-08 08:37:08 -05:00
Kris Maglione
cbd9a2555d Fix /find bugs 2008-12-07 16:51:46 -05:00
Kris Maglione
7693ac5000 Fix :time :stuff, etc. 2008-12-07 10:48:03 -05:00
Kris Maglione
983c2be92b Add separate echo/command-line widgets 2008-12-06 09:41:59 -05:00
Kris Maglione
809da07b11 Prevent async completions from resetting selected completion 2008-12-05 06:22:04 -05:00