diff options
-rw-r--r-- | cgitrc.5.txt | 47 | ||||
-rwxr-xr-x | filters/commit-links.sh | 11 | ||||
-rwxr-xr-x | filters/syntax-highlighting.sh | 11 |
3 files changed, 64 insertions, 5 deletions
diff --git a/cgitrc.5.txt b/cgitrc.5.txt index c3698a6..60539d7 100644 --- a/cgitrc.5.txt +++ b/cgitrc.5.txt | |||
@@ -31,7 +31,7 @@ about-filter:: | |||
31 | about pages (both top-level and for each repository). The command will | 31 | about pages (both top-level and for each repository). The command will |
32 | get the content of the about-file on its STDIN, and the STDOUT from the | 32 | get the content of the about-file on its STDIN, and the STDOUT from the |
33 | command will be included verbatim on the about page. Default value: | 33 | command will be included verbatim on the about page. Default value: |
34 | none. | 34 | none. See also: "FILTER API". |
35 | 35 | ||
36 | agefile:: | 36 | agefile:: |
37 | Specifies a path, relative to each repository path, which can be used | 37 | Specifies a path, relative to each repository path, which can be used |
@@ -81,6 +81,7 @@ commit-filter:: | |||
81 | The command will get the message on its STDIN, and the STDOUT from the | 81 | The command will get the message on its STDIN, and the STDOUT from the |
82 | command will be included verbatim as the commit message, i.e. this can | 82 | command will be included verbatim as the commit message, i.e. this can |
83 | be used to implement bugtracker integration. Default value: none. | 83 | be used to implement bugtracker integration. Default value: none. |
84 | See also: "FILTER API". | ||
84 | 85 | ||
85 | css:: | 86 | css:: |
86 | Url which specifies the css document to include in all cgit pages. | 87 | Url which specifies the css document to include in all cgit pages. |
@@ -316,7 +317,7 @@ source-filter:: | |||
316 | and the name of the blob as its only command line argument. The STDOUT | 317 | and the name of the blob as its only command line argument. The STDOUT |
317 | from the command will be included verbatim as the blob contents, i.e. | 318 | from the command will be included verbatim as the blob contents, i.e. |
318 | this can be used to implement e.g. syntax highlighting. Default value: | 319 | this can be used to implement e.g. syntax highlighting. Default value: |
319 | none. | 320 | none. See also: "FILTER API". |
320 | 321 | ||
321 | summary-branches:: | 322 | summary-branches:: |
322 | Specifies the number of branches to display in the repository "summary" | 323 | Specifies the number of branches to display in the repository "summary" |
@@ -349,7 +350,7 @@ REPOSITORY SETTINGS | |||
349 | ------------------- | 350 | ------------------- |
350 | repo.about-filter:: | 351 | repo.about-filter:: |
351 | Override the default about-filter. Default value: none. See also: | 352 | Override the default about-filter. Default value: none. See also: |
352 | "enable-filter-overrides". | 353 | "enable-filter-overrides". See also: "FILTER API". |
353 | 354 | ||
354 | repo.clone-url:: | 355 | repo.clone-url:: |
355 | A list of space-separated urls which can be used to clone this repo. | 356 | A list of space-separated urls which can be used to clone this repo. |
@@ -357,7 +358,7 @@ repo.clone-url:: | |||
357 | 358 | ||
358 | repo.commit-filter:: | 359 | repo.commit-filter:: |
359 | Override the default commit-filter. Default value: none. See also: | 360 | Override the default commit-filter. Default value: none. See also: |
360 | "enable-filter-overrides". | 361 | "enable-filter-overrides". See also: "FILTER API". |
361 | 362 | ||
362 | repo.defbranch:: | 363 | repo.defbranch:: |
363 | The name of the default branch for this repository. If no such branch | 364 | The name of the default branch for this repository. If no such branch |
@@ -428,7 +429,7 @@ repo.section:: | |||
428 | 429 | ||
429 | repo.source-filter:: | 430 | repo.source-filter:: |
430 | Override the default source-filter. Default value: none. See also: | 431 | Override the default source-filter. Default value: none. See also: |
431 | "enable-filter-overrides". | 432 | "enable-filter-overrides". See also: "FILTER API". |
432 | 433 | ||
433 | repo.url:: | 434 | repo.url:: |
434 | The relative url used to access the repository. This must be the first | 435 | The relative url used to access the repository. This must be the first |
@@ -448,6 +449,42 @@ Note: the "repo." prefix is dropped from the option names in repo-specific | |||
448 | config files, e.g. "repo.desc" becomes "desc". | 449 | config files, e.g. "repo.desc" becomes "desc". |
449 | 450 | ||
450 | 451 | ||
452 | FILTER API | ||
453 | ---------- | ||
454 | - about filter:: | ||
455 | This filter is given no arguments. | ||
456 | The about text that is to be filtered is available on standard input and the | ||
457 | filtered text is expected on standard output. | ||
458 | - commit filter:: | ||
459 | This filter is given no arguments. | ||
460 | The commit message text that is to be filtered is available on standard input | ||
461 | and the filtered text is expected on standard output. | ||
462 | - source filter:: | ||
463 | This filter is given a single parameter: the filename of the source file to | ||
464 | filter. The filter can use the filename to determine (for example) the syntax | ||
465 | highlighting mode. | ||
466 | The contents of the source file that is to be filtered is available on | ||
467 | standard input and the filtered contents is expected on standard output. | ||
468 | |||
469 | Also, all filters are handed the following environment variables: | ||
470 | - CGIT_REPO_URL ( = repo.url setting ) | ||
471 | - CGIT_REPO_NAME ( = repo.name setting ) | ||
472 | - CGIT_REPO_PATH ( = repo.path setting ) | ||
473 | - CGIT_REPO_OWNER ( = repo.owner setting ) | ||
474 | - CGIT_REPO_DEFBRANCH ( = repo.defbranch setting ) | ||
475 | - CGIT_REPO_SECTION ( = section setting ) | ||
476 | - CGIT_REPO_CLONE_URL ( = repo.clone-url setting ) | ||
477 | |||
478 | If a setting is not defined for a repository and the corresponding global | ||
479 | setting is also not defined (if applicable), then the corresponding | ||
480 | environment variable will be an empty string. | ||
481 | |||
482 | Note that under normal circumstance all these environment variables are | ||
483 | defined. If however the total size of the defined settings exceed the | ||
484 | allocated buffer within cgit then only the environment variables that fit | ||
485 | in the allocated buffer are handed to the filter. | ||
486 | |||
487 | |||
451 | EXAMPLE CGITRC FILE | 488 | EXAMPLE CGITRC FILE |
452 | ------------------- | 489 | ------------------- |
453 | 490 | ||
diff --git a/filters/commit-links.sh b/filters/commit-links.sh index 110c609..d2cd2b3 100755 --- a/filters/commit-links.sh +++ b/filters/commit-links.sh | |||
@@ -3,6 +3,17 @@ | |||
3 | # | 3 | # |
4 | # To use this script, refer to this file with either the commit-filter or the | 4 | # To use this script, refer to this file with either the commit-filter or the |
5 | # repo.commit-filter options in cgitrc. | 5 | # repo.commit-filter options in cgitrc. |
6 | # | ||
7 | # The following environment variables can be used to retrieve the configuration | ||
8 | # of the repository for which this script is called: | ||
9 | # CGIT_REPO_URL ( = repo.url setting ) | ||
10 | # CGIT_REPO_NAME ( = repo.name setting ) | ||
11 | # CGIT_REPO_PATH ( = repo.path setting ) | ||
12 | # CGIT_REPO_OWNER ( = repo.owner setting ) | ||
13 | # CGIT_REPO_DEFBRANCH ( = repo.defbranch setting ) | ||
14 | # CGIT_REPO_SECTION ( = section setting ) | ||
15 | # CGIT_REPO_CLONE_URL ( = repo.clone-url setting ) | ||
16 | # | ||
6 | 17 | ||
7 | # This expression generates links to commits referenced by their SHA1. | 18 | # This expression generates links to commits referenced by their SHA1. |
8 | regex=$regex' | 19 | regex=$regex' |
diff --git a/filters/syntax-highlighting.sh b/filters/syntax-highlighting.sh index 6b1c576..6283ce9 100755 --- a/filters/syntax-highlighting.sh +++ b/filters/syntax-highlighting.sh | |||
@@ -23,6 +23,17 @@ | |||
23 | # table.blob .kwb { color:#830000; } | 23 | # table.blob .kwb { color:#830000; } |
24 | # table.blob .kwc { color:#000000; font-weight:bold; } | 24 | # table.blob .kwc { color:#000000; font-weight:bold; } |
25 | # table.blob .kwd { color:#010181; } | 25 | # table.blob .kwd { color:#010181; } |
26 | # | ||
27 | # The following environment variables can be used to retrieve the configuration | ||
28 | # of the repository for which this script is called: | ||
29 | # CGIT_REPO_URL ( = repo.url setting ) | ||
30 | # CGIT_REPO_NAME ( = repo.name setting ) | ||
31 | # CGIT_REPO_PATH ( = repo.path setting ) | ||
32 | # CGIT_REPO_OWNER ( = repo.owner setting ) | ||
33 | # CGIT_REPO_DEFBRANCH ( = repo.defbranch setting ) | ||
34 | # CGIT_REPO_SECTION ( = section setting ) | ||
35 | # CGIT_REPO_CLONE_URL ( = repo.clone-url setting ) | ||
36 | # | ||
26 | 37 | ||
27 | # store filename and extension in local vars | 38 | # store filename and extension in local vars |
28 | BASENAME="$1" | 39 | BASENAME="$1" |