changeset 29:b61fe6b0ebe1

add anchors to strip.html
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 29 Dec 2011 23:20:12 -0800
parents 2df31d088583
children 5a3945882d04
files montage/templates/strip.html setup.py
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/montage/templates/strip.html	Sun Oct 30 14:47:09 2011 -0700
+++ b/montage/templates/strip.html	Thu Dec 29 23:20:12 2011 -0800
@@ -13,6 +13,7 @@
     <center>
     <py:for each="index, image in enumerate(files)">
       <div class="image">
+        <a name="${image['name']}"/>
         <a href="${image['link']}">
           <img src="${image['path']}" width="${width or None}" height="${height or None}"/>
         </a>
--- a/setup.py	Sun Oct 30 14:47:09 2011 -0700
+++ b/setup.py	Thu Dec 29 23:20:12 2011 -0800
@@ -1,7 +1,7 @@
 import os
 from setuptools import setup, find_packages
 
-version = '0.3.3'
+version = '0.3.4'
 
 try:
     description = file(os.path.join(os.path.dirname(__file__), 'README.txt')).read()