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

379 Commits

Author SHA1 Message Date
Doug Kearns
374297c5da Merge branch 'master' into vimperator-2.1
Conflicts:
	common/content/completion.js
	common/content/liberator.js
	vimperator/NEWS
2009-03-29 11:18:10 +11:00
Martin Stubenschrott
5ab1771e3c changed my email address 2009-03-28 23:38:33 +01:00
Conrad Irwin
4282b07d77 Fix uploading of files by relative path name.
Use io.getFile(path).path instead of just path in order to create an
absolute path.
2009-03-26 03:11:17 +00:00
Conrad Irwin
53b5a54a1f Fix #198, Unicode escape next and previous pattern 2009-03-23 14:41:41 +00:00
Kris Maglione
cf57844986 Get rid of some 'config.name' checks in the common tree. These should all, ideally, go. 2009-03-22 02:25:05 -04:00
Kris Maglione
6c4a4bbae8 Merge branch 'xulmus' of kmaglione@git.vimperator.org:/git/vimperator/liberator 2009-03-18 03:36:22 -04:00
Conrad Irwin
924aba8f54 Commandline completion for hinted file inputs
When an <input type="file"> is selected with hints, it will cause an
"Upload file: " prompt in the commandline. (Selection with tab and mouse
is left unchanged and will cause the firefox dialog to display)
2009-03-16 12:28:34 +00:00
Doug Kearns
789d98d31d Return mainWindowID default value to 'main-window'. 2009-03-16 18:55:44 +11:00
Doug Kearns
1ca0bc0de4 Formatting fixes. 2009-03-16 16:24:09 +11:00
Doug Kearns
80beaa41df And xulmus was born. 2009-03-16 15:54:02 +11:00
Doug Kearns
6b34e50579 Merge branch 'master' into vimperator-2.1
Conflicts:
	vimperator/NEWS
	vimperator/locale/en-US/starting.txt
2009-02-26 22:11:12 +11:00
Doug Kearns
22200fc282 Remove some duplication from buffer.followDocumentRelationship. 2009-02-19 23:41:32 +11:00
Doug Kearns
71a0f56db4 Fix ]] when the relationship is specified with rel/rev (#162). 2009-02-17 01:49:26 +11:00
Kris Maglione
a29e5246d1 Fix gF for URIs with fragment identifiers 2009-01-24 01:13:23 -05:00
Kris Maglione
3487b8d0d9 Last commit 2009-01-24 00:46:03 -05:00
Kris Maglione
3a4da78529 Revert "In delmarks, change let variable name to prevent namespace-related error (bug #126)."
This reverts commit f6eb37e82c0419cdc62c1a781b64d30148024a58.
2009-01-24 00:45:01 -05:00
Ted Pavlic
d99720ce10 In delmarks, change let variable name to prevent namespace-related error (bug #126).
See http://vimperator.org/trac/ticket/126

Using...

    function (args)
    {
        let args = args.string;
    ...

was causing Firefox to complain that args was undefined. Changing the
"let" to "var" or changing the names of the variables (e.g., changing
"function (args)" to "function (arg)") fixes the problem. IMO, this
appears to be a bug in Firefox.

The short fix would be to change the formal argument from "args" to
"arg." However, that would make delmarks' implementation different from
all the rest. So changed "let args" to "let argstring" and adjusted
throughout the function.
2009-01-23 16:31:55 -05:00
Kris Maglione
eb88d7ea0b Sorry, stashed changes including:
Change util.range to accept an increment as the third argument.
    Sanitize Makefile.doc
2009-01-21 03:41:43 -05:00
Kris Maglione
347938bfca Merge branch 'master' into vimperator-2.1
Conflicts:
	vimperator/NEWS
2009-01-21 03:40:04 -05:00
Martin Stubenschrott
30db94b3db Fixed zoom level messages (not opening MOW anymore on subsequent zi's) 2009-01-19 18:42:42 +01:00
Kris Maglione
53f33e0561 Allow ` as local mark 2009-01-17 23:43:29 -05:00
Doug Kearns
9959a9322c Merge branch 'master' into vimperator-2.1 2009-01-15 22:28:23 +11:00
Doug Kearns
3875c1dd58 Add a help section about preferences set by Vimperator at startup. 2009-01-15 22:21:18 +11:00
Kris Maglione
fbcaeaded1 Merge branch 'master' into vimperator-2.1
Conflicts:
	common/content/io.js
	vimperator/locale/en-US/starting.txt
2009-01-15 03:14:08 -05: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
Ted Pavlic
147cdab5d2 Update copyrights for 2009. 2009-01-11 00:47:56 -05:00
Doug Kearns
5dbcd6f7e0 Add some rough source documentation for IO. 2009-01-11 01:12:30 +11:00
Kris Maglione
9618547d47 Fix tab-completion again 2009-01-09 14:02:36 -05:00
Kris Maglione
c4f5d4f84d Fix some inline/help docs. 2009-01-08 20:56:26 -05:00
Kris Maglione
f901cb1f42 Fix last commit 2009-01-08 14:14:57 -05:00
Ted Pavlic
bfe47dff89 Fixed browser.followLink so that NEW_TAB semantics are invariant of prefs. 2009-01-08 12:01:42 -05:00
Kris Maglione
0aeee25e65 Add standard 'mark' completer. Fix x/y transposition in :delm completion 2009-01-07 17:38:57 -05:00
Ted Pavlic
7bb208020c Added expected completion for :delmarks (as discussed on IRC, because expected, it's a bugfix, not a feature) 2009-01-07 16:11:27 -05:00
Kris Maglione
4f4d6ddd9d Merge branch 'master' into vimperator-2.1
Conflicts:
	common/content/io.js
	common/content/style.js
2009-01-07 00:26:37 -05:00
Doug Kearns
ddce42858c s/retVal/ret/ in buffer.followDocumentRelationship. 2009-01-07 14:44:37 +11:00
Doug Kearns
49e0c091c1 s/stylesheet/style sheet/g in documentation. 2009-01-05 21:10:57 +11:00
Doug Kearns
172900fff2 Declare a variable in "gi" action. 2009-01-03 21:59:44 +11:00
Kris Maglione
8af1dfb84f Fix liberator.open/browser.tabs.loadInBackground bug 2009-01-02 19:05:28 -05:00
Doug Kearns
e91fbcd754 Add some source documentation for AutoCommands.
Also normalise the use of /* */ and // comments.
2009-01-02 00:56:58 +11:00
Doug Kearns
0be4723b91 Fix HTMLDocument guard clause in buffer.shiftFrameFocus. 2009-01-01 22:02:00 +11:00
Doug Kearns
cb5fca695f Rename the misspelled util.interruptableRange to util.interruptibleRange. 2009-01-01 22:01:58 +11:00
Doug Kearns
eeca611435 Add some more rough source documentation. 2009-01-01 22:01:56 +11:00
Doug Kearns
f878307b34 Fix part of #110.
Fix #110 (;b and ;t don't respond to 'activate'. Behavior spec'd in
:help is unclear).

I've fixed the inverted ;b/;t behaviour (the bug), closed the ticket,
and added 'activate' support as a TODO.
2008-12-31 13:19:48 +11:00
anekos
5b0d6674db s/let/var/
type is used at function block's tail.
2008-12-30 21:01:23 +09:00
Doug Kearns
d65b57cf2d Prefer " over '. 2008-12-29 23:26:09 +11:00
anekos
6c9cef16f1 more '-quotes fix. 2008-12-29 07:29:59 +09:00
Kris Maglione
dc0d92cc55 s/makeURI/window.makeURI/; s/'/"/ 2008-12-28 15:43:30 -05:00
Kris Maglione
baf1af72e5 Merge branch 'master' into vimperator-2.1
Conflicts:
	common/content/io.js
2008-12-24 13:27:00 -05:00
Kris Maglione
89698e3e05 s/service[(".*?")]/services.get(\1)/g; s/service.get(\w+)/'services.create("' + lcfirst($1) + '")'/ge 2008-12-23 15:07:48 -05:00