documentation overhaul
[uzbl-mobile] / docs / CHECKLIST
1 THIS FILE IS DEPRECATED.
2 TODO: make sure that all this gets merged into the documentation
3
4 This file contains all things that are/should be working.
5 When you have been working on something, use this list to verify that you did not cause any regressions (things that worked before, but got broken).
6 Also, when you finish a new feature, add it to this list so that everyone knows about it, can play with it, and can test it.
7
8 Also testers and interested people can use this list to see what uzbl is about, and report problems if they find items listed here that do not work.
9
10 * commandline switches --uri "http://.." and --config behave as expected
11 * --help and -? should show help
12 * config loading: loading of settings, bindings and all behavior settings (including handlers) from config file
13 * fifo: type this in your shell after starting uzbl:
14   echo 'uri http://www...' > <fifo path here>'
15   where <fifo path> is printed on stdout during program startup.  Also "back" , "forward", "refresh" (basically all actions defined in `static Command commands` should behave as expected)
16   On one of Dieter's pc's, using the fifo only works once.  Please report issues with the fifo if you find any.
17 * socket: uzblctrl -s <socketname> -c <command> (same commands as with fifo)
18 * history logging: the script as defined in sample config should write history entries (date,time, url) into the file defined in the script (by default ./extra/history.sh and /tmp/uzbl.history)
19 * invocations of external commands: you'll see it on stdout everytime uzbl calls an external script/program. the invocations should work and none of the arguments passed should be null/garbage/.. .
20   all should be valid strings and contain things like the pid, fifo file, config file,.. (see README for details).
21 * XDG_CONFIG_HOME and XDG_CONFIG_DIRS (+ default values) fully supported and working (looks for a config file called 'uzbl/config').
22 * --uri can be specified without http:// -- if missing will be prepended.
23 * Downloading of files with handler script
24 * Open in new window. all (valid) args passed to your uzbl instance are passed also to the new instance, with the obvious exception of --uri.
25 * internal keybinds to change things work (as loaded by config)
26 * vimlike command and insert modes behave as expected
27 * always_insert_mode and modkey work too
28 * status bar can be toggled on and off, if off, some info (mode) will be put in title bar. position of statusbar (top/bottom) also works
29 * backspace erases last edit character. esc erases entire command buffer (if in comand mode)
30 * commands with parameters (keywords): any key sequence that ends with underscore _ expects parameter. Undersore marks exact location where parameter begins. Command part can have %s that will be replaced with parameter.
31   This only works for internal commands. not when spawning external scripts.
32         :o _ = uri %s - user needs to type :o www.google.com
33         :O_ = uri %s - user needs to type :Owww.google.com
34 * when typing command, press insert (paste X cliboard) or shift insert (paste primary selection buffer)
35 * proxy, user agent and other network settings can be set in config
36 * scrolling works, with configurable keys (vi-like in sample config)
37 * searching:
38   /_ = search %s <-- hilight all
39   ; = search <-- jump over all hits
40 * run javascript on curent page through "script" command.
41 * variable replacement in user agent.
42 * basic keyboard link hilighting (numbering) and following. will be improved more
43 * support overriding background color of statusbar and pango markup format to customize the statusbar in terms of which variables, separators, colors, fonts, etc