tweaks
authorgfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Thu, 15 Jul 2010 00:56:01 +0000 (00:56 +0000)
committergfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Thu, 15 Jul 2010 00:56:01 +0000 (00:56 +0000)
git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@923 6d9bc8c9-1ec2-4278-b937-99fde70a366f

conifer/syrup/models.py
conifer/syrup/views/genshi_namespace.py
conifer/templates/item/item_add_cat_search.xhtml

index 98b0529..afdffe0 100644 (file)
@@ -160,13 +160,13 @@ class Site(BaseModel):
     service_desk = m.ForeignKey(ServiceDesk)
 
     access = m.CharField(max_length=5,
-                         default='CLOSE',
+                         default='LOGIN',
                          choices = [
             ('ANON', _('World-accessible')),
             ('LOGIN', _('Accessible to all logged-in users')),
             ('STUDT', _('Accessible to course students (by section)')),
             ('INVIT', _('Accessible to course students (by invitation code)')),
-            ('CLOSE', _('Accessible only to course owners'))])
+            ('CLOSE', _('Accessible only to course-site owners'))])
 
     # For sites that use a passkey as an invitation (INVIT access).
     # Note: only set this value using 'generate_new_passkey'.
index 728cbd6..0e30570 100644 (file)
@@ -9,6 +9,7 @@
 
 import django.forms
 import itertools
+import urllib
 
 from conifer.integration.hooksystem import gethook, callhook
 from conifer.syrup                  import models
index abb9a73..2cc791f 100644 (file)
@@ -4,7 +4,8 @@ from xml.etree import ElementTree as ET
 from conifer.libsystems.marcxml import record_to_dictionary
 from conifer.libsystems.marcxml import marcxml_dictionary_to_dc as to_dublin
 title = _('Add physical or electronic item, by catalogue search')
-helptext = _('Use keywords or CCL syntax for searching, for example: ti="detroit river" and au="wilgus"')
+helptext = _('Use keywords or CCL syntax for searching, for example:')
+example = 'ti="detroit river" and au="wilgus"'
 dc_keys = ['dc:title', 'dc:creator', 'dc:publisher', 'dc:date']
 ?>
 <html xmlns="http://www.w3.org/1999/xhtml"
@@ -29,6 +30,7 @@ dc_keys = ['dc:title', 'dc:creator', 'dc:publisher', 'dc:date']
     <h2>${title}</h2>
     <div class="helptext">
     ${helptext}
+    <a href=".?query=${urllib.quote(example)}">${example}</a>
     </div>
 
     <form method="GET" action=".">