292f9ababcee7514195c27efa6aaf176a29bdf41
[uzbl-mobile] / CHECKLIST
1 This file contains all things that are/should be working.
2 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).
3 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.
4
5 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.
6
7 * commandline switches --uri "http://.." and --config behave as expected
8 * --help and -? should show help
9 * config loading: loading of settings, bindings and all behavior settings (including handlers) from config file
10 * fifo: type this in your shell after starting uzbl:
11   echo 'uri http://www...' > <fifo path here>'
12   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)
13   On one of Dieter's pc's, using the fifo only works once.  Please report issues with the fifo if you find any.
14 * socket: uzblctrl -s <socketname> -c <command> (same commands as with fifo)
15 * 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)
16 * 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/.. .
17   all should be valid strings and contain things like the pid, fifo file, config file,.. (see README for details).
18 * XDG_CONFIG_HOME and XDG_CONFIG_DIRS (+ default values) fully supported and working (looks for a config file called 'uzbl/config').
19 * --uri can be specified without http:// -- if missing will be prepended.
20 * Downloading of files with handler script
21 * 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.
22 * internal keybinds to change things work (as loaded by config)
23 * vimlike command and insert modes behave as expected
24 * always_insert_mode and modkey work too
25 * 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
26 * backspace erases last edit character. esc erases entire command buffer (if in comand mode)
27 * 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.
28   This only works for internal commands. not when spawning external scripts.
29         :o _ = uri %s - user needs to type :o www.google.com
30         :O_ = uri %s - user needs to type :Owww.google.com
31 * when typing command, press insert (paste X cliboard) or shift insert (paste primary selection buffer)
32 * proxy, user agent and other network settings can be set in config
33 * scrolling works, with configurable keys (vi-like in sample config)
34 * searching:
35   /_ = search %s <-- hilight all
36   ; = search <-- jump over all hits
37 * run javascript on curent page through "script" command.
38 * variable replacement in user agent.