Author: sevein
Date: Sun Oct 24 03:36:31 2010
New Revision: 8405

Log:
Fix typo.

Modified:
   trunk/apps/qubit/modules/informationobject/templates/_relatedEvents.php
   trunk/apps/qubit/modules/physicalobject/templates/boxListSuccess.php
   trunk/apps/qubit/modules/search/templates/indexSuccess.php
   trunk/apps/qubit/modules/term/templates/browseTermSuccess.php
   trunk/apps/qubit/modules/term/templates/deleteSuccess.php
   trunk/plugins/sfEadPlugin/modules/sfEadPlugin/templates/indexSuccess.xml.php
   trunk/plugins/sfIsadPlugin/modules/sfIsadPlugin/templates/fileListSuccess.php

Modified: 
trunk/apps/qubit/modules/informationobject/templates/_relatedEvents.php
==============================================================================
--- trunk/apps/qubit/modules/informationobject/templates/_relatedEvents.php     
Sun Oct 24 03:12:08 2010        (r8404)
+++ trunk/apps/qubit/modules/informationobject/templates/_relatedEvents.php     
Sun Oct 24 03:36:31 2010        (r8405)
@@ -28,7 +28,7 @@
           </div>
         </td><td>
           <div>
-            <?php echo 
Qubit::renderDateStartEnd($item->getDateDisplay(array(cultureFallback => 
true)), $item->startDate, $item->endDate) ?>
+            <?php echo 
Qubit::renderDateStartEnd($item->getDateDisplay(array('cultureFallback' => 
true)), $item->startDate, $item->endDate) ?>
           </div>
         </td><td style="text-align: right">
           <input class="multiDelete" name="deleteEvents[]" type="checkbox" 
value="<?php echo $item->id ?>"/>

Modified: trunk/apps/qubit/modules/physicalobject/templates/boxListSuccess.php
==============================================================================
--- trunk/apps/qubit/modules/physicalobject/templates/boxListSuccess.php        
Sun Oct 24 03:12:08 2010        (r8404)
+++ trunk/apps/qubit/modules/physicalobject/templates/boxListSuccess.php        
Sun Oct 24 03:36:31 2010        (r8405)
@@ -32,7 +32,7 @@
           <ul>
             <?php foreach ($informationObject->getDates() as $date): ?>
               <li>
-                <?php echo 
Qubit::renderDateStartEnd($date->getDateDisplay(array(cultureFallback => 
true)), $date->startDate, $date->endDate) ?> (<?php echo 
$date->getType(array('cultureFallback' => true)) ?>)
+                <?php echo 
Qubit::renderDateStartEnd($date->getDateDisplay(array('cultureFallback' => 
true)), $date->startDate, $date->endDate) ?> (<?php echo 
$date->getType(array('cultureFallback' => true)) ?>)
                 <?php if (isset($date->actor)): ?>
                   <?php echo link_to(render_title($date->actor), 
array($date->actor, 'module' => 'actor')) ?>
                 <?php endif; ?>

Modified: trunk/apps/qubit/modules/search/templates/indexSuccess.php
==============================================================================
--- trunk/apps/qubit/modules/search/templates/indexSuccess.php  Sun Oct 24 
03:12:08 2010        (r8404)
+++ trunk/apps/qubit/modules/search/templates/indexSuccess.php  Sun Oct 24 
03:36:31 2010        (r8405)
@@ -42,7 +42,7 @@
             <ul>
               <?php foreach ($informationObject->getDates() as $date): ?>
                 <li>
-                  <?php echo 
Qubit::renderDateStartEnd($date->getDateDisplay(array(cultureFallback => 
true)), $date->startDate, $date->endDate) ?> (<?php echo 
$date->getType(array('cultureFallback' => true)) ?>)
+                  <?php echo 
Qubit::renderDateStartEnd($date->getDateDisplay(array('cultureFallback' => 
true)), $date->startDate, $date->endDate) ?> (<?php echo 
$date->getType(array('cultureFallback' => true)) ?>)
                   <?php if (isset($date->actor)): ?>
                     <?php echo link_to(render_title($date->actor), 
array($date->actor, 'module' => 'actor')) ?>
                   <?php endif; ?>

Modified: trunk/apps/qubit/modules/term/templates/browseTermSuccess.php
==============================================================================
--- trunk/apps/qubit/modules/term/templates/browseTermSuccess.php       Sun Oct 
24 03:12:08 2010        (r8404)
+++ trunk/apps/qubit/modules/term/templates/browseTermSuccess.php       Sun Oct 
24 03:36:31 2010        (r8405)
@@ -24,7 +24,7 @@
           <ul>
             <?php foreach ($informationObject->getDates() as $date): ?>
               <li>
-                <?php echo 
Qubit::renderDateStartEnd($date->getDateDisplay(array(cultureFallback => 
true)), $date->startDate, $date->endDate) ?> (<?php echo 
$date->getType(array('cultureFallback' => true)) ?>)
+                <?php echo 
Qubit::renderDateStartEnd($date->getDateDisplay(array('cultureFallback' => 
true)), $date->startDate, $date->endDate) ?> (<?php echo 
$date->getType(array('cultureFallback' => true)) ?>)
                 <?php if (isset($date->actor)): ?>
                   <?php echo link_to(render_title($date->actor), 
array($date->actor, 'module' => 'actor')) ?>
                 <?php endif; ?>

Modified: trunk/apps/qubit/modules/term/templates/deleteSuccess.php
==============================================================================
--- trunk/apps/qubit/modules/term/templates/deleteSuccess.php   Sun Oct 24 
03:12:08 2010        (r8404)
+++ trunk/apps/qubit/modules/term/templates/deleteSuccess.php   Sun Oct 24 
03:36:31 2010        (r8405)
@@ -14,7 +14,7 @@
 
   <ul>
     <?php foreach ($term->events as $event): ?>
-      <li><?php echo 
Qubit::renderDateStartEnd($event->getDateDisplay(array(cultureFallback => 
true)), $event->startDate, $event->endDate) ?> (<?php echo render_title($term) 
?>) <?php echo link_to(render_title($event->informationObject), 
array($event->informationObject, 'module' => 'informationobject')) ?></li><?php 
endforeach; ?>
+      <li><?php echo 
Qubit::renderDateStartEnd($event->getDateDisplay(array('cultureFallback' => 
true)), $event->startDate, $event->endDate) ?> (<?php echo render_title($term) 
?>) <?php echo link_to(render_title($event->informationObject), 
array($event->informationObject, 'module' => 'informationobject')) ?></li><?php 
endforeach; ?>
   </ul>
 
 <?php endif; ?>

Modified: 
trunk/plugins/sfEadPlugin/modules/sfEadPlugin/templates/indexSuccess.xml.php
==============================================================================
--- 
trunk/plugins/sfEadPlugin/modules/sfEadPlugin/templates/indexSuccess.xml.php    
    Sun Oct 24 03:12:08 2010        (r8404)
+++ 
trunk/plugins/sfEadPlugin/modules/sfEadPlugin/templates/indexSuccess.xml.php    
    Sun Oct 24 03:36:31 2010        (r8405)
@@ -79,7 +79,7 @@
     <unitid <?php if ($resource->getRepository()): ?><?php if ($repocode = 
$resource->getRepository()->getIdentifier()): ?><?php echo 
'repositorycode="'.esc_specialchars($repocode).'" ' ?><?php endif; ?><?php if 
($countrycode = $resource->getRepository()->getCountryCode()): ?><?php echo 
'countrycode="'.$countrycode.'"' ?><?php endif;?><?php endif; ?> 
encodinganalog="3.1.1"><?php $isad = new sfIsadPlugin($resource); echo 
esc_specialchars($isad->referenceCode) ?></unitid>
 <?php endif; ?>
 <?php foreach ($resource->getDates() as $date): ?>
-    <unitdate <?php if ($type = $date->getType()->__toString()): ?><?php echo 
'datechar="'.strtolower($type).'" ' ?><?php endif; ?><?php if ($startdate = 
$date->getStartDate()): ?><?php echo 'normal="'?><?php echo 
Qubit::renderDate($startdate) ?><?php if (0 < strlen($enddate = 
$date->getEndDate())): ?><?php echo '/'?><?php echo Qubit::renderDate($enddate) 
?><?php endif; ?><?php echo '"' ?><?php endif; ?> encodinganalog="3.1.3"><?php 
echo 
esc_specialchars(Qubit::renderDateStartEnd($date->getDateDisplay(array(cultureFallback
 => true)), $date->startDate, $date->endDate)) ?></unitdate>
+    <unitdate <?php if ($type = $date->getType()->__toString()): ?><?php echo 
'datechar="'.strtolower($type).'" ' ?><?php endif; ?><?php if ($startdate = 
$date->getStartDate()): ?><?php echo 'normal="'?><?php echo 
Qubit::renderDate($startdate) ?><?php if (0 < strlen($enddate = 
$date->getEndDate())): ?><?php echo '/'?><?php echo Qubit::renderDate($enddate) 
?><?php endif; ?><?php echo '"' ?><?php endif; ?> encodinganalog="3.1.3"><?php 
echo 
esc_specialchars(Qubit::renderDateStartEnd($date->getDateDisplay(array('cultureFallback'
 => true)), $date->startDate, $date->endDate)) ?></unitdate>
 <?php endforeach; // dates ?>
 <?php if (0 < count($creators = $resource->getCreators())): ?>
     <origination encodinganalog="3.2.1">
@@ -226,7 +226,7 @@
         <unitid <?php if ($descendant->getRepository()): ?><?php if ($repocode 
= $descendant->getRepository()->getIdentifier()): ?><?php echo 
'repositorycode="'.esc_specialchars($repocode).'" ' ?><?php endif; ?><?php if 
($countrycode = $descendant->getRepository()->getCountryCode()): ?><?php echo 
'countrycode="'.$countrycode.'"' ?><?php endif;?><?php endif; ?> 
encodinganalog="3.1.1"><?php echo esc_specialchars($value) ?></unitid>
 <?php endif; ?>
 <?php foreach ($descendant->getDates() as $date): ?>
-        <unitdate <?php if ($type = $date->getType()->__toString()): ?><?php 
echo 'datechar="'.strtolower($type).'" ' ?><?php endif; ?><?php if ($startdate 
= $date->getStartDate()): ?><?php echo 'normal="'?><?php echo 
Qubit::renderDate($startdate) ?><?php if (0 < strlen($enddate = 
$date->getEndDate())): ?><?php echo '/'?><?php echo Qubit::renderDate($enddate) 
?><?php endif; ?><?php echo '"' ?><?php endif; ?> encodinganalog="3.1.3"><?php 
echo 
esc_specialchars(Qubit::renderDateStartEnd($date->getDateDisplay(array(cultureFallback
 => true)), $date->startDate, $date->endDate)) ?></unitdate>
+        <unitdate <?php if ($type = $date->getType()->__toString()): ?><?php 
echo 'datechar="'.strtolower($type).'" ' ?><?php endif; ?><?php if ($startdate 
= $date->getStartDate()): ?><?php echo 'normal="'?><?php echo 
Qubit::renderDate($startdate) ?><?php if (0 < strlen($enddate = 
$date->getEndDate())): ?><?php echo '/'?><?php echo Qubit::renderDate($enddate) 
?><?php endif; ?><?php echo '"' ?><?php endif; ?> encodinganalog="3.1.3"><?php 
echo 
esc_specialchars(Qubit::renderDateStartEnd($date->getDateDisplay(array('cultureFallback'
 => true)), $date->startDate, $date->endDate)) ?></unitdate>
 <?php endforeach; ?>
 <?php if (0 < count($creators = $descendant->getCreators())): ?>
         <origination encodinganalog="3.2.1">

Modified: 
trunk/plugins/sfIsadPlugin/modules/sfIsadPlugin/templates/fileListSuccess.php
==============================================================================
--- 
trunk/plugins/sfIsadPlugin/modules/sfIsadPlugin/templates/fileListSuccess.php   
    Sun Oct 24 03:12:08 2010        (r8404)
+++ 
trunk/plugins/sfIsadPlugin/modules/sfIsadPlugin/templates/fileListSuccess.php   
    Sun Oct 24 03:36:31 2010        (r8405)
@@ -26,7 +26,7 @@
           <ul>
             <?php foreach ($item->getDates() as $date): ?>
               <li>
-                <?php echo 
Qubit::renderDateStartEnd($date->getDateDisplay(array(cultureFallback => 
true)), $date->startDate, $date->endDate) ?> (<?php echo 
$date->getType(array('cultureFallback' => true)) ?>)
+                <?php echo 
Qubit::renderDateStartEnd($date->getDateDisplay(array('cultureFallback' => 
true)), $date->startDate, $date->endDate) ?> (<?php echo 
$date->getType(array('cultureFallback' => true)) ?>)
                 <?php if (isset($date->actor)): ?>
                   <?php echo link_to(render_title($date->actor), 
array($date->actor, 'module' => 'actor')) ?>
                 <?php endif; ?>

-- 
You received this message because you are subscribed to the Google Groups 
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/qubit-commits?hl=en.

Reply via email to