summaryrefslogtreecommitdiff
path: root/libproxy/modules
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix Build on Mac OS X - Fixes bug 183dominique.leuenberger@gmail.com2013-08-271-3/+3
|
* Simlplify object cleanup.dominique.leuenberger@gmail.com2013-08-261-3/+1
| | | | | g_object_unref() does a good enough job for us. Fixes bug 192.
* pxgsettings: rename "client" object to "settings", to follow GSettings ↵dominique.leuenberger@gmail.com2013-02-091-8/+8
| | | | guidelines and forget GConf
* Detect MATE session.dominique.leuenberger@gmail.com2013-02-091-1/+3
|
* Fix mix usage of new[] and newnicolas.dufresne@gmail.com2012-07-051-4/+4
|
* Don't use HTTP Connect for http:// schemenicolas.dufresne@gmail.com2012-07-052-2/+2
|
* Fix return NULL instead of falsenicolas.dufresne@gmail.com2012-07-051-1/+1
|
* Allow multiple result to be returned from static confignicolas.dufresne@gmail.com2012-07-0511-160/+181
|
* Fix build with gcc 4.7. Fixes issue 173dominique.leuenberger@gmail.com2012-03-094-0/+6
|
* Fix issue 171: Argumets of dnsResolve_() are wrongdominique.leuenberger@gmail.com2012-03-091-1/+1
|
* print suffix even if the list is emptynicolas.dufresne2011-07-281-1/+3
|
* Issue 150: Add sysconfig parser for distributions using /etc/sysconfig for ↵dominique.leuenberger@gmail.com2011-06-031-0/+165
| | | | their 'admin' suites (openSUSE/SLE/EduLife for example The module is enabled when libproxy is being built on a system that has /etc/sysconfig to be found
* Fix issue 162: IP/CIDR based ignore patterns were mis-interpreted.dominique.leuenberger@gmail.com2011-05-191-5/+11
|
* pacutils: syncing function isInNet() (bmo#646509) and dateRange (bmo#419510) ↵dominique.leuenberger@gmail.com2011-05-031-23/+22
| | | | with mozilla source
* Cleanup debug includesdominique.leuenberger@gmail.com2011-05-021-1/+0
|
* Fix issue 161: in case host is one char longer than any of the domain ignore ↵dominique.leuenberger@gmail.com2011-05-021-2/+3
| | | | patterns, it is triggered as a ignore match.
* pxgsettings: =/-1.. counting can be so harddominique.leuenberger@gmail.com2011-05-021-1/+1
|
* Fix missing cast causing wrong type warningnicolas.dufresne2011-05-021-1/+1
|
* pxgsettings: fixed "operation on 'count' may be undefined"dominique.leuenberger@gmail.com2011-05-021-1/+3
|
* pgxconf/pxgsettings: also trap SIGABRT, fix issue 157dominique.leuenberger@gmail.com2011-04-302-2/+2
|
* GNOME3: have a pxgsettings helper and a config_gnome3 moduledominique.leuenberger@gmail.com2011-04-282-0/+468
|
* pacrunner_mozjs: ^Ct's not pretend we support xulrunner < 2.0b12... who ↵dominique.leuenberger@gmail.com2011-03-221-4/+0
| | | | wants new libproxy wants new xul too
* xulrunner2: retry to fix build. This one works with 2.0b12 (will fail with ↵dominique.leuenberger@gmail.com2011-03-221-12/+25
| | | | any xul2 below that... but I honestly think we can safely ignore these beta versions... sorry)
* Revert r786 - This introduces more errors than needed - And even fails ↵dominique.leuenberger@gmail.com2011-03-221-24/+11
| | | | building on xul 1.9
* issue 155: fix build against xulrunner 2.0 (tested up to 2.0b11)dominique.leuenberger@gmail.com2011-02-151-11/+24
|
* cleanup natus pacrunnernpmccallum2011-02-061-11/+3
|
* added natus pacrunnernpmccallum2011-02-061-0/+119
|
* Avoid using static constructor in shared librarynicolas.dufresne2011-01-031-2/+2
|
* Close all uneeded file descriptors in pxgconfnicolas.dufresne2011-01-031-4/+2
| | | | | When we start pxconf we fork but we don't close all the uneeded file descriptors. This has the side effect that any listening socket stays open even if closed by the parent process.
* Ported libproxy to new libmodman API/ABInicolas.dufresne2010-08-1810-17/+19
| | | | This solves issue 133 by using real builtin modules instead of relying on symbols being visible in current process.
* Fix wrong delete operator in config_gnomenicolas.dufresne2010-07-231-1/+1
|
* Fix usage of free instead of delete[]nicolas.dufresne2010-07-221-3/+3
|
* pacrunner_webkit: Don't throw bad_alloc on script errorsnicolas.dufresne2010-06-041-2/+3
|
* Fix Issue 109: Username and password are not encodednicolas.dufresne2010-06-021-2/+2
|
* Added missing includeis in config_gnomenicolas.dufresne2010-06-011-0/+2
| | | | Base on "man 2 stat" config_gnome was missing some include files required when using stat(). This cause build to fail on Fedora 13.
* Don't hang if a gconf key is missingnicolas.dufresne2010-05-171-1/+8
|
* Updated OS X proxy server scheme mapping.nicolas.dufresne2010-04-021-4/+2
| | | | RTSP protocol support proxying and does not rely on another protocol while Gopher relies on HTTP GET.
* Fix FTP to return HTTP for proxy type, and explain what is expected fromnicolas.dufresne2010-04-021-2/+7
| | | | HTTP server. Also improved doc to explain what is expected for HTTPS proxy server,
* Added missing backslash in from of 't'nicolas.dufresne2010-03-291-1/+1
|
* Check that pxgconf file exist before popen()nicolas.dufresne2010-03-291-1/+5
|
* Allow configuring pxgconf path through environment variablenicolas.dufresne2010-03-291-0/+5
|
* Merge branch 'gnome-config'nicolas.dufresne2010-03-291-45/+86
|
* Added {} at the end of loops that does nothingnicolas.dufresne2010-03-291-1/+1
| | | This removes warnings emited by GCC.
* Make config_gnome use O_NONBLOCK instead of FNONBLOCK; patch by raimuenpmccallum2010-03-261-1/+1
|
* remove xhasclient; use envvars to find the desktop sessionnpmccallum2010-03-253-91/+7
|
* don't ignore dup2() retval; fixes issue 97npmccallum2010-03-141-2/+4
|
* fix the webkit mac fix :)npmccallum2010-03-121-1/+1
|
* make config_gnome's pipe reading semantics much saner; avoid infinite loopsnpmccallum2010-03-111-30/+15
|
* fix gcc 4.5 compilation issue; resolves issue 92npmccallum2010-03-101-2/+2
|
* fix missing slashnpmccallum2010-03-091-1/+1
|