aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Barrucadu <mike@barrucadu.co.uk>2009-04-27 19:03:52 +0100
committerGravatar Barrucadu <mike@barrucadu.co.uk>2009-04-27 19:03:52 +0100
commit70766898c7d09806bfbe34e1410db5ac2bd04d31 (patch)
tree05c9d42e25b75025b8928f301b786390850260cf
parent53963e8d449bec61d537e198ac884910b9fd1eee (diff)
parenteda205623c4e8ca2bc5879adb76013884d21992c (diff)
Merge branch 'dieter/experimental' into experimental
-rw-r--r--CHECKLIST19
-rw-r--r--TODO8
2 files changed, 27 insertions, 0 deletions
diff --git a/CHECKLIST b/CHECKLIST
new file mode 100644
index 0000000..e2bb183
--- /dev/null
+++ b/CHECKLIST
@@ -0,0 +1,19 @@
+This file contains all things that are/should be working.
+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).
+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.
+
+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.
+
+* commandline switches --uri "http://.." and --config should behave as expected
+* --help and -? should show help
+* config loading: loading of settings, bindings and handlers from config file
+* fifo: type this in your shell after starting uzbl:
+ echo 'uri http://www...' > <fifo path here>'
+ 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)
+* 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)
+* 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/.. .
+ all should be valid strings and contain things like the pid, fifo file, config file,.. (see README for details).
+
+
+TODO: add stuff about internal/external keybinds, mod key, insert mode, status bar, xdg stuff,
+behavior settings,.... \ No newline at end of file
diff --git a/TODO b/TODO
index 1b0a0f2..d36bd1d 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1,9 @@
+ASAP
+
+* history logging broken
+* weird args to external commnads
+* load from history works, but why, since there is no /tmp/uzbl.history
+
* implement all the ideas from README
* get a logo
* improve site
@@ -9,6 +15,8 @@
* recognize -h with GOption?
* implement a vimperator-like link following scheme. but let user pick his favorite characters to construct the "link identifiers" with.
* add a keybind to hand the current url to an external scrips, so you can edit it and/or store it in the primary and secondary clipboards
+* use http://library.gnome.org/devel/glib/stable/glib-Hash-Tables.html#g-hash-table-insert for tracking bindings and wherever we use structs and ugly loops
+
SOMEDAY:
check if we can make the settings loading less hard coded. eg( keep a list of all settings, and for each one, try to load it)