pages/projects/degal.tmpl
author Tero Marttila <terom@fixme.fi>
Sun, 14 Sep 2014 12:56:10 +0300
changeset 55 eabf155f5327
parent 53 158854761213
permissions -rw-r--r--
pages proejcts/degal: typofix
53
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     1
<%
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     2
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     3
import os
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     4
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     5
RELEASE_PATH = "/home/projects/degal/releases"
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     6
RELEASE_URL = "http://projects.qmsk.net/degal/releases"
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     7
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     8
# load release links
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     9
releases = []
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    10
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    11
for filename in os.listdir(RELEASE_PATH) :
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    12
    if filename.startswith('.') :
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    13
        continue
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    14
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    15
    path = os.path.join(RELEASE_PATH, filename)
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    16
    url = "%s/%s" % (RELEASE_URL, filename)
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    17
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    18
    releases.append((filename, url))
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    19
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    20
releases.sort()
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    21
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    22
%>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    23
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    24
<h1>Degal</h1>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    25
    <h2>About</h2>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    26
        <p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    27
            <strong>Degal</strong> is a HTML photo gallery script written in Python.
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    28
        </p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    29
    
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    30
    <h2>History</h2>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    31
        <p>
55
eabf155f5327 pages proejcts/degal: typofix
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
    32
            Degal was originally based on a similar HTML gallery script called <a href="http://pajukanta.fi/projects/egal/">EGAL</a>,
53
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    33
            written by Santtu Pajukanta, rewritten to add more features such as support for sub-folders (!).
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    34
        </p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    35
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    36
        <p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    37
            Releases 0.1 - 0.2 remained fairly simplistic single-module scripts which were manageable, but development
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    38
            in the old SVN repository quickly split the code up into a package. At this point the packaging and
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    39
            structure quickly fell apart, with the resulting code and CGI scripts being barely useable by myself.
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    40
        </p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    41
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    42
        <p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    43
            In early summer 2009, I picked up development again, heavily refactoring the old svn code into a (hopefully)
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    44
            better structure.
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    45
        </p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    46
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    47
        <p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    48
            Currently, the only releases are still from the old first-generation era, but hopefully we should be seeing a
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    49
            third-generation release fairly soon :)
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    50
        </p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    51
    
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    52
    <h2>Features</h2>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    53
        <ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    54
            <li>Generate static per-folder/img .html files for a directory tree</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    55
            <li>Generate thumbnail and preview versions of each image</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    56
        </ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    57
 
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    58
    <h2>Download</h2>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    59
        <h3>Release versions</h3>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    60
            <ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    61
            % for filename, url in releases :
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    62
                <li><a href="${url}">${filename}</a></li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    63
            % endfor
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    64
            </ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    65
            
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    66
        <h3>Development version</h3>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    67
            <code>hg clone http://hg.qmsk.net/degal</code>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    68
    
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    69
    <h2>Installation and usage (for release versions)</h2>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    70
        <p>Extract the archive file and move these files and directories to where your images are:</p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    71
        <ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    72
            <li>.htaccess</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    73
            <li>degal.py</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    74
            <li>utils.py</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    75
            <li>shorturl.cgi</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    76
            <li>style.css</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    77
            <li>templates/</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    78
        </ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    79
        <p>If you wish to use ShortURLs and run DeGAL with mod_userdir, you may need to modify the .htaccess to set the RewriteBase.</p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    80
        <p>If you now execute degal.py on the command line, it will scan through your images, create thumbnails, preview images, as well as generate the HTML gallery pages.</p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    81
        <p>Gallery (directory) titles may optionaly be specified in a file called title.txt in each directory. If present, it should contain a short title that will be used for all links to that gallery. You may also add a longer description (after the title, seperated by three dashes, ---, extra whitespace will be stripped away) which will be shown on the directory's index page.</p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    82
        <p>The same may be done for induvidual images (replace the file extension with .txt, i.e. DSC0001.jpg becomes DSC0001.txt) whereupon the URL for the image will use a simplified version of the image's title.</p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    83
        <p>It is also possible to specify a list of directories/files to index as command-line arguments to degal.py, in which case it will only process those files. Note that a directory index will only be updated if the directory itself is included in the filter.</p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    84
        
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    85
   
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    86
    <h2>Requirements</h2>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    87
        <h3>Release version / Development core</h3>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    88
            <ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    89
                <li><a href="http://www.python.org/">Python</a> 2.5</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    90
                <li><a href="http://www.pythonware.com/products/pil/">PIL</a> 1.1.6</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    91
            </ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    92
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    93
        <h3>Development optional</h3>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    94
            <ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    95
                <li><a href="http://tilloy.net/dev/pyexiv2/">pyexiv2</a></li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    96
                <li><a href="http://sourceforge.net/projects/exif-py">EXIFpy</a></li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    97
            </ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    98
    
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    99
    <h2>Changelog</h2>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   100
        <ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   101
            <li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   102
                0.2
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   103
                <ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   104
                    <li>Added ShortURL feature</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   105
                    <li>Added ability to specify a list of files to update on the command line</li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   106
                </ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   107
            </li>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   108
        </ul>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   109
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   110
    <h2>Links</h2>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   111
        <h3>Source Repository</h3>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   112
            <p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   113
                Mercurial: <a href="http://hg.qmsk.net/degal">http://hg.qmsk.net/degal</a>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   114
            </p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   115
            
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   116
        <h3>Example Gallery</h3>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   117
            <p>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   118
                <a href="http://photos.qmsk.net/">http://photos.qmsk.net/</a>
158854761213 write degal page, tweak h1/h2/h3 styles, tweak other pages to use those, add missing spbot.html page
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
   119
            </p>