summaryrefslogtreecommitdiff
path: root/setup.py (follow)
Commit message (Expand)AuthorAgeFilesLines
* Install .menuRené 'Necoro' Neumann2009-09-061-1/+1
* Screw debugging ... prefer the ctypes approach to get rid of yet another c-mo...René 'Necoro' Neumann2009-09-031-4/+1
* Add small wrapper to C-gettextRené 'Necoro' Neumann2009-09-031-1/+4
* Renamed 'mq' to 'ipc'René 'Necoro' Neumann2009-08-151-1/+1
* Add module to setup.pyRené 'Necoro' Neumann2009-08-151-7/+4
* Also allow --enable-eixRené 'Necoro' Neumann2009-08-151-1/+1
* Also allow --enable-eixRené 'Necoro' Neumann2009-08-151-0/+3
* Allow to disable eix in setup.pyRené 'Necoro' Neumann2009-08-141-8/+17
* Correct setup.pyRené 'Necoro' Neumann2009-08-141-2/+17
* Moved from Cython to normal PythonRené 'Necoro' Neumann2009-07-271-8/+2
* Add libeix to setup.pyRené 'Necoro' Neumann2009-07-261-2/+9
* Install package_details.pyRené 'Necoro' Neumann2009-07-051-1/+1
* Fixed pyflakes errorsRené 'Necoro' Neumann2009-04-071-2/+2
* Update manpage creationRené 'Necoro' Neumann2009-03-251-2/+4
* Added build_manpage support. Moved all the startup logic from portato.py to p...René 'Necoro' Neumann2009-03-241-1/+4
* Do not import unused ExtensionRené 'Necoro' Neumann2009-03-171-1/+1
* Last transition stepsRené 'Necoro' Neumann2009-02-181-1/+1
* It is always a nice idea to install the stuff you need....René 'Necoro' Neumann2009-02-171-1/+1
* Same copyright statement in all filesRené 'Necoro' Neumann2009-02-071-1/+1
* Switch from tabs to 4 spacesRené 'Necoro' Neumann2008-09-021-14/+14
* Added the reload_portage pluginRené 'Necoro' Neumann2008-07-081-1/+1
* Updated setup.py to install the correct set of pluginsRené 'Necoro' Neumann2008-07-031-3/+2
* Removed legacy pluginsRené 'Necoro' Neumann2008-06-081-1/+1
* Removed _shm and now only use the one in portage; do not install catapult bac...René 'Necoro' Neumann2008-05-021-113/+3
* install dbus_init pluginRené 'Necoro' Neumann2008-03-191-1/+1
* Removed gtk subdirRené 'Necoro' Neumann2008-03-181-8/+6
* Install glade files into template dir and not data dirRené 'Necoro' Neumann2008-03-051-1/+1
* Applied splitRené 'Necoro' Neumann2008-02-291-10/+1
* r798@Devoty: necoro | 2008-02-26 21:36:42 +0100Necoro2008-02-261-2/+0
* testRené 'Necoro' Neumann2008-02-261-0/+2
* r643@Devoty: necoro | 2008-01-16 18:55:49 +0100Necoro2008-01-181-3/+3
* r634@Devoty: necoro | 2008-01-14 23:48:24 +0100Necoro2008-01-141-1/+4
* r605@Devoty: necoro | 2008-01-14 11:43:34 +0100Necoro2008-01-141-1/+94
* Changing backNecoro2007-10-241-2/+2
* r31@Devoty: necoro | 2007-10-24 23:44:38 +0200Necoro2007-10-241-2/+2
* r30@Devoty: necoro | 2007-10-24 23:44:12 +0200Necoro2007-10-241-2/+2
* remove ebuild.lang -> is now in the normal gtksourceviewNecoro2007-10-241-1/+1
* bundled shm moduleNecoro2007-10-221-4/+16
* added tooltips, added ebuild.lang, restructured constantsNecoro2007-10-151-2/+2
* forgot catapult package in setup.pyNecoro2007-10-081-1/+1
* small fixesNecoro2007-10-041-1/+1
* new Plugin Schemenecoro2007-07-201-2/+2
* added resume_loop pluginnecoro2007-07-091-1/+1
* Some documentation worknecoro2007-07-071-1/+18
* added shutdown pluginnecoro2007-07-051-1/+1
* added shutdown pluginnecoro2007-07-051-2/+5
* reverted back to png, but now using the image in the svgnecoro2007-06-121-1/+1
* bug in setup.pynecoro2007-06-121-1/+1
* added svg-iconnecoro2007-06-121-1/+1
* some more fixed bugsnecoro2007-04-261-1/+1
highlight'> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-10Add license file and copyright noticesLars Hjemli5-0/+372 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-10Add caching infrastructureLars Hjemli9-28/+353 This enables internal caching of page output. Page requests are split into four groups: 1) repo listing (front page) 2) repo summary 3) repo pages w/symbolic references in query string 4) repo pages w/constant sha1's in query string Each group has a TTL specified in minutes. When a page is requested, a cached filename is stat(2)'ed and st_mtime is compared to time(2). If TTL has expired (or the file didn't exist), the cached file is regenerated. When generating a cached file, locking is used to avoid parallell processing of the request. If multiple processes tries to aquire the same lock, the ones who fail to get the lock serves the (expired) cached file. If the cached file don't exist, the process instead calls sched_yield(2) before restarting the request processing. Signed-off-by: Lars Hjemli <hjemli@gmail.com>