iqvoc 3.2.11 → 3.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +9 -9
- data/Gemfile.lock +108 -101
- data/{public/images/iqvoc → app/assets/images}/arrow_down.gif +0 -0
- data/{public/images/iqvoc → app/assets/images}/arrow_up.gif +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/back.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/branch.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/categ.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/categ_open.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/footer.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/go_there.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/header_long.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/iqvoc.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_end.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_end_filled.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_mid.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_mid_filled.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_nothing.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_only.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_only_filled.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_top.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_top_filled.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/nothing.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/ok.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/rdf_flyer.gif +0 -0
- data/{public/images/iqvoc → app/assets/images}/red_arrow.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/shadow.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/spinner.gif +0 -0
- data/{public/images/iqvoc → app/assets/images}/tokenizer_delete.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/tokenizer_pencile.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/tokenizer_show.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/top_01.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/trunk.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/unfinished.png +0 -0
- data/app/assets/javascripts/framework.js +7 -0
- data/{public/javascripts/iqvoc/entityselect.js → app/assets/javascripts/iqvoc/entityselect.js.erb} +1 -1
- data/{public/javascripts/iqvoc/application.js → app/assets/javascripts/iqvoc/iqvoc.js} +118 -1
- data/{public → app/assets}/javascripts/iqvoc/langselect.js +0 -0
- data/app/assets/javascripts/iqvoc/manifest.js +3 -0
- data/{public → app/assets}/javascripts/iqvoc/visualization.js +0 -0
- data/app/assets/javascripts/manifest.js +2 -0
- data/app/assets/stylesheets/framework.css +4 -0
- data/{public/stylesheets/iqvoc/forms.css → app/assets/stylesheets/iqvoc/forms.css.erb} +1 -1
- data/app/assets/stylesheets/iqvoc/ie_fixes.css +6 -0
- data/{public/stylesheets/iqvoc/iqvoc.css → app/assets/stylesheets/iqvoc/iqvoc.css.erb} +3 -3
- data/app/assets/stylesheets/iqvoc/manifest.css +5 -0
- data/{public → app/assets}/stylesheets/iqvoc/widgets.css +0 -0
- data/app/assets/stylesheets/manifest.css +4 -0
- data/app/controllers/collections_controller.rb +10 -4
- data/app/controllers/concepts/alphabetical_controller.rb +1 -2
- data/app/controllers/concepts/hierarchical_controller.rb +1 -1
- data/app/controllers/concepts_controller.rb +7 -6
- data/app/helpers/concepts_helper.rb +0 -1
- data/app/helpers/dashboard_helper.rb +2 -2
- data/app/models/concept/base.rb +6 -7
- data/app/models/concept/relation/base.rb +1 -1
- data/app/models/labeling/base.rb +1 -1
- data/app/models/labeling/skos/base.rb +5 -10
- data/app/models/match/base.rb +1 -1
- data/app/models/note/base.rb +1 -1
- data/app/models/user.rb +1 -0
- data/app/views/concepts/_visualization.html.erb +2 -2
- data/app/views/concepts/index.iqrdf +6 -2
- data/app/views/layouts/application.html.erb +7 -27
- data/app/views/partials/_rdf_logo.html.erb +1 -2
- data/config/application.rb +12 -3
- data/config/database.yml +21 -13
- data/config/engine.rb +6 -5
- data/config/environments/development.rb +45 -37
- data/config/environments/production.rb +45 -34
- data/config/environments/test.rb +43 -34
- data/config/initializers/iqvoc.rb +4 -8
- data/config/initializers/secret_token.rb +30 -0
- data/config/initializers/session_store.rb +1 -1
- data/config/locales/activerecord.de.yml +85 -111
- data/config/locales/activerecord.en.yml +85 -111
- data/db/iqvoc_test.sqlite3 +0 -0
- data/db/schema.rb +67 -153
- data/iqvoc.gemspec +3 -1
- data/lib/iqvoc/deep_cloning.rb +5 -5
- data/lib/iqvoc/version.rb +1 -1
- data/lib/iqvoc/versioning.rb +1 -1
- data/lib/iqvoc.rb +0 -6
- metadata +103 -369
- checksums.yaml +0 -7
- data/public/export/104047454295817920610168807659129435311.nt +0 -28
- data/public/export/10726.nt +0 -28
- data/public/export/10751365034669120987598940220863369604.nt +0 -28
- data/public/export/111691466774189666307584118743393932328.nt +0 -28
- data/public/export/12325399400132639231204595208154762660.nt +0 -28
- data/public/export/15263706163704853684442315777380853572.nt +0 -28
- data/public/export/15327.nt +0 -28
- data/public/export/15666.nt +0 -28
- data/public/export/173626129450223321263719262149444213847.nt +0 -28
- data/public/export/18948.nt +0 -28
- data/public/export/199578749544886032300136278910417855540.nt +0 -28
- data/public/export/213890660005255527251394676521741138403.nt +0 -28
- data/public/export/21930.nt +0 -28
- data/public/export/24509.nt +0 -28
- data/public/export/249458227092013520089223290936103182178.nt +0 -28
- data/public/export/271163890329327117562409702966294853312.nt +0 -28
- data/public/export/27484.nt +0 -28
- data/public/export/287251617830426667971006908766107175810.nt +0 -28
- data/public/export/28754.nt +0 -28
- data/public/export/29022.nt +0 -28
- data/public/export/293720064238755056739270868818770835353.nt +0 -28
- data/public/export/29976.nt +0 -28
- data/public/export/30643.nt +0 -28
- data/public/export/309135899928267675232062298368405782595.nt +0 -28
- data/public/export/32054.nt +0 -28
- data/public/export/327890543532187929176278243423558506722.nt +0 -28
- data/public/export/33055.nt +0 -28
- data/public/export/337748600310244218106909976567220577473.nt +0 -28
- data/public/export/33936.nt +0 -28
- data/public/export/33993.nt +0 -28
- data/public/export/34906.nt +0 -28
- data/public/export/35365.nt +0 -28
- data/public/export/37098.nt +0 -28
- data/public/export/37534146541112437090211766955764945845.nt +0 -28
- data/public/export/39353594202090916952403280275602550330.nt +0 -28
- data/public/export/41272.nt +0 -28
- data/public/export/42271.nt +0 -28
- data/public/export/44392.nt +0 -28
- data/public/export/45675.nt +0 -28
- data/public/export/47529.nt +0 -28
- data/public/export/48309.nt +0 -28
- data/public/export/4956.nt +0 -28
- data/public/export/49623.nt +0 -28
- data/public/export/50516.nt +0 -28
- data/public/export/54880.nt +0 -28
- data/public/export/55142.nt +0 -28
- data/public/export/55398.nt +0 -28
- data/public/export/5754.nt +0 -28
- data/public/export/57727.nt +0 -28
- data/public/export/58069939020968861674794480549301466954.nt +0 -28
- data/public/export/5890.nt +0 -28
- data/public/export/62809.nt +0 -28
- data/public/export/65156.nt +0 -28
- data/public/export/6520.nt +0 -28
- data/public/export/863.nt +0 -28
- data/public/export/9372.nt +0 -28
- data/public/javascripts/iqvoc/excanvas.js +0 -35
- data/public/javascripts/iqvoc/iqvoc.js +0 -118
- data/public/javascripts/iqvoc/jit_rgraph.js +0 -153
- data/public/javascripts/iqvoc/jquery-1.6.2.min.js +0 -18
- data/public/javascripts/iqvoc/jquery-treeview/changelog.txt +0 -29
- data/public/javascripts/iqvoc/jquery-treeview/demo/async.html +0 -44
- data/public/javascripts/iqvoc/jquery-treeview/demo/bg.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/demo.js +0 -43
- data/public/javascripts/iqvoc/jquery-treeview/demo/images.html +0 -56
- data/public/javascripts/iqvoc/jquery-treeview/demo/index.html +0 -340
- data/public/javascripts/iqvoc/jquery-treeview/demo/large.html +0 -559
- data/public/javascripts/iqvoc/jquery-treeview/demo/prerendered.html +0 -621
- data/public/javascripts/iqvoc/jquery-treeview/demo/screen.css +0 -24
- data/public/javascripts/iqvoc/jquery-treeview/demo/simple.html +0 -82
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.php +0 -87
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.phps +0 -87
- 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 +0 -82
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.css +0 -75
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.js +0 -251
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.min.js +0 -15
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.pack.js +0 -16
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.cookie.js +0 -92
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.js +0 -3363
- data/public/javascripts/iqvoc/jquery-treeview/todo +0 -8
- data/public/javascripts/iqvoc/jquery-ui-1.8.16.custom.js +0 -3269
- data/public/javascripts/iqvoc/jquery-ui-1.8.16.custom.min.js +0 -165
- data/public/javascripts/iqvoc/jquery-ui.datepicker-de.js +0 -22
- data/public/javascripts/iqvoc/json2.js +0 -480
- data/public/javascripts/iqvoc/rails.js +0 -132
- data/public/javascripts/iqvoc/storage.js +0 -122
- data/public/stylesheets/iqvoc/blueprint/ie.css +0 -35
- 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 +0 -32
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/screen.css +0 -97
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/readme.txt +0 -14
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/screen.css +0 -71
- 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 +0 -18
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/screen.css +0 -40
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/readme.txt +0 -10
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/screen.css +0 -110
- data/public/stylesheets/iqvoc/blueprint/print.css +0 -29
- data/public/stylesheets/iqvoc/blueprint/screen.css +0 -258
- data/public/stylesheets/iqvoc/blueprint/src/forms.css +0 -65
- data/public/stylesheets/iqvoc/blueprint/src/grid.css +0 -280
- data/public/stylesheets/iqvoc/blueprint/src/grid.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/src/ie.css +0 -76
- data/public/stylesheets/iqvoc/blueprint/src/print.css +0 -85
- data/public/stylesheets/iqvoc/blueprint/src/reset.css +0 -45
- data/public/stylesheets/iqvoc/blueprint/src/typography.css +0 -106
- 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/jquery-ui-1.8.16.custom.css +0 -410
- data/public/uploads/import/038dd516e01fe211375441c3af8d90e8.nt +0 -259
- data/public/uploads/import/07e71ca0235e798be39acd246114d962.nt +0 -259
- data/public/uploads/import/0a4c173bc9db7a5cd469c9454fdfa749.nt +0 -259
- data/public/uploads/import/0e8336cb2ef2c8b67767dfe8879d9cfb.nt +0 -259
- data/public/uploads/import/0f4eb8cd6390b1c5c5354a22e533ee0e.nt +0 -259
- data/public/uploads/import/105400714d68d2207209e23826345e76.nt +0 -259
- data/public/uploads/import/1147ab054ce55abf0a5bf93b99220231.nt +0 -259
- data/public/uploads/import/14b64b1f2252aba1e89d83f770d14e29.nt +0 -259
- data/public/uploads/import/1c6f11c300224248bf919885f8545daf.nt +0 -259
- data/public/uploads/import/21d34b65ef0a8156111e845992fd004f.nt +0 -259
- data/public/uploads/import/2783fade523132942999836a74228d64.nt +0 -259
- data/public/uploads/import/2bc90e07e5c42e5f26a1607756cc0ab3.nt +0 -259
- data/public/uploads/import/2e4073a94eeae98095de9f43b5e5774a.nt +0 -259
- data/public/uploads/import/32548678e7d47b3e256590d6eef6fb03.nt +0 -259
- data/public/uploads/import/330e08c32fde94fb80f656346d1f8383.nt +0 -259
- data/public/uploads/import/337790be2663214e66066b1215fdd137.nt +0 -259
- data/public/uploads/import/34b77ff970ca71511fb4b224b7dadd1c.nt +0 -259
- data/public/uploads/import/38de0d3c9cba92e8a3c312e7e95e7ec1.nt +0 -259
- data/public/uploads/import/3981aa91cf22e26fbf6b1312b2bcdcc8.nt +0 -259
- data/public/uploads/import/3d01f84539a62ebe6f76124e8cdbbb23.nt +0 -259
- data/public/uploads/import/3d05bb72c3751da3830cf53e966283d4.nt +0 -259
- data/public/uploads/import/3e1d2f770bfe3c79a367780731536a3a.nt +0 -259
- data/public/uploads/import/3e41bd1875dc23401278c73bd12be881.nt +0 -259
- data/public/uploads/import/3f3e3dbb09c3df6bfaed261311de3e7d.nt +0 -259
- data/public/uploads/import/4297d9970e47be5ced4991a083032eb9.nt +0 -259
- data/public/uploads/import/5925186958bd537ad5e79e76e3a1f714.nt +0 -259
- data/public/uploads/import/5dc5dcd978db1c59ec074e9137f0109c.nt +0 -259
- data/public/uploads/import/5e46663e7e2eb92e5e8846d7c0f8e713.nt +0 -259
- data/public/uploads/import/70022a2a7e808000dc3d55529d203480.nt +0 -259
- data/public/uploads/import/70b32583acaca5843ac7dbdc2a89de99.nt +0 -259
- data/public/uploads/import/8030e54313e2c7231c4c30cd4145d576.nt +0 -259
- data/public/uploads/import/8bb6484a9eb0c3266274c08ad8500669.nt +0 -259
- data/public/uploads/import/90711ea002f6b7b4e5476e414e185603.nt +0 -259
- data/public/uploads/import/918a5fc2c8fcdbaddc2a02588d599dcf.nt +0 -259
- data/public/uploads/import/923f9ebccb7b0e9e9fafddc60750b989.nt +0 -259
- data/public/uploads/import/933e4e2baee4d91b8f7681fa4d2ad9fa.nt +0 -259
- data/public/uploads/import/93f642eacd966c98645345d2ccdf578d.nt +0 -259
- data/public/uploads/import/9a3d0f8d1872d4ba5dd281194ddea4a2.nt +0 -259
- data/public/uploads/import/9a3f1c9de8e734b7e1d969d07ea57a83.nt +0 -259
- data/public/uploads/import/9f91263fee5275ecbf303c7da0a9e84d.nt +0 -259
- data/public/uploads/import/9f9d6b4293be8def1b406156a3e2bcd9.nt +0 -259
- data/public/uploads/import/a230b36c3666a6b16fec6283e99b221f.nt +0 -259
- data/public/uploads/import/a51b35089dc096f0f1f5d5250edb8d5c.nt +0 -259
- data/public/uploads/import/a5265a00946627588ecdac317c061c6c.nt +0 -259
- data/public/uploads/import/a95b7d93b7483116ff13c894a46b5c1c.nt +0 -259
- data/public/uploads/import/b5e47ea582afb81341f7b7084cc17a06.nt +0 -259
- data/public/uploads/import/b826bcfad8f18294a425d65482c46033.nt +0 -259
- data/public/uploads/import/bcf18c9e4dbe72745f4ec2878a4b1690.nt +0 -259
- data/public/uploads/import/c32855cb4b3e8616db2ef3f5f9cb5ca7.nt +0 -259
- data/public/uploads/import/c8ee5bc696312468c4354bad6c583321.nt +0 -259
- data/public/uploads/import/cfc73574fe398be7ce684fbc17aa1bb7.nt +0 -259
- data/public/uploads/import/d2366992f6e9e4377d02fc691fc2d3d3.nt +0 -259
- data/public/uploads/import/dc14a0fa30c105a5770da2c960daaf29.nt +0 -259
- data/public/uploads/import/e9289f6f920cf44d0e81599410b39090.nt +0 -259
- data/public/uploads/import/ed1c212d4f320e414caacda7a7988f83.nt +0 -259
- data/public/uploads/import/ed460af60bf4d0884d37a86bb02411e7.nt +0 -259
- data/public/uploads/import/f17024adf37be768041307528e848bd6.nt +0 -259
- data/public/uploads/import/f2f6025f6de90ee4609c2928a817c51d.nt +0 -259
- data/public/uploads/import/f427507b1c208ddf69204ea5414e5d18.nt +0 -259
- data/public/uploads/import/ffce91887b3ac5b7319a80926ff310ef.nt +0 -259
- data/public/uploads/tmp/1417625624-7926-3861/hobbies.nt +0 -259
- data/public/uploads/tmp/1417625658-7975-5171/hobbies.nt +0 -259
- data/public/uploads/tmp/1418649743-7886-1510/hobbies.nt +0 -259
- data/public/uploads/tmp/1418653029-9019-1572/hobbies.nt +0 -259
- data/public/uploads/tmp/1418656093-9614-5971/hobbies.nt +0 -259
- data/public/uploads/tmp/1418659992-10218-8665/hobbies.nt +0 -259
- data/public/uploads/tmp/1418664440-11199-8740/hobbies.nt +0 -259
- data/public/uploads/tmp/1418665022-11430-9919/hobbies.nt +0 -259
- data/public/uploads/tmp/1418665225-11485-5805/hobbies.nt +0 -259
- data/public/uploads/tmp/1418665744-11777-4958/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666103-11837-9818/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666157-11880-9002/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666292-11920-9076/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666482-11968-5799/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666589-12006-6137/hobbies.nt +0 -259
- data/public/uploads/tmp/1419417707-62741-8601/hobbies.nt +0 -259
- data/public/uploads/tmp/1419418501-62977-9798/hobbies.nt +0 -259
- data/public/uploads/tmp/1419419091-63178-5200/hobbies.nt +0 -259
- data/public/uploads/tmp/1419845421-37940-7338/hobbies.nt +0 -259
- data/public/uploads/tmp/1419872019-93309-7785/hobbies.nt +0 -259
- data/public/uploads/tmp/1419872459-93489-7475/hobbies.nt +0 -259
- data/public/uploads/tmp/1420204292-55473-2339/hobbies.nt +0 -259
- data/public/uploads/tmp/1420469113-94913-1977/hobbies.nt +0 -259
- data/public/uploads/tmp/1420469218-94957-7818/hobbies.nt +0 -259
- data/public/uploads/tmp/1420471310-95437-1840/hobbies.nt +0 -259
- data/public/uploads/tmp/1420475764-97681-5693/hobbies.nt +0 -259
- data/public/uploads/tmp/1420475937-97729-2119/hobbies.nt +0 -259
- data/public/uploads/tmp/1420476857-98058-7891/hobbies.nt +0 -259
- data/public/uploads/tmp/1420535851-99018-0174/hobbies.nt +0 -259
- data/public/uploads/tmp/1420536204-1785-0172/hobbies.nt +0 -259
- data/public/uploads/tmp/1420551687-4559-4581/hobbies.nt +0 -259
- data/public/uploads/tmp/1420553228-5060-8398/hobbies.nt +0 -259
- data/public/uploads/tmp/1420554138-5330-1218/hobbies.nt +0 -259
- data/public/uploads/tmp/1420623682-11549-0730/hobbies.nt +0 -259
- data/public/uploads/tmp/1420627830-12489-1669/hobbies.nt +0 -259
- data/public/uploads/tmp/1420643849-18200-3932/hobbies.nt +0 -259
- data/public/uploads/tmp/1420649772-21728-5542/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708117-27095-8292/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708387-27223-6774/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708470-27267-7475/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708517-27294-4695/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708539-27319-1354/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708586-27334-3786/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708992-27418-8019/hobbies.nt +0 -259
- data/public/uploads/tmp/1420709221-27495-1252/hobbies.nt +0 -259
- data/public/uploads/tmp/1420709888-27667-9904/hobbies.nt +0 -259
- data/public/uploads/tmp/1420710092-27729-5735/hobbies.nt +0 -259
- data/public/uploads/tmp/1420710448-27814-7190/hobbies.nt +0 -259
- data/public/uploads/tmp/1420710886-27909-4558/hobbies.nt +0 -259
- data/public/uploads/tmp/1420711474-28046-6914/hobbies.nt +0 -259
- data/public/uploads/tmp/1420711601-28081-0714/hobbies.nt +0 -259
- data/public/uploads/tmp/1420711904-28153-8591/hobbies.nt +0 -259
- data/public/uploads/tmp/1420712160-28240-2054/hobbies.nt +0 -259
- data/public/uploads/tmp/1420712349-28303-3685/hobbies.nt +0 -259
- data/public/uploads/tmp/1420712756-28475-0893/hobbies.nt +0 -259
- data/public/uploads/tmp/1420712995-28567-4743/hobbies.nt +0 -259
- data/public/uploads/tmp/1420722946-31448-5312/hobbies.nt +0 -259
- data/public/uploads/tmp/1420723021-31498-6069/hobbies.nt +0 -259
- data/public/uploads/tmp/1420723172-31541-4390/hobbies.nt +0 -259
- data/public/uploads/tmp/1420723249-31574-6508/hobbies.nt +0 -259
@@ -1,24 +0,0 @@
|
|
1
|
-
html, body {height:100%; margin: 0; padding: 0; }
|
2
|
-
|
3
|
-
html>body {
|
4
|
-
font-size: 16px;
|
5
|
-
font-size: 68.75%;
|
6
|
-
} /* Reset Base Font Size */
|
7
|
-
|
8
|
-
body {
|
9
|
-
font-family: Verdana, helvetica, arial, sans-serif;
|
10
|
-
font-size: 68.75%;
|
11
|
-
background: #fff;
|
12
|
-
color: #333;
|
13
|
-
}
|
14
|
-
|
15
|
-
h1, h2 { font-family: 'trebuchet ms', verdana, arial; padding: 10px; margin: 0 }
|
16
|
-
h1 { font-size: large }
|
17
|
-
|
18
|
-
#banner { padding: 15px; background-color: #06b; color: white; font-size: large; border-bottom: 1px solid #ccc;
|
19
|
-
background: url(bg.gif) repeat-x; text-align: center }
|
20
|
-
#banner a { color: white; }
|
21
|
-
|
22
|
-
#main { padding: 1em; }
|
23
|
-
|
24
|
-
a img { border: none; }
|
@@ -1,82 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
-
<head>
|
4
|
-
|
5
|
-
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
|
6
|
-
<title>jQuery treeView</title>
|
7
|
-
|
8
|
-
<link rel="stylesheet" href="../jquery.treeview.css" />
|
9
|
-
<link rel="stylesheet" href="../red-treeview.css" />
|
10
|
-
<link rel="stylesheet" href="screen.css" />
|
11
|
-
|
12
|
-
<script src="../lib/jquery.js" type="text/javascript"></script>
|
13
|
-
<script src="../lib/jquery.cookie.js" type="text/javascript"></script>
|
14
|
-
<script src="../jquery.treeview.js" type="text/javascript"></script>
|
15
|
-
|
16
|
-
<script type="text/javascript">
|
17
|
-
$(document).ready(function(){
|
18
|
-
$("#browser").treeview({
|
19
|
-
toggle: function() {
|
20
|
-
console.log("%s was toggled.", $(this).find(">span").text());
|
21
|
-
}
|
22
|
-
});
|
23
|
-
|
24
|
-
$("#add").click(function() {
|
25
|
-
var branches = $("<li><span class='folder'>New Sublist</span><ul>" +
|
26
|
-
"<li><span class='file'>Item1</span></li>" +
|
27
|
-
"<li><span class='file'>Item2</span></li></ul></li>").appendTo("#browser");
|
28
|
-
$("#browser").treeview({
|
29
|
-
add: branches
|
30
|
-
});
|
31
|
-
});
|
32
|
-
});
|
33
|
-
</script>
|
34
|
-
</head>
|
35
|
-
<body>
|
36
|
-
|
37
|
-
<h1 id="banner"><a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/">jQuery Treeview Plugin</a> Demo</h1>
|
38
|
-
<div id="main">
|
39
|
-
|
40
|
-
<a href=".">Main Demo</a>
|
41
|
-
|
42
|
-
<ul id="browser" class="filetree treeview-famfamfam">
|
43
|
-
<li><span class="folder">Folder 1</span>
|
44
|
-
<ul>
|
45
|
-
<li><span class="folder">Item 1.1</span>
|
46
|
-
<ul>
|
47
|
-
<li><span class="file">Item 1.1.1</span></li>
|
48
|
-
</ul>
|
49
|
-
</li>
|
50
|
-
<li><span class="folder">Folder 2</span>
|
51
|
-
<ul>
|
52
|
-
<li><span class="folder">Subfolder 2.1</span>
|
53
|
-
<ul id="folder21">
|
54
|
-
<li><span class="file">File 2.1.1</span></li>
|
55
|
-
<li><span class="file">File 2.1.2</span></li>
|
56
|
-
</ul>
|
57
|
-
</li>
|
58
|
-
<li><span class="folder">Subfolder 2.2</span>
|
59
|
-
<ul>
|
60
|
-
<li><span class="file">File 2.2.1</span></li>
|
61
|
-
<li><span class="file">File 2.2.2</span></li>
|
62
|
-
</ul>
|
63
|
-
</li>
|
64
|
-
</ul>
|
65
|
-
</li>
|
66
|
-
<li class="closed"><span class="folder">Folder 3 (closed at start)</span>
|
67
|
-
<ul>
|
68
|
-
<li><span class="file">File 3.1</span></li>
|
69
|
-
</ul>
|
70
|
-
</li>
|
71
|
-
<li><span class="file">File 4</span></li>
|
72
|
-
</ul>
|
73
|
-
</li>
|
74
|
-
</ul>
|
75
|
-
|
76
|
-
<button id="add">Add!</button>
|
77
|
-
|
78
|
-
<p>+/- Icons from <a href="http://www.famfamfam.com/lab/icons/">famfamfam</a></p>
|
79
|
-
|
80
|
-
</div>
|
81
|
-
|
82
|
-
</body></html>
|
@@ -1,87 +0,0 @@
|
|
1
|
-
<?php
|
2
|
-
if ($_REQUEST['root'] == "source"):
|
3
|
-
?>
|
4
|
-
[
|
5
|
-
{
|
6
|
-
"text": "1. Pre Lunch (120 min)",
|
7
|
-
"expanded": true,
|
8
|
-
"classes": "important",
|
9
|
-
"children":
|
10
|
-
[
|
11
|
-
{
|
12
|
-
"text": "1.1 The State of the Powerdome (30 min)"
|
13
|
-
},
|
14
|
-
{
|
15
|
-
"text": "1.2 The Future of jQuery (30 min)"
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"text": "1.2 jQuery UI - A step to richnessy (60 min)"
|
19
|
-
}
|
20
|
-
]
|
21
|
-
},
|
22
|
-
{
|
23
|
-
"text": "2. Lunch (60 min)"
|
24
|
-
},
|
25
|
-
{
|
26
|
-
"text": "3. After Lunch (120+ min)",
|
27
|
-
"children":
|
28
|
-
[
|
29
|
-
{
|
30
|
-
"text": "3.1 jQuery Calendar Success Story (20 min)"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"text": "3.2 jQuery and Ruby Web Frameworks (20 min)"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"text": "3.3 Hey, I Can Do That! (20 min)"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"text": "3.4 Taconite and Form (20 min)"
|
40
|
-
},
|
41
|
-
{
|
42
|
-
"text": "3.5 Server-side JavaScript with jQuery and AOLserver (20 min)"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"text": "3.6 The Onion: How to add features without adding features (20 min)",
|
46
|
-
"id": "36",
|
47
|
-
"hasChildren": true
|
48
|
-
},
|
49
|
-
{
|
50
|
-
"text": "3.7 Visualizations with JavaScript and Canvas (20 min)"
|
51
|
-
},
|
52
|
-
{
|
53
|
-
"text": "3.8 ActiveDOM (20 min)"
|
54
|
-
},
|
55
|
-
{
|
56
|
-
"text": "3.8 Growing jQuery (20 min)"
|
57
|
-
}
|
58
|
-
]
|
59
|
-
}
|
60
|
-
]
|
61
|
-
<?php else: ?>
|
62
|
-
[
|
63
|
-
{
|
64
|
-
"text": "1. Review of existing structures",
|
65
|
-
"expanded": true,
|
66
|
-
"children":
|
67
|
-
[
|
68
|
-
{
|
69
|
-
"text": "1.1 jQuery core"
|
70
|
-
},
|
71
|
-
{
|
72
|
-
"text": "1.2 metaplugins"
|
73
|
-
}
|
74
|
-
]
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"text": "2. Wrapper plugins"
|
78
|
-
},
|
79
|
-
{
|
80
|
-
"text": "3. Summary"
|
81
|
-
},
|
82
|
-
{
|
83
|
-
"text": "4. Questions and answers"
|
84
|
-
}
|
85
|
-
|
86
|
-
]
|
87
|
-
<?php endif; ?>
|
@@ -1,87 +0,0 @@
|
|
1
|
-
<?php
|
2
|
-
if ($_REQUEST['root'] == "source"):
|
3
|
-
?>
|
4
|
-
[
|
5
|
-
{
|
6
|
-
"text": "1. Pre Lunch (120 min)",
|
7
|
-
"expanded": true,
|
8
|
-
"classes": "important",
|
9
|
-
"children":
|
10
|
-
[
|
11
|
-
{
|
12
|
-
"text": "1.1 The State of the Powerdome (30 min)"
|
13
|
-
},
|
14
|
-
{
|
15
|
-
"text": "1.2 The Future of jQuery (30 min)"
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"text": "1.2 jQuery UI - A step to richnessy (60 min)"
|
19
|
-
}
|
20
|
-
]
|
21
|
-
},
|
22
|
-
{
|
23
|
-
"text": "2. Lunch (60 min)"
|
24
|
-
},
|
25
|
-
{
|
26
|
-
"text": "3. After Lunch (120+ min)",
|
27
|
-
"children":
|
28
|
-
[
|
29
|
-
{
|
30
|
-
"text": "3.1 jQuery Calendar Success Story (20 min)"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"text": "3.2 jQuery and Ruby Web Frameworks (20 min)"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"text": "3.3 Hey, I Can Do That! (20 min)"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"text": "3.4 Taconite and Form (20 min)"
|
40
|
-
},
|
41
|
-
{
|
42
|
-
"text": "3.5 Server-side JavaScript with jQuery and AOLserver (20 min)"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"text": "3.6 The Onion: How to add features without adding features (20 min)",
|
46
|
-
"id": "36",
|
47
|
-
"hasChildren": true
|
48
|
-
},
|
49
|
-
{
|
50
|
-
"text": "3.7 Visualizations with JavaScript and Canvas (20 min)"
|
51
|
-
},
|
52
|
-
{
|
53
|
-
"text": "3.8 ActiveDOM (20 min)"
|
54
|
-
},
|
55
|
-
{
|
56
|
-
"text": "3.8 Growing jQuery (20 min)"
|
57
|
-
}
|
58
|
-
]
|
59
|
-
}
|
60
|
-
]
|
61
|
-
<?php else: ?>
|
62
|
-
[
|
63
|
-
{
|
64
|
-
"text": "1. Review of existing structures",
|
65
|
-
"expanded": true,
|
66
|
-
"children":
|
67
|
-
[
|
68
|
-
{
|
69
|
-
"text": "1.1 jQuery core"
|
70
|
-
},
|
71
|
-
{
|
72
|
-
"text": "1.2 metaplugins"
|
73
|
-
}
|
74
|
-
]
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"text": "2. Wrapper plugins"
|
78
|
-
},
|
79
|
-
{
|
80
|
-
"text": "3. Summary"
|
81
|
-
},
|
82
|
-
{
|
83
|
-
"text": "4. Questions and answers"
|
84
|
-
}
|
85
|
-
|
86
|
-
]
|
87
|
-
<?php endif; ?>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,82 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Async Treeview 0.1 - Lazy-loading extension for Treeview
|
3
|
-
*
|
4
|
-
* http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
|
5
|
-
*
|
6
|
-
* Copyright (c) 2007 Jörn Zaefferer
|
7
|
-
*
|
8
|
-
* Dual licensed under the MIT and GPL licenses:
|
9
|
-
* http://www.opensource.org/licenses/mit-license.php
|
10
|
-
* http://www.gnu.org/licenses/gpl.html
|
11
|
-
*
|
12
|
-
* Revision: $Id$
|
13
|
-
*
|
14
|
-
*/
|
15
|
-
|
16
|
-
;
|
17
|
-
(function($) {
|
18
|
-
|
19
|
-
function load(settings, root, child, container) {
|
20
|
-
function createNode(parent) {
|
21
|
-
var current = $("<li/>").attr("id", this.id || "").html("<a href=\"" + this.url + "\" class=\"" + (this.classes || "") + "\">" + this.text + "</a>" + (this.additionalText ? this.additionalText : "")).appendTo(parent);
|
22
|
-
if (this.classes) {
|
23
|
-
current.children("span").addClass(this.classes);
|
24
|
-
}
|
25
|
-
if (this.expanded) {
|
26
|
-
current.addClass("open");
|
27
|
-
}
|
28
|
-
if (this.hasChildren || this.children && this.children.length) {
|
29
|
-
var branch = $("<ul/>").appendTo(current);
|
30
|
-
if (this.hasChildren) {
|
31
|
-
current.addClass("hasChildren");
|
32
|
-
createNode.call({
|
33
|
-
classes: "placeholder",
|
34
|
-
text: " ",
|
35
|
-
children:[]
|
36
|
-
}, branch);
|
37
|
-
}
|
38
|
-
if (this.children && this.children.length) {
|
39
|
-
$.each(this.children, createNode, [branch])
|
40
|
-
}
|
41
|
-
}
|
42
|
-
}
|
43
|
-
$.ajax($.extend(true, {
|
44
|
-
url: settings.url,
|
45
|
-
dataType: "json",
|
46
|
-
data: {
|
47
|
-
root: root
|
48
|
-
},
|
49
|
-
success: function(response) {
|
50
|
-
child.empty();
|
51
|
-
$.each(response, createNode, [child]);
|
52
|
-
$(container).treeview({add: child});
|
53
|
-
}
|
54
|
-
}, settings.ajax));
|
55
|
-
}
|
56
|
-
|
57
|
-
$.fn.treeviewLoad = load;
|
58
|
-
|
59
|
-
var proxied = $.fn.treeview;
|
60
|
-
$.fn.treeview = function(settings) {
|
61
|
-
if (!settings.url) {
|
62
|
-
return proxied.apply(this, arguments);
|
63
|
-
}
|
64
|
-
var container = this;
|
65
|
-
if (!container.children().size())
|
66
|
-
load(settings, (settings.root || "source"), this, container);
|
67
|
-
var userToggle = settings.toggle;
|
68
|
-
return proxied.call(this, $.extend({}, settings, {
|
69
|
-
collapsed: true,
|
70
|
-
toggle: function() {
|
71
|
-
var $this = $(this);
|
72
|
-
if ($this.hasClass("hasChildren")) {
|
73
|
-
var childList = $this.removeClass("hasChildren").find("ul");
|
74
|
-
load(settings, this.id, childList, container);
|
75
|
-
}
|
76
|
-
if (userToggle) {
|
77
|
-
userToggle.apply(this, arguments);
|
78
|
-
}
|
79
|
-
}
|
80
|
-
}));
|
81
|
-
};
|
82
|
-
})(jQuery);
|
@@ -1,75 +0,0 @@
|
|
1
|
-
.treeview, .treeview ul {
|
2
|
-
padding: 0;
|
3
|
-
margin: 0;
|
4
|
-
list-style: none;
|
5
|
-
}
|
6
|
-
|
7
|
-
.treeview ul {
|
8
|
-
background-color: white;
|
9
|
-
margin-top: 4px;
|
10
|
-
}
|
11
|
-
|
12
|
-
.treeview .hitarea {
|
13
|
-
background: url(images/treeview-default.gif) -64px -25px no-repeat;
|
14
|
-
height: 16px;
|
15
|
-
width: 16px;
|
16
|
-
margin-left: -16px;
|
17
|
-
float: left;
|
18
|
-
cursor: pointer;
|
19
|
-
}
|
20
|
-
/* fix for IE6 */
|
21
|
-
* html .hitarea {
|
22
|
-
display: inline;
|
23
|
-
float:none;
|
24
|
-
}
|
25
|
-
|
26
|
-
.treeview li {
|
27
|
-
margin: 0;
|
28
|
-
padding: 3px 0pt 3px 16px;
|
29
|
-
}
|
30
|
-
|
31
|
-
.treeview a.selected {
|
32
|
-
background-color: #eee;
|
33
|
-
}
|
34
|
-
|
35
|
-
#treecontrol { margin: 1em 0; display: none; }
|
36
|
-
|
37
|
-
.treeview .hover { color: red; cursor: pointer; }
|
38
|
-
|
39
|
-
.treeview li { background: url(images/treeview-default-line.gif) 0 0 no-repeat; }
|
40
|
-
.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; }
|
41
|
-
|
42
|
-
.treeview .expandable-hitarea { background-position: -80px -3px; }
|
43
|
-
|
44
|
-
.treeview li.last { background-position: 0 -1766px }
|
45
|
-
.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(images/treeview-default.gif); }
|
46
|
-
.treeview li.lastCollapsable { background-position: 0 -111px }
|
47
|
-
.treeview li.lastExpandable { background-position: -32px -67px }
|
48
|
-
|
49
|
-
.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; }
|
50
|
-
|
51
|
-
.treeview-red li { background-image: url(images/treeview-red-line.gif); }
|
52
|
-
.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(images/treeview-red.gif); }
|
53
|
-
|
54
|
-
.treeview-black li { background-image: url(images/treeview-black-line.gif); }
|
55
|
-
.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(images/treeview-black.gif); }
|
56
|
-
|
57
|
-
.treeview-gray li { background-image: url(images/treeview-gray-line.gif); }
|
58
|
-
.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(images/treeview-gray.gif); }
|
59
|
-
|
60
|
-
.treeview-famfamfam li { background-image: url(images/treeview-famfamfam-line.gif); }
|
61
|
-
.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(images/treeview-famfamfam.gif); }
|
62
|
-
|
63
|
-
|
64
|
-
.filetree li { padding: 3px 0 2px 16px; }
|
65
|
-
.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; }
|
66
|
-
.filetree span.folder { background: url(images/folder.gif) 0 0 no-repeat; }
|
67
|
-
.filetree li.expandable span.folder { background: url(images/folder-closed.gif) 0 0 no-repeat; }
|
68
|
-
.filetree span.file { background: url(images/file.gif) 0 0 no-repeat; }
|
69
|
-
|
70
|
-
.treeview .placeholder {
|
71
|
-
background: url("images/ajax-loader.gif") no-repeat scroll 0 0 transparent;
|
72
|
-
display: block;
|
73
|
-
height: 16px;
|
74
|
-
width: 16px;
|
75
|
-
}
|