insert_bookmark related stuff
authorDieter Plaetinck <dieter@plaetinck.be>
Mon, 27 Apr 2009 19:48:11 +0000 (21:48 +0200)
committerDieter Plaetinck <dieter@plaetinck.be>
Mon, 27 Apr 2009 19:48:11 +0000 (21:48 +0200)
README
TODO
examples/scripts/insert_bookmark.sh

diff --git a/README b/README
index 962bb31..3dedb25 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,8 @@ TO NEW PEOPLE:
  - please read the README in /usr/share/uzbl/docs
  - invoke uzbl --help
  - to get you started: uzbl --uri 'http://www.archlinux.org' --config /usr/share/uzbl/examples/configs/sampleconfig
- - study the sample config, have a look at all the bindings, and note how you can call the scripts to insert a bookmark, and load new url from history and the bookmarks file
+ - study the sample config, have a look at all the bindings, and note how you can call the scripts to load new url from history and the bookmarks file
+ - inserting new bookmarks is not working yet. it will be soon.
  - note that there is no url bar. all url editing is supposed to happen _outside_ of uzbl. right now you cannot just change the url as you please (we are working on that)
    for now, you can use the load_from scripts and write commands into the fifo (see /usr/share/uzbl/docs/CHECKLIST)
 
diff --git a/TODO b/TODO
index 8a0cb91..5b300e3 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,4 +1,5 @@
 ASAP
+* do a clean implementation of bindings that need arguments (eg insert_bookmark needs the uri.)
 
 * implement all the ideas from README
 * get a logo
index af6ca8a..be17c05 100755 (executable)
@@ -1,8 +1,9 @@
 #!/bin/bash
 # you probably want your bookmarks file in your $XDG_DATA_HOME ( eg $HOME/.local/share/uzbl/bookmarks)
+
 if [ -f /usr/share/uzbl/examples/bookmarks ]
 then
-       file=/usr/share/uzbl/examples/bookmarks
+       file=/usr/share/uzbl/examples/bookmarks # you will probably get permission denied errors here. pick a file in your ~
 else
        file=./examples/bookmarks #useful when developing
 fi