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