Ignore:
Timestamp:
07/14/08 22:15:37 (4 years ago)
Author:
kimparsell
Message:

All themes:
+ All pages validate XHTML Strict (ticket #166 -  http://dev.plogger.org/ticket/166)
+ Stylesheet validates to CSS level 2.1
+ Changed code for action= in comments form tag (original code would not validate due to the ampersand (&) in the url not being shown as & in the code)
+ Added alt tag for large image in picture.php per ticket #171 ( http://dev.plogger.org/ticket/171)
+ Added actions class to stylesheets for moderation message
+ Removed generate_slideshow_interface function from slideshow.php (now in plog-functions.php)
+ Reworked markup to conform to new theme code requirements
+ Cleaned up markup
Air theme - Added function to comments.php, if comments are moderated, to show moderation message
Lucid theme:
+ Added function to comments.php, if comments are moderated, to show moderation message
+ Cleaned up markup
+ Hyperlinked collection and album names per ticket #172 ( http://dev.plogger.org/ticket/172)
Default theme:
+ Confirmed fix in place to resolve ticket #163 ( http://dev.plogger.org/ticket/163)
+ Reorganized/commented gallery.css
+ Cleaned up markup
plog-functions.php:
+ Function added to provide meta-tags with keywords and descriptions using collection name/description, album name/description, image caption/description (default keyword is gallery name, default description is "This is my Plogger gallery" and can be changed by end user) (original code by sidetheduck in  http://plogger.org/forum/discussion/1954/how-to-get-dynamic-contents/#Item_9) (requested in per ticket #172 ( http://dev.plogger.org/ticket/172)
+ Added generate_slideshow_interface function (previously in slideshow.php in each theme)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/plog-content/themes/default/footer.php

    r552 r557  
    1 <?php 
    2          
     1        </div><!-- /main container --> 
     2<?php echo plogger_download_selected_form_end(); ?> 
    33 
    4         print '</div>'; 
     4        <div id="pagination"> 
     5                <table id="pagination-table"> 
     6                        <tr> 
     7                                <td><?php echo plogger_slideshow_link(); ?></td> 
     8                                <td><?php echo plogger_pagination_control(); ?></td> 
     9                                <td id="sortby-container"><?php echo plogger_sort_control(); ?></td>  
     10                                <td id="rss-tag-container"><?php echo plogger_rss_feed_button(); ?></td> 
     11                        </tr> 
     12                </table> 
     13        </div><!-- /pagination --> 
    514 
    6         print plogger_download_selected_form_end(); 
     15<?php echo plogger_link_back(); ?> 
    716 
    8         print ' <div id="pagination"> 
    9                                 <table style="width: 100%;"> 
    10                                         <tr> 
    11             <td>'.plogger_slideshow_link().'</td> 
    12                                                 <td>'.plogger_pagination_control().'</td> 
    13                                                 <td id="sortby-container">'.plogger_sort_control().'</td>  
    14                                                 <td id="rss-tag-container">'.plogger_rss_feed_button().'</td> 
    15                                         </tr> 
    16                                 </table> 
    17                         </div>'."\n"; 
    18  
    19         print plogger_link_back(); 
    20  
    21         print '</div>'; 
    22 ?> 
     17</div><!-- /wrapper --> 
Note: See TracChangeset for help on using the changeset viewer.