diff options
author | portix <none@none> | 2013-02-01 01:14:41 +0100 |
---|---|---|
committer | portix <none@none> | 2013-02-01 01:14:41 +0100 |
commit | 3182ab0b97f621f4e4fd5a4f56e8d7400a995ccd (patch) | |
tree | c8891b1de5f588331056a321d18fa95d67f1aa7c /api | |
parent | 876f8dbffea7286078d3548af49031a8c4e20d8a (diff) | |
download | dwb-3182ab0b97f621f4e4fd5a4f56e8d7400a995ccd.zip |
Escape all characters that must be escaped in util_create_json, additional argument-parameter in commands_simple_command
Diffstat (limited to 'api')
-rw-r--r-- | api/dwb-js.7 | 49 | ||||
-rw-r--r-- | api/jsapi.7.txt | 23 | ||||
-rw-r--r-- | api/jsapi.txt | 28 |
3 files changed, 97 insertions, 3 deletions
diff --git a/api/dwb-js.7 b/api/dwb-js.7 index 5e0e6959..f801c0d8 100644 --- a/api/dwb-js.7 +++ b/api/dwb-js.7 @@ -2,12 +2,12 @@ .\" Title: dwb-js .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.77.1 <http://docbook.sf.net/> -.\" Date: 01/28/2013 +.\" Date: 02/01/2013 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "DWB\-JS" "7" "01/28/2013" "\ \&" "\ \&" +.TH "DWB\-JS" "7" "02/01/2013" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -3510,6 +3510,51 @@ Whether to notify about blocked request, default .nr an-break-flag 1 .br .ps +1 +\fBunique_tabs\fR +.RS 4 +.sp +Extension that allows to remove duplicate tabs or avoids duplicate tabs automatically\&. +.PP +\fIConfiguration options\fR +.RS 4 +.PP +\fIshortcutRemoveDuplicates\fR +.RS 4 +Shortcut that removes duplicate tabs, default +\fBnull\fR +.RE +.PP +\fIcommandRemoveDuplicates\fR +.RS 4 +Command that remove s duplicate tabs, default +\fBut_remove_duplicates\fR +.RE +.PP +\fIautoFocus\fR +.RS 4 +Autofocus a tab if an url is already opened, if the url would be loaded in a new tab the new tab is closed\&. Setting this to true makes commandRemoveDuplicates and shortcutRemoveDuplicates obsolete because there will be no duplicate tabs\&. Default value: +\fBtrue\fR +.RE +.PP +\fIshortcutToggleAutoFocus\fR +.RS 4 +Shortcut that enables/disables autofocus, default +\fBnull\fR +.RE +.PP +\fIcommandToggleAutoFocus\fR +.RS 4 +Command that enables/disables autofocus, default +\fBut_toggle_autofocus\fR +.RE +.RE +.RE +.sp +.it 1 an-trap +.nr an-no-space-flag 1 +.nr an-break-flag 1 +.br +.ps +1 \fBuserscripts\fR .RS 4 .sp diff --git a/api/jsapi.7.txt b/api/jsapi.7.txt index 8a0dce57..65c55b41 100644 --- a/api/jsapi.7.txt +++ b/api/jsapi.7.txt @@ -1814,6 +1814,29 @@ _autoreload_;; Whether to automatically reload the website after the _notify_;; Whether to notify about blocked request, default *false* +==== unique_tabs + +Extension that allows to remove duplicate tabs or avoids duplicate tabs +automatically. + +_Configuration options_:: + +_shortcutRemoveDuplicates_;; Shortcut that removes duplicate tabs, default *null* + +_commandRemoveDuplicates_;; Command that remove s duplicate tabs, default +*ut_remove_duplicates* + +_autoFocus_;; Autofocus a tab if an url is already opened, if the url would be loaded in a +new tab the new tab is closed. Setting this to true makes commandRemoveDuplicates and +shortcutRemoveDuplicates obsolete because there will be no duplicate tabs. +Default value: *true* + +_shortcutToggleAutoFocus_;; Shortcut that enables/disables autofocus, default +*null* + +_commandToggleAutoFocus_;; Command that enables/disables autofocus, default +*ut_toggle_autofocus* + ==== userscripts diff --git a/api/jsapi.txt b/api/jsapi.txt index cefefed5..15d3ad80 100644 --- a/api/jsapi.txt +++ b/api/jsapi.txt @@ -35,7 +35,6 @@ properties on the global object, see also <<Globaldata,global data>> for details :caption: - == Global == === Properties === @@ -3055,6 +3054,29 @@ _autoreload_;; Whether to automatically reload the website after the _notify_;; Whether to notify about blocked request, default *false* +==== unique_tabs + +Extension that allows to remove duplicate tabs or avoids duplicate tabs +automatically. + +_Configuration options_:: + +_shortcutRemoveDuplicates_;; Shortcut that removes duplicate tabs, default *null* + +_commandRemoveDuplicates_;; Command that remove s duplicate tabs, default +*ut_remove_duplicates* + +_autoFocus_;; Autofocus a tab if an url is already opened, if the url would be loaded in a +new tab the new tab is closed. Setting this to true makes commandRemoveDuplicates and +shortcutRemoveDuplicates obsolete because there will be no duplicate tabs. +Default value: *true* + +_shortcutToggleAutoFocus_;; Shortcut that enables/disables autofocus, default +*null* + +_commandToggleAutoFocus_;; Command that enables/disables autofocus, default +*ut_toggle_autofocus* + ==== userscripts Extension that loads userscripts and injects them into websites, this @@ -3440,5 +3462,9 @@ return { -------- ==== +== Snippets == + +Some example snippets can be found link:../snippets/snippets.html[here]. + // vim: set ft=asciidoc: |