From 8ba6b0847b3f5a4cbdde196b6e81a3c21581b564 Mon Sep 17 00:00:00 2001 From: dbs Date: Tue, 16 Oct 2007 04:32:17 +0000 Subject: [PATCH] Typo: visiblity -> visibility git-svn-id: svn://svn.open-ils.org/ILS/trunk@7888 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/examples/opensrf.xml.example | 2 +- .../OpenILS/Application/Storage/Publisher/metabib.pm | 12 ++++++------ Open-ILS/web/opac/skin/default/js/result_common.js | 2 +- Open-ILS/xul/staff_client/server/cat/copy_editor.js | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Open-ILS/examples/opensrf.xml.example b/Open-ILS/examples/opensrf.xml.example index 2df16ae2d8..9c77656af6 100644 --- a/Open-ILS/examples/opensrf.xml.example +++ b/Open-ILS/examples/opensrf.xml.example @@ -17,7 +17,7 @@ Example opensrf config file for OpenILS /openils/var - + diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm index 2fff074540..57acb40d7c 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm @@ -1038,7 +1038,7 @@ sub postfilter_search_class_fts { 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 @@ sub postfilter_search_class_fts { $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 @@ sub postfilter_search_multi_class_fts { 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 @@ sub postfilter_search_multi_class_fts { $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 @@ sub biblio_search_multi_class_fts { 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 @@ sub biblio_search_multi_class_fts { $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) { diff --git a/Open-ILS/web/opac/skin/default/js/result_common.js b/Open-ILS/web/opac/skin/default/js/result_common.js index 4fa713e75e..35ba9110b0 100644 --- a/Open-ILS/web/opac/skin/default/js/result_common.js +++ b/Open-ILS/web/opac/skin/default/js/result_common.js @@ -72,7 +72,7 @@ function resultCollectSearchIds( type, method, handler ) { 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; diff --git a/Open-ILS/xul/staff_client/server/cat/copy_editor.js b/Open-ILS/xul/staff_client/server/cat/copy_editor.js index 421936f841..e9407c3736 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_editor.js +++ b/Open-ILS/xul/staff_client/server/cat/copy_editor.js @@ -351,7 +351,7 @@ g.import_templates = function() { 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 @@ g.render = function() { /******************************************************************************************************/ - /* 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); -- 2.43.2