[open-ils-commits] r10188 - in trunk/Open-ILS: examples/apache web/opac/extras web/opac/locale/en-US

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Jul 30 13:07:27 EDT 2008


Author: erickson
Date: 2008-07-30 13:07:19 -0400 (Wed, 30 Jul 2008)
New Revision: 10188

Added:
   trunk/Open-ILS/web/opac/extras/selfcheck/
Modified:
   trunk/Open-ILS/examples/apache/eg_vhost.conf
   trunk/Open-ILS/web/opac/locale/en-US/opac.dtd
Log:
Basic web-based selfcheck interface.  This interface implements a subset of 

http://open-ils.org/dokuwiki/doku.php?id=scratchpad:simple_self_check




Modified: trunk/Open-ILS/examples/apache/eg_vhost.conf
===================================================================
--- trunk/Open-ILS/examples/apache/eg_vhost.conf	2008-07-30 17:03:48 UTC (rev 10187)
+++ trunk/Open-ILS/examples/apache/eg_vhost.conf	2008-07-30 17:07:19 UTC (rev 10188)
@@ -240,6 +240,21 @@
 </Location>
 
 # ----------------------------------------------------------------------------------
+# Selfcheck interface
+# ----------------------------------------------------------------------------------
+<LocationMatch .*/selfcheck.xml>
+    SetHandler perl-script
+    PerlSetVar OILSProxyTitle "Selfcheck Login"
+    PerlSetVar OILSProxyDescription "Please log in to activate the selfcheck interface"
+    PerlSetVar OILSProxyPermissions "STAFF_LOGIN"
+    PerlHandler OpenILS::WWW::Proxy
+    Options +ExecCGI
+    PerlSendHeader On
+    allow from all
+</LocationMatch>
+
+
+# ----------------------------------------------------------------------------------
 # Reports GUI
 # ----------------------------------------------------------------------------------
 <LocationMatch /reports/>

Copied: trunk/Open-ILS/web/opac/extras/selfcheck (from rev 10187, branches/rel_1_2/Open-ILS/web/opac/extras/selfcheck)

Modified: trunk/Open-ILS/web/opac/locale/en-US/opac.dtd
===================================================================
--- trunk/Open-ILS/web/opac/locale/en-US/opac.dtd	2008-07-30 17:03:48 UTC (rev 10187)
+++ trunk/Open-ILS/web/opac/locale/en-US/opac.dtd	2008-07-30 17:07:19 UTC (rev 10188)
@@ -634,3 +634,36 @@
 <!ENTITY opac.image_provided "Image provided by">
 <!ENTITY vendor.name "Amazon">
 <!ENTITY vendor.base_link "http://amazon.com/dp/">
+
+
+
+<!--	================================================================= 
+	Selfcheck
+	================================================================= -->
+<!ENTITY selfck.staff_login_label "Staff login">
+<!ENTITY selfck.staff_login "Library barcode or username">
+<!ENTITY selfck.staff_pw "Password">
+<!ENTITY selfck.submit "Submit">
+<!ENTITY selfck.patron_barcode_label "Please scan your library barcode">
+<!ENTITY selfck.item_barcode_label "Please scan an item to checkout or renew:">
+<!ENTITY selfck.barcode "Barcode">
+<!ENTITY selfck.title "Title">
+<!ENTITY selfck.author "Author">
+<!ENTITY selfck.due_date "Due Date">
+<!ENTITY selfck.remaining "Renewals Remaining">
+<!ENTITY selfck.cotype "Type">
+<!ENTITY selfck.cotype_co "Checkout">
+<!ENTITY selfck.cotype_rn "Renewal">
+<!ENTITY selfck.logout "Logout">
+<!ENTITY selfck.print_logout "Print &amp; Logout">
+<!ENTITY selfck.welcome "Welcome">
+
+<!-- event messages -->
+<!ENTITY selfck.event.co_success "Check out succeeded">
+<!ENTITY selfck.event.co_unknown "An unknown event has occurred">
+<!ENTITY selfck.event.dupe_barcode "This item has already been checked out during this session">
+<!ENTITY selfck.event.patron_not_found "The patron barcode was not found">
+<!ENTITY selfck.event.item_noncat "The requested item is not in the catalog">
+<!ENTITY selfck.event.item_nocirc "The requested item is not allowed to circulate">
+<!ENTITY selfck.print_checkouts "Print Receipt">
+



More information about the open-ils-commits mailing list