summaryrefslogtreecommitdiff
path: root/setup.py (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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
mit message, i.e. the commit message is written to the filters STDIN and the filters STDOUT is included verbatim as the commit message. This can be used to implement commit linking by creating a simple shell script in e.g. /usr/bin/cgit-commit-filter.sh like this: #/bin/sh sed -re 's|\b([0-9a-fA-F]{6,40})\b|<a href="./?id=\1">\1</a>|g' Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-31ui-tree: add support for source-filter optionLars Hjemli4-4/+25 This new option is used to specify an external command which will be executed when displaying blob content in the tree view. Blob content will be written to STDIN of the filter and STDOUT from the filter will be included verbatim in the html output from cgit. The file name of the blob will be passed as the only argument to the filter command. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-31ui-snapshot: use cgit_{open|close}_filter() to execute compressorsLars Hjemli1-28/+7 This simplifies the code in ui-snapshot.c and makes the test-suite verify the new filter-functions. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-31Add generic filter/plugin infrastructureLars Hjemli3-0/+62 The functions cgit_open_filter() and cgit_close_filter() can be used to execute filters on the output stream from cgit. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-25Add support for mime type registration and lookupLars Hjemli4-5/+45 This patch makes it possible to register mappings from filename extension to mime type in cgitrc and use this mapping when returning blob content in `plain` view. The reason for adding this mapping to cgitrc (as opposed to parsing something like /etc/mime.types) is to allow quick lookup of a limited number of filename extensions (/etc/mime-types on my machine currently contains over 700 entries). NB: A nice addition to this patch would be to parse /etc/mime.types when `plain` view is requested for a file with an extension for which there is no mapping registered in cgitrc. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-25cgit.h: keep config flags sortedLars Hjemli1-2/+2 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-25cgitrc.5.txt: document 'embedded' and 'noheader'Lars Hjemli1-0/+9 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-25Add support for 'noheader' optionLars Hjemli3-7/+16 This option can be used to disable the standard cgit page header, which might be useful in combination with the 'embedded' option. Suggested-by: Mark Constable <markc@renta.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-25cgitrc.5.txt: document 'head-include'Lars Hjemli1-0/+4 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-25ui-blob: return 'application/octet-stream' for binary blobsLars Hjemli1-1/+7 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-07-25ui-plain: Return 'application/octet-stream' for binary files.Remko Tronçon1-1/+4 Signed-off-by: Remko Tronçon <git@el-tramo.be> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-06-11use cgit_httpscheme() for atom feedDiego Ongaro2-3/+6 2009-06-11add cgit_httpscheme() -> http:// or https://Diego Ongaro2-0/+12 2009-06-07Return http statuscode 404 on unknown branchLars Hjemli3-0/+6 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-06-07Add head-include configuration option.Mark Lodato3-1/+6 This patch adds an option to the configuration file, "head-include", which works just like "header" or "footer", except the content is put into the HTML's <head> tag. 2009-03-15CGIT 0.8.2.1v0.8.2.1Lars Hjemli1-1/+1 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-03-15Fix doc-related glitches in Makefile and .gitignoreLars Hjemli2-1/+6 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-03-15ui-snapshot: avoid segfault when no filename is specifiedLars Hjemli1-6/+17 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-03-15fix segfault when displaying empty blobsEric Wong1-5/+8 When size is zero, subtracting one from it turns it into ULONG_MAX which causes an out-of-bounds access on buf. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-19Add support for HEAD requestsLars Hjemli2-0/+7 This is a quick 'n dirty hack which makes cgit honor HEAD requests. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-19Add support for ETag in 'plain' viewLars Hjemli4-0/+5 When downloading a blob identified by its path, the client might want to know if the blob has been modified since a previous download of the same path. To this end, an ETag containing the blob SHA1 seems to be ideal. Todo: add support for HEAD requests... Suggested-by: Owen Taylor <otaylor@redhat.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-12ui-tree: escape ascii-text properly in hexdump viewLars Hjemli1-4/+9 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-12Makefile: add doc-related targetsLars Hjemli1-2/+17 Signed-off-by: Lars Hjemli <hjemli@gmail.com>