Typo: visiblity -> visibility
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 16 Oct 2007 04:32:17 +0000 (04:32 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 16 Oct 2007 04:32:17 +0000 (04:32 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@7888 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/examples/opensrf.xml.example
Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm
Open-ILS/web/opac/skin/default/js/result_common.js
Open-ILS/xul/staff_client/server/cat/copy_editor.js

index 2df16ae..9c77656 100644 (file)
@@ -17,7 +17,7 @@ Example opensrf config file for OpenILS
             <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 -->
index 2fff074..57acb40 100644 (file)
@@ -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) {
index 4fa713e..35ba911 100644 (file)
@@ -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;
index 421936f..e9407c3 100644 (file)
@@ -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);