From 136fbc90cc5cc62a408a556d289c1bfd6b482e4b Mon Sep 17 00:00:00 2001 From: erickson Date: Tue, 13 Dec 2005 23:57:18 +0000 Subject: [PATCH] moved opac over to pure SSI and browser-handled XML entities. index.xml is the starting point for all opac pages. It determines which sub-chunks to load the page_* pages are where the logic for each opac page type resides git-svn-id: svn://svn.open-ils.org/ILS/trunk@2362 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../web/opac/skin/default/xml/altcanvas.xml | 11 ++- Open-ILS/web/opac/skin/default/xml/body.xml | 24 ++++++ .../web/opac/skin/default/xml/css_common.xml | 25 +++--- Open-ILS/web/opac/skin/default/xml/fonts.xml | 1 - Open-ILS/web/opac/skin/default/xml/footer.xml | 12 +++ Open-ILS/web/opac/skin/default/xml/header.xml | 16 ++-- Open-ILS/web/opac/skin/default/xml/holds.xml | 1 - .../web/opac/skin/default/xml/homesearch.xml | 3 +- .../web/opac/skin/default/xml/html_xsl.xml | 10 +++ Open-ILS/web/opac/skin/default/xml/index.xml | 80 +++++++++--------- .../web/opac/skin/default/xml/index_body.xml | 21 +++++ .../web/opac/skin/default/xml/js_common.xml | 38 ++++----- Open-ILS/web/opac/skin/default/xml/login.xml | 1 - Open-ILS/web/opac/skin/default/xml/logo.xml | 3 +- .../opac/skin/default/xml/myopac_checked.xml | 1 - .../opac/skin/default/xml/myopac_fines.xml | 36 +++++---- .../opac/skin/default/xml/myopac_holds.xml | 1 - .../opac/skin/default/xml/myopac_prefs.xml | 7 +- .../opac/skin/default/xml/myopac_summary.xml | 1 - .../web/opac/skin/default/xml/orgtree.xml | 1 - .../opac/skin/default/xml/page_advanced.xml | 3 + .../opac/skin/default/xml/page_mresult.xml | 9 +++ .../web/opac/skin/default/xml/page_myopac.xml | 65 +++++++++++++++ .../opac/skin/default/xml/page_rdetail.xml | 30 +++++++ .../opac/skin/default/xml/page_rresult.xml | 9 +++ .../skin/default/xml/rdetail_altcanvas.xml | 1 - .../skin/default/xml/rdetail_copyinfo.xml | 1 - .../opac/skin/default/xml/rdetail_extras.xml | 3 +- .../opac/skin/default/xml/rdetail_summary.xml | 1 - .../opac/skin/default/xml/result_common.xml | 5 +- .../web/opac/skin/default/xml/result_info.xml | 52 ++++++++++++ .../opac/skin/default/xml/result_lowhits.xml | 1 - .../opac/skin/default/xml/result_table.xml | 81 +++---------------- .../web/opac/skin/default/xml/searchbar.xml | 1 - Open-ILS/web/opac/skin/default/xml/setenv.xml | 34 ++++++++ .../web/opac/skin/default/xml/sidebar.xml | 10 ++- .../web/opac/skin/default/xml/statusbar.xml | 1 - Open-ILS/web/opac/skin/default/xml/tips.xml | 1 - 38 files changed, 393 insertions(+), 208 deletions(-) create mode 100644 Open-ILS/web/opac/skin/default/xml/body.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/footer.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/html_xsl.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/index_body.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/page_advanced.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/page_mresult.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/page_myopac.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/page_rdetail.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/page_rresult.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/result_info.xml create mode 100644 Open-ILS/web/opac/skin/default/xml/setenv.xml diff --git a/Open-ILS/web/opac/skin/default/xml/altcanvas.xml b/Open-ILS/web/opac/skin/default/xml/altcanvas.xml index 448ede5a2b..5d19ad6d5b 100644 --- a/Open-ILS/web/opac/skin/default/xml/altcanvas.xml +++ b/Open-ILS/web/opac/skin/default/xml/altcanvas.xml @@ -1,4 +1,3 @@ - @@ -6,10 +5,12 @@
- + + + - + @@ -21,7 +22,9 @@ config.ids.altcanvas.loading = 'loading_alt'; - + + +
diff --git a/Open-ILS/web/opac/skin/default/xml/body.xml b/Open-ILS/web/opac/skin/default/xml/body.xml new file mode 100644 index 0000000000..1509248110 --- /dev/null +++ b/Open-ILS/web/opac/skin/default/xml/body.xml @@ -0,0 +1,24 @@ + + + + + + + + +
+ + + +
+ + + + + +
+
+ +
+ + diff --git a/Open-ILS/web/opac/skin/default/xml/css_common.xml b/Open-ILS/web/opac/skin/default/xml/css_common.xml index 6ee1881c3b..33468c7424 100644 --- a/Open-ILS/web/opac/skin/default/xml/css_common.xml +++ b/Open-ILS/web/opac/skin/default/xml/css_common.xml @@ -1,23 +1,16 @@ - - + - - + + - - + + - - + - - - diff --git a/Open-ILS/web/opac/skin/default/xml/fonts.xml b/Open-ILS/web/opac/skin/default/xml/fonts.xml index 4c799eec41..1406de070f 100644 --- a/Open-ILS/web/opac/skin/default/xml/fonts.xml +++ b/Open-ILS/web/opac/skin/default/xml/fonts.xml @@ -1,4 +1,3 @@ -
diff --git a/Open-ILS/web/opac/skin/default/xml/footer.xml b/Open-ILS/web/opac/skin/default/xml/footer.xml new file mode 100644 index 0000000000..d90364fcd8 --- /dev/null +++ b/Open-ILS/web/opac/skin/default/xml/footer.xml @@ -0,0 +1,12 @@ +
+ + + Copyright (C) 2005 Georgia Public Library Service + + +
diff --git a/Open-ILS/web/opac/skin/default/xml/header.xml b/Open-ILS/web/opac/skin/default/xml/header.xml index 9268e9e41d..49c7dd0439 100644 --- a/Open-ILS/web/opac/skin/default/xml/header.xml +++ b/Open-ILS/web/opac/skin/default/xml/header.xml @@ -1,6 +1,12 @@ - + + -
- - -
+ + + &<!--#echo var="OILS_TITLE"-->; + + + + + + diff --git a/Open-ILS/web/opac/skin/default/xml/holds.xml b/Open-ILS/web/opac/skin/default/xml/holds.xml index f2ebdbb001..5ee36a295d 100644 --- a/Open-ILS/web/opac/skin/default/xml/holds.xml +++ b/Open-ILS/web/opac/skin/default/xml/holds.xml @@ -1,4 +1,3 @@ -
diff --git a/Open-ILS/web/opac/skin/default/xml/homesearch.xml b/Open-ILS/web/opac/skin/default/xml/homesearch.xml index 1aca33b68e..52723e5b53 100644 --- a/Open-ILS/web/opac/skin/default/xml/homesearch.xml +++ b/Open-ILS/web/opac/skin/default/xml/homesearch.xml @@ -1,4 +1,3 @@ -
- +
diff --git a/Open-ILS/web/opac/skin/default/xml/html_xsl.xml b/Open-ILS/web/opac/skin/default/xml/html_xsl.xml new file mode 100644 index 0000000000..f22332079d --- /dev/null +++ b/Open-ILS/web/opac/skin/default/xml/html_xsl.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/Open-ILS/web/opac/skin/default/xml/index.xml b/Open-ILS/web/opac/skin/default/xml/index.xml index 15ad674328..069ba8b433 100644 --- a/Open-ILS/web/opac/skin/default/xml/index.xml +++ b/Open-ILS/web/opac/skin/default/xml/index.xml @@ -1,44 +1,38 @@ - - - - - - - &opac.title.home; - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - -
-
- - + + + + + + + + + + + + + + + + + + + + + + + + +]> + + + + + + + + + diff --git a/Open-ILS/web/opac/skin/default/xml/index_body.xml b/Open-ILS/web/opac/skin/default/xml/index_body.xml new file mode 100644 index 0000000000..adef0caec2 --- /dev/null +++ b/Open-ILS/web/opac/skin/default/xml/index_body.xml @@ -0,0 +1,21 @@ + + + + + + + + + +
+
+ + +
+
+ + + + diff --git a/Open-ILS/web/opac/skin/default/xml/js_common.xml b/Open-ILS/web/opac/skin/default/xml/js_common.xml index e951e60122..a09b0a26e3 100644 --- a/Open-ILS/web/opac/skin/default/xml/js_common.xml +++ b/Open-ILS/web/opac/skin/default/xml/js_common.xml @@ -1,27 +1,24 @@ - - + -
+ + + + + + - - - - - - + - - - - - - - - - - - + + + + + + + + + -
diff --git a/Open-ILS/web/opac/skin/default/xml/login.xml b/Open-ILS/web/opac/skin/default/xml/login.xml index 436753a087..5038d6745b 100644 --- a/Open-ILS/web/opac/skin/default/xml/login.xml +++ b/Open-ILS/web/opac/skin/default/xml/login.xml @@ -1,4 +1,3 @@ -
diff --git a/Open-ILS/web/opac/skin/default/xml/logo.xml b/Open-ILS/web/opac/skin/default/xml/logo.xml index 4f0da1f4fe..268a297ef5 100644 --- a/Open-ILS/web/opac/skin/default/xml/logo.xml +++ b/Open-ILS/web/opac/skin/default/xml/logo.xml @@ -1,5 +1,4 @@ -
- +
diff --git a/Open-ILS/web/opac/skin/default/xml/myopac_checked.xml b/Open-ILS/web/opac/skin/default/xml/myopac_checked.xml index d65f1e4b40..fd67694afa 100644 --- a/Open-ILS/web/opac/skin/default/xml/myopac_checked.xml +++ b/Open-ILS/web/opac/skin/default/xml/myopac_checked.xml @@ -1,4 +1,3 @@ -
diff --git a/Open-ILS/web/opac/skin/default/xml/myopac_fines.xml b/Open-ILS/web/opac/skin/default/xml/myopac_fines.xml index 808e156e1e..ac5a63b8ee 100644 --- a/Open-ILS/web/opac/skin/default/xml/myopac_fines.xml +++ b/Open-ILS/web/opac/skin/default/xml/myopac_fines.xml @@ -1,12 +1,11 @@ -

- +
- + @@ -17,9 +16,9 @@ - - - + + +
Summary
Summary
Total Owed Total Paid
Loading...
$$$$$$
@@ -28,10 +27,13 @@

+ + - - + + @@ -45,15 +47,15 @@ - - - - - - - - - + + + + + + + + +
Transaction Details
Transaction Details
Transaction Start Time Last Billing Time
$$$
$$$
diff --git a/Open-ILS/web/opac/skin/default/xml/myopac_holds.xml b/Open-ILS/web/opac/skin/default/xml/myopac_holds.xml index 905a00ca22..273f199df9 100644 --- a/Open-ILS/web/opac/skin/default/xml/myopac_holds.xml +++ b/Open-ILS/web/opac/skin/default/xml/myopac_holds.xml @@ -1,4 +1,3 @@ -
diff --git a/Open-ILS/web/opac/skin/default/xml/myopac_prefs.xml b/Open-ILS/web/opac/skin/default/xml/myopac_prefs.xml index b6cdc177d7..152dc391a8 100644 --- a/Open-ILS/web/opac/skin/default/xml/myopac_prefs.xml +++ b/Open-ILS/web/opac/skin/default/xml/myopac_prefs.xml @@ -1,4 +1,3 @@ -
@@ -11,11 +10,6 @@ Preferences - @@ -25,6 +19,7 @@