summaryrefslogtreecommitdiffstats
path: root/config.def.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Adapted buttonrelease()Gravatar Quentin Rameau 2015-11-201-2/+2
| | | | | | | Use the current hit test (c->mousepos) to determine where the mouse pointer is. It is possible to link an action to a click and still propagate the event after that by setting the “stop event” parameter of a Button to 0.
* Modify the context name of the hit testsGravatar Quentin Rameau 2015-11-201-7/+7
| | | | These relate more to the position of the pointer when an event occurs.
* Move all necessary initialisation to newview()Gravatar Quentin Rameau 2015-11-201-1/+1
| | | | | Most all the settings and callbacks are set before view creation. Create a related view (with inherited settings) if asked to.
* Remove source(), it has been removed from webkit2gtkGravatar Quentin Rameau 2015-11-181-1/+0
| | | | | WebKit2GTK doesn't provide a direct way to view source anymore, we'll have to do that ourselves with a GtkSourceView if we still need that.
* Port surf to gtk3Gravatar Quentin Rameau 2015-11-171-44/+44
|
* Be more specific about what enablestyles parameter does.Gravatar Quentin Rameau 2015-11-031-1/+1
| | | | | | | The enablestyles configuration variable and parameter flag manages the global application of styles, not just the site-specific styles. Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Style changes in config.def.h.Gravatar Christoph Lohmann 2015-10-311-65/+65
|
* Fix atom value parsing in SETPROPGravatar Quentin Rameau 2015-10-131-1/+3
| | | | | | | | xprop(1) encloses the returned atom string value in double quotes while it doesn't when the value is unset. Original simple parsing would fail and parse the atom name instead of getting an empty value. Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Fix type of strictssl property.Gravatar Quentin Rameau 2015-07-131-1/+1
| | | | Thanks to Mark Edgar <medgar123@gmail.com> for having spotted this.
* allow buttonrelease customization in config.hGravatar Markus Teich 2015-02-101-0/+10
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Add some description for the plumb feature.Gravatar Christoph Lohmann 2015-01-191-0/+3
|
* Add plumbing functionality.Gravatar Christoph Lohmann 2015-01-191-0/+7
|
* Add a comment about how the styles are iterated.Gravatar Christoph Lohmann 2015-01-181-0/+4
| | | | Thanks quing for noticing.
* Adding disk cache support for soup.Gravatar Christoph Lohmann 2015-01-171-8/+11
| | | | This is a merge of the patch of Ben Woolley <tautolog@gmail.com>
* Major styles update.Gravatar Christoph Lohmann 2015-01-171-1/+8
| | | | | | In config.h there is now some styles array to apply site-specific styles. This can be toggled using the -mM flags. If a stylefile is manually specified, then this will overwrite everything.
* fix some indentation in config.def.hGravatar Markus Teich 2014-02-281-8/+8
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Change the accept no third party in the doc to the right meaning.Gravatar Christoph Lohmann 2014-01-301-1/+1
|
* Add a way to define the cookie policy.Gravatar Christoph Lohmann 2014-01-301-6/+12
| | | | | | | | | This adds the -a flag to define a string of the toggle string for the cookie policy modes. There is now a new »cookiepolicies« string in config.h and the Mod+Shift+a now can toggle the policy but will not cause a reload, because this would only add a burden when toggling through accept and not accept. Thanks Quentin Rameau <quinq.ml@gmail.com> for the suggestions!
* Add zoom level support.Gravatar Christoph Lohmann 2013-10-191-1/+2
|
* Add fullscreen mode as flag and config option.Gravatar Christoph Lohmann 2013-08-251-0/+1
|
* applied Nick's 96dpi patch, thanksGravatar Anselm R Garbe 2013-07-201-0/+1
|
* Allowing geo location policy decisions.Gravatar Christoph Lohmann 2013-04-281-0/+2
|
* Add an option to disable the indicators.Gravatar Christoph Lohmann 2013-04-141-0/+1
|
* Ensure curl follows redirects for downloadsGravatar Nick White 2013-03-311-1/+1
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* A typo in SETPROP macro: should be ``printf %b'', not ``printf''.Gravatar Alexander Sedov 2013-03-301-1/+1
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Fixed SETPROP() macro behaviour in config.def.h to handle escapes correctly.Gravatar Alexander Sedov 2013-03-211-1/+1
| | | | | | | | | | | xprop prints information in format PROPERTY(STRING) = "escaped string", which causes problem with repeated Ctrl-F: any non-ascii turns into \ooo\ooo, this later turns into \\ooo\\ooo, and so on. To de-escape string, printf(1) is used, getting information from xargs -0; without -0 xargs will try to handle escapes by itself and also do shenanigans with quotes, which is totally undesired. Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Adding a default font size option.Gravatar Christoph Lohmann 2013-03-141-0/+2
| | | | Thanks Alexander Sedov <alex0player@gmail.com>!
* Adding kiosk mode.Gravatar Christoph Lohmann 2013-03-111-0/+1
| | | | Thanks to Christian Hesse <mail@eworm.de>!
* disable/toggle scrollbarsGravatar Carlos J. Torres 2013-02-251-0/+2
| | | | | | | | | | | | | * add flag to main * add flag to manual * add signal handler to block default scrollbar policy * add toggle of scrollbars (hacky - but no reload) with a twitch * add key map to manual * add commandline flag to children surfers * update TODO * sort stuff alphabetically for the style inquisition Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Add a toggle command for the stylefile.Gravatar Christoph Lohmann 2013-02-161-0/+1
| | | | | | The patch adds some better formatting for the manpage too. Thanks to Nick <suckless-dev@njw.me.uk> for the toggle patch!
* fix DOWNLOAD macro to use cookiefile variableGravatar Carlos J. Torres 2013-02-131-3/+2
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Removed progress indicatorGravatar Jens Nyberg 2013-02-121-7/+0
| | | | | | | | | | This removes the progress indicator and replaces it with letters in the window title. T/U: Trusted, Untrusted P/-: Proxy, No proxy Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Fixing cookie handling for https/http by using curl.Gravatar Christoph Lohmann 2013-02-021-4/+5
|
* Making more than one Modkey to work in keys.Gravatar Christoph Lohmann 2013-01-261-0/+4
|
* Adding web inspector support to surf.Gravatar Christoph Lohmann 2013-01-261-2/+7
| | | | Thanks Gregor Best <gbe@ring0.de>!
* Changing the default DOWNLOAD to use st.Gravatar Christoph Lohmann 2012-12-041-1/+1
|
* Implementing fullscreen mode. Thanks Krol, Willem van de!Gravatar Christoph Lohmann 2012-12-031-0/+1
|
* Resolving some conflicts in the shortcuts.Gravatar Christoph Lohmann 2012-12-021-1/+8
|
* Making zoom available when used in tabbed.Gravatar Christoph Lohmann 2012-12-021-0/+2
|
* Fix some styling in the config.def.h, fix the DOWNLOAD macro and unify theGravatar Christoph Lohmann 2012-11-201-10/+16
| | | variable naming a bit.
* Add a referer argument to the DOWNLOAD macro. Some sites need this. ThanksGravatar Christoph Lohmann 2012-11-201-3/+9
| | | Hiltjo Posthuma!
* Useragent strings do not count anymore. This is adding some text so everyGravatar Christoph Lohmann 2012-11-161-1/+3
| | | | | website (especially Google) is fooled to believe us to be compatible. The right way seems to be to add Surf at the end and let the big guys handle their useragent header war.
* Adding a surf-open.sh script for easier tabbed(1) integration.Gravatar Christoph Lohmann 2012-11-161-0/+2
|
* Moving some preprocessor config options to the standard suckless style.Gravatar Christoph Lohmann 2012-11-161-3/+2
|
* Adding back the Escape to stop loading the current page. Thanks Daniel BaintonGravatar Christoph Lohmann 2012-11-161-0/+1
| | | for the notice!
* Removing the insert mode. It will only confuse users. The stop() function isGravatar Christoph Lohmann 2012-11-161-2/+0
| | | kept like the eval() function because it could be used in config.h
* Enable the insert mode. Thanks to stanio@cs.tu-berlin.de!Gravatar Christoph Lohmann 2012-11-151-0/+1
|
* Importing the generic toggle patch of stanio@cs.tu-berlin.de. Thanks!Gravatar Christoph Lohmann 2012-11-151-0/+4
|
* Changing the config.def.h to fit the new buildpath() behaviour.Gravatar Christoph Lohmann 2012-10-311-3/+3
|
* Add different progress colors when using proxy.Gravatar Christoph Lohmann 2012-10-311-2/+6
|