Fossil Cookbook
The Fossil Cookbook is a collection of task-oriented instructions for intermediate users who wish to do more than basic operations with their Fossil repositories. The tutorial is a more suitable place for newcomers trying to learn the basic concepts to go first before tackling these recipes.Index
- Server recipes:
- Using Environment variables
- Example CSS
- Source highlighting
- Fossil Win32 Development Machine setup
- Javascript HTML WYSIWYG editor control
Using Fossil's Built-In CGI
Motivation
- You want to share a repository through your existing web infrastructure.
- You want to share more than one repository at the same time.
Problem
Unlike some other distributed SCMs, Fossil can only clone, push, pull and and otherwise interact through repositories over HTTP. This can be simply and easily managed through use of thefossil server
and/or fossil ui
commands, of course, but this is really only adequate for ad-hoc repository sharing. Consider, for example, sharing ten repositories. Using the built-in server would require you to open ten ports in your firewall to permit access. Any serious sharing will require something more robust and permanent, and solutions for doing so are described below.
Solution
Fossil supports three different ways to share repositories. For ad-hoc sharingfossil server/ui
is more than adequate. For more robust solutions, however, the use of (x)inetd or CGI support is indicated.
Setting up fossil for CGI support is simple. (Setting up your web server for CGI support may or may not be simple, but it is out of scope of this recipe. Consult your web server/service provider's documentation for this.)
UNIX
- Find your CGI scripts directory (if applicable). This is commonly something like <base>/cgi-bin/, but does not have to be.
- Inside that directory build a script file which looks like this:
#! /usr/bin/env fossil
repository: /full/path/to/repository/file.fsl - Ensure that the script file so generated is set executable for the CGI user account.
- Ensure that every directory in the path leading to the repository is browseable (chmod +x) to the CGI user account.
- Ensure that the repository file is readable and writable to the CGI user account.
The following bash script can be run from within the directory containing the Fossil repositories to be shared (and, of course, altered for your setup) to set some of the constraints above up automatically:
1 #! /usr/bin/env bash
2 CGI_ROOT=/usr/lib/fossil
3 REPOSITORY_OWNER=michael
4 CGI_GROUP=www-data
5 if [ `whoami` = 'root' ]
6 then
7 for repository in *.fsl
8 do
9 SOURCE=`pwd`/$repository
10 DESTINATION=$CGI_ROOT/${repository%.fsl}
11 echo "#! /usr/bin/env fossil" > $DESTINATION
12 echo "repository: $SOURCE" >> $DESTINATION
13 chown $REPOSITORY_OWNER:$CGI_GROUP $SOURCE
14 chmod 664 $SOURCE
15 chown root:root $DESTINATION
16 chmod 755 $DESTINATION
17 done
18 else
19 sudo $0 $*
20 fi
Here is a little perl script to put in your cgi-bin to list all the fossils you are publishing:
1 #!/usr/bin/perl -w 2 my $CGI_BIN = '/Library/WebServer/CGI-Executables'; 3 my @files = `grep -l repository: $CGI_BIN/* `; 4 print <<EOM; 5 Content-Type: text/html 6 7 Fossils for this server 8 <ul> 9 EOM 10 11 for (@files) { 12 s{.*/}{}; 13 next if /~$/; 14 print "<li><a href='$_'>$_</a></li>\n"; 15 } 16 print "</ul>\n";
The following apache2 configuration can be used to run the root of a web site with fossil, but still allow other services / documents to be reached via specific URLs. Replace "code.autonomo.us" with your site's name and "dclark@pobox.com" with your email.
NameVirtualHost *:80 <VirtualHost *:80> ServerName code.autonomo.us ServerAdmin dclark@pobox.com ErrorLog /var/log/apache2/code.autonomo.us-error.log LogLevel warn CustomLog /var/log/apache2/code.autonomo.us-access.log combined ServerSignature On DocumentRoot /var/www/ ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> # Fossil SCM at root of web site (http://example.com) configuration... RewriteEngine On # RewriteCond - One for every URL we don't want Fossil SCM to serve. In the # example, requests that go to the /var/www/tmp directory and # the /usr/lib/cgi-bin directoty are ignored by Fossil SCM. RewriteCond %{REQUEST_URI} !^/tmp/.*$ RewriteCond %{REQUEST_URI} !^/cgi-bin/.*$ RewriteRule ^(.*)$ /usr/lib/cgi-bin/code.autonomo.us/$1 [T=application/x-httpd-cgi] </VirtualHost>
/usr/lib/cgi-bin/code.autonomo.us is just a standard fossil CGI file; it looks like this:
#!/usr/bin/fossil repository: /srv/fossil-scm/code.autonomo.us.fossil-scm
Another solution to automatically serve multiple repositories
With the following CGI script (I have named it p simply) it is possible to define a location where all the your repositories should be located (in this example: /home/repos/fossil). All the repositories are named according the scheme <project name>.fsl for sake of this example.
If this script is called alone (like e.g.: http://your.server.here/cgi-bin/p), it will list all repositories located under $REPOSROOT, if there does not exist a corresponding file .<project name> (that mechanism is used to hide some repository in the listing).
If the script is called like e.g. http://your.server.here/cgi-bin/p/<project name>, then the corresponding repository will be selected to work with.
The lines 5 - 8 in the script below allow configuration for you needs. You have to chose, what fossil binary to use, what extension your repository databases have and where all your databases are located.
1 #!/bin/sh
2
3 ### Configuration section ###
4
5 TITLE="<h2>Fossil repositories</h2>"
6 FOSSIL=/usr/local/bin/fossil
7 REPOSROOT=/home/repos/fossil
8 REPOSEXT=".fsl"
9
10 ### Processing section -- nothing to configure here! ###
11
12 set -f ; # disable filename globbing
13
14 ## Some helper functions
15
16 HeaderText () {
17 if [ -z "$headerWritten" ]; then
18 echo "Content-type: text/plain; charset=iso-8859-1"
19 echo
20 headerWritten=1
21 fi
22 }
23
24 HeaderHTML () {
25 if [ -z "$headerWritten" ]; then
26 echo "Content-type: text/html; charset=iso-8859-1"
27 echo
28 headerWritten=1
29 fi
30 }
31
32 Error () {
33 HeaderHTML
34 echo "<p><font color="red">ERROR: $1</font></p>"
35 exit 1
36 }
37
38 P () {
39 HeaderText
40 for var in $*; do
41 eval echo $var = "\$$var"
42 done
43 }
44
45 ## Do the real work here ...
46
47 project=`echo $PATH_INFO | sed -e 's!/\([^/]*\).*!\1!'| tr "[A-Z]" "[a-z]"`
48 repos="$REPOSROOT/$project$REPOSEXT"
49
50 if [ -r "$repos" ]; then
51 PATH_INFO=`echo $REQUEST_URI | sed -e "s!^$SCRIPT_NAME/$project\\([^?]*\\).*!\\1!"`
52 : ${PATH_INFO:=/}
53 SCRIPT_NAME=$SCRIPT_NAME/$project
54 TEMPFILE=`mktemp /tmp/fossil-$project.XXXXXX` || Error "Couldn't create tempfile"
55 trap "rm -f $TEMPFILE" EXIT QUIT INT TERM
56 echo repository: $repos > $TEMPFILE
57 $FOSSIL cgi $TEMPFILE
58 elif [ -z "$project" ]; then
59 HeaderHTML
60 echo "$TITLE"
61 echo "<ul>"
62 find $REPOSROOT -name "*$REPOSEXT" | \
63 while read repos; do
64 project=`basename $repos $REPOSEXT`
65 if [ -f $repos -a ! -e $REPOSROOT/.$project ]; then
66 echo "<li><a href='${REQUEST_URI}/$project'>$project</a></li>"
67 fi
68 done
69 echo "</ul>"
70 else
71 Error "No such project: $project"
72 fi
73
74 exit 0
Windows
While it is far from a perfect set of instructions.. here are some quick notes that should help windows users along the way...
- you need fossil.exe accessible by your web server or on your path.. easiest is to just chuck it in \%SYSTEM_ROOT%\ (usually c:\windows\)
- assuming you are running apache, you need to either add the ExecCGI to the options on your DocumentRoot, or make sure the ScriptAlias directive is set and put your .cgi files in that folder..
- the contents of your cgi file needs to essentially the same as above.. however paths needs to be windows friendly.. i have made sure that all folders on my test box are free of spaces, and as such this file works for me (obviously your paths may differ)
#! fossil.exe repository: c:/wamp/www/dev/accounts.fossil
I suppose you could put fossil.exe somewhere more specific and set the path to it as well, but since you are probably using the same executable for cmdline and cgi it kind of just makes sense to put it somewhere more accessible - As with most Windows based web instructions, permission are not as important, however at the least, you need to make sure that your repository is not flagged read-only, as you will encounter database errors if it is.
Discussion
Using the CGI server is the best solution combining an existing web infrastructure and the sharing of many Fossil repositories. Unlike the ad-hoc solution which requires, in effect, a separate port for each simultaneously-shared repository, and which requires several instances of fossil running -- one for each shared repository -- the CGI approach uses URLs to distinguish between repositories and only (briefly) runs a copy of fossil when the repository is actually accessed.Sharing repositories with CGI is really only worth the effort if more than one repository is being shared, however. With only one being shared, fossil server
is likely more than adequate or the use of (x)inetd may be indicated. If, however, there is already an existing web infrastructure in place, CGI still may be preferred if only for consistency and maintainability of the system as a whole.
Using Environment variables
Motivation
- Want to use a different editor for checkins (Unix/Windows)
- Use a proxy if you are behind a firewall
Solution
Environment variables are used to customize some programme behaviour. On Linux/Unix they can be set in you ~/.bashrc or even on command line. On Windows they can be set in the system settings.Fossil checks the following environment variables:
- VISUAL/EDITOR
- http_proxy
- TMP_DIR
- GATEWAY_INTERFACE
- SQLITE_FORCE_PROXY_LOCKING
- USER
- USERNAME
VISUAL/EDITOR contain the editor of your choice that is used to write the commit file.
TMP_DIR specifies the directory for temporary files.
GATEWAY_INTERFACE ???
SQLITE_FORCE_PROXY_LOCKING ???
USER
USERNAME
Example CSS
Motivation
The default UI may not be stylish in everyones eyes. It is up to you to change it. See the CSS code below from this site Wandering Horse
/* General settings for the entire page */ body { margin: 0ex 1ex; padding: 0px; background-color: white; font-family: "sans serif"; } /* Make the links in the footer less ugly... */ a { color: #000f6a; } a:link { color: #000f6a; } a:visited { color: #000f6a; } a:hover { background-color: #e3e3e3; } hr { height: 3px; border-top: none; /*1px dashed #005;*/ border-bottom: 1px dashed #005; border-left: none; border-right: none; } /* The project logo in the upper left-hand corner of each page */ div.logo { display: table-cell; text-align: center; vertical-align: bottom; color: #000f6a; } /* The page title centered at the top of each page */ div.title { display: table-cell; font-size: 2em; font-weight: bold; text-align: center; color: #000f6a; vertical-align: bottom; width: 100%; } /* The login status message in the top right-hand corner */ div.status { display: table-cell; text-align: right; vertical-align: bottom; color: #000f6a; font-size: 0.8em; } /* The header across the top of the page */ div.header { display: table; width: 100%; text-align: center; } /* The main menu bar that appears at the top of the page beneath ** the header */ div.mainmenu { padding: 2px 5px 2px 5px; font-size: 0.9em; text-align: center; letter-spacing: 1px; background-color: #e3e3e3; color: #000f6a; border: 1px inset black; } /* The submenu bar that *sometimes* appears below the main menu */ div.submenu { padding: 2px 5px 2px 5px; font-size: 0.9em; text-align: center; background-color: #e3e3e3; color: #000f6a; } div.mainmenu a, div.mainmenu a:visited, div.submenu a, div.submenu a:visited { padding: 2px 10px 2px 10px; color: #000f6a; background-color: #e3e3e3; text-decoration: none; } div.mainmenu a:hover, div.submenu a:hover { color: #e3e3e3; background-color: #000f6a; } /* All page content from the bottom of the menu or submenu down to ** the footer */ div.content { padding: 0ex 1ex 0ex 2ex; } /* Some pages have section dividers */ div.section { margin-bottom: 0px; margin-top: 1em; padding: 1px 1px 1px 1px; font-size: 1.2em; font-weight: bold; background-color: #e3e3e3; color: #000f6a; } /* The "Date" that occurs on the left hand side of timelines */ div.divider { background-color: #e3e3e3; color: #000f6a; border: 1px #bbbbff solid; font-size: 1em; font-weight: normal; padding: .25em; margin: .2em 0 .2em 0; float: left; clear: left; } /* The footer at the very bottom of the page */ div.footer { font-size: 0.8em; padding: 2px 5px 2px 5px; text-align: center; letter-spacing: 1px; background-color: #e3e3e3; color: #000f6a; border: 1px inset black; } /* Make the links in the footer less ugly... */ div.footer a { color: #000f6a; } div.footer a:link { color: #000f6a; } div.footer a:visited { color: #000f6a; } div.footer a:hover { background-color: #000f6a; color: #e3e3e3; } /* verbatim blocks */ pre.verbatim { background-color: #f5f5f5; padding: 0.5em; } /* The label/value pairs on (for example) the vinfo page */ table.label-value th { vertical-align: top; text-align: right; padding: 0.2ex 2ex; } /* For marking important UI elements which shouldn't be lightly dismissed. I mainly use it to mark "not yet implemented" parts of a page. Whether or not to have a 'border' attribute set is arguable. */ .achtung { color: #ff0000; background: #ffff00; border: 1px solid #ff0000; } table.fossil_db_generic_query_view { border-spacing: 0px; border: 1px solid black; } table.fossil_db_generic_query_view td { padding: 2px 1em 2px 1em; } table.fossil_db_generic_query_view tr { } table.fossil_db_generic_query_view tr.even { background: #ffffff; } table.fossil_db_generic_query_view tr.odd { background: #e5e5e5; } table.fossil_db_generic_query_view tr.header { background: #558195; font-size: 1.5em; color: #ffffff; }
Source highlighting
Motivation
- You want to have source code highlighting for the files in your repository
Problem
The main purpose of Fossil is to do versioning for source code. Although it provides a standalone server and lets you navigate through the repository files additional features like source code highlighting from my perspective (I am not a developer of Fossil) are out of scope for an SCM. Just keep the Unix principle: small little programs that do their task and do it well.However to have source code highlighted in the presented web pages would still be desirable.
Solution
There are two scenarios how to implement such a feature:- Fossil pipes the source code through a filter before sending it to the browser. The filter could be defined as a configuration option to Fossil. One solution for this might be the GNU Source code Highlighting program.
- Use a Javascript library that renders the code within your browser. One solution for this might be Google Syntax Highlighter
I estimate that the pipe solution needs some more work/ code changes. Thus I am solely looking at the Javascript solution.
The SyntaxHighlighter is a library of some Javascript files, a little Flash application and a CSS file. The Flash application is for copying to clipboard, print and view source. You have the option to include all the files into your repository or use the files hosted at Google. The latter may only be an option if you are connected to internet all the time.
For syntax highlighting to work the Header and Footer templates need to be modified and a little code change has to be applied to the Fossil sources. The examples below assume you have added the syntax highlighting library to your repository into a directory www/scripts.
Header
<html> <head> <title>$<project_name>: $<title></title> <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="$baseurl/timeline.rss"> <link rel="stylesheet" href="$baseurl/style.css" type="text/css" media="screen"> <link rel="stylesheet" href="$baseurl/doc/tip/www/SyntaxHighlighter.css" type="text/css" media="screen"> </head>
. . .
Footer
</div> <div class="footer"> Fossil version $manifest_version $manifest_date </div> <script language="javascript" src="$baseurl/doc/tip/www/scripts/shCore.js"></script> <script language="javascript" src="$baseurl/doc/tip/www/scripts/shBrushCpp.js"></script> <script language="javascript"> dp.SyntaxHighlighter.ClipboardSwf = '$baseurl/doc/tip/www/scripts/clipboard.swf'; dp.SyntaxHighlighter.HighlightAll('code'); </script> </body></html>
Fossil/src/info.c function artifact_page
if( zMime==0 ){ @ <pre name="code" class="c"> @ %h(blob_str(&content)) @ </pre>
Discussion
The Javascript solution requires a minimum to be fully supported by Fossil. Of course my litte change only applies for C/C++ files. But only little more work needs to be done to get the extension of the file a guess the file type.The pipe solution would also be nice but would probably need some more work than this little patch.
How to prepare your Windows XP Fossil development Environment
MinGW+NSIS/WiX
Setup TCL
Setup MinGW
Getting NSIS Windows packaging tool
Getting Fossil source code
Build the code with Makefile.win32
Visual Studio Express 2008+WiX
Setup TCL
Setup VS2008
Getting WiX Windows MSI tool
Getting Fossil source code
Build the code with Makefile.win32
Javascript HTML WYSIWYG editor control
Motivation
- You want to edit the wiki pages with a nice editor component, instead of using plain HTML.
Problem
Fossil by itself doesn't support it.Solution
There are pure javascript editor components that can be used for this task. The source for the editor component is added to the repository. The html header or footer is prepared to include a javascript file and/or a CSS.These two tips are from the mailing list: Rene de Zwart 30. Oct. 2009
Source: TinyMCE
Example
mkdir tiny mkdir tiny/javascript fossil new tinymce.fsl fossil ui tinymce.fsl {configure the project) download tinymce unzip in tiny/javascript cd tiny fossil open ../tinymce.fsl fossil add javascript fossil commit -m "added timymce to the project" fossil uiSelect admin/headers add after the </link>
<script type="text/javascript" src="/doc/tip/javascript/tinymce/jscripts/tiny_mce/tiny_mce.js"> </script>and save select admin/footer add above the first line
<script type='text/javascript'> var m = document.getElementsByTagName('textarea') var l = m.length var n for(var i=0 ;i < l;i++){ n = m[i].name if( 'comment' == n || 'cmappnd' == n || "w" == n){ tinyMCE.init({ mode : 'exact' , elements : n, theme: 'advanced' ,width : '90%' } ); } } </script>
Source: Markitup
Example
mkdir markitup mkdir markitup/javascript fossil new markitup.fsl fossil ui markitup.fsl {configure the project) download markitup and jquery unzip in markitup/javascript, cd latest, mv * .., rmdir latest copy jquery-....js to javascript/jquery.js cd markitup fossil open ../markitup.fsl fossil add javascript fossil commit -m "added markitup an jquery to the project" fossil uiselect admin/headers add after the </link> put
<link rel="stylesheet" type="text/css" href="/doc/tip/javascript/markitup/skins/markitup/style.css" /> <link rel="stylesheet" type="text/css" href="/doc/tip/javascript/markitup/sets/default/style.css" /> <script type="text/javascript" src="/doc/tip/javascript/jquery.js"> </script> <script type="text/javascript" src="/doc/tip/javascript/markitup/jquery.markitup.js"> </script>
and save select admin/footer add above the first line
<script type='text/javascript'> var m = document.getElementsByTagName('textarea') var l = m.length var n var mySettings = { nameSpace: "html", // Useful to prevent multi-instances CSS conflict onShiftEnter: {keepDefault:false, replaceWith:'<br />\n'}, onCtrlEnter: {keepDefault:false, openWith:'\n<p>', closeWith:'</p>\n'}, onTab: {keepDefault:false, openWith:' '}, markupSet: [ {name:'Heading 1', key:'1', openWith:'<h1(!( class="[![Class]!]")!)>', closeWith:'</h1>', placeHolder:'Your title here...' }, {name:'Heading 2', key:'2', openWith:'<h2(!( class="[![Class]!]")!)>', closeWith:'</h2>', placeHolder:'Your title here...' }, {name:'Heading 3', key:'3', openWith:'<h3(!( class="[![Class]!]")!)>', closeWith:'</h3>', placeHolder:'Your title here...' }, {name:'Heading 4', key:'4', openWith:'<h4(!( class="[![Class]!]")!)>', closeWith:'</h4>', placeHolder:'Your title here...' }, {name:'Heading 5', key:'5', openWith:'<h5(!( class="[![Class]!]")!)>', closeWith:'</h5>', placeHolder:'Your title here...' }, {name:'Heading 6', key:'6', openWith:'<h6(!( class="[![Class]!]")!)>', closeWith:'</h6>', placeHolder:'Your title here...' }, {name:'Paragraph', openWith:'<p(!( class="[![Class]!]")!)>', closeWith:'</p>' }, {separator:'---------------' }, {name:'Bold', key:'B', openWith:'<strong>', closeWith:'</strong>' }, {name:'Italic', key:'I', openWith:'<em>', closeWith:'</em>' }, {name:'Stroke through', key:'S', openWith:'<del>', closeWith:'</del>' }, {separator:'---------------' }, {name:'Ul', openWith:'<ul>\n', closeWith:'</ul>\n' }, {name:'Ol', openWith:'<ol>\n', closeWith:'</ol>\n' }, {name:'Li', openWith:'<li>', closeWith:'</li>' }, {separator:'---------------' }, {name:'Picture', key:'P', replaceWith:'<img src="[![Source:!:http://]!]" alt="[![Alternative text]!]" />' }, {name:'Link', key:'L', openWith:'<a href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', closeWith:'</a>', placeHolder:'Your text to link...' }, {separator:'---------------' }, {name:'Clean', replaceWith:function(h) { return h.selection.replace(/<(.*?)>/g, "") } }, {name:'Preview', call:'preview', className:'preview' } ] } for(var i=0 ;i < l;i++){ n = m[i].name if( 'comment' == n || 'cmappnd' == n || "w" == n){ m[i].id = n $(document).ready(function() { $("#" + n).markItUp(mySettings); }); } } </script>