Author: jablko
Date: Wed Oct 13 09:22:23 2010
New Revision: 8081

Log:
Use <label/> only for form inputs, not headings

Modified:
   trunk/apps/qubit/modules/digitalobject/templates/editSuccess.php
   trunk/apps/qubit/modules/digitalobject/templates/multiFileUploadSuccess.php
   trunk/apps/qubit/modules/informationobject/templates/_adminInfo.php
   trunk/apps/qubit/modules/informationobject/templates/_childLevels.php
   trunk/apps/qubit/modules/search/templates/descriptionUpdatesSuccess.php
   trunk/plugins/sfDcPlugin/modules/sfDcPlugin/templates/editSuccess.php
   trunk/plugins/sfIsadPlugin/modules/sfIsadPlugin/templates/editSuccess.php
   trunk/plugins/sfIsdiahPlugin/modules/sfIsdiahPlugin/templates/editSuccess.php
   trunk/plugins/sfModsPlugin/modules/sfModsPlugin/templates/editSuccess.php
   trunk/plugins/sfRadPlugin/modules/sfRadPlugin/actions/editAction.class.php
   trunk/plugins/sfRadPlugin/modules/sfRadPlugin/templates/editSuccess.php

Modified: trunk/apps/qubit/modules/digitalobject/templates/editSuccess.php
==============================================================================
--- trunk/apps/qubit/modules/digitalobject/templates/editSuccess.php    Wed Oct 
13 08:32:00 2010        (r8080)
+++ trunk/apps/qubit/modules/digitalobject/templates/editSuccess.php    Wed Oct 
13 09:22:23 2010        (r8081)
@@ -18,15 +18,9 @@
 
     <legend><?php echo __('Master') ?></legend>
 
-    <div class="form-item">
-      <label for="filename"><?php echo __('Filename'); ?></label>
-      <?php echo $digitalObject->getName() ?>
-    </div>
+    <?php echo render_show(__('Filename'), $digitalObject->name) ?>
 
-    <div class="form-item">
-      <label for="filesize"><?php echo __('Filesize'); ?></label>
-      <?php echo hr_filesize($digitalObject->getByteSize()) ?>
-    </div>
+    <?php echo render_show(__('Filesize'), 
hr_filesize($digitalObject->byteSize)) ?>
 
     <?php echo $form->mediaType->renderRow() ?>
 

Modified: 
trunk/apps/qubit/modules/digitalobject/templates/multiFileUploadSuccess.php
==============================================================================
--- trunk/apps/qubit/modules/digitalobject/templates/multiFileUploadSuccess.php 
Wed Oct 13 08:32:00 2010        (r8080)
+++ trunk/apps/qubit/modules/digitalobject/templates/multiFileUploadSuccess.php 
Wed Oct 13 09:22:23 2010        (r8081)
@@ -5,12 +5,15 @@
 <h1 class="label"><?php echo render_title(new 
sfIsadPlugin($informationObject)) ?> </h1>
 
 <noscript>
+
   <div class="messages status">
     <?php echo __('Your browser does not support Flash and/or JavaScript. See 
%1%minimum requirements%2%.', array('%1%' => '<a 
href="http://qubit-toolkit.org/wiki/index.php?title=Minimum_requirements";>', 
'%2%' => '</a>')) ?>
   </div>
+
   <ul class="actions links">
     <li><?php echo link_to(__('Cancel'), array($informationObject, 'module' => 
'informationobject')) ?></li>
   </ul>
+
 </noscript>
 
 <?php echo $form->renderFormTag(url_for(array('module' => 'digitalobject', 
'action' => 'multiFileUpload')), array('id' => 'multiFileUploadForm', 'style' 
=> 'display: none;')) ?>
@@ -26,63 +29,78 @@
     ->label(__('Level of description'))
     ->renderRow() ?>
 
-  <div class="form-item multiFileUpload">
-    <label for=""><?php echo __('Digital objects') ?></label>
+  <div class="multiFileUpload section">
+
+    <h3><?php echo __('Digital objects') ?></h3>
+
     <div id="uploads"></div>
+
     <div id="uiElements" style="display: inline;">
       <div id="uploaderContainer">
+
         <div id="uploaderOverlay" style="position: absolute; z-index: 
2;"></div>
-        <div id="selectFilesLink" style="z-index: 1;"><a id="selectLink" 
href="#">Select files</a></div>
+
+        <div id="selectFilesLink" style="z-index: 1"><a id="selectLink" 
href="#">Select files</a></div>
+
       </div>
     </div>
+
   </div>
 
   <div class="actions section">
-  <h2 class="element-invisible"><?php echo __('Actions') ?></h2>
+
+    <h2 class="element-invisible"><?php echo __('Actions') ?></h2>
+
     <div class="content">
       <ul class="clearfix links">
+
         <li><?php echo link_to(__('Cancel'), array($informationObject, 
'module' => 'informationobject')) ?></li>
+
         <li><input class="form-submit" type="submit" value="<?php echo 
__('Import') ?>"/></li>
+
       </ul>
     </div>
+
   </div>
 
 </form>
 
-<?php echo javascript_tag('
-  // If JavaScript and Flash Player installed
-  if (0 == YAHOO.deconcept.SWFObjectUtil.getPlayerVersion().major)
-  {
-    // Show <noscript> content
-    var noscript = jQuery(\'noscript\');
-    noscript.replaceWith(noscript.text());
-  }
-  else
-  {
-    jQuery(\'form#multiFileUploadForm\').show();
-  }
-
-  // Uncomment following line to enable logging to Firebug or Safari js console
-  //YAHOO.widget.Logger.enableBrowserConsole();
-
-  YAHOO.widget.Uploader.SWFURL = "'.$uploadSwfPath.'";
-
-  Qubit.multiFileUpload.maxUploadSize = "'.$maxUploadSize.'";
-  Qubit.multiFileUpload.uploadTmpDir = "'.$uploadTmpDir.'";
-  Qubit.multiFileUpload.uploadResponsePath = 
"'.$uploadResponsePath.'?'.http_build_query(array(session_name() => 
session_id())).'";
-  Qubit.multiFileUpload.informationObjectId = "'.$informationObject->id.'";
-  Qubit.multiFileUpload.thumbWidth = 150;
-
-  Qubit.multiFileUpload.i18nUploading = "'.__('Uploading...').'";
-  Qubit.multiFileUpload.i18nLoadingPreview = "'.__('Loading preview...').'";
-  Qubit.multiFileUpload.i18nWaiting = "'.__('Waiting...').'";
-  Qubit.multiFileUpload.i18nUploadError = "'.__('Upload error, retry?').'";
-  Qubit.multiFileUpload.i18nInfoObjectTitle = "'.__('Title').'";
-  Qubit.multiFileUpload.i18nFilename  = "'.__('Filename').'";
-  Qubit.multiFileUpload.i18nFilesize  = "'.__('Filesize').'";
-  Qubit.multiFileUpload.i18nDelete = "'.__('Delete').'";
-  Qubit.multiFileUpload.i18nCancel = "'.__('Cancel').'";
-  Qubit.multiFileUpload.i18nStart = "'.__('Start').'";
-  Qubit.multiFileUpload.i18nDuplicateFile = "'.__('Warning: duplicate of 
%1%').'";
-  Qubit.multiFileUpload.i18nOversizedFile = "'.__('This file couldn\'t be 
uploaded because of file size upload limits').'";
-'); ?>
+<?php echo javascript_tag(<<<content
+// If JavaScript and Flash Player installed
+if (0 == YAHOO.deconcept.SWFObjectUtil.getPlayerVersion().major)
+{
+  // Show <noscript> content
+  var noscript = jQuery('noscript');
+  noscript.replaceWith(noscript.text());
+}
+else
+{
+  jQuery('form#multiFileUploadForm').show();
+}
+
+// Uncomment following line to enable logging to Firebug or Safari js console
+//YAHOO.widget.Logger.enableBrowserConsole();
+
+YAHOO.widget.Uploader.SWFURL = '$uploadSwfPath';
+
+Qubit.multiFileUpload.maxUploadSize = '$maxUploadSize';
+Qubit.multiFileUpload.uploadTmpDir = '$uploadTmpDir';
+Qubit.multiFileUpload.uploadResponsePath = 
'$uploadResponsePath?http_build_query(array(session_name() => session_id()))';
+Qubit.multiFileUpload.informationObjectId = '$informationObject->id';
+Qubit.multiFileUpload.thumbWidth = 150;
+
+Qubit.multiFileUpload.i18nUploading = 
'{$sf_context->i18n->__('Uploading...')}';
+Qubit.multiFileUpload.i18nLoadingPreview = '{$sf_context->i18n->__('Loading 
preview...')}';
+Qubit.multiFileUpload.i18nWaiting = '{$sf_context->i18n->__('Waiting...')}';
+Qubit.multiFileUpload.i18nUploadError = '{$sf_context->i18n->__('Upload error, 
retry?')}';
+Qubit.multiFileUpload.i18nInfoObjectTitle = '{$sf_context->i18n->__('Title')}';
+Qubit.multiFileUpload.i18nFilename  = '{$sf_context->i18n->__('Filename')}';
+Qubit.multiFileUpload.i18nFilesize  = '{$sf_context->i18n->__('Filesize')}';
+Qubit.multiFileUpload.i18nDelete = '{$sf_context->i18n->__('Delete')}';
+Qubit.multiFileUpload.i18nCancel = '{$sf_context->i18n->__('Cancel')}';
+Qubit.multiFileUpload.i18nStart = '{$sf_context->i18n->__('Start')}';
+Qubit.multiFileUpload.i18nDuplicateFile = '{$sf_context->i18n->__('Warning: 
duplicate of %1%')}';
+Qubit.multiFileUpload.i18nOversizedFile = '{$sf_context->i18n->__('This file 
couldn\'t be uploaded because of file size upload limits')}';
+
+content
+) ?>

Modified: trunk/apps/qubit/modules/informationobject/templates/_adminInfo.php
==============================================================================
--- trunk/apps/qubit/modules/informationobject/templates/_adminInfo.php Wed Oct 
13 08:32:00 2010        (r8080)
+++ trunk/apps/qubit/modules/informationobject/templates/_adminInfo.php Wed Oct 
13 09:22:23 2010        (r8081)
@@ -4,20 +4,21 @@
       <td>
         <?php echo $form->publicationStatus->label(__('Publication 
status'))->renderRow() ?>
       </td><td>
-        <div class="form-item">
-          <label for="source language"><?php echo __('Source language') 
?></label>
-          <?php if (isset($resource->sourceCulture)): ?>
-            <?php if ($sf_user->getCulture() == $resource->sourceCulture): ?>
-              <?php echo format_language($resource->sourceCulture) ?>
-            <?php else: ?>
-              <div class="default-translation">
-                <?php echo link_to(format_language($resource->sourceCulture), 
array('sf_culture' => $resource->sourceCulture) + 
$sf_request->getParameterHolder()->getAll()) ?>
-              </div>
-            <?php endif; ?>
+
+        <h3><?php echo __('Source language') ?></h3>
+
+        <?php if (isset($resource->sourceCulture)): ?>
+          <?php if ($sf_user->getCulture() == $resource->sourceCulture): ?>
+            <?php echo format_language($resource->sourceCulture) ?>
           <?php else: ?>
-            <?php echo format_language($sf_user->getCulture()) ?>
+            <div class="default-translation">
+              <?php echo link_to(format_language($resource->sourceCulture), 
array('sf_culture' => $resource->sourceCulture) + 
$sf_request->getParameterHolder()->getAll()) ?>
+            </div>
           <?php endif; ?>
-        </div>
+        <?php else: ?>
+          <?php echo format_language($sf_user->getCulture()) ?>
+        <?php endif; ?>
+
       </td>
     </tr>
   </table>

Modified: trunk/apps/qubit/modules/informationobject/templates/_childLevels.php
==============================================================================
--- trunk/apps/qubit/modules/informationobject/templates/_childLevels.php       
Wed Oct 13 08:32:00 2010        (r8080)
+++ trunk/apps/qubit/modules/informationobject/templates/_childLevels.php       
Wed Oct 13 09:22:23 2010        (r8081)
@@ -1,6 +1,6 @@
-<div class="form-item">
+<div class="section">
 
-  <label><?php echo __('Add new child levels') ?></label>
+  <h3><?php echo __('Add new child levels') ?></h3>
 
   <table class="inline multiRow">
     <thead>

Modified: 
trunk/apps/qubit/modules/search/templates/descriptionUpdatesSuccess.php
==============================================================================
--- trunk/apps/qubit/modules/search/templates/descriptionUpdatesSuccess.php     
Wed Oct 13 08:32:00 2010        (r8080)
+++ trunk/apps/qubit/modules/search/templates/descriptionUpdatesSuccess.php     
Wed Oct 13 09:22:23 2010        (r8081)
@@ -12,15 +12,18 @@
         ->label('Type')
         ->renderRow() ?>
 
-      <div class="form-item">
-        <label for="dateStart"><?php echo __('Date range') ?></label>
+      <div class="section">
+
+        <h3><?php echo __('Date range') ?></h3>
+
         <?php echo $form->dateStart->renderError() ?>
+
         <?php echo $form->dateEnd->renderError() ?>
 
         <?php echo __('%1% to %2%', array(
           '%1%' => $form->dateStart->render(),
-          '%2%' => $form->dateEnd->render()
-        )) ?>
+          '%2%' => $form->dateEnd->render())) ?>
+
       </div>
 
       <?php echo $form->dateOf->renderRow() ?>

Modified: trunk/plugins/sfDcPlugin/modules/sfDcPlugin/templates/editSuccess.php
==============================================================================
--- trunk/plugins/sfDcPlugin/modules/sfDcPlugin/templates/editSuccess.php       
Wed Oct 13 08:32:00 2010        (r8080)
+++ trunk/plugins/sfDcPlugin/modules/sfDcPlugin/templates/editSuccess.php       
Wed Oct 13 09:22:23 2010        (r8081)
@@ -27,10 +27,14 @@
     ->help(__('The name given to this resource.')) 
     ->label(__('Title').' <span class="form-required" title="'.__('This is a 
mandatory element.').'">*</span>'), $resource) ?>
 
-  <div class="form-item">
-    <label><?php echo __('Names and dates') ?></label>
+  <div class="section">
+
+    <h3><?php echo __('Names and dates') ?></h3>
+
     <?php echo get_partial('informationobject/relatedEvents', array('resource' 
=> $resource)) ?>
+
     <?php echo get_partial('informationobject/eventForm', 
$eventComponent->getVarHolder()->getAll()) ?>
+
   </div>
 
   <div class="form-item">
@@ -55,9 +59,9 @@
     ->help(__('<p>The nature or genre of the resource.</p><p>Assign as many 
types as applicable. The <em>Type</em> options are limited to the DCMI Type 
vocabulary.</p><p>Assign the <em>Collection</em> value if this resource is the 
top-level for a set of lower-level (child) resources.</p><p>Please note: if 
this resource is linked to a digital object, the <em>image</em>, <em>text</em>, 
<em>sound</em> or <em>moving image</em> types are added automatically upon 
output, so do not duplicate those values here.</p>'))
     ->renderRow() ?>
 
-  <div class="form-item">
+  <div class="section">
 
-    <label for=""><?php echo __('Child levels (if describing a collection)') 
?></label>
+    <h3><?php echo __('Child levels (if describing a collection)') ?></h3>
 
     <table class="inline multiRow">
       <thead>

Modified: 
trunk/plugins/sfIsadPlugin/modules/sfIsadPlugin/templates/editSuccess.php
==============================================================================
--- trunk/plugins/sfIsadPlugin/modules/sfIsadPlugin/templates/editSuccess.php   
Wed Oct 13 08:32:00 2010        (r8080)
+++ trunk/plugins/sfIsadPlugin/modules/sfIsadPlugin/templates/editSuccess.php   
Wed Oct 13 09:22:23 2010        (r8081)
@@ -22,12 +22,7 @@
 
     <legend><?php echo __('Identity area') ?></legend>
 
-    <?php if (isset($resource->identifier)): ?>
-      <div class="form-item">
-        <label for="reference code"><?php echo __('Reference code') ?></label>
-        <?php echo $isad->referenceCode ?>
-      </div>
-    <?php endif; ?>
+    <?php echo render_show(__('Reference code'), $isad->referenceCode) ?>
 
     <?php echo $form->identifier
       ->help(__('Provide a specific local reference code, control number, or 
other unique identifier. The country and repository code will be automatically 
added from the linked repository record to form a full reference code.'))
@@ -38,9 +33,9 @@
       ->help(__('Provide either a formal title or a concise supplied title in 
accordance with the rules of multilevel description and national conventions.'))
       ->label(__('Title').' <span class="form-required" title="'.__('This is a 
mandatory element.').'">*</span>'), $resource) ?>
 
-    <div class="form-item">
+    <div class="section">
 
-      <label for="dates"><?php echo __('Date(s)') ?> <span 
class="form-required" title="<?php echo __('This is a mandatory element.') 
?>">*</span></label>
+      <h3><?php echo __('Date(s)') ?> <span class="form-required" title="<?php 
echo __('This is a mandatory element.') ?>">*</span></h3>
 
       <table class="inline">
         <thead>

Modified: 
trunk/plugins/sfIsdiahPlugin/modules/sfIsdiahPlugin/templates/editSuccess.php
==============================================================================
--- 
trunk/plugins/sfIsdiahPlugin/modules/sfIsdiahPlugin/templates/editSuccess.php   
    Wed Oct 13 08:32:00 2010        (r8080)
+++ 
trunk/plugins/sfIsdiahPlugin/modules/sfIsdiahPlugin/templates/editSuccess.php   
    Wed Oct 13 09:22:23 2010        (r8081)
@@ -45,9 +45,9 @@
 
    <legend><?php echo __('Contact area') ?></legend>
 
-   <div class="form-item">
+   <div class="section">
 
-      <label for="contact_information"><?php echo __('Contact information') 
?><span title="<?php echo __('This is a mandatory element.') ?>" 
class="form-required">*</span></label>
+      <h3><?php echo __('Contact information') ?> <span class="form-required" 
title="<?php echo __('This is a mandatory element.') ?>">*</span></h3>
 
       <?php foreach ($contactInformation as $item): ?>
 

Modified: 
trunk/plugins/sfModsPlugin/modules/sfModsPlugin/templates/editSuccess.php
==============================================================================
--- trunk/plugins/sfModsPlugin/modules/sfModsPlugin/templates/editSuccess.php   
Wed Oct 13 08:32:00 2010        (r8080)
+++ trunk/plugins/sfModsPlugin/modules/sfModsPlugin/templates/editSuccess.php   
Wed Oct 13 09:22:23 2010        (r8081)
@@ -25,14 +25,20 @@
   <?php echo render_field($form->title
     ->help(__('A word, phrase, character, or group of characters, normally 
appearing in a resource, that names it or the work contained in it. Choice and 
format of titles should be governed by a content standard such as the 
Anglo-American Cataloging Rules, 2nd edition (AACR2), Cataloguing Cultural 
Objects (CCO), or Describing Archives: A Content Standard (DACS). Details such 
as capitalization, choosing among the forms of titles presented on an item, and 
use of abbreviations should be determined based on the rules in a content 
standard. One standard should be chosen and used consistently for all records 
in a set.')), $resource) ?>
 
-  <div class="form-item">
-    <label><?php echo __('Names and origin info') ?></label>
+  <div class="section">
+
+    <h3><?php echo __('Names and origin info') ?></h3>
+
     <?php echo get_partial('informationobject/relatedEvents', array('resource' 
=> $resource)) ?>
+
   </div>
 
-  <div class="form-item">
-    <label><?php echo __('Add new name and/or origin info') ?></label>
+  <div class="section">
+
+    <h3><?php echo __('Add new name and/or origin info') ?></h3>
+
     <?php echo get_partial('informationobject/eventForm', 
$eventComponent->getVarHolder()->getAll()) ?>
+
   </div>
 
   <?php echo $form->type
@@ -40,9 +46,9 @@
     ->label(__('Type of resource'))
     ->renderRow() ?>
 
-  <div class="form-item">
+  <div class="section">
 
-    <label><?php echo __('Add new child levels (if describing a collection)') 
?></label>
+    <h3><?php echo __('Add new child levels (if describing a collection)') 
?></h3>
 
     <table class="inline multiRow">
       <thead>

Modified: 
trunk/plugins/sfRadPlugin/modules/sfRadPlugin/actions/editAction.class.php
==============================================================================
--- trunk/plugins/sfRadPlugin/modules/sfRadPlugin/actions/editAction.class.php  
Wed Oct 13 08:32:00 2010        (r8080)
+++ trunk/plugins/sfRadPlugin/modules/sfRadPlugin/actions/editAction.class.php  
Wed Oct 13 09:22:23 2010        (r8081)
@@ -104,9 +104,9 @@
     $this->eventComponent = new 
InformationObjectEventFormComponent($this->context, 'informationobject', 
'eventForm');
     $this->eventComponent->execute($this->request);
 
-    
$this->eventComponent->form->getWidgetSchema()->dateDisplay->setHelp($this->context->i18n->__('"Give
 the date(s) of creation of the unit being described either as a single date, 
or range of dates (for inclusive dates and/or predominant dates).  Always give 
the inclusive dates.  When providing predominant dates, specify them as such, 
preceded by the word predominant..." (1.4B2) Record probable and uncertain 
dates in square brackets, using the conventions described in 1.4B5.'));
-    
$this->eventComponent->form->getWidgetSchema()->description->setHelp($this->context->i18n->__('"Make
 notes on dates and any details pertaining to the dates of creation, 
publication, or distribution, of the unit being described that are not included 
in the Date(s) of creation, including publication, distribution, etc., area and 
that are considered to be important." (1.8B8) "Make notes on the date(s) of 
accumulation or collection of the unit being described." (1.8B8a)'));
-    
$this->eventComponent->form->getWidgetSchema()->place->setHelp($this->context->i18n->__("\"For
 an item, transcribe a place of publication, distribution, etc., in the form 
and the grammatical case in which it appears.\" (1.4C1) 
{$this->eventComponent->form->getWidgetSchema()->place->getHelp()}"));
+    
$this->eventComponent->form->getWidgetSchema()->dateDisplay->setHelp($this->context->i18n->__('"Give
 the date(s) of creation of the unit being described either as a single date, 
or range of dates (for inclusive dates and/or predominant dates).  Always give 
the inclusive dates.  When providing predominant dates, specify them as such, 
preceded by the word predominant..." (RAD 1.4B2) Record probable and uncertain 
dates in square brackets, using the conventions described in 1.4B5.'));
+    
$this->eventComponent->form->getWidgetSchema()->description->setHelp($this->context->i18n->__('"Make
 notes on dates and any details pertaining to the dates of creation, 
publication, or distribution, of the unit being described that are not included 
in the Date(s) of creation, including publication, distribution, etc., area and 
that are considered to be important." (RAD 1.8B8) "Make notes on the date(s) of 
accumulation or collection of the unit being described." (RAD 1.8B8a)'));
+    
$this->eventComponent->form->getWidgetSchema()->place->setHelp($this->context->i18n->__("\"For
 an item, transcribe a place of publication, distribution, etc., in the form 
and the grammatical case in which it appears.\" (RAD 1.4C1) 
{$this->eventComponent->form->getWidgetSchema()->place->getHelp()}"));
     
$this->eventComponent->form->getWidgetSchema()->type->setHelp($this->context->i18n->__('Select
 the type of activity that established the relation between the authority 
record and the archival description (e.g. creation, accumulation, collection, 
publication, etc.)'));
   }
 

Modified: 
trunk/plugins/sfRadPlugin/modules/sfRadPlugin/templates/editSuccess.php
==============================================================================
--- trunk/plugins/sfRadPlugin/modules/sfRadPlugin/templates/editSuccess.php     
Wed Oct 13 08:32:00 2010        (r8080)
+++ trunk/plugins/sfRadPlugin/modules/sfRadPlugin/templates/editSuccess.php     
Wed Oct 13 09:22:23 2010        (r8081)
@@ -113,12 +113,7 @@
       ->help(__('Enter an unambiguous code used to uniquely identify the 
description.'))
       ->renderRow() ?>
 
-    <?php if (isset($resource->identifier)): ?>
-      <div class="form-item">
-        <label for="reference code"><?php echo __('Reference code') ?></label>
-        <?php echo $rad->referenceCode ?>
-      </div>
-    <?php endif; ?>
+    <?php echo render_show(__('Reference code'), $rad->referenceCode) ?>
 
   </fieldset> <!-- #titleAndStatementOfResponsibilityArea -->
 
@@ -168,9 +163,12 @@
 
     <?php echo get_partial('informationobject/relatedEvents', array('resource' 
=> $resource)) ?>
 
-    <div class="form-item">
-      <label for=""><?php echo __('Add new name and/or origin info') ?></label>
+    <div class="section">
+
+      <h3><?php echo __('Add new name and/or origin info') ?></h3>
+
       <?php echo get_partial('informationobject/eventForm', 
$eventComponent->getVarHolder()->getAll()) ?>
+
     </div>
 
   </fieldset> <!-- #datesOfCreationArea -->
@@ -264,11 +262,11 @@
       ->help(__('"Make notes on the arrangement of the unit being described 
which contribute significantly to its understanding but cannot be put in the 
Scope and content (see 1.7D), e.g., about reorganisation(s) by the creator, 
arrangement by the archivist, changes in the classification scheme, or 
reconstitution of original order." (RAD 1.8B13)')), $resource, array('class' => 
'resizable')) ?>
 
     <?php echo $form->language
-      ->help(__('"Record the language or languages of the unit being 
described, unless they are noted elsewhere or are apparent from other elements 
of the description." RAD (1.8.B14). Select the language from the drop-down 
menu; enter the first few letters to narrow the choices.'))
+      ->help(__('"Record the language or languages of the unit being 
described, unless they are noted elsewhere or are apparent from other elements 
of the description." (RAD 1.8.B14). Select the language from the drop-down 
menu; enter the first few letters to narrow the choices.'))
       ->renderRow(array('class' => 'form-autocomplete')) ?>
 
     <?php echo $form->script
-      ->help(__('"[N]ote any distinctive alphabets or symbol systems 
employed." RAD (1.8.B14) Select the script from the drop-down menu; enter the 
first few letters to narrow the choices.'))
+      ->help(__('"[N]ote any distinctive alphabets or symbol systems 
employed." (RAD 1.8.B14) Select the script from the drop-down menu; enter the 
first few letters to narrow the choices.'))
       ->renderRow(array('class' => 'form-autocomplete')) ?>
 
     <?php echo render_field($form->locationOfOriginals
@@ -296,15 +294,14 @@
     <?php echo render_field($form->accruals
       ->help(__('"When the unit being described is not yet complete, e.g., an 
open fonds or series, make a note explaining that further accruals are 
expected... If no further accruals are expected, indicate that the unit is 
considered closed." (RAD 1.8B19)')), $resource, array('class' => 'resizable')) 
?>
 
-    <div class="form-item">
+    <div class="section">
 
-      <label><?php echo __('Other notes') ?></label>
+      <h3><?php echo __('Other notes') ?></h3>
 
       <table class="inline">
         <thead>
           <tr>
             <th style="width: 65%">
-              <?php echo __('Note') ?>
             </th><th style="width: 30%">
               <?php echo __('Note type') ?>
             </th><th style="width: 5%">
@@ -340,7 +337,7 @@
       </table>
 
       <div class="description">
-        <?php echo __('Select a note type from the drop-down menu and enter 
note text in accordance with the following sections in RAD:  1.5E (Accompanying 
material);  1.8 B11 (Alpha-numeric designations); 1.8B9b (Conservation); 1.8B7 
(Edition); 1.8B9 (Physical Description); 1.8B16b (Rights); 1.8B21 (General 
note).') ?>
+        <?php echo __('Select a note type from the drop-down menu and enter 
note text in accordance with the following sections in RAD: 1.5E (Accompanying 
material); 1.8 B11 (Alpha-numeric designations); 1.8B9b (Conservation); 1.8B7 
(Edition); 1.8B9 (Physical Description); 1.8B16b (Rights); 1.8B21 (General 
note).') ?>
       </div>
 
     </div>
@@ -437,11 +434,13 @@
 
     <?php echo $form->languageOfDescription
       ->help(__('Indicate the language(s) used to create the description of 
the archival material.'))
-      ->label(__('Language(s)'))->renderRow(array('class' => 
'form-autocomplete')) ?>
+      ->label(__('Language'))
+      ->renderRow(array('class' => 'form-autocomplete')) ?>
 
     <?php echo $form->scriptOfDescription
       ->help(__('Indicate the script(s) used to create the description of the 
archival material.'))
-      ->label(__('Script(s)'))->renderRow(array('class' => 
'form-autocomplete')) ?>
+      ->label(__('Script'))
+      ->renderRow(array('class' => 'form-autocomplete')) ?>
 
     <?php echo render_field($form->sources, $resource, array('class' => 
'resizable')) ?>
 

-- 
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