[open-ils-commits] r7888 - in trunk/Open-ILS: examples src/perlmods/OpenILS/Application/Storage/Publisher web/opac/skin/default/js xul/staff_client/server/cat

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Oct 16 00:44:51 EDT 2007


Author: dbs
Date: 2007-10-16 00:32:17 -0400 (Tue, 16 Oct 2007)
New Revision: 7888

Modified:
   trunk/Open-ILS/examples/opensrf.xml.example
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm
   trunk/Open-ILS/web/opac/skin/default/js/result_common.js
   trunk/Open-ILS/xul/staff_client/server/cat/copy_editor.js
Log:
Typo: visiblity -> visibility


Modified: trunk/Open-ILS/examples/opensrf.xml.example
===================================================================
--- trunk/Open-ILS/examples/opensrf.xml.example	2007-10-16 03:55:21 UTC (rev 7887)
+++ trunk/Open-ILS/examples/opensrf.xml.example	2007-10-16 04:32:17 UTC (rev 7888)
@@ -17,7 +17,7 @@
             <script_lib>/openils/var</script_lib>
         </dirs>
 
-	<!-- global data visiblity settings -->
+	<!-- global data visibility settings -->
         <share>
 		<user>
         		<!-- Set to "true" to require patron opt-in for foreign (non-home_ou) transactions -->

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm	2007-10-16 03:55:21 UTC (rev 7887)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm	2007-10-16 04:32:17 UTC (rev 7888)
@@ -1038,7 +1038,7 @@
 	my $ou = $args{org_unit};
 	my $ou_type = $args{depth};
 	my $limit = $args{limit} || 10;
-	my $visiblity_limit = $args{visiblity_limit} || 5000;
+	my $visibility_limit = $args{visibility_limit} || 5000;
 	my $offset = $args{offset} || 0;
 
 	my $outer_limit = 1000;
@@ -1220,7 +1220,7 @@
 			$lf_filter
   	  	GROUP BY m.metarecord
   	  	ORDER BY 4 $sort_dir, MIN(COALESCE(CHAR_LENGTH(f.value),1))
-		LIMIT $visiblity_limit
+		LIMIT $visibility_limit
 	SQL
 
 	if (0) {
@@ -1414,7 +1414,7 @@
 	my $ou = $args{org_unit};
 	my $ou_type = $args{depth};
 	my $limit = $args{limit} || 10;;
-	my $visiblity_limit = $args{visiblity_limit} || 5000;;
+	my $visibility_limit = $args{visibility_limit} || 5000;;
 	my $offset = $args{offset} || 0;
 
 	if (!$ou) {
@@ -1711,7 +1711,7 @@
 			$join_table_list
   	  	GROUP BY m.metarecord
   	  	-- ORDER BY 4 $sort_dir
-		LIMIT $visiblity_limit
+		LIMIT $visibility_limit
 	SQL
 
 	if ($self->api_name !~ /staff/o) {
@@ -1908,7 +1908,7 @@
 	my $ou_type = $args{depth};
 	my $limit = $args{limit} || 10;
 	my $pref_lang = $args{prefered_language} || 'eng';
-	my $visiblity_limit = $args{visiblity_limit} || 5000;
+	my $visibility_limit = $args{visibility_limit} || 5000;
 	my $offset = $args{offset} || 0;
 
 	if (!$ou) {
@@ -2195,7 +2195,7 @@
 			$lf_filter
   	  	GROUP BY b.id, b.source
   	  	ORDER BY 3 $sort_dir
-		LIMIT $visiblity_limit
+		LIMIT $visibility_limit
 	SQL
 
 	if ($self->api_name !~ /staff/o) {

Modified: trunk/Open-ILS/web/opac/skin/default/js/result_common.js
===================================================================
--- trunk/Open-ILS/web/opac/skin/default/js/result_common.js	2007-10-16 03:55:21 UTC (rev 7887)
+++ trunk/Open-ILS/web/opac/skin/default/js/result_common.js	2007-10-16 04:32:17 UTC (rev 7888)
@@ -72,7 +72,7 @@
 	args.depth    = getDepth();
 	args.limit    = limit;
 	args.offset   = getOffset();
-	args.visiblity_limit = 3000;
+	args.visibility_limit = 3000;
 
 	if(sort) args.sort = sort;
 	if(sortdir) args.sort_dir = sortdir;

Modified: trunk/Open-ILS/xul/staff_client/server/cat/copy_editor.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/cat/copy_editor.js	2007-10-16 03:55:21 UTC (rev 7887)
+++ trunk/Open-ILS/xul/staff_client/server/cat/copy_editor.js	2007-10-16 04:32:17 UTC (rev 7888)
@@ -351,7 +351,7 @@
 				var list = util.functional.map_object_to_list( g.templates, function(obj,i) { return [i, i]; } );
 				g.template_menu = util.widgets.make_menulist( list );
 				$('template_placeholder').appendChild(g.template_menu);
-				alert("Note: These imported templates will get saved along with any new template you try to create, but if that doesn't happen, then these templates will dissappear with the next invocation of the item attribute editor.");
+				alert("Note: These imported templates will get saved along with any new template you try to create, but if that doesn't happen, then these templates will disappear with the next invocation of the item attribute editor.");
 			}
 
 		} else {
@@ -1046,7 +1046,7 @@
     
     
 	/******************************************************************************************************/
-	/* Synchronize stat cat visiblity with library filter menu, and default template selection */
+	/* Synchronize stat cat visibility with library filter menu, and default template selection */
     JSAN.use('util.file'); 
 	var file = new util.file('copy_editor_prefs.'+g.data.server_unadorned);
 	g.copy_editor_prefs = util.widgets.load_attributes(file);



More information about the open-ils-commits mailing list