Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ llgal (0.13.15)

llgal (0.13.14)

* Add German translation, thanks Thomas Heßling!
* Add German translation, thanks Thomas Heßling!
* Add Italian translation, thanks Gianelle Alessio!

-- Brice Goglin <Brice.Goglin@ens-lyon.org> Sun, 18 Nov 2007 16:20:00 +0100
Expand Down Expand Up @@ -226,14 +226,14 @@ llgal (0.13.6)

* Fix a major bug in slides' layout, which led to always use text-slide
style even for images, making the margins wrong.
* Fix the locale of gettext translations (such as "Pr�c�dent" in French)
* Fix the locale of gettext translations (such as "Précédent" in French)
by adding missing headers in the po files (thanks to Samuel Thibault
for the fix and Nicolas Gu�not for the report).
for the fix and Nicolas Guénot for the report).
* Fix linking between subgalleries when making no slides.
* Fix computing of thumbnail row width when deciding how many thumbnails
to output on a row, use the correct width for padded thumbnail boxes.
* Fix missing link from listed text in the index to the corresponding
text slide when -L is passed (reported by �milie Le Roux).
text slide when -L is passed (reported by Émilie Le Roux).
* Fix uninitialized dimensions string when not generating any slide.
* Fix verbose configuration option definition in recursive mode since
it was breaking generated config file (reported by Gerfried Fuchs).
Expand Down Expand Up @@ -274,7 +274,7 @@ llgal (0.13.5)

* When linking to galleries, add the index filename to the URL so
that these links work even without a web server
(thanks to Michael Waschb�sch for the patch).
(thanks to Michael Waschbüsch for the patch).
* Document how to add keyboard shortcuts to the gallery with
HTML accesskeys (see the How-To file).
* Various fix for links to previous/next galleries:
Expand Down Expand Up @@ -661,7 +661,7 @@ llgal (0.11)
+ Don't use basename anymore, always use the whole filename instead.
+ When possible, the HTML title parameter is in href instead of img.
* Cleanup location and copying of special llgal files
(requested by Lo�s Taulelle) :
(requested by Loïs Taulelle) :
+ index/slidetemplate.html are not copied to .llgal anymore.
+ The user might put a special revision of index/slidetemplate.html
in .llgal, llgal will use it.
Expand Down
6 changes: 4 additions & 2 deletions data/slidetemplate.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
works just compare the template file with a generated slide. -->

<p class="center">
<a href="<!--PREV-SLIDE-->"><!--PREV-SLIDE-LINK-TEXT--></a>
<a id="get-to-prev" href="<!--PREV-SLIDE-->"><!--PREV-SLIDE-LINK-TEXT--></a>
&nbsp; &nbsp; &nbsp;
<a href="<!--INDEX-FILE-->"><!--INDEX-LINK-TEXT--></a>
&nbsp; &nbsp; &nbsp;
<a href="<!--NEXT-SLIDE-->"><!--NEXT-SLIDE-LINK-TEXT--></a>
<a id="get-to-next" href="<!--NEXT-SLIDE-->"><!--NEXT-SLIDE-LINK-TEXT--></a>
</p>

<div class="center"><table class="slide"><tr><td class="<!--THIS-SLIDE-STYLE-->">
Expand All @@ -47,5 +47,7 @@
<!--EXIF-TABLE-->
</div>

<script>document.onkeydown=function(e){e=e||window.event;if(e.keyCode=='37'){document.getElementById('get-to-prev').click();}else if(e.keyCode=='39'){document.getElementById('get-to-next').click();}}</script>

</body>
</html>
5 changes: 3 additions & 2 deletions doc/examples/dynamic_comments_in_slides/slidetemplate.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
works just compare the template file with a generated slide. -->

<p class="center">
<a href="<!--PREV-SLIDE-->"><!--PREV-SLIDE-LINK-TEXT--></a>
<a id="get-to-prev" href="<!--PREV-SLIDE-->"><!--PREV-SLIDE-LINK-TEXT--></a>
&nbsp; &nbsp; &nbsp;
<a href="<!--INDEX-FILE-->"><!--INDEX-LINK-TEXT--></a>
&nbsp; &nbsp; &nbsp;
<a href="<!--NEXT-SLIDE-->"><!--NEXT-SLIDE-LINK-TEXT--></a>
<a id="get-to-next" href="<!--NEXT-SLIDE-->"><!--NEXT-SLIDE-LINK-TEXT--></a>
</p>

<div class="center"><table class="slide"><tr><td class="<!--THIS-SLIDE-STYLE-->">
Expand Down Expand Up @@ -68,5 +68,6 @@

<!-- END OF STUFF TO LET PEOPLE DYNAMICALLY ADD COMMENTS TO THE SLIDE -->

<script>document.onkeydown=function(e){e=e||window.event;if(e.keyCode=='37'){document.getElementById('get-to-prev').click();}else if(e.keyCode=='39'){document.getElementById('get-to-next').click();}}</script>
</body>
</html>