From: Dan Scott Date: Fri, 7 Oct 2011 18:46:52 +0000 (-0400) Subject: Avoid tab proliferation by editing "noet" to "et" X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a23dc1b4832e4d01acdc6d5df5a71b074b57d0ff;p=working%2FEvergreen.git Avoid tab proliferation by editing "noet" to "et" Old modelines that I added back when tabs ruled OpenSRF / Evergreen are still biting us at times; set them correctly if we're going to have them. Signed-off-by: Dan Scott --- diff --git a/Open-ILS/examples/fm_IDL.xml b/Open-ILS/examples/fm_IDL.xml index f205fd9429..969dd450d4 100644 --- a/Open-ILS/examples/fm_IDL.xml +++ b/Open-ILS/examples/fm_IDL.xml @@ -9192,5 +9192,5 @@ SELECT usr, diff --git a/Open-ILS/src/apachemods/mod_idlchunk.c b/Open-ILS/src/apachemods/mod_idlchunk.c index c0b815c3c4..0ffbdabfa3 100644 --- a/Open-ILS/src/apachemods/mod_idlchunk.c +++ b/Open-ILS/src/apachemods/mod_idlchunk.c @@ -1,5 +1,5 @@ #include "httpd.h" -/* vim:noet:ts=4 +/* vim:et:ts=4:sw=4: */ #include "http_config.h" #include "http_core.h" diff --git a/Open-ILS/src/apachemods/mod_xmlent.c b/Open-ILS/src/apachemods/mod_xmlent.c index d1a88ad6d9..c7ab724283 100644 --- a/Open-ILS/src/apachemods/mod_xmlent.c +++ b/Open-ILS/src/apachemods/mod_xmlent.c @@ -1,5 +1,5 @@ #include "httpd.h" -/* vim:noet:ts=4 +/* vim:et:ts=4:sw=4 */ #include "http_config.h" #include "http_core.h" diff --git a/Open-ILS/src/c-apps/oils_idl-core.c b/Open-ILS/src/c-apps/oils_idl-core.c index 471435c7f1..0ab0d5e889 100644 --- a/Open-ILS/src/c-apps/oils_idl-core.c +++ b/Open-ILS/src/c-apps/oils_idl-core.c @@ -1,6 +1,6 @@ #include "openils/oils_idl.h" /* - * vim:noet:ts=4: + * vim:et:ts=4:sw=4: */ #include diff --git a/Open-ILS/src/extras/autogen.sh b/Open-ILS/src/extras/autogen.sh index 0311bbeeee..64ccd4f370 100755 --- a/Open-ILS/src/extras/autogen.sh +++ b/Open-ILS/src/extras/autogen.sh @@ -14,7 +14,7 @@ # GNU General Public License for more details. # ----------------------------------------------------------------------- -# vim:noet:ts=4 +# vim:et:ts=4:sw=4: # Exit script if any statement returns a non-true return value set -e diff --git a/Open-ILS/src/extras/fast-extract.in b/Open-ILS/src/extras/fast-extract.in index 32f122a234..7d4b394994 100755 --- a/Open-ILS/src/extras/fast-extract.in +++ b/Open-ILS/src/extras/fast-extract.in @@ -1,5 +1,5 @@ #!/usr/bin/perl -# vim:ts=4:noet: +# vim:ts=4:et:sw=4: use strict; use DBI; diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm index c0dbf7b2d9..16893de5f4 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm @@ -1,5 +1,5 @@ package OpenILS::Application::AppUtils; -# vim:noet:ts=4 +# vim:et:ts=4 use strict; use warnings; use OpenILS::Application; use base qw/OpenILS::Application/; diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Event.pm b/Open-ILS/src/perlmods/lib/OpenILS/Event.pm index 805859d41a..90b6e3a156 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Event.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Event.pm @@ -1,5 +1,5 @@ package OpenILS::Event; -# vim:noet:ts=4 +# vim:et:ts=4:sw=4: use strict; use warnings; use XML::LibXML; use OpenSRF::Utils::SettingsClient; diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHDParser.pm b/Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHDParser.pm index 0540e35b27..bba70b61b5 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHDParser.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHDParser.pm @@ -305,4 +305,4 @@ sub generate_svr { 1; -# vim: ts=4:sw=4:noet +# vim: ts=4:sw=4:et diff --git a/Open-ILS/src/reporter/clark-kent.pl b/Open-ILS/src/reporter/clark-kent.pl index 29b067dad4..8e9926444b 100755 --- a/Open-ILS/src/reporter/clark-kent.pl +++ b/Open-ILS/src/reporter/clark-kent.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -# vim:ts=4:noet: +# vim:ts=4:et:sw=4: use strict; use DBI; diff --git a/Open-ILS/src/support-scripts/eg_db_config.pl b/Open-ILS/src/support-scripts/eg_db_config.pl index 93c53fa0b4..22432467b8 100755 --- a/Open-ILS/src/support-scripts/eg_db_config.pl +++ b/Open-ILS/src/support-scripts/eg_db_config.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl # eg_db_config.pl -- configure Evergreen database settings and create schema -# vim:noet:ts=4:sw=4: +# vim:et:ts=4:sw=4: # # Copyright (C) 2008 Equinox Software, Inc. # Copyright (C) 2008-2009 Laurentian University diff --git a/Open-ILS/src/support-scripts/settings-tester.pl b/Open-ILS/src/support-scripts/settings-tester.pl index a59dca943c..9f1c492fdd 100755 --- a/Open-ILS/src/support-scripts/settings-tester.pl +++ b/Open-ILS/src/support-scripts/settings-tester.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -# vim:noet:ts=4: +# vim:et:ts=4:sw=4: use strict; use warnings; use Test::More tests => 5; diff --git a/Open-ILS/xul/staff_client/chrome/content/auth/controller.js b/Open-ILS/xul/staff_client/chrome/content/auth/controller.js index dd6de40e87..a218b129e3 100644 --- a/Open-ILS/xul/staff_client/chrome/content/auth/controller.js +++ b/Open-ILS/xul/staff_client/chrome/content/auth/controller.js @@ -1,5 +1,5 @@ dump('entering auth/controller.js\n'); -// vim:sw=4:ts=4:noet: +// vim:sw=4:ts=4:et: if (typeof auth == 'undefined') auth = {}; auth.controller = function (params) { diff --git a/Open-ILS/xul/staff_client/chrome/content/auth/session.js b/Open-ILS/xul/staff_client/chrome/content/auth/session.js index c3f9a13b52..52f879d97d 100644 --- a/Open-ILS/xul/staff_client/chrome/content/auth/session.js +++ b/Open-ILS/xul/staff_client/chrome/content/auth/session.js @@ -1,5 +1,5 @@ dump('entering auth/session.js\n'); -// vim:sw=4:ts=4:noet: +// vim:sw=4:ts=4:et: if (typeof auth == 'undefined') auth = {}; auth.session = function (view,login_type) { diff --git a/Open-ILS/xul/staff_client/chrome/content/main/main.js b/Open-ILS/xul/staff_client/chrome/content/main/main.js index 95984844a8..1a25b4c97e 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/main.js +++ b/Open-ILS/xul/staff_client/chrome/content/main/main.js @@ -1,5 +1,5 @@ dump('entering main/main.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: var xulG; var offlineStrings; diff --git a/Open-ILS/xul/staff_client/chrome/content/main/menu.js b/Open-ILS/xul/staff_client/chrome/content/main/menu.js index 61d239ca83..eee2f0bdd7 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/menu.js +++ b/Open-ILS/xul/staff_client/chrome/content/main/menu.js @@ -1,5 +1,5 @@ dump('entering main/menu.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: var offlineStrings; diff --git a/Open-ILS/xul/staff_client/chrome/content/main/menu_frame.xul b/Open-ILS/xul/staff_client/chrome/content/main/menu_frame.xul index e87e371915..3dec268940 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/menu_frame.xul +++ b/Open-ILS/xul/staff_client/chrome/content/main/menu_frame.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/chrome/content/main/simple_auth.xul b/Open-ILS/xul/staff_client/chrome/content/main/simple_auth.xul index 0d63ae1ecd..d3e17947f0 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/simple_auth.xul +++ b/Open-ILS/xul/staff_client/chrome/content/main/simple_auth.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/chrome/content/util/network.js b/Open-ILS/xul/staff_client/chrome/content/util/network.js index 931d1745a1..7d37892f76 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/network.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/network.js @@ -1,5 +1,5 @@ dump('entering util/network.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: var offlineStrings; diff --git a/Open-ILS/xul/staff_client/server/admin/offline_manage_xacts.js b/Open-ILS/xul/staff_client/server/admin/offline_manage_xacts.js index 184dc2bf39..e89bea68bc 100644 --- a/Open-ILS/xul/staff_client/server/admin/offline_manage_xacts.js +++ b/Open-ILS/xul/staff_client/server/admin/offline_manage_xacts.js @@ -1,6 +1,4 @@ - +// vim: et:ts=4:sw=4: dump('entering admin/offline_manage_xacts.js\n'); if (typeof admin == 'undefined') admin = {}; diff --git a/Open-ILS/xul/staff_client/server/cat/bib_brief.xul b/Open-ILS/xul/staff_client/server/cat/bib_brief.xul index 5cbe57229a..5ffb3a85a9 100644 --- a/Open-ILS/xul/staff_client/server/cat/bib_brief.xul +++ b/Open-ILS/xul/staff_client/server/cat/bib_brief.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/cat/bib_brief_vertical.xul b/Open-ILS/xul/staff_client/server/cat/bib_brief_vertical.xul index 34f7cbeedd..48620cbe61 100644 --- a/Open-ILS/xul/staff_client/server/cat/bib_brief_vertical.xul +++ b/Open-ILS/xul/staff_client/server/cat/bib_brief_vertical.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/cat/copy_browser.js b/Open-ILS/xul/staff_client/server/cat/copy_browser.js index bb9b632ddd..0aa1b44b8e 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_browser.js +++ b/Open-ILS/xul/staff_client/server/cat/copy_browser.js @@ -1,5 +1,5 @@ dump('entering cat.copy_browser.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: if (typeof cat == 'undefined') cat = {}; cat.copy_browser = function (params) { diff --git a/Open-ILS/xul/staff_client/server/cat/copy_browser.xul b/Open-ILS/xul/staff_client/server/cat/copy_browser.xul index 359dd1265f..288f380411 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_browser.xul +++ b/Open-ILS/xul/staff_client/server/cat/copy_browser.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/cat/copy_buckets.js b/Open-ILS/xul/staff_client/server/cat/copy_buckets.js index 9dc89df27d..28b0e42367 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_buckets.js +++ b/Open-ILS/xul/staff_client/server/cat/copy_buckets.js @@ -1,4 +1,4 @@ -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: dump('entering cat.copy_buckets.js\n'); if (typeof cat == 'undefined') cat = {}; diff --git a/Open-ILS/xul/staff_client/server/cat/copy_buckets_quick.xul b/Open-ILS/xul/staff_client/server/cat/copy_buckets_quick.xul index 36636fd843..93b4484758 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_buckets_quick.xul +++ b/Open-ILS/xul/staff_client/server/cat/copy_buckets_quick.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/cat/copy_notes.xul b/Open-ILS/xul/staff_client/server/cat/copy_notes.xul index 1da6032a27..40ab3eff22 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_notes.xul +++ b/Open-ILS/xul/staff_client/server/cat/copy_notes.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/cat/copy_summary.xul b/Open-ILS/xul/staff_client/server/cat/copy_summary.xul index 9ab9a0494e..d64acf3ff0 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_summary.xul +++ b/Open-ILS/xul/staff_client/server/cat/copy_summary.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/cat/marc_view.xul b/Open-ILS/xul/staff_client/server/cat/marc_view.xul index 0f6f8a2dc6..fb259dc1e4 100644 --- a/Open-ILS/xul/staff_client/server/cat/marc_view.xul +++ b/Open-ILS/xul/staff_client/server/cat/marc_view.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/circ/copy_status.js b/Open-ILS/xul/staff_client/server/circ/copy_status.js index 510d13ce50..5c2da32a45 100644 --- a/Open-ILS/xul/staff_client/server/circ/copy_status.js +++ b/Open-ILS/xul/staff_client/server/circ/copy_status.js @@ -1,5 +1,5 @@ dump('entering circ.copy_status.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: if (typeof circ == 'undefined') { circ = {}; } circ.copy_status = function (params) { diff --git a/Open-ILS/xul/staff_client/server/circ/in_house_use.js b/Open-ILS/xul/staff_client/server/circ/in_house_use.js index e3d7be529a..9d8201b648 100644 --- a/Open-ILS/xul/staff_client/server/circ/in_house_use.js +++ b/Open-ILS/xul/staff_client/server/circ/in_house_use.js @@ -1,5 +1,5 @@ dump('entering circ.in_house_use.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: if (typeof circ == 'undefined') circ = {}; circ.in_house_use = function (params) { diff --git a/Open-ILS/xul/staff_client/server/circ/pre_cat_fields.xul b/Open-ILS/xul/staff_client/server/circ/pre_cat_fields.xul index eb4cadefad..317cc27a8e 100644 --- a/Open-ILS/xul/staff_client/server/circ/pre_cat_fields.xul +++ b/Open-ILS/xul/staff_client/server/circ/pre_cat_fields.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/circ/print_list_template_editor.js b/Open-ILS/xul/staff_client/server/circ/print_list_template_editor.js index 352d0c650f..5dea031d60 100644 --- a/Open-ILS/xul/staff_client/server/circ/print_list_template_editor.js +++ b/Open-ILS/xul/staff_client/server/circ/print_list_template_editor.js @@ -1,5 +1,5 @@ dump('entering print_list_template_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: if (typeof circ == 'undefined') circ = {}; circ.print_list_template_editor = function (params) { diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index 7c8003aa42..0b05f6b66b 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -1,5 +1,5 @@ dump('entering circ/util.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: if (typeof circ == 'undefined') { var circ = {}; } circ.util = {}; diff --git a/Open-ILS/xul/staff_client/server/main/data.xul b/Open-ILS/xul/staff_client/server/main/data.xul index d74676eedf..cebd0d8fa3 100644 --- a/Open-ILS/xul/staff_client/server/main/data.xul +++ b/Open-ILS/xul/staff_client/server/main/data.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/main/gen_offline_widgets.xul b/Open-ILS/xul/staff_client/server/main/gen_offline_widgets.xul index da5873f600..ec8e7bbd29 100644 --- a/Open-ILS/xul/staff_client/server/main/gen_offline_widgets.xul +++ b/Open-ILS/xul/staff_client/server/main/gen_offline_widgets.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/main/simple_auth.xul b/Open-ILS/xul/staff_client/server/main/simple_auth.xul index f30a319062..fa787b4d62 100644 --- a/Open-ILS/xul/staff_client/server/main/simple_auth.xul +++ b/Open-ILS/xul/staff_client/server/main/simple_auth.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/main/ws_info.xul b/Open-ILS/xul/staff_client/server/main/ws_info.xul index 40ab695542..b6c3e89c5d 100644 --- a/Open-ILS/xul/staff_client/server/main/ws_info.xul +++ b/Open-ILS/xul/staff_client/server/main/ws_info.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/serial/manage_dists.xul b/Open-ILS/xul/staff_client/server/serial/manage_dists.xul index 3daf758c01..fca02ecf4c 100644 --- a/Open-ILS/xul/staff_client/server/serial/manage_dists.xul +++ b/Open-ILS/xul/staff_client/server/serial/manage_dists.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/serial/manage_items.xul b/Open-ILS/xul/staff_client/server/serial/manage_items.xul index c5bedca72a..d486372cbf 100644 --- a/Open-ILS/xul/staff_client/server/serial/manage_items.xul +++ b/Open-ILS/xul/staff_client/server/serial/manage_items.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/serial/manage_subs.xul b/Open-ILS/xul/staff_client/server/serial/manage_subs.xul index 5dff57bcd4..e8c4a038cd 100644 --- a/Open-ILS/xul/staff_client/server/serial/manage_subs.xul +++ b/Open-ILS/xul/staff_client/server/serial/manage_subs.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/serial/notes.xul b/Open-ILS/xul/staff_client/server/serial/notes.xul index 895b91368d..64a83b97a3 100644 --- a/Open-ILS/xul/staff_client/server/serial/notes.xul +++ b/Open-ILS/xul/staff_client/server/serial/notes.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/serial/sbsum_editor.js b/Open-ILS/xul/staff_client/server/serial/sbsum_editor.js index 1dc83acab1..1d77cc9b28 100644 --- a/Open-ILS/xul/staff_client/server/serial/sbsum_editor.js +++ b/Open-ILS/xul/staff_client/server/serial/sbsum_editor.js @@ -1,5 +1,5 @@ dump('entering serial/sbsum_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: JSAN.use('serial.editor_base'); diff --git a/Open-ILS/xul/staff_client/server/serial/scap_editor.js b/Open-ILS/xul/staff_client/server/serial/scap_editor.js index d61d99daf4..1a6bb03c8f 100644 --- a/Open-ILS/xul/staff_client/server/serial/scap_editor.js +++ b/Open-ILS/xul/staff_client/server/serial/scap_editor.js @@ -1,5 +1,5 @@ dump('entering serial/scap_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: JSAN.use('serial.editor_base'); diff --git a/Open-ILS/xul/staff_client/server/serial/sdist_editor.js b/Open-ILS/xul/staff_client/server/serial/sdist_editor.js index ab05ba2eaa..4e771052a1 100644 --- a/Open-ILS/xul/staff_client/server/serial/sdist_editor.js +++ b/Open-ILS/xul/staff_client/server/serial/sdist_editor.js @@ -1,5 +1,5 @@ dump('entering serial/sdist_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: JSAN.use('serial.editor_base'); diff --git a/Open-ILS/xul/staff_client/server/serial/serctrl_main.xul b/Open-ILS/xul/staff_client/server/serial/serctrl_main.xul index 444879405a..983a55a64a 100644 --- a/Open-ILS/xul/staff_client/server/serial/serctrl_main.xul +++ b/Open-ILS/xul/staff_client/server/serial/serctrl_main.xul @@ -2,7 +2,7 @@ diff --git a/Open-ILS/xul/staff_client/server/serial/siss_editor.js b/Open-ILS/xul/staff_client/server/serial/siss_editor.js index 666c761fb6..05f2893400 100644 --- a/Open-ILS/xul/staff_client/server/serial/siss_editor.js +++ b/Open-ILS/xul/staff_client/server/serial/siss_editor.js @@ -1,5 +1,5 @@ dump('entering serial/siss_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: JSAN.use('serial.editor_base'); diff --git a/Open-ILS/xul/staff_client/server/serial/sisum_editor.js b/Open-ILS/xul/staff_client/server/serial/sisum_editor.js index 8c8a7c732a..44cb90a566 100644 --- a/Open-ILS/xul/staff_client/server/serial/sisum_editor.js +++ b/Open-ILS/xul/staff_client/server/serial/sisum_editor.js @@ -1,5 +1,5 @@ dump('entering serial/sisum_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: JSAN.use('serial.editor_base'); diff --git a/Open-ILS/xul/staff_client/server/serial/sitem_editor.js b/Open-ILS/xul/staff_client/server/serial/sitem_editor.js index 14079f6bf4..5ca8d0aa4d 100644 --- a/Open-ILS/xul/staff_client/server/serial/sitem_editor.js +++ b/Open-ILS/xul/staff_client/server/serial/sitem_editor.js @@ -1,5 +1,5 @@ dump('entering serial/sitem_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: JSAN.addRepository('/xul/server/'); JSAN.use('serial.editor_base'); diff --git a/Open-ILS/xul/staff_client/server/serial/sssum_editor.js b/Open-ILS/xul/staff_client/server/serial/sssum_editor.js index 9ab8efcf44..759b05a9a4 100644 --- a/Open-ILS/xul/staff_client/server/serial/sssum_editor.js +++ b/Open-ILS/xul/staff_client/server/serial/sssum_editor.js @@ -1,5 +1,5 @@ dump('entering serial/sssum_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: JSAN.use('serial.editor_base'); diff --git a/Open-ILS/xul/staff_client/server/serial/sstr_editor.js b/Open-ILS/xul/staff_client/server/serial/sstr_editor.js index 5f3f484767..876baec8b4 100644 --- a/Open-ILS/xul/staff_client/server/serial/sstr_editor.js +++ b/Open-ILS/xul/staff_client/server/serial/sstr_editor.js @@ -1,5 +1,5 @@ dump('entering serial/sstr_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: JSAN.use('serial.editor_base'); diff --git a/Open-ILS/xul/staff_client/server/serial/ssub_editor.js b/Open-ILS/xul/staff_client/server/serial/ssub_editor.js index 20a0597a81..5aa36da2bc 100644 --- a/Open-ILS/xul/staff_client/server/serial/ssub_editor.js +++ b/Open-ILS/xul/staff_client/server/serial/ssub_editor.js @@ -1,5 +1,5 @@ dump('entering serial/ssub_editor.js\n'); -// vim:noet:sw=4:ts=4: +// vim:et:sw=4:ts=4: JSAN.use('serial.editor_base');