uzbl-mobile
14 years agofix overrun in expand()
Robert Manea [Sat, 25 Jul 2009 15:34:39 +0000 (17:34 +0200)]
fix overrun in expand()

14 years agoadded update_gui command
Robert Manea [Sat, 25 Jul 2009 09:48:57 +0000 (11:48 +0200)]
added update_gui command

14 years agoMerge branch 'custom-vars'
Robert Manea [Sat, 25 Jul 2009 09:33:54 +0000 (11:33 +0200)]
Merge branch 'custom-vars'

14 years agoremove unnecessary check
Robert Manea [Sat, 25 Jul 2009 09:32:42 +0000 (11:32 +0200)]
remove unnecessary check

14 years agoremove unnecessary g_strdup()
Robert Manea [Fri, 24 Jul 2009 15:26:54 +0000 (17:26 +0200)]
remove unnecessary g_strdup()

14 years agofix malloc() bug
Robert Manea [Fri, 24 Jul 2009 15:21:54 +0000 (17:21 +0200)]
fix malloc() bug

14 years agoUse #!/usr/bin/env python instead of #!/usr/bin/python
Mason Larobina [Fri, 24 Jul 2009 13:04:08 +0000 (21:04 +0800)]
Use #!/usr/bin/env python instead of #!/usr/bin/python

14 years agotrying fix
Robert Manea [Fri, 24 Jul 2009 12:41:47 +0000 (14:41 +0200)]
trying fix

14 years agore-fix typo
Robert Manea [Fri, 24 Jul 2009 11:53:46 +0000 (13:53 +0200)]
re-fix typo

14 years agoadded custom vars, currently somewhat broken
Robert Manea [Fri, 24 Jul 2009 11:37:48 +0000 (13:37 +0200)]
added custom vars, currently somewhat broken

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl
Robert Manea [Fri, 24 Jul 2009 11:11:06 +0000 (13:11 +0200)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl

Conflicts:
uzbl.c
uzbl.h

14 years agostatusbar fix
Robert Manea [Fri, 24 Jul 2009 11:10:00 +0000 (13:10 +0200)]
statusbar fix

14 years agoAdd talk_to_socket handler
Laurence Withers [Wed, 22 Jul 2009 19:46:43 +0000 (19:46 +0000)]
Add talk_to_socket handler

This handler talks directly to a daemon using a Unix SOCK_SEQPACKET socket,
allowing e.g. cookie handlers to be implemented without having to fork and
and execute an external program or script interpreter.

A little explanation of the functioning of talk_to_socket():

 1. We receive our argument as a string in the format of "HANDLER EXTRA_ARGS".
 2. Copy "HANDLER" into our Unix socket address structure and connect to that
    address (blocking). Error out if connection fails.
 3. Write "EXTRA_ARGS" to the socket. Error out if writing fails.
 4. Use poll() to wait for a response, timing out after 500ms of inactivity.
 5. Use ioctl(FIONREAD) to find out how long the pending datagram is.
 6. Allocate an appropriately sized buffer (len+1) and write a null at the
    end, so our output is always null-terminated no matter what.
 7. Read from socket into buffer. Error out if read fails.
 8. Close socket.

14 years agoMerge commit 'Dieterbe/experimental' into scheme_handler
Tom Adams [Wed, 22 Jul 2009 13:18:56 +0000 (14:18 +0100)]
Merge commit 'Dieterbe/experimental' into scheme_handler

14 years agoCall scheme_handler for all URIs.
Tom Adams [Wed, 22 Jul 2009 12:46:28 +0000 (13:46 +0100)]
Call scheme_handler for all URIs.

14 years agoBugfix: Accidentally broke non-json session loading.
Mason Larobina [Wed, 22 Jul 2009 09:35:29 +0000 (17:35 +0800)]
Bugfix: Accidentally broke non-json session loading.

14 years agoAdded dependencies section to the top of uzbl_tabbed.py
Mason Larobina [Wed, 22 Jul 2009 09:03:49 +0000 (17:03 +0800)]
Added dependencies section to the top of uzbl_tabbed.py

14 years agoMade json_session false by default.
Mason Larobina [Wed, 22 Jul 2009 08:50:14 +0000 (16:50 +0800)]
Made json_session false by default.

14 years agobugfix: uzbl_tabbed.py crashed when loading old format session file
Mason Larobina [Wed, 22 Jul 2009 05:48:51 +0000 (13:48 +0800)]
bugfix: uzbl_tabbed.py crashed when loading old format session file

14 years agoAdded session preset adding/saving/listing/deleting.
Mason Larobina [Wed, 22 Jul 2009 04:25:42 +0000 (12:25 +0800)]
Added session preset adding/saving/listing/deleting.

14 years agoOnly navigate to URI if scheme_handler doesn't print "USED".
Tom Adams [Tue, 21 Jul 2009 23:18:57 +0000 (00:18 +0100)]
Only navigate to URI if scheme_handler doesn't print "USED".

14 years agoAlso whitelist file scheme.
Tom Adams [Tue, 21 Jul 2009 08:00:10 +0000 (09:00 +0100)]
Also whitelist file scheme.

14 years agoHuge refactorisation of session handling in uzbl_tabbed.py
Mason Larobina [Tue, 21 Jul 2009 13:38:58 +0000 (21:38 +0800)]
Huge refactorisation of session handling in uzbl_tabbed.py

14 years agouzbl_tabbed.py modified to use json for state saving & restoration.
Mason Larobina [Mon, 20 Jul 2009 15:55:22 +0000 (23:55 +0800)]
uzbl_tabbed.py modified to use json for state saving & restoration.

14 years agoFound and fixed the real source of the state restoration bug.
Mason Larobina [Mon, 20 Jul 2009 14:34:38 +0000 (22:34 +0800)]
Found and fixed the real source of the state restoration bug.

14 years agouzbl takes the first un-parsed argument as the uri, no need for --uri
Mason Larobina [Mon, 20 Jul 2009 14:10:51 +0000 (22:10 +0800)]
uzbl takes the first un-parsed argument as the uri, no need for --uri

14 years agoUse dict.items() when iterating over a dict.
Mason Larobina [Mon, 20 Jul 2009 14:02:22 +0000 (22:02 +0800)]
Use dict.items() when iterating over a dict.

14 years agoAdded support for uzbl's new window handler in uzbl_tabbed.py
Mason Larobina [Mon, 20 Jul 2009 11:45:41 +0000 (19:45 +0800)]
Added support for uzbl's new window handler in uzbl_tabbed.py

14 years agoso kwin also has tabs. and looking pretty good actually
Dieter Plaetinck [Sun, 19 Jul 2009 21:09:04 +0000 (23:09 +0200)]
so kwin also has tabs. and looking pretty good actually

14 years agoAdded scheme_handler callback.
Tom Adams [Sun, 19 Jul 2009 18:24:43 +0000 (19:24 +0100)]
Added scheme_handler callback.

Conflicts:

uzbl.c
uzbl.h

14 years agoAdd commit to verbose output.
Tom Adams [Sun, 19 Jul 2009 16:37:08 +0000 (17:37 +0100)]
Add commit to verbose output.

14 years agoCheck URI is valid using SoupURI instead of strcmp.
Tom Adams [Sun, 19 Jul 2009 15:06:20 +0000 (16:06 +0100)]
Check URI is valid using SoupURI instead of strcmp.

14 years agoRemove unneccesary code for new_window handler.
Tom Adams [Sun, 19 Jul 2009 14:09:40 +0000 (15:09 +0100)]
Remove unneccesary code for new_window handler.

14 years agoMerge commit 'bct/headless-tests' into experimental
Dieter Plaetinck [Sun, 19 Jul 2009 17:01:26 +0000 (19:01 +0200)]
Merge commit 'bct/headless-tests' into experimental

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental
Mason Larobina [Sun, 19 Jul 2009 16:22:35 +0000 (00:22 +0800)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental

14 years agofix 'make test' after a commit.
Brendan Taylor [Sun, 19 Jul 2009 15:35:12 +0000 (09:35 -0600)]
fix 'make test' after a commit.

14 years agorearrange initialization so that 'make tests' doesn't require X
Brendan Taylor [Sun, 19 Jul 2009 15:33:07 +0000 (09:33 -0600)]
rearrange initialization so that 'make tests' doesn't require X

14 years agousage output fixes
Dieter Plaetinck [Sun, 19 Jul 2009 08:50:41 +0000 (10:50 +0200)]
usage output fixes

14 years agoreadme entry for geometry flag
Dieter Plaetinck [Sat, 18 Jul 2009 17:53:45 +0000 (19:53 +0200)]
readme entry for geometry flag

14 years agoMerge commit 'Dieterbe/experimental' into new_experimental
Tom Adams [Sat, 18 Jul 2009 09:04:02 +0000 (10:04 +0100)]
Merge commit 'Dieterbe/experimental' into new_experimental

14 years agoTake argv[1] as URI.
Tom Adams [Sat, 18 Jul 2009 09:02:00 +0000 (10:02 +0100)]
Take argv[1] as URI.

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into clean
Brendan Taylor [Sat, 18 Jul 2009 08:30:55 +0000 (02:30 -0600)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into clean

14 years agocall set_mode_indicator after updating the whatever_indicator setting
Brendan Taylor [Sat, 18 Jul 2009 08:04:35 +0000 (02:04 -0600)]
call set_mode_indicator after updating the whatever_indicator setting

14 years agoMerge commit 'holizz/new_experimental' into experimental
Dieter Plaetinck [Sat, 18 Jul 2009 07:33:47 +0000 (09:33 +0200)]
Merge commit 'holizz/new_experimental' into experimental

14 years agouzbl.scan RIP.
Tom Adams [Fri, 17 Jul 2009 21:35:08 +0000 (22:35 +0100)]
uzbl.scan RIP.

14 years agoi heard fluxbox supports tabs too
Dieter Plaetinck [Fri, 17 Jul 2009 21:07:47 +0000 (23:07 +0200)]
i heard fluxbox supports tabs too

14 years agodocument fixes + document all variables/constants in readme, so example config can...
Dieter Plaetinck [Fri, 17 Jul 2009 20:37:12 +0000 (22:37 +0200)]
document fixes + document all variables/constants in readme, so example config can be a bit cleaner

14 years agomerge in bct's sweet code
Dieter Plaetinck [Fri, 17 Jul 2009 19:15:21 +0000 (21:15 +0200)]
merge in bct's sweet code

14 years agocredit uranther for test framework
Dieter Plaetinck [Fri, 17 Jul 2009 16:32:09 +0000 (18:32 +0200)]
credit uranther for test framework

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental
Mason Larobina [Fri, 17 Jul 2009 15:14:24 +0000 (23:14 +0800)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental

14 years agoUse built-in os.makedirs instead of homemade mkdirs function.
Mason Larobina [Fri, 17 Jul 2009 15:11:24 +0000 (23:11 +0800)]
Use built-in os.makedirs instead of homemade mkdirs function.

14 years agoremove out-of-date test-1.c
Brendan Taylor [Fri, 17 Jul 2009 00:01:46 +0000 (18:01 -0600)]
remove out-of-date test-1.c

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand...
Brendan Taylor [Fri, 17 Jul 2009 00:01:24 +0000 (18:01 -0600)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand-template

Conflicts:
Makefile
tests/Makefile
uzbl.c
uzbl.h

14 years agorevert commit cdbe169f to make date for history handler back in same format
Dieter Plaetinck [Thu, 16 Jul 2009 20:51:48 +0000 (22:51 +0200)]
revert commit cdbe169f to make date for history handler back in same format

14 years agomerge uranthers stuff
Dieter Plaetinck [Thu, 16 Jul 2009 20:44:34 +0000 (22:44 +0200)]
merge uranthers stuff

14 years agoAdded back in code to check if fifo exists, in case user wants to 'set fifo_dir ...
uranther [Thu, 16 Jul 2009 20:27:18 +0000 (16:27 -0400)]
Added back in code to check if fifo exists, in case user wants to 'set fifo_dir =' while uzbl is running

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental
Mason Larobina [Thu, 16 Jul 2009 14:17:44 +0000 (22:17 +0800)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand...
Brendan Taylor [Thu, 16 Jul 2009 00:16:26 +0000 (18:16 -0600)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand-template

14 years agoChanged my instructions for unit tests in docs/CONTRIBUTING
uranther [Wed, 15 Jul 2009 21:27:19 +0000 (17:27 -0400)]
Changed my instructions for unit tests in docs/CONTRIBUTING

14 years agoRemove more trailing whitespace
uranther [Wed, 15 Jul 2009 21:21:12 +0000 (17:21 -0400)]
Remove more trailing whitespace

14 years agoMerge commit 'holizz/whitespace' into experimental
Dieter Plaetinck [Wed, 15 Jul 2009 20:12:10 +0000 (22:12 +0200)]
Merge commit 'holizz/whitespace' into experimental

14 years agomerge in the00z his ${!8} fix for posix sh
Dieter Plaetinck [Wed, 15 Jul 2009 19:19:53 +0000 (21:19 +0200)]
merge in the00z his ${!8} fix for posix sh

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand...
Brendan Taylor [Tue, 14 Jul 2009 23:56:02 +0000 (17:56 -0600)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand-template

Conflicts:
Makefile

14 years agoAdd note about whitespace to docs/CONTRIBUTING.
Tom Adams [Tue, 14 Jul 2009 21:45:58 +0000 (22:45 +0100)]
Add note about whitespace to docs/CONTRIBUTING.

14 years agoWhitespace fixes. And ignore whitespace in formfiller data files.
Tom Adams [Tue, 14 Jul 2009 21:35:49 +0000 (22:35 +0100)]
Whitespace fixes. And ignore whitespace in formfiller data files.

14 years agoAdded instructions in CONTRIBUTING to remind developers to write unit tests for bugfi...
uranther [Tue, 14 Jul 2009 21:09:39 +0000 (17:09 -0400)]
Added instructions in CONTRIBUTING to remind developers to write unit tests for bugfixes and new functionality

14 years agoRan :%s/ $//g to remove trailing spaces in uzbl.h and uzbl.c
uranther [Tue, 14 Jul 2009 21:05:46 +0000 (17:05 -0400)]
Ran :%s/ $//g to remove trailing spaces in uzbl.h and uzbl.c

14 years agoUpdated CFLAGS and LDFLAGS in tests/Makefile. TODO: Find a way for those variables...
uranther [Tue, 14 Jul 2009 21:03:48 +0000 (17:03 -0400)]
Updated CFLAGS and LDFLAGS in tests/Makefile. TODO: Find a way for those variables to be inherited or passed to the tests/Makefile.

14 years agoMerge commit 'Dieterbe/experimental' into experimental
uranther [Tue, 14 Jul 2009 20:48:51 +0000 (16:48 -0400)]
Merge commit 'Dieterbe/experimental' into experimental

14 years agoRemoved 'quit' command to exit from uzbl
uranther [Tue, 14 Jul 2009 20:48:29 +0000 (16:48 -0400)]
Removed 'quit' command to exit from uzbl

14 years agoRemoved commented section of Makefile that would produce XML/HTML reports of unit...
uranther [Tue, 14 Jul 2009 20:28:29 +0000 (16:28 -0400)]
Removed commented section of Makefile that would produce XML/HTML reports of unit tests

14 years agoupdate authors file
Dieter Plaetinck [Tue, 14 Jul 2009 20:14:27 +0000 (22:14 +0200)]
update authors file

14 years agomerge 1 from the00z. examples/data/uzbl/scripts/yank.sh is still bash, this should...
Dieter Plaetinck [Tue, 14 Jul 2009 20:05:48 +0000 (22:05 +0200)]
merge 1 from the00z. examples/data/uzbl/scripts/yank.sh is still bash, this should become fixed in next merge commit

14 years agoMerge commit 'Dieterbe/experimental' into experimental
uranther [Tue, 14 Jul 2009 19:45:37 +0000 (15:45 -0400)]
Merge commit 'Dieterbe/experimental' into experimental

14 years agofix typo
Robert Manea [Tue, 14 Jul 2009 04:48:00 +0000 (06:48 +0200)]
fix typo

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand...
Brendan Taylor [Mon, 13 Jul 2009 23:00:18 +0000 (17:00 -0600)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand-template

14 years agoMerge with Dieterbe/experimental
uranther [Mon, 13 Jul 2009 12:45:15 +0000 (08:45 -0400)]
Merge with Dieterbe/experimental

14 years agotidy up move to expand()
Robert Manea [Mon, 13 Jul 2009 06:55:35 +0000 (08:55 +0200)]
tidy up move to expand()

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental
Mason Larobina [Mon, 13 Jul 2009 03:56:24 +0000 (11:56 +0800)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental

14 years agocookies.py now fits in with the new arguments, and works better.
Tom Adams [Sun, 12 Jul 2009 21:22:49 +0000 (22:22 +0100)]
cookies.py now fits in with the new arguments, and works better.

14 years agoAdd request address scheme to cookie_handler's arguments.
Tom Adams [Sun, 12 Jul 2009 20:54:21 +0000 (21:54 +0100)]
Add request address scheme to cookie_handler's arguments.

14 years agoMerge commit 'Dieterbe/experimental' into new_experimental
Tom Adams [Sun, 12 Jul 2009 20:50:28 +0000 (21:50 +0100)]
Merge commit 'Dieterbe/experimental' into new_experimental

14 years agomore fixes
Robert Manea [Sun, 12 Jul 2009 20:37:16 +0000 (22:37 +0200)]
more fixes

14 years agofix conflicts agains bct
Robert Manea [Sun, 12 Jul 2009 20:35:03 +0000 (22:35 +0200)]
fix conflicts agains bct

14 years ago"set keycmd = x" is now equivalent to "keycmd x"
Brendan Taylor [Sun, 12 Jul 2009 19:52:34 +0000 (13:52 -0600)]
"set keycmd = x" is now equivalent to "keycmd x"

14 years agodocument bugreporting
Dieter Plaetinck [Sun, 12 Jul 2009 19:48:08 +0000 (21:48 +0200)]
document bugreporting

14 years agoupdate mode indicator when @insert_mode is set
Brendan Taylor [Sun, 12 Jul 2009 19:38:02 +0000 (13:38 -0600)]
update mode indicator when @insert_mode is set

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into the00z
Abel `00z' Camarillo [Sun, 12 Jul 2009 19:29:00 +0000 (14:29 -0500)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into the00z

14 years agoreplace that ugly ${!8} bashism
Abel `00z' Camarillo [Sun, 12 Jul 2009 19:21:50 +0000 (14:21 -0500)]
replace that ugly ${!8} bashism

14 years agoupdated readme and example config
Brendan Taylor [Sun, 12 Jul 2009 19:09:45 +0000 (13:09 -0600)]
updated readme and example config

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand...
Brendan Taylor [Sun, 12 Jul 2009 18:28:20 +0000 (12:28 -0600)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand-template

14 years agoget rid of some duplication in expand()
Brendan Taylor [Sun, 12 Jul 2009 18:27:58 +0000 (12:27 -0600)]
get rid of some duplication in expand()

14 years agomake keycmd a variable. new escape expansion syntax. delete
Brendan Taylor [Sun, 12 Jul 2009 18:23:24 +0000 (12:23 -0600)]
make keycmd a variable. new escape expansion syntax. delete
expand_template entirely.

14 years agouse $VISUAL in formfiller.sh
Tassilo Horn [Sun, 12 Jul 2009 17:19:56 +0000 (19:19 +0200)]
use $VISUAL in formfiller.sh

14 years agofix pull
Robert Manea [Sun, 12 Jul 2009 15:45:55 +0000 (17:45 +0200)]
fix pull

14 years agostyle changes, line breaks
Robert Manea [Sun, 12 Jul 2009 15:43:29 +0000 (17:43 +0200)]
style changes, line breaks

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental
Mason Larobina [Sun, 12 Jul 2009 03:40:49 +0000 (11:40 +0800)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into experimental

14 years agoMerge branch 'experimental' into the00z
Abel `00z' Camarillo [Sat, 11 Jul 2009 20:51:42 +0000 (15:51 -0500)]
Merge branch 'experimental' into the00z

14 years agofixed uri_override and verbose_override positioning
Brendan Taylor [Sat, 11 Jul 2009 18:11:59 +0000 (12:11 -0600)]
fixed uri_override and verbose_override positioning

14 years agoMerge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand...
Brendan Taylor [Sat, 11 Jul 2009 16:44:18 +0000 (10:44 -0600)]
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand-template

Conflicts:
uzbl.c