about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Ugh. I guess I'll have to do a lot of these. This fixes the socketJosh Rickmar2012-06-011-1/+1
| | | | command running on the wrong tab.
* Fix some random stuff the rebasing lost. At least the build stillJosh Rickmar2012-06-013-0/+33
| | | | | works, will have to check later to make sure all the other features got in.
* Make all runtime settings unsettable by using the ':set setting ='Josh Rickmar2012-06-013-228/+443
| | | | command. This will reset the value to its default.
* Add a cmd_alias feature to set an alias for a :command, and documentJosh Rickmar2012-06-014-20/+130
| | | | it in the manpage.
* Add a custom_uri setting to check if a URI should be handled by anJosh Rickmar2012-06-014-2/+124
| | | | | external script rather then through xombrero. This makes it possible to use scripts to support things such as mailto URIs. Fixes FS#253
* Modify some example code from thib for better tilde expansion and useJosh Rickmar2012-06-011-23/+4
| | | | it for all the times we need to expand a tilde in a file path.
* Fix the behavior of show_url and fancy_bar so they actually act likeJosh Rickmar2012-06-016-121/+101
| | | | | | the manpage says they do. Setting show_url = 1 and fancy_bar = 0 will now only display the url bar on the toolbar and not draw the buttons and search box.
* Parse keybound commands for if they begin with a ':'. If they do,Josh Rickmar2012-06-014-65/+81
| | | | | | | | | | | | don't try to execute them, but instead open a prompt with that current command. Can be used to create custom prompts, and should fix FS#233. This change also adds the ability to replace strings in keybound prompts. So far the only string replacement is <uri> which is replaced by the current tab's uri. This also kills the old prompt* commands as they only existed so they could be bound to a key. However with the addition of the <uri> substitution, these are no longer necessary. Document these changes in the manpage.
* Run the socket command on the current tab, not the last one. ThisJosh Rickmar2012-06-011-1/+1
| | | | fixes FS#251.
* add os_init to generic unix.c file, move it when neededMarco Peereboom2012-06-011-0/+3
|
* move os_init to right before read configMarco Peereboom2012-05-311-3/+4
|
* add home dir to about:aboutMarco Peereboom2012-05-311-0/+2
|
* add an os init functionunknown2012-05-312-0/+5
|
* Prepare for release 1.0.0.Marco Peereboom2012-05-301-1/+1
|
* Xombrero -> xombreroMarco Peereboom2012-05-302-6/+6
|
* roll version back to 0.0.0Marco Peereboom2012-05-301-1/+1
|
* Add my copyright to the files I've added code toJosh Rickmar2012-05-304-0/+4
|
* Add an about:search page to notify users we are not in a position toJosh Rickmar2012-05-255-14/+204
| | | | | recommend any search engine. Save their choice to runtime, and document how runtime is being read in the manpage.
* Be sure to clear any show_oops messages before navigating to a newJosh Rickmar2012-05-241-0/+1
| | | | URL. This wasn't working before with the back/forward buttons.
* Truncate the startofday file before writing the current version to it.Josh Rickmar2012-05-231-1/+2
| | | | Noticed and patched by henrix@camandro.org.
* Prevent a double freeJosh Rickmar2012-05-211-1/+3
|
* gdk_flush -> GDK_FLUSH in run_scripts_lockedDavid Hill2012-05-181-1/+1
|
* Prevent a nasty bug where saved certificates were not being completelyJosh Rickmar2012-05-181-1/+1
| | | | | | checked for differences. This will cause the URL bar to be colored red if there are any differences between a saved and remote certificate.
* remove a couple of long long variables that confuse various compilerMarco Peereboom2012-05-181-4/+6
|
* add un.h in required locationsMarco Peereboom2012-05-181-0/+4
|
* make xombrero compile on windowsMarco Peereboom2012-05-172-6/+8
|
* Prepare for release 1.0.0.Marco Peereboom2012-05-171-1/+1
|
* Make sure include_config is alphabetical in the manpage with the restJosh Rickmar2012-05-171-24/+24
| | | | of the settings
* more xxxterm->xombreroOwain G. Ainsworth2012-05-171-2/+2
|
* rename xxxterm to xomreroMarco Peereboom2012-05-1736-146/+133
|
* Add a setting to read additional config files from any other configJosh Rickmar2012-05-163-3/+43
| | | | file and document it. This fixes FS#238.
* Add a setting to show download notifications via show_oops (default 0)Josh Rickmar2012-05-165-3/+28
| | | | and document it in the manpage.
* make gdk_flush compile time conditionalMarco Peereboom2012-05-161-0/+8
|
* make gdk_flush compile time conditionalMarco Peereboom2012-05-161-3/+3
|
* rewrite mutex implementation to fix some subtle bugs, also add some more ↵Marco Peereboom2012-05-161-41/+49
| | | | locking in places to prevent buggy mutex message (diagnosed by jrick)
* conditionally use pkg-config javascriptcoregtk-1.0Marco Peereboom2012-05-161-3/+6
|
* Revert "Do a show_oops when a download is finished"Josh Rickmar2012-05-161-2/+0
| | | | | | | This reverts commit da2bf7c6e80c0835b2a7791c2a6998f570b4c91f. Marco says no. I'll add a knob to trigger this and the download starting notification.
* Do a show_oops when a download is finishedJosh Rickmar2012-05-161-0/+2
|
* add some links as to where all this magic came fromMarco Peereboom2012-05-151-0/+4
|
* add gdk_flush per doco and call XInitThreads per some posting on the netMarco Peereboom2012-05-152-0/+5
|
* -g instead of -ggdb3Marco Peereboom2012-05-151-1/+1
|
* Merge branch 'master' of ssh://opensource.conformal.com/git/xxxtermMarco Peereboom2012-05-153-5/+35
|\
| * Remove encoding as a runtime setting for nowJosh Rickmar2012-05-151-2/+10
| |
| * Make enable_js_autorun a runtime setting. Missed this one before asJosh Rickmar2012-05-151-1/+15
| | | | | | | | it wasn't mentioned in the manpage.
| * Add a simple example for enable_js_autorun to the manpageJosh Rickmar2012-05-151-0/+8
| |
| * Fix the behavior of search_string so it matches the manpage. An emptyJosh Rickmar2012-05-151-2/+2
| | | | | | | | | | | | search_string now will not cause the search box to be drawn, and if search_string is dynamically changed at runtime to "\0", a show_oops warning is shown instead of loading the "broken" page.
* | add a missing got done; found by dhill and was sitting in my treeMarco Peereboom2012-05-151-1/+1
|/
* Rename js_autorun_enabled to enable_js_autorun and document the usage in the ↵Josh Rickmar2012-05-114-4/+19
| | | | manpage
* Make most of the rest of the settings dynamic.Josh Rickmar2012-05-113-60/+613
|
* tld_get_suffix will return NULL on bad input. Don't pass this toJosh Rickmar2012-05-101-1/+2
| | | | strcmp() unless we check for NULL first.