summaryrefslogtreecommitdiff
path: root/setup.py (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* trying the new gtksourceviewnecoro2007-04-261-1/+1
* add application icon and desktop filenecoro2007-04-241-2/+2
* moved *.glade and *.ui to one directory to omit the change of the config.py e...necoro2007-04-241-3/+5
* First qt draftnecoro2007-04-061-0/+5
* First plugin supportnecoro2007-03-101-1/+1
* Back to our own revision solution as the eclass-one checks _before_ updatingnecoro2007-02-191-1/+1
* - Added iconsnecoro2007-01-241-7/+18
* Renamed to portatonecoro2006-11-241-4/+4
* Bug in setup.pynecoro2006-11-061-1/+1
* Rewritten the gtk-gui to use gladenecoro2006-11-061-4/+3
* added encodingnecoro2006-10-271-0/+1
* Moved gtk-specific stuff to an extra subdir to make it more flexible for qtnecoro2006-10-271-1/+1
* Changed all occurences of "Necoro d.M." into "René 'Necoro' Neumann"necoro2006-10-261-1/+1
* Corrected setup.pynecoro2006-09-291-1/+1
* Added licence informations.necoro2006-09-191-2/+3
* Removed our own threading-module ...necoro2006-09-171-4/+4
* Typo -.-necoro2006-09-151-1/+1
nal 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>