finished graphs
[phpgitweb.git] / htdocs / config.example.php
index f33327883a91b8ff8da28f73c3704a0bd05fec86..6b3bdc4656dcc5891e6e7d8ab03c7cc2c6f3f3f4 100644 (file)
@@ -41,11 +41,22 @@ class GitConfig {
        /* Override Project Owner to this one */
        const PROJECT_OWNER = NULL;
        
+       /* Git Base URL (The URL where all the repositories can be cloned from.) */
+       //static public $GIT_BASE_URL = NULL;
+       static public $GIT_BASE_URL = array("git://git.example.net");
+       
        /* Template name */
        const TEMPLATE_NAME = NULL;
        
        /* Git executable */
        const GIT_EXEC = NULL; /* autodetect */
+       
+       /* GIT Graphs */
+       const GITGRAPH_ENABLE = true;
+       const GITGRAPH_MAX_BRANCHES = 20;
+       const GITGRAPH_END_SIZE = 20;
+       const GITGRAPH_TILE_SIZE = 20;
+       const GITGRAPH_BASE64 = true;
 }
 
 ?>
\ No newline at end of file