aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
| * | link raw blob from tree file viewGravatar Michael Krelin2007-07-22-0/+4
| | | | | | | | | | | | Signed-off-by: Michael Krelin <hacker@klever.net>
| * | fix: changed view link to blob in summary.Gravatar Michael Krelin2007-07-22-1/+1
| | | | | | | | | | | | | | | | | | | | | might not be the best way, but should suffice for now that view command isn't handled in any way Signed-off-by: Michael Krelin <hacker@klever.net>
| * | allow selective enabling of snapshotsGravatar Michael Krelin2007-07-22-15/+48
| | | | | | | | | | | | | | | | | | | | | | | | snapshot configuration parameter now can be a space/slash/comma/colon/semicolon/pipe-separated list of snaphot suffixes as listed in ui-snapshot.c Signed-off-by: Michael Krelin <hacker@klever.net>
| * | shorten snapshot names to repo basenameGravatar Michael Krelin2007-07-21-2/+3
| | | | | | | | | | | | Signed-off-by: Michael Krelin <hacker@klever.net>
| * | introduce cgit_repobasenameGravatar Michael Krelin2007-07-21-0/+26
| | | | | | | | | | | | | | | | | | | | | that shortens reponame stripping any directories and .git suffixes, that is turning 'dir/repo.git/' or 'dir/repo/.git/' or alikes into mere 'repo'. Signed-off-by: Michael Krelin <hacker@klever.net>
| * | added snapshot filename to the linkGravatar Michael Krelin2007-07-21-5/+16
| | | | | | | | | | | | | | | | | | | | | - changed cgit_pageurl into cgit_fileurl with the filename parameter - rewritten cgit_pageurl as a wrapper around cgit_fileurl Signed-off-by: Michael Krelin <hacker@klever.net>
| * | add plain uncompressed tar snapshort formatGravatar Michael Krelin2007-07-21-1/+2
| | | | | | | | | | | | | | | | | | time to make available snapshots selectable Signed-off-by: Michael Krelin <hacker@klever.net>
| * | introduced .tar.bz2 snapshotsGravatar Michael Krelin2007-07-21-31/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - reworked write_tar_gzip_archive to handle arbitrary filter as a write_compressed_tar_archive - reformatted whitespaces in the said function to adhere to common cgit standards - added wrappers around write_compressed_tar_archive for .tar.gz and .tar.bz2 - added a hint for vim to use 8 characters shift width by default Signed-off-by: Michael Krelin <hacker@klever.net>
| * | compress .tar.gz using gzip as a filterGravatar Michael Krelin2007-07-21-1/+37
| | |
| * | added a chk_non_negative checkGravatar Michael Krelin2007-07-21-0/+8
| | |
| * | css: adjust vertical-align of commit info th cellsGravatar Michael Krelin2007-07-18-0/+1
| | |
| * | add support for snapshot tarballsGravatar Michael Krelin2007-07-18-37/+55
| | | | | | | | | | | | | | | | | | | | | - reworked cgit_print_snapshot to use a list of supported archivers and pick one for the suffix supplied - moved printing of snaphot links into ui-snapshot and make it iterate through the said list
* | | Add ui-tag.cGravatar Lars Hjemli2007-07-23-32/+111
|/ / | | | | | | | | | | | | This file implements the tag-command, i.e. printing of annotated tags. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | make gen-version.sh run even if . is not in PATHGravatar Michael Krelin2007-07-04-1/+1
| | | | | | | | | | Signed-off-by: Michael Krelin <hacker@klever.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | make config adjustable via env variable CGIT_CONFIGGravatar Michael Krelin2007-07-04-1/+3
| | | | | | | | | | Signed-off-by: Michael Krelin <hacker@klever.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | Merge branch 'lh/menu'Gravatar Lars Hjemli2007-06-30-53/+145
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lh/menu: Add ofs argument to cgit_log_link and use it in ui-log.c Add trim_end() and use it to remove trailing slashes from repo paths Do not include current path in the "tree" menu link Add setting to enable/disable extra links on index page Change S/L/T to summary/log/tree Change "files" to "tree" Include querystring as part of cached filename for repo summary page Add more menuitems on repo pages
| * | Add ofs argument to cgit_log_link and use it in ui-log.cGravatar Lars Hjemli2007-06-30-16/+30
| | | | | | | | | | | | | | | | | | | | | This fixes a bug in the prev/next links on the log page: when on the default branch the links to prev/next page would contain h=(null). Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Add trim_end() and use it to remove trailing slashes from repo pathsGravatar Lars Hjemli2007-06-27-2/+25
| | | | | | | | | | | | | | | | | | | | | | | | The new function removes all trailing instances of an arbitrary character from a copy of the supplied char array. This is then used to remove any trailing slashes from cgit_query_path. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Do not include current path in the "tree" menu linkGravatar Lars Hjemli2007-06-27-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | When generating the menu links on repo pages the tree link included the current path. This made the link pretty useless whenever the current path was set so this commit just passes NULL instead. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Add setting to enable/disable extra links on index pageGravatar Lars Hjemli2007-06-19-12/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The summary/log/tree links displayed for each repository on the index page lost some of their purpose when the header menu was added, so this commit introduces the parameter 'enable-index-links' which must be set to 1 to enable these links. Suggested-by: Kristian Høgsberg <krh@bitplanet.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Change S/L/T to summary/log/treeGravatar Lars Hjemli2007-06-19-9/+10
| | | | | | | | | | | | | | | | | | | | | | | | In yet another attempt at better usability, the cryptic S/L/T links are changed to show their full name. Suggested-by: Kristian Høgsberg <krh@bitplanet.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | Change "files" to "tree"Gravatar Lars Hjemli2007-06-19-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | This renames the menu link and the shortcut on the repo index page from the strange "files" to the more gittish "tree". Suggested-by: Kristian Høgsberg <krh@bitplanet.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| *