1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 21:34:13 +01:00

Rename appname/idname to appName/idName in help files to maintain parity with code.

This commit is contained in:
Kris Maglione
2010-09-24 07:49:17 -04:00
parent 4fe44a403a
commit 2169301157
33 changed files with 172 additions and 172 deletions

View File

@@ -5,7 +5,7 @@
<document
name="all"
title="&dactyl.appname; All"
title="&dactyl.appName; All"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<tags>all</tags>

View File

@@ -5,7 +5,7 @@
<document
name="autocommands"
title="&dactyl.appname; Autocommands"
title="&dactyl.appName; Autocommands"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="autocommands">Automatic commands</h1>

View File

@@ -5,17 +5,17 @@
<document
name="browsing"
title="&dactyl.appname; Browsing"
title="&dactyl.appName; Browsing"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="surfing browsing">Browsing</h1>
<toc start="2"/>
<h2 tag="bypassing-&dactyl.name;">Bypassing &dactyl.appname;</h2>
<h2 tag="bypassing-&dactyl.name;">Bypassing &dactyl.appName;</h2>
&dactyl.appname; overrides nearly all &dactyl.host; keys in order to
&dactyl.appName; overrides nearly all &dactyl.host; keys in order to
make browsing more pleasant for Vim users. On the occasions when you
want to bypass &dactyl.appname;'s key handling and pass keys directly to
want to bypass &dactyl.appName;'s key handling and pass keys directly to
&dactyl.host; or to a web page, you have two options:
<item>
@@ -465,7 +465,7 @@ want to bypass &dactyl.appname;'s key handling and pass keys directly to
<spec>:quita<oa>ll</oa></spec>
<description>
<p>
Quit &dactyl.appname;, no matter how many tabs/windows
Quit &dactyl.appName;, no matter how many tabs/windows
are open. The session is not stored.
</p>
</description>
@@ -519,7 +519,7 @@ want to bypass &dactyl.appname;'s key handling and pass keys directly to
<spec>ZZ</spec>
<description short="true">
<p>
Quit &dactyl.appname; and save the session. Works like
Quit &dactyl.appName; and save the session. Works like
<ex>:xall</ex>.
</p>
</description>

View File

@@ -5,7 +5,7 @@
<document
name="buffer"
title="&dactyl.appname; Buffer"
title="&dactyl.appName; Buffer"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="buffer document">Buffer</h1>

View File

@@ -5,18 +5,18 @@
<document
name="cmdline"
title="&dactyl.appname; Command-line"
title="&dactyl.appName; Command-line"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="command-line-mode command-line mode-cmdline">Command-line mode</h1>
<toc start="2"/>
<p>
&dactyl.appname;'s command-line mode is perhaps its most
&dactyl.appName;'s command-line mode is perhaps its most
powerful interface. In this mode, the command input bar at the
bottom of the window is given the keyboard focus for any of a
variety of required inputs. In addition to access to almost
every aspect of &dactyl.appname; and &dactyl.host;, the command
every aspect of &dactyl.appName; and &dactyl.host;, the command
line provides power and comprehensive completion for all of its
commands, along with concise descriptions for each command and
all of its arguments. Couple this with persistent, searchable

View File

@@ -7,7 +7,7 @@
<document
name="developer"
title="&dactyl.appname; Developer information"
title="&dactyl.appName; Developer information"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="developer-information">Developer information</h1>
@@ -67,7 +67,7 @@
<dt>&tab;@topic</dt> <dd>The topic of the link. Either a help topic or a fully-qualified URI.</dd>
<dt>em</dt> <dd><em>Emphasized</em> text. (HelpEm)</dd>
<dt>str</dt> <dd>A <str>string</str>, with its contents wrapped in quotes. (HelpString)</dd>
<dt>logo</dt> <dd>&dactyl.appname;'s logo. (Logo)</dd>
<dt>logo</dt> <dd>&dactyl.appName;'s logo. (Logo)</dd>
</dl>
<dl>
<dt>Items</dt><dd/>
@@ -109,7 +109,7 @@
<dt>&tab;@summary</dt> <dd>A short description of the plugin, shown in its section head.</dd>
<dt>project</dt> <dd>The project for which this plugin was intended.</dd>
<dt>&tab;@name</dt> <dd>The name of the project (i.e., <str>&dactyl.appname;</str>)</dd>
<dt>&tab;@name</dt> <dd>The name of the project (i.e., <str>&dactyl.appName;</str>)</dd>
<dt>&tab;@minVersion</dt> <dd>The minimum version of the project for which this plugin is intended to work.</dd>
<dt>&tab;@maxVersion</dt> <dd>The maximum version of the project for which this plugin is intended to work.</dd>
@@ -133,9 +133,9 @@
<h2 tag="writing-plugins">Writing plugins</h2>
<p>
Writing &dactyl.appname; plugins is incredibly simple. Plugins are
Writing &dactyl.appName; plugins is incredibly simple. Plugins are
simply JavaScript files which run with full chrome privileges and
have full access to the &dactyl.appname; and &dactyl.host; APIs.
have full access to the &dactyl.appName; and &dactyl.host; APIs.
Each plugin has its own global object, which means that the
variables and functions that you create won't pollute the global
<em>window</em> or private <em>dactyl</em> namespaces. This means
@@ -153,11 +153,11 @@
that, what you may do with your plugins is practically limitless.
Plugins have full access to all of the chrome resources that
ordinary &dactyl.host; does, along with the entire power of the
&dactyl.appname; API. If you need a starting point, have a look at some
&dactyl.appName; API. If you need a starting point, have a look at some
<link topic="&dactyl.plugins;">existing plugins</link> or
<link topic="http://addon.mozilla.org/">extensions</link>,
especially the
<link topic="&dactyl.code;source/browse/">&dactyl.appname;</link>
<link topic="&dactyl.code;source/browse/">&dactyl.appName;</link>
source.
</p>
@@ -209,7 +209,7 @@ XML.prettyPrinting = <hl key="Boolean">false</hl>;
The inline XML is made possible by
<link topic="https://developer.mozilla.org/en/E4X">E4X</link>.
It is important that the documentation be assigned to the
<em>INFO</em> variable, or &dactyl.appname; will not be able
<em>INFO</em> variable, or &dactyl.appName; will not be able
to find it. The XML property changes are not compulsory, but
they do prevent certain formatting problems that may occur
otherwise. Beginning your file with <str>use strict</str>, while
@@ -218,7 +218,7 @@ XML.prettyPrinting = <hl key="Boolean">false</hl>;
<p>
The documentation that you provide behaves exactly as other
&dactyl.appname; documentation, which means that the tags you
&dactyl.appName; documentation, which means that the tags you
provide are available via <ex>:help</ex> with full tag
completion and cross-referencing support. Although documentation
is not required, we strongly recommend that all plugin authors

View File

@@ -5,20 +5,20 @@
<document
name="eval"
title="&dactyl.appname; Expression Evaluation"
title="&dactyl.appName; Expression Evaluation"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="expression expr eval javascript">Expression evaluation</h1>
<toc start="2"/>
<p>
Much of the power of &dactyl.appname; lies in its scriptable expression
evaluation. &dactyl.appname; understands two kinds of expressions: ex
Much of the power of &dactyl.appName; lies in its scriptable expression
evaluation. &dactyl.appName; understands two kinds of expressions: ex
commands, and JavaScript. Ex commands are simple, easy to type, and
readily accessible from the <t>command-line</t>. They form a core part of
the user interface. JavaScript, on the other hand, is much less
straightforward, but allows for any number of complex actions to be
executed, with full access to all of the internals of &dactyl.appname; and
executed, with full access to all of the internals of &dactyl.appName; and
&dactyl.host;. Both expression evaluation methods support sophisticated
expression completion, including option lists and descriptions thereof,
along with paren matching and syntax error highlighting.

View File

@@ -5,7 +5,7 @@
<document
name="gui"
title="&dactyl.appname; GUI"
title="&dactyl.appName; GUI"
xmlns="&xmlns.dactyl;"
xmlns:dactyl="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
@@ -13,7 +13,7 @@
<toc start="2"/>
<p>
Although &dactyl.appname; offers access to the most frequently used
Although &dactyl.appName; offers access to the most frequently used
&dactyl.host; functionality via Ex and Normal mode commands, there may be
times when direct access to the &dactyl.host; GUI is required. For such
eventualities, there are commands to access menu items and to launch

View File

@@ -5,7 +5,7 @@
<document
name="hints"
title="&dactyl.appname; Hints"
title="&dactyl.appName; Hints"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="quick-hints hints">Hints</h1>
@@ -13,7 +13,7 @@
<p>
Hints are an easy way to interact with web pages without using
your mouse. In hint mode, &dactyl.appname; highlights and
your mouse. In hint mode, &dactyl.appName; highlights and
numbers all clickable elements. The elements can be selected
either by typing their numbers, or typing parts of their text to
narrow them down. While the default action is to click the

View File

@@ -5,7 +5,7 @@
<document
name="index"
title="&dactyl.appname; Index"
title="&dactyl.appName; Index"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="index">Index</h1>
@@ -37,7 +37,7 @@ This file contains a list of all available commands, mappings and options.
<dt><k name="C-u"/></dt> <dd>Scroll window upwards in the buffer</dd>
<dt><k name="C-v"/></dt> <dd>Pass through next key</dd>
<dt><k name="C-x"/></dt> <dd>Decrement last number in URL</dd>
<dt><k name="C-z"/></dt> <dd>Temporarily ignore all &dactyl.appname; key bindings</dd>
<dt><k name="C-z"/></dt> <dd>Temporarily ignore all &dactyl.appName; key bindings</dd>
</dl>
@@ -275,7 +275,7 @@ This file contains a list of all available commands, mappings and options.
<dt><ex>:hardcopy</ex></dt> <dd>Print current document</dd>
<dt><ex>:help</ex></dt> <dd>Open the help page</dd>
<dt><ex>:helpall</ex></dt> <dd>Open the single unchunked help page</dd>
<dt><ex>:highlight</ex></dt> <dd>Style &dactyl.appname;</dd>
<dt><ex>:highlight</ex></dt> <dd>Style &dactyl.appName;</dd>
<dt><ex>:history</ex></dt> <dd>Show recently visited URLs</dd>
<dt><ex>:iabbrev</ex></dt> <dd>Abbreviate a key sequence in Insert mode</dd>
<dt><ex>:iabclear</ex></dt> <dd>Remove all abbreviations in Insert mode</dd>
@@ -314,7 +314,7 @@ This file contains a list of all available commands, mappings and options.
<dt><ex>:qmark</ex></dt> <dd>Mark a URL with a letter for quick access</dd>
<dt><ex>:qmarks</ex></dt> <dd>Show all QuickMarks</dd>
<dt><ex>:quit</ex></dt> <dd>Quit current tab</dd>
<dt><ex>:quitall</ex></dt> <dd>Quit &dactyl.appname;</dd>
<dt><ex>:quitall</ex></dt> <dd>Quit &dactyl.appName;</dd>
<dt><ex>:redraw</ex></dt> <dd>Redraw the screen</dd>
<dt><ex>:reload</ex></dt> <dd>Reload the current web page</dd>
<dt><ex>:reloadall</ex></dt> <dd>Reload all tab pages</dd>
@@ -332,7 +332,7 @@ This file contains a list of all available commands, mappings and options.
<dt><ex>:source</ex></dt> <dd>Read Ex commands from a file</dd>
<dt><ex>:stop</ex></dt> <dd>Stop loading the current web page</dd>
<dt><ex>:stopall</ex></dt> <dd>Stop loading all tab pages</dd>
<dt><ex>:style</ex></dt> <dd>Style &dactyl.appname; and web sites</dd>
<dt><ex>:style</ex></dt> <dd>Style &dactyl.appName; and web sites</dd>
<dt><ex>:styledisable</ex></dt> <dd>Disable a user style sheet</dd>
<dt><ex>:styleenable</ex></dt> <dd>Enable a user style sheet</dd>
<dt><ex>:styletoggle</ex></dt> <dd>Toggle a user style sheet</dd>
@@ -387,7 +387,7 @@ This file contains a list of all available commands, mappings and options.
<dt><o>eventignore</o></dt> <dd>List of autocommand event names which should be ignored</dd>
<dt><o>exrc</o></dt> <dd>Allow reading of an RC file in the current directory</dd>
<dt><o>extendedhinttags</o></dt> <dd>XPath string of hintable elements activated by <k>;</k></dd>
<dt><o>fileencoding</o></dt> <dd>Changes the character encoding that &dactyl.appname; uses to read and write files</dd>
<dt><o>fileencoding</o></dt> <dd>Changes the character encoding that &dactyl.appName; uses to read and write files</dd>
<dt><o>followhints</o></dt> <dd>Change the behaviour of <k name="Return"/> in Hints mode</dd>
<dt><o>fullscreen</o></dt> <dd>Show the current window fullscreen</dd>
<dt><o>guioptions</o></dt> <dd>Show or hide certain GUI elements like the menu or toolbar</dd>

View File

@@ -5,7 +5,7 @@
<document
name="insert"
title="&dactyl.appname; Insert Mode"
title="&dactyl.appName; Insert Mode"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="Insert-mode Insert mode-insert">Insert mode</h1>

View File

@@ -5,14 +5,14 @@
<document
name="map"
title="&dactyl.appname; Key Mappings"
title="&dactyl.appName; Key Mappings"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="keyboard-shortcuts">Keyboard shortcuts and commands</h1>
<toc start="2"/>
<p>
&dactyl.appname; provides a number of commands to change the
&dactyl.appName; provides a number of commands to change the
behavior of key presses. This can mean anything from
automatically substituting one key for another or automatically
replacing one typed word for another, to launching a dialog or
@@ -22,7 +22,7 @@
<h2 tag="key-mapping mapping map macro">Key mapping</h2>
<p>
Key mappings are the most basic means &dactyl.appname; provides
Key mappings are the most basic means &dactyl.appName; provides
for altering the actions of key presses. Each key mapping is
associated with a mode, such as <link topic="insert-mode">insert</link>,
<link topic="normal-mode">normal</link>, or
@@ -52,7 +52,7 @@
<dt>n</dt> <dd>Normal mode: When browsing normally</dd>
<dt>v</dt> <dd>Visual mode: When selecting text with the cursor keys</dd>
<dt>i</dt> <dd>Insert mode: When interacting with text fields on a website</dd>
<dt>c</dt> <dd>Command-line mode: When typing into the &dactyl.appname; command line</dd>
<dt>c</dt> <dd>Command-line mode: When typing into the &dactyl.appName; command line</dd>
</dl>
<p>
@@ -381,7 +381,7 @@
<h2 tag="abbreviations">Abbreviations</h2>
<p>
In addition to basic mappings, &dactyl.appname; can also
In addition to basic mappings, &dactyl.appName; can also
automatically replace whole words after they've been typed.
These shortcuts are known as abbreviations, and are most often
useful for correcting spelling of commonly mistyped words, as
@@ -624,7 +624,7 @@
<dt>macro</dt> <dd>named macros</dd>
<dt>mapping</dt> <dd>user mappings</dd>
<dt>menu</dt> <dd>menu items</dd>
<dt>option</dt> <dd>&dactyl.appname; options</dd>
<dt>option</dt> <dd>&dactyl.appName; options</dd>
<dt>preference</dt> <dd>&dactyl.host; preferences</dd>
<dt>search</dt> <dd>search engines and keywords</dd>
<dt>shellcmd</dt> <dd>shell commands</dd>

View File

@@ -5,14 +5,14 @@
<document
name="marks"
title="&dactyl.appname; Marks"
title="&dactyl.appName; Marks"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="marks">Marks</h1>
<toc start="2"/>
<p>
&dactyl.appname; supports a number of different methods of
&dactyl.appName; supports a number of different methods of
marking your place, in order to easily return later,
</p>
@@ -28,9 +28,9 @@
<p>
Bookmarks are the most traditional kind of marks supported by
&dactyl.appname;. They are accessible through &dactyl.host;'s
&dactyl.appName;. They are accessible through &dactyl.host;'s
bookmark menu, sidebar, and toolbar, in addition to its location
bar completion system. &dactyl.appname; makes them accessible
bar completion system. &dactyl.appName; makes them accessible
not only via several commands and its completion system (see the
<o>complete</o> option), but also displays a ❤ in the status bar
when a bookmarked page is displayed.
@@ -154,7 +154,7 @@
<p>
Though not traditionally considered a mark, history behaves very
similarly to bookmarks both in &dactyl.host; and
&dactyl.appname;. Every visited page is marked and weighted by
&dactyl.appName;. Every visited page is marked and weighted by
when and how often it is visited, and can be retrieved both in
history list and location completions. Indeed, the frecency
algorithm used to determine the results of location completions

View File

@@ -5,7 +5,7 @@
<document
name="message"
title="&dactyl.appname; Messages"
title="&dactyl.appName; Messages"
xmlns="&xmlns.dactyl;"
xmlns:dactyl="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
@@ -14,7 +14,7 @@
<tags>message-history</tags>
<p>
&dactyl.appname; stores all info and error messages in a message
&dactyl.appName; stores all info and error messages in a message
history. The type of info messages output can be controlled by
the <o>verbose</o> option. The maximum number of stored messages
can be limited with the <o>messages</o> option.

View File

@@ -14,14 +14,14 @@
<document
name="options"
title="&dactyl.appname; Options"
title="&dactyl.appName; Options"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="options">Options</h1>
<toc start="2"/>
<p>
&dactyl.appname; has a number of internal variables and switches which can be set to
&dactyl.appName; has a number of internal variables and switches which can be set to
achieve special effects. These options come in 8 forms:
</p>
@@ -250,7 +250,7 @@
<p>
Show the &dactyl.host; preferences dialog. You can change the browser
preferences from this dialog. Be aware that not all &dactyl.host;
preferences work, because &dactyl.appname; overrides some key bindings and
preferences work, because &dactyl.appName; overrides some key bindings and
changes &dactyl.host;'s GUI.
</p>
</description>
@@ -281,7 +281,7 @@
</item>
<p tag="overridden-preferences">
&dactyl.appname; needs to set several &dactyl.host; preferences at
&dactyl.appName; needs to set several &dactyl.host; preferences at
startup in order to function properly. If this is unacceptable,
they can be changed in your RC file with the <ex>:set!</ex>
command, but beware of unexpected behavior. The affected
@@ -467,7 +467,7 @@
</p>
<warning>
&dactyl.appname; will not behave correctly if the editor forks its
&dactyl.appName; will not behave correctly if the editor forks its
own process, rather than blocking until editing is complete. Gvim
invoked without the <em>-f</em> option is one such example.
</warning>
@@ -554,7 +554,7 @@
<default>UTF-8</default>
<description>
<p>
Changes the character encoding that &dactyl.appname; uses to read
Changes the character encoding that &dactyl.appName; uses to read
and write files.
</p>
</description>
@@ -1090,11 +1090,11 @@
<item>
<tags>$&dactyl.idname;_RUNTIME</tags>
<tags>$&dactyl.idName;_RUNTIME</tags>
<tags>'rtp' 'runtimepath'</tags>
<spec>'runtimepath' 'rtp'</spec>
<type>stringlist</type>
<default type="plain"><str>$&dactyl.idname;_RUNTIME</str> or
<default type="plain"><str>$&dactyl.idName;_RUNTIME</str> or
Unix, Mac: <str>~/.&dactyl.name;</str>
Windows: <str>~/&dactyl.name;</str></default>
<description>
@@ -1117,8 +1117,8 @@
</p>
<p>
On startup, if the environment variable <em>$&dactyl.idname;_RUNTIME</em> does not
exist, &dactyl.appname; will set it to match this value.
On startup, if the environment variable <em>$&dactyl.idName;_RUNTIME</em> does not
exist, &dactyl.appName; will set it to match this value.
</p>
</description>
</item>
@@ -1305,7 +1305,7 @@
<tags>'titlestring'</tags>
<spec>'titlestring'</spec>
<type>string</type>
<default>&dactyl.appname;</default>
<default>&dactyl.appName;</default>
<description>
<p>
Set the application name shown after the current page title in
@@ -1353,7 +1353,7 @@
<description>
<p>
Define which info messages are displayed. As the value increases,
&dactyl.appname; will show more messages about its progress.
&dactyl.appName; will show more messages about its progress.
These can be viewed at any time with the <ex>:messages</ex>
command. The highest useful value is 15, being the most verbose
mode.

View File

@@ -5,14 +5,14 @@
<document
name="pattern"
title="&dactyl.appname; Patterns"
title="&dactyl.appName; Patterns"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="text-search-commands">Text search commands</h1>
<toc start="2"/>
<p>
&dactyl.appname; provides a Vim-like incremental search interface to
&dactyl.appName; provides a Vim-like incremental search interface to
replace &dactyl.host;'s crippled Typeahead Find. Among other improvements,
our search service:
</p>

View File

@@ -5,7 +5,7 @@
<document
name="print"
title="&dactyl.appname; Printing"
title="&dactyl.appName; Printing"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="printing">Printing</h1>

View File

@@ -5,14 +5,14 @@
<document
name="repeat"
title="&dactyl.appname; Repeating Commands"
title="&dactyl.appName; Repeating Commands"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="repeating">Repeating commands</h1>
<toc start="2"/>
<p>
&dactyl.appname; can repeat commands in a number of ways, from repeating
&dactyl.appName; can repeat commands in a number of ways, from repeating
the last command, to recording and playing macros, to saving its state and
executing scripts.
</p>
@@ -27,7 +27,7 @@
<p>
Repeat the last keyboard mapping <oa>count</oa> times. Note that,
unlike in Vim, this does not apply solely to editing commands,
mainly because &dactyl.appname; doesn't have them.
mainly because &dactyl.appName; doesn't have them.
</p>
</description>
</item>
@@ -200,7 +200,7 @@
<tt>&dactyl.name;rc</tt> file if <tt>&dactyl.name;rc</tt> uses commands or options
which are defined by plugins. Additionally, this command allows
newly installed plugins to be easily loaded without restarting
&dactyl.appname;. See also <o>loadplugins</o>.
&dactyl.appName;. See also <o>loadplugins</o>.
</p>
</description>
</item>
@@ -237,7 +237,7 @@
<description>
<p>
Stop sourcing a script file. This can only be called from within a
&dactyl.appname; script file.
&dactyl.appName; script file.
</p>
</description>
</item>

View File

@@ -5,16 +5,16 @@
<document
name="starting"
title="&dactyl.appname; Starting"
title="&dactyl.appName; Starting"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="starting">Starting &dactyl.appname;</h1>
<h1 tag="starting">Starting &dactyl.appName;</h1>
<toc start="2"/>
<h2 tag="startup-options">Command-line options</h2>
<p>
Command-line options can be passed to &dactyl.appname; via the -&dactyl.name; &dactyl.host;
Command-line options can be passed to &dactyl.appName; via the -&dactyl.name; &dactyl.host;
option. These are passed as single string argument.
E.g., &dactyl.hostbin; -&dactyl.name; <str>++cmd 'set exrc' +u 'tempRcFile' ++noplugin</str>
</p>
@@ -72,27 +72,27 @@
<h2 tag="initialization startup">Initialization</h2>
<p>At startup, &dactyl.appname; completes the following tasks in order. </p>
<p>At startup, &dactyl.appName; completes the following tasks in order. </p>
<ol>
<li>
<p>
&dactyl.appname; first searches for user initialization commands in
&dactyl.appName; first searches for user initialization commands in
the following locations. The first of these to be found is executed,
after which no further locations are searched.
</p>
<ol>
<li tag="$&dactyl.idname;_INIT">
<em>$&dactyl.idname;_INIT</em>
<li tag="$&dactyl.idName;_INIT">
<em>$&dactyl.idName;_INIT</em>
<strut/>
May contain a single Ex command (e.g., "<ex>:source <a>file</a></ex>").
</li>
<li tag="$MY_&dactyl.idname;RC">
<li tag="$MY_&dactyl.idName;RC">
<em>~/_&dactyl.name;rc</em>
<strut/>
Windows only. If this file exists, its contents
are executed and <em>$MY_&dactyl.idname;RC</em> set to its path.
are executed and <em>$MY_&dactyl.idName;RC</em> set to its path.
</li>
<li>
<em>~/.&dactyl.name;rc</em>
@@ -137,7 +137,7 @@
<ul>
<li>On Unix and Mac, the environment variable <em>$HOME</em> is used.</li>
<li>
On Windows, &dactyl.appname; checks for the existence of
On Windows, &dactyl.appName; checks for the existence of
<em>%HOME%</em>, then <em>%USERPROFILE%</em>, and then
<em>%HOMEDRIVE%%HOMEPATH%</em>. It uses the first one it
finds.

View File

@@ -5,17 +5,17 @@
<document
name="styling"
title="&dactyl.appname; Styling"
title="&dactyl.appName; Styling"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="styling">Styling the GUI and web pages</h1>
<toc start="2"/>
<p>
&dactyl.appname; allows you to apply custom CSS styling to the web pages
&dactyl.appName; allows you to apply custom CSS styling to the web pages
you view as well as to the browser itself. Although it is possible to
style any user interface element via the <ex>:style</ex> command, most
&dactyl.appname; elements can be styled more easily by means of the
&dactyl.appName; elements can be styled more easily by means of the
more specialized <ex>:highlight</ex> command.
</p>
@@ -53,7 +53,7 @@
<p>Valid groups include:</p>
<dl>
<dt>Bell</dt> <dd>&dactyl.appname;'s visual bell</dd>
<dt>Bell</dt> <dd>&dactyl.appName;'s visual bell</dd>
<dt>Boolean</dt> <dd>A JavaScript Boolean object</dd>
<dt>CmdLine</dt> <dd>The command line</dd>
<dt>CmdOutput</dt> <dd>The output of commands executed by <ex>:run</ex></dd>

View File

@@ -5,7 +5,7 @@
<document
name="tabs"
title="&dactyl.appname; Tabs"
title="&dactyl.appName; Tabs"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="tabs buffers">Tabs and buffers</h1>

View File

@@ -5,7 +5,7 @@
<document
name="various"
title="&dactyl.appname; Other"
title="&dactyl.appName; Other"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1>Other help</h1>
@@ -124,7 +124,7 @@
<spec>:ve<oa>rsion</oa><oa>!</oa></spec>
<description>
<p>
Print &dactyl.appname; and &dactyl.host; version information. When
Print &dactyl.appName; and &dactyl.host; version information. When
<oa>!</oa> is provided, show the &dactyl.host; version page.
</p>
</description>
@@ -133,17 +133,17 @@
<h2 tag="privacy">Privacy and sensitive information</h2>
<p>
Part of &dactyl.appname;'s user efficiency comes at the cost of storing a
Part of &dactyl.appName;'s user efficiency comes at the cost of storing a
lot of potentially private data, including <t>command-line</t> history, page
marks, visited page history, and the like. Because we know that keeping a
detailed trail of all of your activities isn't always welcome,
&dactyl.appname; provides comprehensive facilities for erasing potentially
&dactyl.appName; provides comprehensive facilities for erasing potentially
sensitive data.
</p>
<p tag="private-mode porn-mode">
<strut/>
&dactyl.appname; fully supports &dactyl.host;'s private browsing mode.
&dactyl.appName; fully supports &dactyl.host;'s private browsing mode.
When in private browsing mode, no data other than Bookmarks and QuickMarks
are written to disk. Further, upon exiting private mode, all new data,
including <t>command-line</t> history, local and URL marks, and macros,
@@ -152,11 +152,11 @@
<p tag="sanitizing clearing-data">
<strut/>
In addition to private mode, &dactyl.appname; provides a comprehensive
In addition to private mode, &dactyl.appName; provides a comprehensive
facility for clearing any potentially sensitive data generated by either
&dactyl.appname; or &dactyl.host;. It directly integrates with
&dactyl.appName; or &dactyl.host;. It directly integrates with
&dactyl.host;'s own sanitization facility, and so automatically clears any
domain data and session history when requested. Further, &dactyl.appname;
domain data and session history when requested. Further, &dactyl.appName;
provides its own more granular sanitization facility, which allows, e.g.,
clearing only the command-line and macro history for the past ten minutes.
</p>

View File

@@ -5,8 +5,8 @@
<!ENTITY dactyl.mainWindow "main-window">
<!ENTITY dactyl.name "pentadactyl">
<!ENTITY dactyl.version "1.0">
<!ENTITY dactyl.idname "PENTADACTYL">
<!ENTITY dactyl.appname "Pentadactyl">
<!ENTITY dactyl.idName "PENTADACTYL">
<!ENTITY dactyl.appName "Pentadactyl">
<!ENTITY dactyl.apphome "http://dactyl.sf.net/">
<!ENTITY dactyl.code "http://code.google.com/p/dactyl/">
<!ENTITY dactyl.plugins "http://dactyl.sf.net/&dactyl.name;/plugins">

View File

@@ -1,4 +1,4 @@
<!ENTITY appname "Pentadactyl">
<!ENTITY appName "Pentadactyl">
<!ENTITY hostapp "Firefox">

View File

@@ -5,7 +5,7 @@
<document
name="intro"
title="&dactyl.appname; Introduction"
title="&dactyl.appName; Introduction"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
@@ -14,7 +14,7 @@
<h1 tag="intro">Introduction</h1>
<p>
<link topic="&dactyl.apphome;">&dactyl.appname;</link> is a
<link topic="&dactyl.apphome;">&dactyl.appName;</link> is a
free browser add-on for &dactyl.host;, designed to make browsing more
efficient and especially more keyboard accessible. Largely inspired by the
<link topic="http://www.vim.org">Vim</link> text editor, the appearance
@@ -22,7 +22,7 @@
</p>
<p tag="first-run">
If this is your first time running &dactyl.appname;, you may need some
If this is your first time running &dactyl.appName;, you may need some
time to adjust to the standard interface, which hides the menu,
navigation, and tool bars by default. If you find it uncomfortable to work
without them, you can re-enable them by typing
@@ -31,9 +31,9 @@
<p>
If you have trouble remembering commands or keyboard shortcuts, you can
bring up this help page at any time by typing <ex>:help</ex> or
<k name="F1"/>. If you find that you don't like &dactyl.appname; at all,
you can disable it by typing <ex>:extdisable &dactyl.appname;</ex> or
delete it entirely by typing <ex>:extdelete &dactyl.appname;</ex>
<k name="F1"/>. If you find that you don't like &dactyl.appName; at all,
you can disable it by typing <ex>:extdisable &dactyl.appName;</ex> or
delete it entirely by typing <ex>:extdelete &dactyl.appName;</ex>
</p>
<h2 tag="overview">Help topics</h2>
@@ -44,8 +44,8 @@
A quick-start tutorial for new users.
</li>
<li>
<link topic="starting">Starting &dactyl.appname;</link>:
How &dactyl.appname; starts up, where it reads the config file, etc.
<link topic="starting">Starting &dactyl.appName;</link>:
How &dactyl.appName; starts up, where it reads the config file, etc.
</li>
<li>
<link topic="browsing">Browsing</link>:
@@ -106,12 +106,12 @@
Printing pages.
</li>
<li>
<link topic="gui">&dactyl.appname;'s GUI</link>:
<link topic="gui">&dactyl.appName;'s GUI</link>:
Accessing &dactyl.host; menus, dialogs and the sidebar.
</li>
<li>
<link topic="styling">Styling the GUI and web pages</link>:
Changing the styling of content pages and &dactyl.appname; itself.
Changing the styling of content pages and &dactyl.appName; itself.
</li>
<li>
<link topic="message">Error and informational messages</link>:
@@ -152,7 +152,7 @@
<li>Advanced completion of bookmark and history URLs</li>
<li>Vim-like status line with a Wget-like progress bar</li>
<li>Minimal GUI (easily hide superfluous menubar and toolbar with <ex>:set guioptions=</ex>)</li>
<li>Ability to <ex>:source</ex> JavaScript, CSS, and &dactyl.appname; command files</li>
<li>Ability to <ex>:source</ex> JavaScript, CSS, and &dactyl.appName; command files</li>
<li>Easy quick searches (see <ex>:open</ex>)</li>
<li>Count supported for many commands (<em>3</em><k name="C-o"/> will go back 3 pages)</li>
<li>Visual bell for errors (<o>visualbell</o>)</li>

View File

@@ -5,7 +5,7 @@
<document
name="tutorial"
title="&dactyl.appname; Tutorial"
title="&dactyl.appName; Tutorial"
xmlns="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<!-- Initial revision: Sun Jun 8 10:07:05 UTC 2008 (penryu) -->
@@ -14,12 +14,12 @@
<html:p style="text-align: center">
This is a quickstart tutorial to help new users get up and running
in &dactyl.appname;. It is not intended as a full reference explaining all
in &dactyl.appName;. It is not intended as a full reference explaining all
features.
</html:p>
<p>
If you've started using &dactyl.appname; from scratch (i.e., without any
If you've started using &dactyl.appName; from scratch (i.e., without any
customization), you should be looking at this help page in a relatively
bare-looking window. The menubar, navigation bar, and bookmark bars are hidden.
In case you missed the notice in the <t>intro</t>, you can
@@ -35,43 +35,43 @@
<p>
However, in this author's opinion, the best way to get familiar with
&dactyl.appname; is to leave these disabled for now. (The above action can be
&dactyl.appName; is to leave these disabled for now. (The above action can be
reversed with <ex>:set go=<k name="CR"/></ex>) You can look at the entry for <o>guioptions</o> in
<t>options</t> for more information on this.
</p>
<h2 tag="modal">&dactyl.appname;'s modal interface</h2>
<h2 tag="modal">&dactyl.appName;'s modal interface</h2>
<p>
&dactyl.appname;'s power, like Vim's, comes from it's modal interface. Keys have
different meanings depending on which mode the browser is in. &dactyl.appname; has
&dactyl.appName;'s power, like Vim's, comes from it's modal interface. Keys have
different meanings depending on which mode the browser is in. &dactyl.appName; has
several modes, but the 2 most important are <em>Normal</em> mode and
<em>Command-line</em> mode.
</p>
<p>
When &dactyl.appname; starts, it is in Normal mode by default. This is probably where
When &dactyl.appName; starts, it is in Normal mode by default. This is probably where
you will spend the majority of your time.
</p>
<p>
The other core mode of &dactyl.appname;, Command-line mode, can be entered from
Normal mode by typing a <k>:</k> (colon). You will frequently see &dactyl.appname;
The other core mode of &dactyl.appName;, Command-line mode, can be entered from
Normal mode by typing a <k>:</k> (colon). You will frequently see &dactyl.appName;
commands start with a <k>:</k>, indicating that what follows is a command.
</p>
<p>
To return to Normal mode from Command-line mode, type <k name="Esc"/>. Pressing
<k name="Esc"/> will also return you to Normal mode from most other modes in
&dactyl.appname;.
&dactyl.appName;.
</p>
<h2 tag="getting-help">Getting help</h2>
<p>
Vim is a great editor but it's not much of a web browser. So even seasoned Vim
users will probably have to look at &dactyl.appname;'s documentation sooner or later.
Most of the documentation for &dactyl.appname;'s features are easily found using the
users will probably have to look at &dactyl.appName;'s documentation sooner or later.
Most of the documentation for &dactyl.appName;'s features are easily found using the
<ex>:help</ex> command. For example, you can find help on the <ex>:help</ex> command
by typing
</p>
@@ -104,16 +104,16 @@
<em> or how I learned to stop worrying and love the 80+ buttons I already have.</em>
<p>
The efficiency of &dactyl.appname;, as with the legendary editor it was inspired by,
The efficiency of &dactyl.appName;, as with the legendary editor it was inspired by,
relies on the user being able to keep his fingers on the keyboard where they
can do the most good. While there are some areas where the mouse is clearly
superior at, such as GUI design or some games, &dactyl.appname; acts on the
superior at, such as GUI design or some games, &dactyl.appName; acts on the
assumption that a web browser doesn't have to be one of those.
</p>
<p>
Here are some areas where the mouse is typically considered indisposable, and
how &dactyl.appname; challenges this preconception.
how &dactyl.appName; challenges this preconception.
</p>
<h2 tag="keyboard-scrolling">Scrolling</h2>
@@ -202,27 +202,27 @@
<h2 tag="hints-tutorial">Some hints about surfing…</h2>
<p>
So now you can navigate around in &dactyl.appname;. But wait… how do you <em>open</em> a
So now you can navigate around in &dactyl.appName;. But wait… how do you <em>open</em> a
page or tab linked in a web page? How do you <em>click</em> on all those links
without your tailed friend?
</p>
<p>
The answer is <em>hints</em>. Activating hints displays a number next to every link
&dactyl.appname; can find. To follow the link, simply type the number corresponding
&dactyl.appName; can find. To follow the link, simply type the number corresponding
to the hint, a white number inside a red square by default.
</p>
<p>
For text links, there's an additional shortcut; you can type some text
contained in the link and &dactyl.appname; will search all the links it can find and
contained in the link and &dactyl.appName; will search all the links it can find and
only hint the matching links, further narrowing down the list. If the text you
type uniquely identifies any given link, &dactyl.appname; will follow that link
type uniquely identifies any given link, &dactyl.appName; will follow that link
immediately without any further user input.
</p>
<p>
Whichever way you choose to indicate your target link, once &dactyl.appname; has
Whichever way you choose to indicate your target link, once &dactyl.appName; has
highlighted the link you want, simply hit <k name="Enter"/> to open it.
</p>
@@ -234,10 +234,10 @@
</p>
<p>
To test it, try this link: <link target="&dactyl.apphome;">&dactyl.appname; Homepage</link>.
To test it, try this link: <link target="&dactyl.apphome;">&dactyl.appName; Homepage</link>.
Activate QuickHint mode with <k>f</k> or <k>F</k> to highlight all currently
visible links. Then start typing the text of the link. The link should be
uniquely identified soon, and &dactyl.appname; will open it. Once you're done,
uniquely identified soon, and &dactyl.appName; will open it. Once you're done,
remember to use <k name="C-o"/> (<em>History Back</em>) or <k>d</k> (<em>Delete Buffer</em>)
to return here, depending on which key you used to activate QuickHint mode.
</p>
@@ -262,14 +262,14 @@
<h2 tag="pentadactylrc">Saving for posterity—<tt>pentadactylrc</tt></h2>
<p>
Once you get &dactyl.appname; set up with your desired options, maps, and commands,
you'll probably want them to be available the next time you open &dactyl.appname;.
Once you get &dactyl.appName; set up with your desired options, maps, and commands,
you'll probably want them to be available the next time you open &dactyl.appName;.
Continuing the Vim theme, this is done with a <tt>pentadactylrc</tt> file.
</p>
<p>
To save your current settings and allow them to be loaded automatically
next time you start &dactyl.appname;, issue the <ex>:mkp</ex> command.
next time you start &dactyl.appName;, issue the <ex>:mkp</ex> command.
</p>
<p>
@@ -281,7 +281,7 @@
<h2 tag="quitting-without-menus">Find the exit nearest you</h2>
<p>
&dactyl.appname; supports all of Vim's classic methods of exiting.
&dactyl.appName; supports all of Vim's classic methods of exiting.
</p>
<dl>
@@ -307,7 +307,7 @@
<p>
You might feel pretty disoriented now. Don't worry. This is still &dactyl.host;
underneath. Here are some ways &dactyl.appname; allows &dactyl.host; to shine through. See
underneath. Here are some ways &dactyl.appName; allows &dactyl.host; to shine through. See
the <ex>:help</ex> for these commands and mappings for more information on how to
make the best use of them.
</p>
@@ -320,18 +320,18 @@
</dd>
<dt><ex>:bmarks</ex></dt>
<dd>
&dactyl.appname; provides a new interface to bookmarks, but they're still your
&dactyl.appName; provides a new interface to bookmarks, but they're still your
standard &dactyl.host; bookmarks under the hood. <ex>:bmark</ex> will add a new
bookmark, while <ex>:bmarks</ex> will list the bookmarks currently defined.
</dd>
<dt><ex>:history</ex></dt>
<dd>
It's exactly what it sounds like. This command will display a colorized,
scrollable and clickable list of the locations in &dactyl.appname;'s history.
scrollable and clickable list of the locations in &dactyl.appName;'s history.
</dd>
<dt><ex>:emenu</ex></dt>
<dd>
Access the &dactyl.host; menus through the &dactyl.appname; command line.
Access the &dactyl.host; menus through the &dactyl.appName; command line.
</dd>
</dl>
@@ -354,9 +354,9 @@
</p>
<p>
The &dactyl.appname; way to do this is with the command <ex>:addons</ex>. Issuing this
The &dactyl.appName; way to do this is with the command <ex>:addons</ex>. Issuing this
command brings up the &dactyl.host; Add-ons dialog window; you can then remove it as
normal, selecting &dactyl.appname; from the list and clicking (yes, clicking)
normal, selecting &dactyl.appName; from the list and clicking (yes, clicking)
<em>Uninstall</em>.
</p>
@@ -369,8 +369,8 @@
<h2 tag="support">I'm interested… but lost!</h2>
<p>
&dactyl.appname; has an energetic and growing user base. If you've run into a problem
that you can't seem to solve with &dactyl.appname;, or if you think you might have
&dactyl.appName; has an energetic and growing user base. If you've run into a problem
that you can't seem to solve with &dactyl.appName;, or if you think you might have
found a bug, please let us know! There is support available on the
<link target="http://code.google.com/p/pentadactyl-labs/w/list?q=label%3Aproject-pentadactyl">wiki</link>
or in the <link target="irc://irc.freenode.net/pentadactyl">#pentadactyl</link> IRC
@@ -379,7 +379,7 @@
<p>
If you have any feature requests or (even better) offers to help, we'd love to
hear from you as well. Developers work on &dactyl.appname; whenever possible, but we
hear from you as well. Developers work on &dactyl.appName; whenever possible, but we
are neither infinite nor omnipotent; please bear with us. If you can't wait for
us to get around to it, rest assured patches are welcome! See the
<t>developer</t> page for more information.

View File

@@ -4,8 +4,8 @@
<!ENTITY dactyl.mainWindow "messengerWindow">
<!ENTITY dactyl.name "teledactyl">
<!ENTITY dactyl.idname "TELEDACTYL">
<!ENTITY dactyl.appname "Teledactyl">
<!ENTITY dactyl.idName "TELEDACTYL">
<!ENTITY dactyl.appName "Teledactyl">
<!ENTITY dactyl.host "&brandShortName;">
<!ENTITY dactyl.hostbin "thunderbird">
<!ENTITY dactyl.statusBefore "">

View File

@@ -16,9 +16,9 @@
<dt>PageLoadPre</dt> <dd>Triggered after a page load is initiated</dd>
<dt>PageLoad</dt> <dd>Triggered when a page gets (re)loaded/opened</dd>
<dt>ShellCmdPost</dt> <dd>Triggered after executing a shell command with <ex>:!</ex><a>cmd</a></dd>
<dt>&dactyl.appname;Enter</dt> <dd>Triggered after &dactyl.host; starts</dd>
<dt>&dactyl.appname;LeavePre</dt><dd>Triggered before exiting &dactyl.host;, just before destroying each module</dd>
<dt>&dactyl.appname;Leave</dt> <dd>Triggered before exiting &dactyl.host;</dd>
<dt>&dactyl.appName;Enter</dt> <dd>Triggered after &dactyl.host; starts</dd>
<dt>&dactyl.appName;LeavePre</dt><dd>Triggered before exiting &dactyl.host;, just before destroying each module</dd>
<dt>&dactyl.appName;Leave</dt> <dd>Triggered before exiting &dactyl.host;</dd>
<dt>FolderLoad</dt> <dd>Triggered after switching folders in &dactyl.host;</dd>
</dl>

View File

@@ -5,7 +5,7 @@
<document
name="intro"
title="&dactyl.appname; Introduction"
title="&dactyl.appName; Introduction"
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
@@ -14,7 +14,7 @@
<h1 tag="intro">Introduction</h1>
<p>
<link topic="&dactyl.apphome;">&dactyl.appname;</link> is a free
<link topic="&dactyl.apphome;">&dactyl.appName;</link> is a free
browser add-on for &dactyl.host;, which makes it look and behave
like the <link topic="http://www.vim.org">Vim</link> text
editor. It has similar key bindings, and you could call it a
@@ -23,7 +23,7 @@
</p>
<p tag="first-run">
If this is your first time running &dactyl.appname;, you may need some
If this is your first time running &dactyl.appName;, you may need some
time to adjust to the standard interface, which hides the menu,
navigation, and tool bars by default. If you find it uncomfortable to work
without them, you can re-enable them by typing,
@@ -32,9 +32,9 @@
<p>
If you have trouble remembering commands or keyboard shortcuts, you can
bring up this help page at any time by typing <ex>:help</ex> or the
<k name="F1"/>. If you find that you don't like &dactyl.appname; at all,
you can disable it by typing <ex>:extdisable &dactyl.appname;</ex> or
delete it entirely by typing <ex>:extdelete &dactyl.appname;</ex>
<k name="F1"/>. If you find that you don't like &dactyl.appName; at all,
you can disable it by typing <ex>:extdisable &dactyl.appName;</ex> or
delete it entirely by typing <ex>:extdelete &dactyl.appName;</ex>
</p>
<h2 tag="overview">Help topics</h2>
@@ -45,8 +45,8 @@
A quick-start tutorial for new users.
</li>
<li>
<link topic="starting">Starting &dactyl.appname;</link>:
How &dactyl.appname; starts up, where it reads the config file…
<link topic="starting">Starting &dactyl.appName;</link>:
How &dactyl.appName; starts up, where it reads the config file…
</li>
<li>
<link topic="browsing">Browsing</link>:
@@ -106,12 +106,12 @@
Printing pages.
</li>
<li>
<link topic="gui">&dactyl.appname;'s GUI</link>:
<link topic="gui">&dactyl.appName;'s GUI</link>:
Accessing &dactyl.host; menus, dialogs and the sidebar.
</li>
<li>
<link topic="styling">Styling the GUI and web pages</link>:
Changing the styling of content pages and &dactyl.appname; itself.
Changing the styling of content pages and &dactyl.appName; itself.
</li>
<li>
<link topic="message">Error and informational messages</link>:

View File

@@ -4,8 +4,8 @@
<!ENTITY dactyl.mainWindow "mainplayer">
<!ENTITY dactyl.name "xulmus">
<!ENTITY dactyl.appname "Xulmus">
<!ENTITY dactyl.idname "XULMUS">
<!ENTITY dactyl.appName "Xulmus">
<!ENTITY dactyl.idName "XULMUS">
<!ENTITY dactyl.host "&brandShortName;">
<!ENTITY dactyl.hostbin "songbird">
<!ENTITY dactyl.statusBefore "statusbar-display">

View File

@@ -1,4 +1,4 @@
<!ENTITY appname "Xulmus">
<!ENTITY appName "Xulmus">
<!ENTITY hostapp "Songbird">

View File

@@ -5,7 +5,7 @@
<document
name="intro"
title="&dactyl.appname; Intro"
title="&dactyl.appName; Intro"
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
@@ -13,7 +13,7 @@
<h2 tag="intro">Introduction</h2>
<link topic="http://vimperator.org/%dactyl.name;">&dactyl.appname;</link>
<link topic="http://vimperator.org/%dactyl.name;">&dactyl.appName;</link>
is a free media player add-on for &dactyl.host;, which
combines the best features of the
<link topic="http://cmus.sourceforge.net">CMus</link>
@@ -25,17 +25,17 @@ text editor.
To provide the most authentic CMus/Vim experience, the &dactyl.host; toolbar
is hidden.
If you really need it, type: <ex>:set guioptions+=T</ex> to get it back.
If you don't like &dactyl.appname; at all, you can uninstall it by typing
<ex>:extdelete &dactyl.appname;</ex> or <ex>:extdisable &dactyl.appname;</ex> to disable it.
If you don't like &dactyl.appName; at all, you can uninstall it by typing
<ex>:extdelete &dactyl.appName;</ex> or <ex>:extdisable &dactyl.appName;</ex> to disable it.
If you like it but can't remember the shortcuts, then press <k>F1</k> or
<ex>:help</ex> to get this help window back.
</warning>
<tags>author donation</tags>
<p>
&dactyl.appname; was written by
&dactyl.appName; was written by
<link topic="prathyushthota@gmail.com">Prathyush Thota</link>. If you
appreciate my work on &dactyl.appname; and want to encourage
appreciate my work on &dactyl.appName; and want to encourage
me working on it more, you can either send me greetings, patches
or make a donation:
</p>
@@ -44,7 +44,7 @@ text editor.
<p>
Of course as a believer in free open source software, only make
a donation if you really like &dactyl.appname; and the money
a donation if you really like &dactyl.appName; and the money
doesn't hurt -- otherwise just use it, recommend it and like it
:)
</p>
@@ -52,7 +52,7 @@ text editor.
<h2 tag="overview">Help topics</h2>
<ul>
<li><link topic="starting">Starting &dactyl.appname;</link>: How &dactyl.appname; starts up, where it reads the config file... </li>
<li><link topic="starting">Starting &dactyl.appName;</link>: How &dactyl.appName; starts up, where it reads the config file... </li>
<li><link topic="player">Player mode</link>: Interacting with the media player.</li>
<li><link topic="browsing">Browsing</link>: Basic mappings and commands needed for a browsing session (how to open a web page or go back in history).</li>
<li><link topic="buffer">Buffer</link>: Operations on the current document like scrolling or copying text.</li>
@@ -68,8 +68,8 @@ text editor.
<li><link topic="repeat">Repeating commands</link>: Using macros to repeat recurring workflows.</li>
<li><link topic="autocommands">Automatic commands</link>: Automatically executing code on certain events.</li>
<li><link topic="print">Printing</link>: Printing pages.</li>
<li><link topic="gui">&dactyl.appname;'s GUI</link>: Accessing &dactyl.host; menus, dialogs and the display panels.</li>
<li><link topic="styling">Styling the GUI and web pages</link>: Changing the styling of content pages and &dactyl.appname; itself.</li>
<li><link topic="gui">&dactyl.appName;'s GUI</link>: Accessing &dactyl.host; menus, dialogs and the display panels.</li>
<li><link topic="styling">Styling the GUI and web pages</link>: Changing the styling of content pages and &dactyl.appName; itself.</li>
<li><link topic="message">Error and informational messages</link>: A description of messages and error messages.</li>
<li><link topic="developer">Developer information</link>: How to write docs or plugins.</li>
<li><link topic="various">Various commands</link>: Other help which didn't fit into any other category.</li>
@@ -116,7 +116,7 @@ text editor.
<link topic="http://www.freenode.net/">Freenode</link> or check the
<link topic="http://code.google.com/p/pentadactyl-labs/w/list?q=label%3Aproject-xulmus">Wiki</link>
for
<link topic="http://code.google.com/p/pentadactyl-labs/wiki/&dactyl.appname;FAQ">
<link topic="http://code.google.com/p/pentadactyl-labs/wiki/&dactyl.appName;FAQ">
frequently asked questions (FAQ)</link>.
Make sure, you have read the
<link topic="http://pentadactyl-labs.googlecode.com/hg/xulmus/TODO">TODO</link>

View File

@@ -5,7 +5,7 @@
<document
name="browsing"
title="&dactyl.appname; Browsing"
title="&dactyl.appName; Browsing"
xmlns="http://vimperator.org/namespaces/liberator"
xmlns:html="http://www.w3.org/1999/xhtml">
<h1 tag="player-mode player">Player mode</h1>