iqvoc 3.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +69 -0
- data/Gemfile.lock +134 -0
- data/LICENSE +13 -0
- data/README.md +68 -0
- data/Rakefile +23 -0
- data/app/controllers/application_controller.rb +125 -0
- data/app/controllers/collections/hierarchical_controller.rb +44 -0
- data/app/controllers/collections_controller.rb +124 -0
- data/app/controllers/concepts/alphabetical_controller.rb +39 -0
- data/app/controllers/concepts/hierarchical_controller.rb +74 -0
- data/app/controllers/concepts/untranslated_controller.rb +38 -0
- data/app/controllers/concepts/versions_controller.rb +119 -0
- data/app/controllers/concepts_controller.rb +174 -0
- data/app/controllers/dashboard_controller.rb +43 -0
- data/app/controllers/pages_controller.rb +22 -0
- data/app/controllers/rdf_controller.rb +43 -0
- data/app/controllers/search_results_controller.rb +101 -0
- data/app/controllers/triple_store_syncs_controller.rb +45 -0
- data/app/controllers/user_sessions_controller.rb +48 -0
- data/app/controllers/users_controller.rb +81 -0
- data/app/helpers/application_helper.rb +60 -0
- data/app/helpers/concepts_helper.rb +86 -0
- data/app/helpers/dashboard_helper.rb +46 -0
- data/app/helpers/rdf_helper.rb +63 -0
- data/app/helpers/search_results_helper.rb +32 -0
- data/app/models/collection/base.rb +161 -0
- data/app/models/collection/member/base.rb +23 -0
- data/app/models/collection/member/collection.rb +33 -0
- data/app/models/collection/member/concept.rb +33 -0
- data/app/models/collection/unordered.rb +18 -0
- data/app/models/concept/base.rb +418 -0
- data/app/models/concept/relation/base.rb +95 -0
- data/app/models/concept/relation/reverse_relation_extension.rb +49 -0
- data/app/models/concept/relation/skos/base.rb +37 -0
- data/app/models/concept/relation/skos/broader/base.rb +41 -0
- data/app/models/concept/relation/skos/broader/mono.rb +28 -0
- data/app/models/concept/relation/skos/broader/poly.rb +23 -0
- data/app/models/concept/relation/skos/narrower/base.rb +37 -0
- data/app/models/concept/relation/skos/related.rb +21 -0
- data/app/models/concept/skos/base.rb +28 -0
- data/app/models/label/base.rb +98 -0
- data/app/models/label/skos/base.rb +27 -0
- data/app/models/labeling/base.rb +81 -0
- data/app/models/labeling/skos/alt_label.rb +21 -0
- data/app/models/labeling/skos/base.rb +99 -0
- data/app/models/labeling/skos/hidden_label.rb +25 -0
- data/app/models/labeling/skos/pref_label.rb +30 -0
- data/app/models/match/base.rb +57 -0
- data/app/models/match/skos/base.rb +23 -0
- data/app/models/match/skos/broad_match.rb +21 -0
- data/app/models/match/skos/close_match.rb +21 -0
- data/app/models/match/skos/exact_match.rb +21 -0
- data/app/models/match/skos/mapping_relation.rb +21 -0
- data/app/models/match/skos/narrow_match.rb +21 -0
- data/app/models/match/skos/related_match.rb +21 -0
- data/app/models/note/annotated/base.rb +29 -0
- data/app/models/note/base.rb +127 -0
- data/app/models/note/skos/base.rb +52 -0
- data/app/models/note/skos/change_note.rb +38 -0
- data/app/models/note/skos/definition.rb +33 -0
- data/app/models/note/skos/editorial_note.rb +21 -0
- data/app/models/note/skos/example.rb +21 -0
- data/app/models/note/skos/history_note.rb +21 -0
- data/app/models/note/skos/scope_note.rb +21 -0
- data/app/models/origin_mapping.rb +58 -0
- data/app/models/rdf_store.rb +96 -0
- data/app/models/search_extension.rb +58 -0
- data/app/models/user.rb +49 -0
- data/app/models/user_session.rb +23 -0
- data/app/views/collections/_collection.html.erb +10 -0
- data/app/views/collections/_form.html.erb +47 -0
- data/app/views/collections/edit.html.erb +11 -0
- data/app/views/collections/index.html.erb +12 -0
- data/app/views/collections/new.html.erb +7 -0
- data/app/views/collections/show.html.erb +53 -0
- data/app/views/collections/show.iqrdf +22 -0
- data/app/views/concepts/_base_data.html.erb +72 -0
- data/app/views/concepts/_close_match.html.erb +16 -0
- data/app/views/concepts/_show_head.html.erb +23 -0
- data/app/views/concepts/_visualization.html.erb +9 -0
- data/app/views/concepts/alphabetical/_pref_labeling.html.erb +6 -0
- data/app/views/concepts/alphabetical/index.html.erb +17 -0
- data/app/views/concepts/edit.html.erb +32 -0
- data/app/views/concepts/hierarchical/_treeview.html.erb +20 -0
- data/app/views/concepts/hierarchical/index.html.erb +5 -0
- data/app/views/concepts/index.iqrdf +24 -0
- data/app/views/concepts/new.html.erb +3 -0
- data/app/views/concepts/show_published.html.erb +16 -0
- data/app/views/concepts/show_unpublished.html.erb +43 -0
- data/app/views/concepts/untranslated/index.html.erb +23 -0
- data/app/views/dashboard/index.html.erb +47 -0
- data/app/views/errors/access_denied.html.erb +3 -0
- data/app/views/errors/multiple_choices.html.erb +11 -0
- data/app/views/errors/not_found.html.erb +8 -0
- data/app/views/kaminari/_page.html.erb +6 -0
- data/app/views/kaminari/_paginator.html.erb +15 -0
- data/app/views/layouts/_controls.html.erb +37 -0
- data/app/views/layouts/_header.html.erb +1 -0
- data/app/views/layouts/_navigation.html.erb +27 -0
- data/app/views/layouts/_sections.html.erb +8 -0
- data/app/views/layouts/application.html.erb +83 -0
- data/app/views/pages/about.html.erb +77 -0
- data/app/views/partials/_rdf_logo.html.erb +4 -0
- data/app/views/partials/collection/_member.html.erb +14 -0
- data/app/views/partials/collection_label/_search_result.html.erb +5 -0
- data/app/views/partials/concept/_edit_link_base.html.erb +4 -0
- data/app/views/partials/concept/_inline_base.html.erb +4 -0
- data/app/views/partials/concept/_new_link_base.html.erb +4 -0
- data/app/views/partials/concept/relation/_base.html.erb +8 -0
- data/app/views/partials/concept/relation/_edit_base.html.erb +15 -0
- data/app/views/partials/concept/relation/skos/_narrower.html.erb +12 -0
- data/app/views/partials/concept/relation/skos/broader/_mono.html.erb +28 -0
- data/app/views/partials/concept/relation/skos/broader/_poly.html.erb +14 -0
- data/app/views/partials/labeling/skos/_base.html.erb +17 -0
- data/app/views/partials/labeling/skos/_edit_base.html.erb +7 -0
- data/app/views/partials/labeling/skos/_search_result.html.erb +12 -0
- data/app/views/partials/match/_base.html.erb +13 -0
- data/app/views/partials/match/_edit_base.html.erb +6 -0
- data/app/views/partials/note/_base.html.erb +15 -0
- data/app/views/partials/note/_edit_base.html.erb +28 -0
- data/app/views/partials/note/_note.html.erb +14 -0
- data/app/views/partials/note/_search_result.html.erb +8 -0
- data/app/views/partials/note/skos/_edit_change_note.html.erb +47 -0
- data/app/views/partials/note/skos/definition/_search_result.html.erb +8 -0
- data/app/views/rdf/show_concept.iqrdf +5 -0
- data/app/views/search_results/_head_contents.html.erb +4 -0
- data/app/views/search_results/_rdf_links.html.erb +4 -0
- data/app/views/search_results/index.html.erb +92 -0
- data/app/views/search_results/index.iqrdf +33 -0
- data/app/views/triple_store_syncs/new.html.erb +7 -0
- data/app/views/user_sessions/new.html.erb +11 -0
- data/app/views/users/_form.html.erb +45 -0
- data/app/views/users/_user_preference.html.erb +12 -0
- data/app/views/users/edit.html.erb +14 -0
- data/app/views/users/index.html.erb +29 -0
- data/app/views/users/new.html.erb +13 -0
- data/config/application.rb +82 -0
- data/config/boot.rb +29 -0
- data/config/database.template.yml +43 -0
- data/config/database.yml +40 -0
- data/config/deploy/common.rb +79 -0
- data/config/deploy/ec2.rb +43 -0
- data/config/deploy/history.rb +29 -0
- data/config/deploy/innoq.rb +37 -0
- data/config/deploy.rb +72 -0
- data/config/engine.rb +25 -0
- data/config/environment.rb +21 -0
- data/config/environments/development.rb +74 -0
- data/config/environments/production.rb +65 -0
- data/config/environments/production.template.rb +65 -0
- data/config/environments/production_internal.rb +65 -0
- data/config/environments/test.rb +51 -0
- data/config/initializers/action_view.rb +23 -0
- data/config/initializers/active_record.rb +18 -0
- data/config/initializers/backtrace_silencers.rb +23 -0
- data/config/initializers/inflections.rb +26 -0
- data/config/initializers/iqvoc.rb +50 -0
- data/config/initializers/jdbc.rb +23 -0
- data/config/initializers/kaminari_config.rb +8 -0
- data/config/initializers/language.rb +6 -0
- data/config/initializers/mime_types.rb +24 -0
- data/config/initializers/secret_token.rb +29 -0
- data/config/initializers/secret_token.rb.template +29 -0
- data/config/initializers/session_store.rb +24 -0
- data/config/locales/activerecord.de.yml +135 -0
- data/config/locales/activerecord.en.yml +135 -0
- data/config/locales/authlogic.de.yml +38 -0
- data/config/locales/authlogic.en.yml +38 -0
- data/config/locales/de.yml +326 -0
- data/config/locales/defaults.de.yml +153 -0
- data/config/locales/en.yml +332 -0
- data/config/routes.rb +53 -0
- data/config/warble.rb +158 -0
- data/db/iqvoc_test.sqlite3 +0 -0
- data/db/migrate/20100927101502_create_schema.rb +174 -0
- data/db/migrate/20101125141218_add_collection_tables.rb +32 -0
- data/db/migrate/20101129161528_add_type_to_collections.rb +24 -0
- data/db/migrate/20101202094602_add_origin_to_collections.rb +25 -0
- data/db/migrate/20101202135420_rename_collection_contents_to_collection_members.rb +25 -0
- data/db/migrate/20101208103531_add_type_to_collection_contents.rb +27 -0
- data/db/migrate/20101210153916_add_indexes_to_collections.rb +25 -0
- data/db/migrate/20110204121244_create_collection_labels.rb +32 -0
- data/db/migrate/20110208084250_change_origin_lengths.rb +27 -0
- data/db/migrate/20110328124300_discard_collection_specifics.rb +27 -0
- data/db/migrate/20110408120357_remove_classifications_and_classifiers.rb +32 -0
- data/db/migrate/20110408120740_remove_xl_specfic_stuff.rb +39 -0
- data/db/migrate/20110420133640_change_value_in_notes.rb +8 -0
- data/db/migrate/20110427120534_add_published_at_to_labels.rb +9 -0
- data/db/migrate/20110510162719_use_mono_hierarchy_instead_of_poly_hierarchy.rb +13 -0
- data/db/migrate/20110512132624_extend_notes_value_field_length.rb +8 -0
- data/db/migrate/20110525103100_separate_note_annotation_predicates.rb +38 -0
- data/db/migrate/20110615134040_change_umt_note_annotations_to_dct.rb +9 -0
- data/db/schema.rb +127 -0
- data/db/seeds.rb +37 -0
- data/iqvoc.gemspec +27 -0
- data/lib/engine_tasks/assets.rake +49 -0
- data/lib/engine_tasks/db.rake +18 -0
- data/lib/engine_tasks/release.rake +118 -0
- data/lib/iqvoc/ability.rb +44 -0
- data/lib/iqvoc/data_helper.rb +27 -0
- data/lib/iqvoc/deep_cloning.rb +92 -0
- data/lib/iqvoc/rdf_helper.rb +67 -0
- data/lib/iqvoc/skos_importer.rb +144 -0
- data/lib/iqvoc/version.rb +19 -0
- data/lib/iqvoc/versioning.rb +151 -0
- data/lib/iqvoc.rb +228 -0
- data/lib/maker.rb +144 -0
- data/lib/ojdbc14.jar +0 -0
- data/lib/string.rb +23 -0
- data/lib/tasks/importer.rake +16 -0
- data/lib/tasks/jdbc.rake +24 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +26 -0
- data/public/favicon.ico +0 -0
- data/public/images/iqvoc/add.png +0 -0
- data/public/images/iqvoc/arrow_down.gif +0 -0
- data/public/images/iqvoc/arrow_up.gif +0 -0
- data/public/images/iqvoc/footer.png +0 -0
- data/public/images/iqvoc/go_there.png +0 -0
- data/public/images/iqvoc/header.png +0 -0
- data/public/images/iqvoc/header_long.png +0 -0
- data/public/images/iqvoc/iqvoc.png +0 -0
- data/public/images/iqvoc/note_add.png +0 -0
- data/public/images/iqvoc/note_delete.png +0 -0
- data/public/images/iqvoc/note_edit.png +0 -0
- data/public/images/iqvoc/ok.png +0 -0
- data/public/images/iqvoc/rails.png +0 -0
- data/public/images/iqvoc/rdf_flyer.gif +0 -0
- data/public/images/iqvoc/red_arrow.png +0 -0
- data/public/images/iqvoc/remove.png +0 -0
- data/public/images/iqvoc/shadow.png +0 -0
- data/public/images/iqvoc/spinner.gif +0 -0
- data/public/images/iqvoc/tokenizer_delete.png +0 -0
- data/public/images/iqvoc/tokenizer_pencile.png +0 -0
- data/public/images/iqvoc/tokenizer_show.png +0 -0
- data/public/images/iqvoc/unfinished.png +0 -0
- data/public/javascripts/iqvoc/application.js +123 -0
- data/public/javascripts/iqvoc/entityselect.js +121 -0
- data/public/javascripts/iqvoc/excanvas.js +35 -0
- data/public/javascripts/iqvoc/iqvoc.js +118 -0
- data/public/javascripts/iqvoc/jit_rgraph.js +153 -0
- data/public/javascripts/iqvoc/jquery-1.6.2.min.js +18 -0
- data/public/javascripts/iqvoc/jquery-treeview/changelog.txt +29 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/async.html +44 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/bg.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/demo.js +43 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/images.html +56 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/index.html +340 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/large.html +559 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/prerendered.html +621 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/screen.css +24 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/simple.html +82 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.php +87 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.phps +87 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/ajax-loader.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/file.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/folder-closed.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/folder.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/minus.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/plus.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-black-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-black.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-default-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-default.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-gray-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-gray.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-red-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-red.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.async.js +82 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.css +75 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.js +251 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.min.js +15 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.pack.js +16 -0
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.cookie.js +92 -0
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.js +3363 -0
- data/public/javascripts/iqvoc/jquery-treeview/todo +8 -0
- data/public/javascripts/iqvoc/jquery-ui-1.8.13.custom.js +3229 -0
- data/public/javascripts/iqvoc/jquery-ui-1.8.13.custom.min.js +163 -0
- data/public/javascripts/iqvoc/jquery-ui.datepicker-de.js +22 -0
- data/public/javascripts/iqvoc/json2.js +480 -0
- data/public/javascripts/iqvoc/langselect.js +73 -0
- data/public/javascripts/iqvoc/rails.js +132 -0
- data/public/javascripts/iqvoc/storage.js +122 -0
- data/public/javascripts/iqvoc/visualization.js +321 -0
- data/public/robots.txt +5 -0
- data/public/stylesheets/iqvoc/blueprint/ie.css +35 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/key.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/readme.txt +32 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/screen.css +97 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/screen.css +71 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/readme.txt +18 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/screen.css +40 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/readme.txt +10 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/screen.css +110 -0
- data/public/stylesheets/iqvoc/blueprint/print.css +29 -0
- data/public/stylesheets/iqvoc/blueprint/screen.css +258 -0
- data/public/stylesheets/iqvoc/blueprint/src/forms.css +65 -0
- data/public/stylesheets/iqvoc/blueprint/src/grid.css +280 -0
- data/public/stylesheets/iqvoc/blueprint/src/grid.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/src/ie.css +76 -0
- data/public/stylesheets/iqvoc/blueprint/src/print.css +85 -0
- data/public/stylesheets/iqvoc/blueprint/src/reset.css +45 -0
- data/public/stylesheets/iqvoc/blueprint/src/typography.css +106 -0
- data/public/stylesheets/iqvoc/forms.css +71 -0
- data/public/stylesheets/iqvoc/images/back.png +0 -0
- data/public/stylesheets/iqvoc/images/branch.png +0 -0
- data/public/stylesheets/iqvoc/images/categ.png +0 -0
- data/public/stylesheets/iqvoc/images/categ_open.png +0 -0
- data/public/stylesheets/iqvoc/images/go_there.png +0 -0
- data/public/stylesheets/iqvoc/images/iqvoc.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_end.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_end_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_mid.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_mid_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_nothing.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_only.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_only_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_top.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_top_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/nothing.png +0 -0
- data/public/stylesheets/iqvoc/images/top_01.png +0 -0
- data/public/stylesheets/iqvoc/images/trunk.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_217bc0_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_2e83ff_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_469bdd_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_6da8d5_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_f9bd01_256x240.png +0 -0
- data/public/stylesheets/iqvoc/iqvoc.css +477 -0
- data/public/stylesheets/iqvoc/jquery-ui-1.8.13.custom.css +415 -0
- data/public/stylesheets/iqvoc/widgets.css +81 -0
- data/test/factories.rb +74 -0
- data/test/integration/alphabetical_test.rb +53 -0
- data/test/integration/authentication_test.rb +41 -0
- data/test/integration/browse_concepts_and_labels_test.rb +61 -0
- data/test/integration/browse_static_pages_test.rb +29 -0
- data/test/integration/client_augmentation_test.rb +42 -0
- data/test/integration/client_edit_concept_test.rb +72 -0
- data/test/integration/collection_circularity_test.rb +110 -0
- data/test/integration/concept_test.rb +61 -0
- data/test/integration/edit_concepts_test.rb +40 -0
- data/test/integration/note_annotations_test.rb +86 -0
- data/test/integration/search_test.rb +205 -0
- data/test/integration/tree_test.rb +31 -0
- data/test/integration/untranslated_test.rb +60 -0
- data/test/integration_test_helper.rb +45 -0
- data/test/performance/browsing_test.rb +25 -0
- data/test/test_helper.rb +29 -0
- data/test/unit/concept_test.rb +93 -0
- data/test/unit/note_test.rb +32 -0
- data/test/unit/origin_mapping_test.rb +70 -0
- data/test/unit/skos_import_test.rb +100 -0
- metadata +522 -0
@@ -0,0 +1,621 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
|
5
|
+
<link rel="stylesheet" href="../jquery.treeview.css" />
|
6
|
+
<link rel="stylesheet" href="../red-treeview.css" />
|
7
|
+
<link rel="stylesheet" href="screen.css" />
|
8
|
+
|
9
|
+
<script src="../lib/jquery.js" type="text/javascript"></script>
|
10
|
+
<script src="../lib/jquery.cookie.js" type="text/javascript"></script>
|
11
|
+
<script src="../jquery.treeview.js" type="text/javascript"></script>
|
12
|
+
|
13
|
+
<script type="text/javascript">
|
14
|
+
$(function() {
|
15
|
+
$("#tree").treeview({
|
16
|
+
collapsed: true,
|
17
|
+
animated: "medium",
|
18
|
+
control:"#sidetreecontrol",
|
19
|
+
prerendered: true,
|
20
|
+
persist: "location"
|
21
|
+
});
|
22
|
+
})
|
23
|
+
|
24
|
+
</script>
|
25
|
+
|
26
|
+
</head>
|
27
|
+
<body>
|
28
|
+
|
29
|
+
<h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/">jQuery Treeview Plugin</a> Demo</h1>
|
30
|
+
<div id="main">
|
31
|
+
|
32
|
+
<a href=".">Main Demo</a>
|
33
|
+
|
34
|
+
<div id="sidetree">
|
35
|
+
<div class="treeheader"> </div>
|
36
|
+
<div id="sidetreecontrol"> <a href="?#">Collapse All</a> | <a href="?#">Expand All</a> </div>
|
37
|
+
|
38
|
+
<ul class="treeview" id="tree">
|
39
|
+
|
40
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/index.cfm"><strong>Home</strong></a>
|
41
|
+
<ul style="display: none;">
|
42
|
+
<li><a href="?/enewsletters/index.cfm">Airdrie eNewsletters </a></li>
|
43
|
+
<li><a href="?/index.cfm">Airdrie Directories</a></li>
|
44
|
+
<li><a href="?/economic_development/video/index.cfm">Airdrie Life Video</a></li>
|
45
|
+
|
46
|
+
<li><a href="?/index.cfm">Airdrie News</a></li>
|
47
|
+
|
48
|
+
<li><a href="?/index.cfm">Airdrie Quick Links</a></li>
|
49
|
+
<li><a href="?http://weather.ibegin.com/ca/ab/airdrie/" target="_blank">Airdrie Weather</a></li>
|
50
|
+
<li><a href="?/human_resources/index.cfm">Careers</a> | <a href="?/contact_us/index.cfm">Contact Us</a> | <a href="?/site_map/index.cfm">Site Map</a> | <a href="?/links/index.cfm">Links</a></li>
|
51
|
+
|
52
|
+
<li><a href="?/calendars/index.cfm">Community Calendar </a></li>
|
53
|
+
<li><a href="?/conditions_of_use/index.cfm">Conditions of Use and Privacy Statement</a></li>
|
54
|
+
<li><a href="?/index.cfm">I'd like to find out about... </a></li>
|
55
|
+
<li><a href="?/index.cfm">Opportunities</a></li>
|
56
|
+
<li><a href="?/links/index.cfm">Resource Links</a></li>
|
57
|
+
<li class="last"><a href="?/index.cfm">Special Notices</a></li>
|
58
|
+
|
59
|
+
</ul>
|
60
|
+
</li>
|
61
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><span><strong>City Services</strong></span>
|
62
|
+
<ul style="display: none;">
|
63
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/assessment/index.cfm">Assessment</a>
|
64
|
+
<ul style="display: none;">
|
65
|
+
<li><a href="?/assessment/assessment_faqs.cfm">Assessment FAQs</a></li>
|
66
|
+
|
67
|
+
<li><a href="?/assessment/property_assessment_notices.cfm">2007 Property Assessment Notices</a></li>
|
68
|
+
<li><a href="?http://www.creb.com/" target="_blank">CREB</a></li>
|
69
|
+
<li><a href="?/assessment/non_residential_assessment_tax_comparisons.cfm">Non-Residential Assessment / Tax Comparisons</a></li>
|
70
|
+
<li><a href="?/assessment/how_to_file_a_complaint.cfm">How to File a Complaint</a></li>
|
71
|
+
<li class="last"><a href="?/assessment/supplementary_assessment_tax.cfm">Supplementary Assessment and Tax</a></li>
|
72
|
+
</ul>
|
73
|
+
|
74
|
+
</li>
|
75
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/building_development/index.cfm">Building & Development </a>
|
76
|
+
<ul style="display: none;">
|
77
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/building_inspections/index.cfm">Building Inspections</a>
|
78
|
+
<ul style="display: none;">
|
79
|
+
<li><a href="?/building_inspections/builder_forums.cfm">Builder Forums</a></li>
|
80
|
+
|
81
|
+
<li><a href="?/building_inspections/contact_us.cfm">Contact Us</a></li>
|
82
|
+
<li><a href="?/building_inspections/contractor_notices.cfm">Contractor Notices</a></li>
|
83
|
+
<li><a href="?/building_inspections/inspector_guidelines.cfm">Inspector Guidelines</a></li>
|
84
|
+
<li><a href="?/building_inspections/links.cfm">Links</a></li>
|
85
|
+
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a href="?/building_inspections/statistics_2007.cfm">Statistics</a>
|
86
|
+
<ul style="display: none;">
|
87
|
+
|
88
|
+
<li><a href="?/building_inspections/statistics_2006.cfm">Statistics 2006</a></li>
|
89
|
+
<li class="last"><a href="?/building_inspections/statistics_2005.cfm">Statistics 2005</a></li>
|
90
|
+
</ul>
|
91
|
+
</li>
|
92
|
+
</ul>
|
93
|
+
</li>
|
94
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="City Infrastructure" href="?/building_development/city_infrastructure/index.cfm">City Infrastructure</a>
|
95
|
+
|
96
|
+
<ul style="display: none;">
|
97
|
+
|
98
|
+
<li><a href="?/building_development/city_infrastructure/roadway_improvement.cfm">Roadway Improvement</a></li>
|
99
|
+
<li><a href="?/building_development/city_infrastructure/traffic.cfm">Traffic</a></li>
|
100
|
+
<li><a href="?/building_development/city_infrastructure/transportation_planning.cfm">Transportation & Infrastructure Planning</a></li>
|
101
|
+
<li class="last"><a href="?/building_development/city_infrastructure/water_sewer_construction.cfm">Water & Sewer Construction</a></li>
|
102
|
+
|
103
|
+
</ul>
|
104
|
+
</li>
|
105
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Commercial/Industrial Development" href="?/building_development/commercial_industrial_development/index.cfm">Commercial / Industrial / Multi-Family Development</a>
|
106
|
+
<ul style="display: none;">
|
107
|
+
<li><a title="Call Before You Dig" href="?/building_development/commercial_industrial_development/call_before_you_dig.cfm">Call Before You Dig</a></li>
|
108
|
+
<li><a title="New Development" href="?/building_development/commercial_industrial_development/new_development.cfm">New Development</a></li>
|
109
|
+
<li><a title="Existing Development" href="?/building_development/commercial_industrial_development/existing_development.cfm">Existing Development</a></li>
|
110
|
+
|
111
|
+
<li><a title="Signage" href="?/building_development/commercial_industrial_development/signage.cfm">Signage</a></li>
|
112
|
+
<li><a title="Notice of Development" href="?/building_development/planning/notice_of_development/notice_of_development.cfm">Notice of Development</a></li>
|
113
|
+
<li><a title="Appeals" href="?/public_meetings/appeals/index.cfm">Appeals</a></li>
|
114
|
+
<li><a title="Customer Feedback" href="?/building_development/commercial_industrial_development/customer_feedback.cfm">Customer Feedback</a></li>
|
115
|
+
<li><a title="Certificate of Compliance" href="?/building_development/commercial_industrial_development/certificate_of_compliance.cfm">Certificate of Compliance</a></li>
|
116
|
+
<li><a title="Permit Applications & Forms" href="?/building_development/commercial_industrial_development/permit_applications_forms.cfm">Permit Applications & Forms</a></li>
|
117
|
+
|
118
|
+
<li class="last"><a title="Fees" href="?/building_development/commercial_industrial_development/fees.cfm">Fees</a></li>
|
119
|
+
</ul>
|
120
|
+
</li>
|
121
|
+
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><!-- This links to an empty content page (25 Sept 2007) --> <a title="Residential Development" href="?/building_development/residential_development/index.cfm">Residential Development</a>
|
122
|
+
<ul style="display: none;">
|
123
|
+
<li><a title="Call Before You Dig" href="?/building_development/residential_construction/building_permit_requirements.cfm">Building Permit Requirements</a></li>
|
124
|
+
<li><a title="New Development" href="?/building_development/residential_construction/new_homes.cfm">New Homes</a></li>
|
125
|
+
|
126
|
+
<li><a title="Existing Development" href="?/building_development/residential_construction/basements.cfm">Basements</a></li>
|
127
|
+
<li><a title="Signage" href="?/building_development/commercial_industrial_development/call_before_you_dig.cfm">Call Before You Dig</a></li>
|
128
|
+
<li><a title="Decks" href="?/building_development/residential_development/decks.cfm">Decks</a></li>
|
129
|
+
<li><a title="Detached Garages or Accessory Building" href="?/building_development/residential_development/detached_garages_or_accessory_building.cfm">Detached Garages or Accessory Building</a></li>
|
130
|
+
<li><a title="Grading" href="?/building_development/residential_development/grading.cfm">Grading</a></li>
|
131
|
+
<li><a title="Fences" href="?/building_development/residential_development/fences.cfm">Fences</a></li>
|
132
|
+
|
133
|
+
<li><a title="Applications, Permits & Checklists" href="?/building_development/residential_development/applications_permits_checklists.cfm">Applications, Permits & Checklists</a></li>
|
134
|
+
<li><a title="Certificate of Compliance" href="?/building_development/commercial_industrial_development/certificate_of_compliance.cfm">Certificate of Compliance</a></li>
|
135
|
+
<li><a title="Fees" href="?/building_development/residential_development/fees.cfm">Fees</a></li>
|
136
|
+
<li><a title="Notice of Development" href="?/building_development/planning/notice_of_development/notice_of_development.cfm">Notice of Development</a></li>
|
137
|
+
<li class="last"><a title="Street Addresses for New Construction" href="?/gis/index.cfm">Street Addresses for New Construction</a></li>
|
138
|
+
|
139
|
+
</ul>
|
140
|
+
</li>
|
141
|
+
</ul>
|
142
|
+
</li>
|
143
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/community_safety/index.cfm">Community Safety</a>
|
144
|
+
<ul style="display: none;">
|
145
|
+
<li><a href="?/disaster_services/index.cfm">Disaster Services</a></li>
|
146
|
+
|
147
|
+
<li><a href="?/emergency_services/index.cfm">Emergency Services</a></li>
|
148
|
+
<li><a href="?/municipal_enforcement/index.cfm">Municipal Enforcement</a></li>
|
149
|
+
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a href="?/rcmp/index.cfm">Royal Canadian Mounted Police</a>
|
150
|
+
<ul style="display: none;">
|
151
|
+
<li><a title="Community Partnership Programs" href="?/rcmp/community_partnership_programs.cfm">Community Partnership Programs</a></li>
|
152
|
+
<li class="last"><a title="Traffic Services" href="?/rcmp/traffic_services.cfm">Traffic Services</a></li>
|
153
|
+
|
154
|
+
</ul>
|
155
|
+
</li>
|
156
|
+
</ul>
|
157
|
+
</li>
|
158
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/community_services/index.cfm">Community Services</a>
|
159
|
+
<ul style="display: none;">
|
160
|
+
<li><a href="?/directories/community_directory/index.cfm">Community Directory</a></li>
|
161
|
+
|
162
|
+
<li class="last"><a href="?/calendars/index.cfm">Community Calendar</a></li>
|
163
|
+
|
164
|
+
</ul>
|
165
|
+
</li>
|
166
|
+
<li><a href="?/engineering/index.cfm">Engineering Services </a></li>
|
167
|
+
<li><a href="?/finance/index.cfm">Finance</a></li>
|
168
|
+
<li><a href="?/gis/index.cfm">Maps (GIS)</a></li>
|
169
|
+
|
170
|
+
<li><a href="?/parks/parks_recreation.cfm">Parks & Recreation</a></li>
|
171
|
+
|
172
|
+
<li><a href="?/public_works/index.cfm">Public Works</a></li>
|
173
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/recycling_waste/index.cfm">Recycling, Waste & Composting</a>
|
174
|
+
<ul style="display: none;">
|
175
|
+
<li class="last"><a href="?/environmental_services/index.cfm">Environmental Services </a></li>
|
176
|
+
|
177
|
+
</ul>
|
178
|
+
</li>
|
179
|
+
|
180
|
+
<li><a href="?/social_planning/index.cfm">Social Planning</a></li>
|
181
|
+
<li><a href="?/taxation/index.cfm">Taxation</a></li>
|
182
|
+
<li><a href="?/transit/index.cfm">Transit</a></li>
|
183
|
+
<li class="last"><a href="?/utilities/index.cfm">Water & Sewer (Utilities)</a></li>
|
184
|
+
|
185
|
+
</ul>
|
186
|
+
</li>
|
187
|
+
|
188
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><span><strong>News</strong></span>
|
189
|
+
<ul style="display: none;">
|
190
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/enewsletters/index.cfm">Airdrie eNewsletters</a>
|
191
|
+
<ul style="display: none;">
|
192
|
+
<li><a href="?http://www.industrymailout.com/Industry/View.aspx?id=50169&p=679b" target="_new">Airdrie Today eNewsletter</a></li>
|
193
|
+
|
194
|
+
<li><a href="?http://www.industrymailout.com/Industry/View.aspx?id=47265&q=0&qz=4c4af0" target="_new">Airdrie @Work eNewsletter</a></li>
|
195
|
+
<li class="last"><a href="?http://www.industrymailout.com/Industry/Archives.aspx?m=2682&qz=73249dbb" target="_new">Airdrie eNewsletter Archive</a></li>
|
196
|
+
|
197
|
+
</ul>
|
198
|
+
</li>
|
199
|
+
<li><a href="?/calendars/index.cfm">Community Calendar</a></li>
|
200
|
+
<li><a href="?/community_news/index.cfm">Community News</a></li>
|
201
|
+
|
202
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/news_release/index.cfm">News Releases</a> (2007)
|
203
|
+
<ul style="display: none;">
|
204
|
+
<li><a href="?/news_release/2006/index.cfm" title="2006 News Releases">2006 News Releases</a></li>
|
205
|
+
|
206
|
+
<li><a href="?/news_release/2005/index.cfm" title="2005 News Releases">2005 News Releases</a></li>
|
207
|
+
<li class="last"><a href="?/news_release/2004/index.cfm" title="2004 News Releases">2004 News Releases</a></li>
|
208
|
+
</ul>
|
209
|
+
|
210
|
+
</li>
|
211
|
+
<li><a href="?/building_development/planning/notice_of_development/notice_of_development.cfm">Notice of Development </a></li>
|
212
|
+
<li><a href="?/photogallery/index.cfm">Photo Gallery</a></li>
|
213
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/public_meetings/index.cfm">Public Meetings</a>
|
214
|
+
|
215
|
+
<ul style="display: none;">
|
216
|
+
<li><a href="?/public_meetings/appeals/index.cfm">Appeals</a></li>
|
217
|
+
|
218
|
+
<li><a href="?/public_meetings/open_houses/index.cfm">Open Houses</a></li>
|
219
|
+
<li class="last"><a href="?/public_meetings/public_hearings/index.cfm">Public Hearings</a></li>
|
220
|
+
</ul>
|
221
|
+
</li>
|
222
|
+
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a href="?/publications/index.cfm">Publications</a>
|
223
|
+
|
224
|
+
<ul style="display: none;">
|
225
|
+
<li><a href="?/publications/pdf/AirdrieLIFE_fall2006.pdf">Airdrie Life Magazine</a> (16MB, .PDF)</li>
|
226
|
+
|
227
|
+
<li><a href="?/publications/pdf/report_for_2005.pdf">Annual Economic Report</a> (5 MB, .PDF)</li>
|
228
|
+
<li class="last"><a href="?/publications/pdf/Airdrie%20community%20report%20for%202006_sm.pdf">Annual Community Report</a></li>
|
229
|
+
</ul>
|
230
|
+
|
231
|
+
</li>
|
232
|
+
</ul>
|
233
|
+
</li>
|
234
|
+
|
235
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><span><strong>City Council & Administration </strong></span>
|
236
|
+
<ul style="display: none;">
|
237
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/election/index.cfm">2007 Election</a>
|
238
|
+
<ul style="display: none;">
|
239
|
+
|
240
|
+
<li><a href="?/election/city_council.cfm" title="City Council">City Council</a></li>
|
241
|
+
<li><a href="?/election/candidates.cfm" title="Candidates">Candidates</a></li>
|
242
|
+
|
243
|
+
<li><a href="?/election/candidate_information_package.cfm" title="Candidate Information Package">Candidate Information Package</a></li>
|
244
|
+
<li><a href="?/election/faq.cfm" title="Frequently Asked Questions">Frequently Asked Questions</a></li>
|
245
|
+
<li><a href="?/election/how_to_vote.cfm" title="How to Vote">How to Vote</a></li>
|
246
|
+
<li><a href="?/election/media.cfm" title="Media">Media</a></li>
|
247
|
+
|
248
|
+
<li class="last"><a href="?/election/past_elections.cfm" title="Past Elections">Past Elections</a></li>
|
249
|
+
</ul>
|
250
|
+
|
251
|
+
</li>
|
252
|
+
<li><a href="?/finance/budget_at_a_glance.cfm">Budget</a></li>
|
253
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/city_council/bylaws/index.cfm">Bylaws</a>
|
254
|
+
<ul style="display: none;">
|
255
|
+
<li><a href="?/city_council/bylaws/how_bylaws_are_passed.cfm">How Bylaws Are Passed</a></li>
|
256
|
+
|
257
|
+
<li><a href="?/city_council/bylaws/new_laws.cfm">New Laws</a></li>
|
258
|
+
|
259
|
+
<li class="last"><a href="?/city_council/policies.cfm">Policies</a></li>
|
260
|
+
</ul>
|
261
|
+
</li>
|
262
|
+
<li><a href="?/economic_development/census/index.cfm">Census</a></li>
|
263
|
+
<li class="last"><a href="?/city_council/index.cfm">City Council</a></li>
|
264
|
+
|
265
|
+
</ul>
|
266
|
+
<ul style="display: none;">
|
267
|
+
|
268
|
+
<li><a href="?/city_council/board_appointments.cfm">Board Appointments</a></li>
|
269
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/city_council/committees_boards_commission.cfm">Committees / Boards / Commssion</a>
|
270
|
+
<ul style="display: none;">
|
271
|
+
<li><a href="?/city_council/library_board.cfm" title="Airdrie Municipal Library Board">Airdrie Municipal Library Board</a></li>
|
272
|
+
<li><a href="?/city_council/assessment_review_board.cfm" title="Assessment Review Board">Assessment Review Board</a></li>
|
273
|
+
|
274
|
+
<li><a href="?/city_council/community_service_advisory_board.cfm" title="Community Services Advisory Board">Community Services Advisory Board</a></li>
|
275
|
+
|
276
|
+
<li><a href="?/city_council/enviromental_advisory_board.cfm" title="Environmental Advisory Board">Environmental Advisory Board</a></li>
|
277
|
+
<li><a href="?/city_council/finance_committee.cfm" title="Finance Advisory Committee">Finance Advisory Committee</a></li>
|
278
|
+
<li><a href="?/city_council/municipal_planning_commission.cfm" title="Municipal Planning Commission">Municipal Planning Commission</a></li>
|
279
|
+
<li><a href="?/city_council/municipal_police_committee.cfm" title="Municipal Police Committee">Municipal Police Committee</a></li>
|
280
|
+
<li class="last"><a href="?/city_council/subdivision_development_appeal_board.cfm" title="Subdivision and Development Appeal Board">Subdivision and Development Appeal Board</a></li>
|
281
|
+
|
282
|
+
</ul>
|
283
|
+
|
284
|
+
</li>
|
285
|
+
<li><a href="?/city_council/faq.cfm">Frequently Asked Questions (FAQ's)</a></li>
|
286
|
+
<li><a href="?/city_council/mayors_message.cfm">Mayor's Message</a></li>
|
287
|
+
<li><a href="?/city_council/mission_vision.cfm">Mission and Vision</a></li>
|
288
|
+
<li><a href="?/city_council/meet_your_council.cfm">Meet Your Council</a></li>
|
289
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/city_council/strategic_priorities.cfm">Strategic Priorities</a>
|
290
|
+
|
291
|
+
<ul style="display: none;">
|
292
|
+
<li><a href="?/city_council/strategic_priorities.cfm" title="Strategic Priorities 2008">Strategic Priorities 2008</a></li>
|
293
|
+
<li><a href="?/city_council/strategic_priorities_07.cfm" title="Strategic Priorities 2007">Strategic Priorities 2007</a></li>
|
294
|
+
<li><a href="?/city_council/strategic_priorities_06.cfm" title="Strategic Priorities 2006">Strategic Priorities 2006</a></li>
|
295
|
+
<li><a href="?/city_council/strategic_priorities_05.cfm" title="Strategic Priorities 2005">Strategic Priorities 2005</a></li>
|
296
|
+
<li class="last"><a href="?/city_council/strategic_priorities_04.cfm" title="Strategic Priorities 2004">Strategic Priorities 2004</a></li>
|
297
|
+
|
298
|
+
</ul>
|
299
|
+
</li>
|
300
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/city_council/city_council_meetings.cfm">City Council Meetings</a>
|
301
|
+
<ul style="display: none;">
|
302
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/city_council/agendas/2007_agendas.cfm">City Council Meeting Agendas</a>
|
303
|
+
<ul style="display: none;">
|
304
|
+
<li><a href="?/city_council/agendas/2007_agendas.cfm" title="2007 Agendas">2007 City Council Meeting Agendas</a></li>
|
305
|
+
|
306
|
+
<li><a href="?/city_council/agendas/2006_agendas.cfm" title="2006 Agendas">2006 City Council Meeting Agendas</a></li>
|
307
|
+
<li><a href="?/city_council/agendas/2005_agendas.cfm" title="2005 Agendas">2005 City Council Meeting Agendas</a></li>
|
308
|
+
<li class="last"><a href="?/city_council/agendas/2004_agendas.cfm" title="2004 Agendas">2004 City Council Meeting Agendas</a></li>
|
309
|
+
</ul>
|
310
|
+
</li>
|
311
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/city_council/minutes/2007_minutes.cfm">City Council Meeting Minutes</a>
|
312
|
+
|
313
|
+
<ul style="display: none;">
|
314
|
+
|
315
|
+
<li><a href="?/city_council/minutes/2007_minutes.cfm" title="2007 City Council Meeting Minutes">2007 City Council Meeting Minutes</a></li>
|
316
|
+
<li><a href="?/city_council/minutes/2006_minutes.cfm" title="2006 City Council Meeting Minutes">2006 City Council Meeting Minutes</a></li>
|
317
|
+
<li><a href="?/city_council/minutes/2005_minutes.cfm" title="2005 City Council Meeting Minutes">2005 City Council Meeting Minutes</a></li>
|
318
|
+
<li class="last"><a href="?/city_council/minutes/2004_minutes.cfm" title="2004 City Council Meeting Minutes">2004 City Council Meeting Minutes</a></li>
|
319
|
+
</ul>
|
320
|
+
|
321
|
+
</li>
|
322
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/city_council/synopsis/2007_synopsis.cfm">City Council Meeting Synopsis</a>
|
323
|
+
|
324
|
+
<ul style="display: none;">
|
325
|
+
<li><a href="?/city_council/synopsis/2007_synopsis.cfm" title="2007 City Council Meeting Synopsis">2007 City Council Meeting Synopsis</a></li>
|
326
|
+
<li><a href="?/city_council/synopsis/2006_synopsis.cfm" title="2006 City Council Meeting Synopsis">2006 City Council Meeting Synopsis</a></li>
|
327
|
+
<li><a href="?/city_council/synopsis/2005_synopsis.cfm" title="2005 City Council Meeting Synopsis">2005 City Council Meeting Synopsis</a></li>
|
328
|
+
|
329
|
+
<li class="last"><a href="?/city_council/synopsis/2004_synopsis.cfm" title="2004 City Council Meeting Synopsis">2004 City Council Meeting Synopsis</a></li>
|
330
|
+
</ul>
|
331
|
+
</li>
|
332
|
+
|
333
|
+
<li class="last"><a href="?/city_council/how_to_go_to_council.cfm">How to Go to Council</a></li>
|
334
|
+
</ul>
|
335
|
+
</li>
|
336
|
+
<li><a href="?/city_council/foip.cfm">FOIP</a></li>
|
337
|
+
|
338
|
+
<li><a href="?/city_council/how_government_works.cfm">How Government Works</a></li>
|
339
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/city_council/legislative_admin_services.cfm">Legislative & Admin Services</a>
|
340
|
+
|
341
|
+
<ul style="display: none;">
|
342
|
+
<li class="last"><a href="?/city_council/city_managers_message.cfm">City Manager's Message</a></li>
|
343
|
+
</ul>
|
344
|
+
</li>
|
345
|
+
|
346
|
+
<li class="last"><a href="?/org_chart/index.cfm">Organizational Chart</a></li>
|
347
|
+
</ul>
|
348
|
+
</li>
|
349
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><strong><a href="?#">Lifestyle</a></strong>
|
350
|
+
|
351
|
+
<ul style="display: none;">
|
352
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/about_airdrie/index.cfm">About Airdrie</a>
|
353
|
+
<ul style="display: none;">
|
354
|
+
|
355
|
+
<li class="last"><a href="?/about_airdrie/history.cfm">History</a></li>
|
356
|
+
</ul>
|
357
|
+
</li>
|
358
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/arts_culture/index.cfm">Arts & Culture</a>
|
359
|
+
|
360
|
+
<ul style="display: none;">
|
361
|
+
<li><a href="?/arts_culture/airdrie_art.cfm">Airdrie Art</a></li>
|
362
|
+
|
363
|
+
<li><a href="?http://www.airdriepubliclibrary.ca/" target="_new">Airdrie Public Library</a></li>
|
364
|
+
<li><a href="?/arts_culture/airdrie_rodeo_ranch.cfm">Airdrie Rodeo Ranch</a></li>
|
365
|
+
<li><a href="?/bert_church_theatre/index.cfm">Bert Church LIVE Theatre</a></li>
|
366
|
+
<li><a href="?/twinning_program/index.cfm">Korean Twinning Program</a></li>
|
367
|
+
|
368
|
+
<li><a href="?/arts_culture/little_theatre_association.cfm">Little Theatre Association</a></li>
|
369
|
+
<li><a href="?/sport_community_facilities/nose_creek_valley_museum.cfm" target="_new">Nose Creek Valley Museum</a></li>
|
370
|
+
|
371
|
+
<li class="last"><a href="?http://www.rockyview.ab.ca/rvae/" target="_new">Rocky View Adult Education</a></li>
|
372
|
+
</ul>
|
373
|
+
</li>
|
374
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/bert_church_theatre/index.cfm">Bert Church LIVE Theatre</a>
|
375
|
+
<ul style="display: none;">
|
376
|
+
|
377
|
+
<li><a href="?/bert_church_theatre/about_us.cfm" title="About Us">About Us</a></li>
|
378
|
+
<li><a href="?/bert_church_theatre/season_program.cfm" title="Current Season Program">Current Season Program</a></li>
|
379
|
+
|
380
|
+
<li><a href="?/bert_church_theatre/box_office.cfm" title="Box Office">Box Office</a></li>
|
381
|
+
<li><a href="?/bert_church_theatre/theatre_rental.cfm" title="Theatre Rental">Theatre Rental</a></li>
|
382
|
+
<li><a href="?/bert_church_theatre/technical_specifications.cfm" title="Technical Specifications">Technical Specifications</a></li>
|
383
|
+
<li><a href="?/bert_church_theatre/contact_us.cfm" title="Contact Us">Contact Us</a></li>
|
384
|
+
|
385
|
+
<li><a href="?/bert_church_theatre/photogallery.cfm" title="Photo Gallery">Photo Gallery</a></li>
|
386
|
+
<li><a href="?/bert_church_theatre/links.cfm" title="Links">Links</a></li>
|
387
|
+
|
388
|
+
<li class="last"><a href="?http://www.theresawasden.com/music_in_common.htm" target="_blank" title="Performing Arts Classes">Performing Arts Classes</a></li>
|
389
|
+
</ul>
|
390
|
+
</li>
|
391
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/elrwc/index.cfm">East Lake Recreation & Wellness Centre</a>
|
392
|
+
|
393
|
+
<ul style="display: none;">
|
394
|
+
<li><a href="?/elrwc/about_facility.cfm" title="About the Facility">About the Facility</a></li>
|
395
|
+
|
396
|
+
<li><a href="?/elrwc/contact.cfm" title="Contact Us">Contact Us</a></li>
|
397
|
+
<li><a href="?/elrwc/forms.cfm" title="Forms">Forms</a></li>
|
398
|
+
<li><a href="?/elrwc/future_phases.cfm" title="Future Phases">Future Phases</a></li>
|
399
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/elrwc/hours_operation.cfm" title="Hours of Operation & Schedules">Hours of Operation & Schedules</a>
|
400
|
+
|
401
|
+
<ul style="display: none;">
|
402
|
+
|
403
|
+
<li class="last"><a href="?/elrwc/schedules.cfm">Schedules</a></li>
|
404
|
+
</ul>
|
405
|
+
</li>
|
406
|
+
<li><a href="?/elrwc/city_guide.cfm" title="In the City Guide">In the City Guide</a></li>
|
407
|
+
<li><a href="?/elrwc/opportunities_events.cfm" title="Opportunities & Events">Opportunities & Events</a></li>
|
408
|
+
|
409
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/elrwc/programs_services.cfm" title="Programs & Services">Programs & Services</a>
|
410
|
+
|
411
|
+
<ul style="display: none;">
|
412
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Aquatics" href="?/elrwc/aquatics.cfm">Aquatics</a>
|
413
|
+
<ul style="display: none;">
|
414
|
+
<li class="last"><a title="Water Drop-in Classes" href="?/elrwc/water_classes.cfm">Water Drop-in Classes</a></li>
|
415
|
+
|
416
|
+
</ul>
|
417
|
+
</li>
|
418
|
+
<li><a title="Child Care Services" href="?/elrwc/child_services.cfm">Child Care Services</a></li>
|
419
|
+
|
420
|
+
<li><a title="Children Activities" href="?/elrwc/children_activities.cfm">Children Activities</a></li>
|
421
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Fitness & Wellness" href="?/elrwc/fitness_wellness.cfm">Fitness & Wellness</a>
|
422
|
+
|
423
|
+
<ul style="display: none;">
|
424
|
+
<li><a title="Dry Land Drop-in Classes" href="?/elrwc/land_classes.cfm">Dry Land Drop-in Classes</a></li>
|
425
|
+
<li class="last"><a title="Fitness & Wellness Services" href="?/elrwc/fitness_wellness_services.cfm">Fitness & Wellness Services</a></li>
|
426
|
+
|
427
|
+
</ul>
|
428
|
+
</li>
|
429
|
+
<li><a title="Party Packages" href="?/elrwc/party_packages.cfm">Party Packages</a></li>
|
430
|
+
|
431
|
+
<li class="last"><a title="Room Rentals" href="?/elrwc/room_rentals.cfm">Room Rentals</a></li>
|
432
|
+
</ul>
|
433
|
+
</li>
|
434
|
+
<li><a href="?/elrwc/rates_fees.cfm" title="Rates & Fees">Rates & Fees</a></li>
|
435
|
+
|
436
|
+
<li class="last"><a href="?/elrwc/register_now.cfm" title="Register Now">Register Now</a></li>
|
437
|
+
|
438
|
+
</ul>
|
439
|
+
</li>
|
440
|
+
<li><a href="?/education/index.cfm">Education</a></li>
|
441
|
+
<li><a href="?/health/index.cfm">Health</a></li>
|
442
|
+
<li><a href="?/gis/index.cfm">Maps (GIS)</a></li>
|
443
|
+
|
444
|
+
<li><a href="?/parks/parks_recreation.cfm">Parks & Recreation</a></li>
|
445
|
+
|
446
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Parks" href="?/parks/index.cfm">Parks</a>
|
447
|
+
<ul style="display: none;">
|
448
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="City Parks Programs" href="?city_parks_programs.cfm">City Parks Programs</a>
|
449
|
+
<ul style="display: none;">
|
450
|
+
<li><a href="?airdrie_horticulture_society.cfm" title="Airdrie Horticulture Society">Airdrie Horticulture Society</a></li>
|
451
|
+
|
452
|
+
<li><a href="?communities_in_bloom.cfm" title="Communities in Bloom">Communities in Bloom</a></li>
|
453
|
+
<li><a href="?community_garden.cfm" title="Community Garden">Community Garden</a></li>
|
454
|
+
|
455
|
+
<li class="last"><a href="?landscape_awards_program.cfm" title="Landscape Awards Program">Landscape Awards Program</a></li>
|
456
|
+
</ul>
|
457
|
+
</li>
|
458
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Maintenance" href="?maintenance.cfm">Maintenance</a>
|
459
|
+
|
460
|
+
<ul style="display: none;">
|
461
|
+
<li><a href="?dandelions.cfm" title="Dandelions">Dandelions</a></li>
|
462
|
+
<li><a href="?gophers.cfm" title="Gophers">Gophers</a></li>
|
463
|
+
|
464
|
+
<li><a href="?grass_cutting.cfm" title="Grass Cutting">Grass Cutting</a></li>
|
465
|
+
<li class="last"><a href="?pathway_snow_removal.cfm" title="Pathway Snow Removal">Pathway Snow Removal</a></li>
|
466
|
+
</ul>
|
467
|
+
|
468
|
+
</li>
|
469
|
+
<li><a title="Maps" href="?/gis/index.cfm">Maps</a></li>
|
470
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Outdoor Facilities" href="?outdoor_facilities.cfm">Outdoor Facilities</a>
|
471
|
+
<ul style="display: none;">
|
472
|
+
|
473
|
+
<li><a title="Ball Diamonds" href="?ball_diamonds.cfm">Ball Diamonds</a></li>
|
474
|
+
<li><a title="BMX Track" href="?bmx_track.cfm">BMX Track</a></li>
|
475
|
+
|
476
|
+
<li><a title="Bookings" href="?bookings.cfm">Bookings</a></li>
|
477
|
+
<li><a title="Cemetery" href="?cemetery.cfm">Cemetery</a></li>
|
478
|
+
<li><a title="Fire Pits" href="?fire_pits.cfm">Fire Pits</a></li>
|
479
|
+
<li><a title="Gwacheon Park" href="?/twinning_program/index.cfm#gwacheon">Gwacheon Park</a></li>
|
480
|
+
|
481
|
+
<li><a title="Off-Leash Areas" href="?off_leash_areas.cfm">Off-Leash Areas</a></li>
|
482
|
+
<li><a title="Outdoor Rinks" href="?outdoor_rinks.cfm">Outdoor Rinks</a></li>
|
483
|
+
|
484
|
+
<li><a title="Parks & Playgrounds" href="?parks_playgrounds.cfm">Parks & Playgrounds</a></li>
|
485
|
+
<li><a title="Skate Park" href="?skate_park.cfm">Skate Park</a></li>
|
486
|
+
<li><a title="Soccer/Athletic Fields" href="?soccer_athletic_fields.cfm">Soccer/Athletic Fields</a></li>
|
487
|
+
<li><a title="Splash Park" href="?splash_park.cfm">Splash Park</a></li>
|
488
|
+
|
489
|
+
<li class="last"><a title="Tennis Courts" href="?tennis_courts.cfm">Tennis Courts</a></li>
|
490
|
+
|
491
|
+
</ul>
|
492
|
+
</li>
|
493
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Parks Planning & Construction" href="?parks_planning_construction.cfm">Parks Planning & Construction</a>
|
494
|
+
<ul style="display: none;">
|
495
|
+
<li><a href="?construction.cfm" title="Construction">Construction</a></li>
|
496
|
+
<li class="last"><a href="?plans.cfm" title="Plans">Plans</a></li>
|
497
|
+
|
498
|
+
</ul>
|
499
|
+
</li>
|
500
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Urban Forest" href="?urban_forest.cfm">Urban Forest</a>
|
501
|
+
<ul style="display: none;">
|
502
|
+
<li><a href="?city_trees.cfm" title="City Trees">City Trees</a></li>
|
503
|
+
<li class="last"><a href="?tree_planting.cfm" title="Tree Planting">Tree Planting</a></li>
|
504
|
+
</ul>
|
505
|
+
|
506
|
+
</li>
|
507
|
+
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a title="Weeds & Pests" href="?weeds_pests.cfm">Weeds & Pests</a>
|
508
|
+
<ul style="display: none;">
|
509
|
+
<li><a href="?mosquito_control.cfm" title="Mosquito Control">Mosquito Control</a></li>
|
510
|
+
<li><a href="?pest_control.cfm" title="Pest Control">Pest Control</a></li>
|
511
|
+
<li class="last"><a href="?weed_control_plant_disease.cfm" title="Weed Control & Plant Disease">Weed Control & Plant Disease</a></li>
|
512
|
+
|
513
|
+
</ul>
|
514
|
+
</li>
|
515
|
+
</ul>
|
516
|
+
</li>
|
517
|
+
<li class="expandable lastExpandable"><div class="hitarea expandable-hitarea lastExpandable-hitarea"></div><a title="Sport & Community Facilities" href="?/sport_community_facilities/index.cfm">Sport & Community Facilities</a>
|
518
|
+
<ul style="display: none;">
|
519
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a title="Indoor Facilities" href="?/sport_community_facilities/indoor_facilities.cfm">Indoor Facilities</a>
|
520
|
+
|
521
|
+
<ul style="display: none;">
|
522
|
+
<li><a title="Arenas/Gymnastics" href="?/sport_community_facilities/arenas_gymnastics.cfm">Arenas/Gymnastics</a></li>
|
523
|
+
<li><a title="Curling Rink" href="?/sport_community_facilities/curling_rink.cfm">Curling Rink</a></li>
|
524
|
+
<li><a title="East Lake Recreation & Wellness Centre" href="?/elrwc/index.cfm">East Lake Recreation & Wellness Centre</a></li>
|
525
|
+
<li><a title="Nose Creek Valley Museum" href="?/sport_community_facilities/nose_creek_valley_museum.cfm">Nose Creek Valley Museum</a></li>
|
526
|
+
|
527
|
+
<li><a title="Over 50 Club" href="?/sport_community_facilities/over_50_club.cfm">Over 50 Club</a></li>
|
528
|
+
|
529
|
+
<li class="last"><a title="Town & Country" href="?/sport_community_facilities/town_country.cfm">Town & Country</a></li>
|
530
|
+
</ul>
|
531
|
+
</li>
|
532
|
+
<li class="last"><a title="Outdoor Facilities" href="?/parks/outdoor_facilities.cfm">Outdoor Facilities</a></li>
|
533
|
+
</ul>
|
534
|
+
|
535
|
+
</li>
|
536
|
+
</ul>
|
537
|
+
|
538
|
+
</li>
|
539
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><strong><a href="?#">Visiting</a></strong>
|
540
|
+
<ul style="display: none;">
|
541
|
+
<li><a href="?/economic_development/video/index.cfm">Airdrie LIFE Video</a></li>
|
542
|
+
<li><a href="?/gis/recreation_map/index.cfm">Community Map</a></li>
|
543
|
+
|
544
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/events/index.cfm">Events</a>
|
545
|
+
<ul style="display: none;">
|
546
|
+
|
547
|
+
<li><a href="?http://www.airdriefestivaloflights.com" target="_new">Airdrie Festival of Lights</a></li>
|
548
|
+
<li><a href="?http://www.airdrieprorodeo.net/" target="_new">Airdrie Pro Rodeo</a></li>
|
549
|
+
<li class="last"><a href="?http://www.pch.gc.ca/special/canada/index_e.cfm" target="_new">Canada Day</a></li>
|
550
|
+
</ul>
|
551
|
+
|
552
|
+
</li>
|
553
|
+
<li><a href="?/parks/parks_recreation.cfm">Parks & Recreation</a></li>
|
554
|
+
|
555
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/economic_development/tourist_information/tourist_information.cfm">Tourist Information</a>
|
556
|
+
<ul style="display: none;">
|
557
|
+
<li><a href="?/economic_development/entertainment/entertainment.cfm">Entertainment</a></li>
|
558
|
+
<li><a href="?/economic_development/hotels/hotels.cfm">Hotels</a></li>
|
559
|
+
|
560
|
+
<li><a href="?/economic_development/restaurants/restaurants.cfm">Restaurants</a></li>
|
561
|
+
<li><a href="?/economic_development/shopping/shopping.cfm">Shopping</a></li>
|
562
|
+
|
563
|
+
<li class="last"><a href="?http://www1.travelalberta.com/en-ab/index.cfm?country=CA&state=AB&setlocale=1" target="_new">Travel Alberta</a></li>
|
564
|
+
</ul>
|
565
|
+
</li>
|
566
|
+
<li class="last"><a href="?http://www.woodsidegc.com/contact.html" target="_new">Woodside Golf Course</a></li>
|
567
|
+
|
568
|
+
</ul>
|
569
|
+
</li>
|
570
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><strong><a href="?/economic_development/index.cfm">Doing Business</a></strong>
|
571
|
+
|
572
|
+
<ul style="display: none;">
|
573
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/economic_development/business_attraction/index.cfm">Business Attraction</a>
|
574
|
+
<ul style="display: none;">
|
575
|
+
<li><a href="?http://www.albertafirst.com/profiles/statspack/20365.html" target="_new">Airdrie Profile</a></li>
|
576
|
+
|
577
|
+
<li><a href="?/economic_development/business_attraction/business_case.cfm">Business Case For Airdrie</a></li>
|
578
|
+
<li><a href="?/economic_development/census/index.cfm">Census Data </a></li>
|
579
|
+
<li><a href="?http://www.albertafirst.com/realestate/" target="_new">Properties and Businesses For Sale</a></li>
|
580
|
+
|
581
|
+
<li class="last"><a href="?/taxation/non_residential_comparisons.cfm">Taxation</a></li>
|
582
|
+
</ul>
|
583
|
+
</li>
|
584
|
+
|
585
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/economic_development/business_development/index.cfm">Business Development</a>
|
586
|
+
<ul style="display: none;">
|
587
|
+
<li><a href="?/economic_development/business_development/business_associations.cfm">Business Associations</a></li>
|
588
|
+
<li><a href="?/economic_development/business_development/business_resources.cfm">Business Resources</a></li>
|
589
|
+
|
590
|
+
<li><a href="?/economic_development/business_development/business_services.cfm">Business Services</a></li>
|
591
|
+
<li><a href="?/corporate_properties/index.cfm">Corporate Properties</a></li>
|
592
|
+
|
593
|
+
<li class="last"><a href="?/economic_development/business_development/home_businesses.cfm">Home Based Businesses</a></li>
|
594
|
+
</ul>
|
595
|
+
</li>
|
596
|
+
<li><a href="?/directories/business_directory/index.cfm">Business Directory</a></li>
|
597
|
+
|
598
|
+
<li class="expandable"><div class="hitarea expandable-hitarea"></div><a href="?/economic_development/business_licenses/index.cfm">Business Licenses</a>
|
599
|
+
<ul style="display: none;">
|
600
|
+
<li><a href="?/economic_development/business_licenses/municipal_licenses_permits.cfm">Municipal Licenses & Permits</a></li>
|
601
|
+
|
602
|
+
<li><a href="?/economic_development/business_licenses/provincial_licenses_permits.cfm">Provincial Licenses & Permits</a></li>
|
603
|
+
<li class="last"><a href="?/economic_development/business_licenses/registry_services.cfm">Registry Services</a></li>
|
604
|
+
|
605
|
+
</ul>
|
606
|
+
</li>
|
607
|
+
<li><a href="?http://bsa.canadabusiness.ca/gol/bsa/site.nsf/en/index.html" target="_new">How to Start a Business</a></li>
|
608
|
+
<li class="last"><a href="?/finance/procurement_services.cfm">Procurement Services</a></li>
|
609
|
+
|
610
|
+
</ul>
|
611
|
+
</li>
|
612
|
+
<li class="last"><strong><a href="?https://vch.airdrie.ca/index.cfm">Online Services</a></strong></li>
|
613
|
+
|
614
|
+
</ul>
|
615
|
+
</div>
|
616
|
+
|
617
|
+
</div>
|
618
|
+
|
619
|
+
</body>
|
620
|
+
|
621
|
+
</html>
|