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,122 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
Copyright (c) 2010 Remy Sharp, http://remysharp.com
|
3
|
-
|
4
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
5
|
-
a copy of this software and associated documentation files (the
|
6
|
-
"Software"), to deal in the Software without restriction, including
|
7
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
8
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
-
permit persons to whom the Software is furnished to do so, subject to
|
10
|
-
the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be
|
13
|
-
included in all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
-
*/
|
23
|
-
if (typeof window.localStorage == 'undefined' || typeof window.sessionStorage == 'undefined') (function () {
|
24
|
-
|
25
|
-
var Storage = function (type) {
|
26
|
-
function createCookie(name, value, days) {
|
27
|
-
var date, expires;
|
28
|
-
|
29
|
-
if (days) {
|
30
|
-
date = new Date();
|
31
|
-
date.setTime(date.getTime()+(days*24*60*60*1000));
|
32
|
-
expires = "; expires="+date.toGMTString();
|
33
|
-
} else {
|
34
|
-
expires = "";
|
35
|
-
}
|
36
|
-
document.cookie = name+"="+value+expires+"; path=/";
|
37
|
-
}
|
38
|
-
|
39
|
-
function readCookie(name) {
|
40
|
-
var nameEQ = name + "=",
|
41
|
-
ca = document.cookie.split(';'),
|
42
|
-
i, c;
|
43
|
-
|
44
|
-
for (i=0; i < ca.length; i++) {
|
45
|
-
c = ca[i];
|
46
|
-
while (c.charAt(0)==' ') {
|
47
|
-
c = c.substring(1,c.length);
|
48
|
-
}
|
49
|
-
|
50
|
-
if (c.indexOf(nameEQ) == 0) {
|
51
|
-
return c.substring(nameEQ.length,c.length);
|
52
|
-
}
|
53
|
-
}
|
54
|
-
return null;
|
55
|
-
}
|
56
|
-
|
57
|
-
function setData(data) {
|
58
|
-
data = JSON.stringify(data);
|
59
|
-
if (type == 'session') {
|
60
|
-
window.name = data;
|
61
|
-
} else {
|
62
|
-
createCookie('localStorage', data, 365);
|
63
|
-
}
|
64
|
-
}
|
65
|
-
|
66
|
-
function clearData() {
|
67
|
-
if (type == 'session') {
|
68
|
-
window.name = '';
|
69
|
-
} else {
|
70
|
-
createCookie('localStorage', '', 365);
|
71
|
-
}
|
72
|
-
}
|
73
|
-
|
74
|
-
function getData() {
|
75
|
-
var data = type == 'session' ? window.name : readCookie('localStorage');
|
76
|
-
try {
|
77
|
-
return data ? JSON.parse(data) : {};
|
78
|
-
} catch(exc) { // bad cookie data -- XXX: hack by FND
|
79
|
-
return {}
|
80
|
-
}
|
81
|
-
}
|
82
|
-
|
83
|
-
|
84
|
-
// initialise if there's already data
|
85
|
-
var data = getData();
|
86
|
-
|
87
|
-
return {
|
88
|
-
length: 0,
|
89
|
-
clear: function () {
|
90
|
-
data = {};
|
91
|
-
this.length = 0;
|
92
|
-
clearData();
|
93
|
-
},
|
94
|
-
getItem: function (key) {
|
95
|
-
return data[key] === undefined ? null : data[key];
|
96
|
-
},
|
97
|
-
key: function (i) {
|
98
|
-
// not perfect, but works
|
99
|
-
var ctr = 0;
|
100
|
-
for (var k in data) {
|
101
|
-
if (ctr == i) return k;
|
102
|
-
else ctr++;
|
103
|
-
}
|
104
|
-
return null;
|
105
|
-
},
|
106
|
-
removeItem: function (key) {
|
107
|
-
delete data[key];
|
108
|
-
this.length--;
|
109
|
-
setData(data);
|
110
|
-
},
|
111
|
-
setItem: function (key, value) {
|
112
|
-
data[key] = value+''; // forces the value to a string
|
113
|
-
this.length++;
|
114
|
-
setData(data);
|
115
|
-
}
|
116
|
-
};
|
117
|
-
};
|
118
|
-
|
119
|
-
if (typeof window.localStorage == 'undefined') window.localStorage = new Storage('local');
|
120
|
-
if (typeof window.sessionStorage == 'undefined') window.sessionStorage = new Storage('session');
|
121
|
-
|
122
|
-
})();
|
@@ -1,35 +0,0 @@
|
|
1
|
-
/* -----------------------------------------------------------------------
|
2
|
-
|
3
|
-
|
4
|
-
Blueprint CSS Framework 0.9
|
5
|
-
http://blueprintcss.org
|
6
|
-
|
7
|
-
* Copyright (c) 2007-Present. See LICENSE for more info.
|
8
|
-
* See README for instructions on how to use Blueprint.
|
9
|
-
* For credits and origins, see AUTHORS.
|
10
|
-
* This is a compressed file. See the sources in the 'src' directory.
|
11
|
-
|
12
|
-
----------------------------------------------------------------------- */
|
13
|
-
|
14
|
-
/* ie.css */
|
15
|
-
body {text-align:center;}
|
16
|
-
.container {text-align:left;}
|
17
|
-
* html .column, * html .span-1, * html .span-2, * html .span-3, * html .span-4, * html .span-5, * html .span-6, * html .span-7, * html .span-8, * html .span-9, * html .span-10, * html .span-11, * html .span-12, * html .span-13, * html .span-14, * html .span-15, * html .span-16, * html .span-17, * html .span-18, * html .span-19, * html .span-20, * html .span-21, * html .span-22, * html .span-23, * html .span-24 {display:inline;overflow-x:hidden;}
|
18
|
-
* html legend {margin:0px -8px 16px 0;padding:0;}
|
19
|
-
sup {vertical-align:text-top;}
|
20
|
-
sub {vertical-align:text-bottom;}
|
21
|
-
html>body p code {*white-space:normal;}
|
22
|
-
hr {margin:-8px auto 11px;}
|
23
|
-
img {-ms-interpolation-mode:bicubic;}
|
24
|
-
.clearfix, .container {display:inline-block;}
|
25
|
-
* html .clearfix, * html .container {height:1%;}
|
26
|
-
fieldset {padding-top:0;}
|
27
|
-
textarea {overflow:auto;}
|
28
|
-
input.text, input.title, textarea {background-color:#fff;border:1px solid #bbb;}
|
29
|
-
input.text:focus, input.title:focus {border-color:#666;}
|
30
|
-
input.text, input.title, textarea, select {margin:0.5em 0;}
|
31
|
-
input.checkbox, input.radio {position:relative;top:.25em;}
|
32
|
-
form.inline div, form.inline p {vertical-align:middle;}
|
33
|
-
form.inline label {position:relative;top:-0.25em;}
|
34
|
-
form.inline input.checkbox, form.inline input.radio, form.inline input.button, form.inline button {margin:0.5em 0;}
|
35
|
-
button, input.button {position:relative;top:0.25em;}
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,32 +0,0 @@
|
|
1
|
-
Buttons
|
2
|
-
|
3
|
-
* Gives you great looking CSS buttons, for both <a> and <button>.
|
4
|
-
* Demo: particletree.com/features/rediscovering-the-button-element
|
5
|
-
|
6
|
-
|
7
|
-
Credits
|
8
|
-
----------------------------------------------------------------
|
9
|
-
|
10
|
-
* Created by Kevin Hale [particletree.com]
|
11
|
-
* Adapted for Blueprint by Olav Bjorkoy [bjorkoy.com]
|
12
|
-
|
13
|
-
|
14
|
-
Usage
|
15
|
-
----------------------------------------------------------------
|
16
|
-
|
17
|
-
1) Add this plugin to lib/settings.yml.
|
18
|
-
See compress.rb for instructions.
|
19
|
-
|
20
|
-
2) Use the following HTML code to place the buttons on your site:
|
21
|
-
|
22
|
-
<button type="submit" class="button positive">
|
23
|
-
<img src="css/blueprint/plugins/buttons/icons/tick.png" alt=""/> Save
|
24
|
-
</button>
|
25
|
-
|
26
|
-
<a class="button" href="/password/reset/">
|
27
|
-
<img src="css/blueprint/plugins/buttons/icons/key.png" alt=""/> Change Password
|
28
|
-
</a>
|
29
|
-
|
30
|
-
<a href="#" class="button negative">
|
31
|
-
<img src="css/blueprint/plugins/buttons/icons/cross.png" alt=""/> Cancel
|
32
|
-
</a>
|
@@ -1,97 +0,0 @@
|
|
1
|
-
/* --------------------------------------------------------------
|
2
|
-
|
3
|
-
buttons.css
|
4
|
-
* Gives you some great CSS-only buttons.
|
5
|
-
|
6
|
-
Created by Kevin Hale [particletree.com]
|
7
|
-
* particletree.com/features/rediscovering-the-button-element
|
8
|
-
|
9
|
-
See Readme.txt in this folder for instructions.
|
10
|
-
|
11
|
-
-------------------------------------------------------------- */
|
12
|
-
|
13
|
-
a.button, button {
|
14
|
-
display:block;
|
15
|
-
float:left;
|
16
|
-
margin: 0.7em 0.5em 0.7em 0;
|
17
|
-
padding:5px 10px 5px 7px; /* Links */
|
18
|
-
|
19
|
-
border:1px solid #dedede;
|
20
|
-
border-top:1px solid #eee;
|
21
|
-
border-left:1px solid #eee;
|
22
|
-
|
23
|
-
background-color:#f5f5f5;
|
24
|
-
font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
|
25
|
-
font-size:100%;
|
26
|
-
line-height:130%;
|
27
|
-
text-decoration:none;
|
28
|
-
font-weight:bold;
|
29
|
-
color:#565656;
|
30
|
-
cursor:pointer;
|
31
|
-
}
|
32
|
-
button {
|
33
|
-
width:auto;
|
34
|
-
overflow:visible;
|
35
|
-
padding:4px 10px 3px 7px; /* IE6 */
|
36
|
-
}
|
37
|
-
button[type] {
|
38
|
-
padding:4px 10px 4px 7px; /* Firefox */
|
39
|
-
line-height:17px; /* Safari */
|
40
|
-
}
|
41
|
-
*:first-child+html button[type] {
|
42
|
-
padding:4px 10px 3px 7px; /* IE7 */
|
43
|
-
}
|
44
|
-
button img, a.button img{
|
45
|
-
margin:0 3px -3px 0 !important;
|
46
|
-
padding:0;
|
47
|
-
border:none;
|
48
|
-
width:16px;
|
49
|
-
height:16px;
|
50
|
-
float:none;
|
51
|
-
}
|
52
|
-
|
53
|
-
|
54
|
-
/* Button colors
|
55
|
-
-------------------------------------------------------------- */
|
56
|
-
|
57
|
-
/* Standard */
|
58
|
-
button:hover, a.button:hover{
|
59
|
-
background-color:#dff4ff;
|
60
|
-
border:1px solid #c2e1ef;
|
61
|
-
color:#336699;
|
62
|
-
}
|
63
|
-
a.button:active{
|
64
|
-
background-color:#6299c5;
|
65
|
-
border:1px solid #6299c5;
|
66
|
-
color:#fff;
|
67
|
-
}
|
68
|
-
|
69
|
-
/* Positive */
|
70
|
-
body .positive {
|
71
|
-
color:#529214;
|
72
|
-
}
|
73
|
-
a.positive:hover, button.positive:hover {
|
74
|
-
background-color:#E6EFC2;
|
75
|
-
border:1px solid #C6D880;
|
76
|
-
color:#529214;
|
77
|
-
}
|
78
|
-
a.positive:active {
|
79
|
-
background-color:#529214;
|
80
|
-
border:1px solid #529214;
|
81
|
-
color:#fff;
|
82
|
-
}
|
83
|
-
|
84
|
-
/* Negative */
|
85
|
-
body .negative {
|
86
|
-
color:#d12f19;
|
87
|
-
}
|
88
|
-
a.negative:hover, button.negative:hover {
|
89
|
-
background-color:#fbe3e4;
|
90
|
-
border:1px solid #fbc2c4;
|
91
|
-
color:#d12f19;
|
92
|
-
}
|
93
|
-
a.negative:active {
|
94
|
-
background-color:#d12f19;
|
95
|
-
border:1px solid #d12f19;
|
96
|
-
color:#fff;
|
97
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
Fancy Type
|
2
|
-
|
3
|
-
* Gives you classes to use if you'd like some
|
4
|
-
extra fancy typography.
|
5
|
-
|
6
|
-
Credits and instructions are specified above each class
|
7
|
-
in the fancy-type.css file in this directory.
|
8
|
-
|
9
|
-
|
10
|
-
Usage
|
11
|
-
----------------------------------------------------------------
|
12
|
-
|
13
|
-
1) Add this plugin to lib/settings.yml.
|
14
|
-
See compress.rb for instructions.
|
@@ -1,71 +0,0 @@
|
|
1
|
-
/* --------------------------------------------------------------
|
2
|
-
|
3
|
-
fancy-type.css
|
4
|
-
* Lots of pretty advanced classes for manipulating text.
|
5
|
-
|
6
|
-
See the Readme file in this folder for additional instructions.
|
7
|
-
|
8
|
-
-------------------------------------------------------------- */
|
9
|
-
|
10
|
-
/* Indentation instead of line shifts for sibling paragraphs. */
|
11
|
-
p + p { text-indent:2em; margin-top:-1.5em; }
|
12
|
-
form p + p { text-indent: 0; } /* Don't want this in forms. */
|
13
|
-
|
14
|
-
|
15
|
-
/* For great looking type, use this code instead of asdf:
|
16
|
-
<span class="alt">asdf</span>
|
17
|
-
Best used on prepositions and ampersands. */
|
18
|
-
|
19
|
-
.alt {
|
20
|
-
color: #666;
|
21
|
-
font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", Georgia, serif;
|
22
|
-
font-style: italic;
|
23
|
-
font-weight: normal;
|
24
|
-
}
|
25
|
-
|
26
|
-
|
27
|
-
/* For great looking quote marks in titles, replace "asdf" with:
|
28
|
-
<span class="dquo">“</span>asdf”
|
29
|
-
(That is, when the title starts with a quote mark).
|
30
|
-
(You may have to change this value depending on your font size). */
|
31
|
-
|
32
|
-
.dquo { margin-left: -.5em; }
|
33
|
-
|
34
|
-
|
35
|
-
/* Reduced size type with incremental leading
|
36
|
-
(http://www.markboulton.co.uk/journal/comments/incremental_leading/)
|
37
|
-
|
38
|
-
This could be used for side notes. For smaller type, you don't necessarily want to
|
39
|
-
follow the 1.5x vertical rhythm -- the line-height is too much.
|
40
|
-
|
41
|
-
Using this class, it reduces your font size and line-height so that for
|
42
|
-
every four lines of normal sized type, there is five lines of the sidenote. eg:
|
43
|
-
|
44
|
-
New type size in em's:
|
45
|
-
10px (wanted side note size) / 12px (existing base size) = 0.8333 (new type size in ems)
|
46
|
-
|
47
|
-
New line-height value:
|
48
|
-
12px x 1.5 = 18px (old line-height)
|
49
|
-
18px x 4 = 72px
|
50
|
-
72px / 5 = 14.4px (new line height)
|
51
|
-
14.4px / 10px = 1.44 (new line height in em's) */
|
52
|
-
|
53
|
-
p.incr, .incr p {
|
54
|
-
font-size: 10px;
|
55
|
-
line-height: 1.44em;
|
56
|
-
margin-bottom: 1.5em;
|
57
|
-
}
|
58
|
-
|
59
|
-
|
60
|
-
/* Surround uppercase words and abbreviations with this class.
|
61
|
-
Based on work by Jørgen Arnor Gårdsø Lom [http://twistedintellect.com/] */
|
62
|
-
|
63
|
-
.caps {
|
64
|
-
font-variant: small-caps;
|
65
|
-
letter-spacing: 1px;
|
66
|
-
text-transform: lowercase;
|
67
|
-
font-size:1.2em;
|
68
|
-
line-height:1%;
|
69
|
-
font-weight:bold;
|
70
|
-
padding:0 2px;
|
71
|
-
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,18 +0,0 @@
|
|
1
|
-
Link Icons
|
2
|
-
* Icons for links based on protocol or file type.
|
3
|
-
|
4
|
-
This is not supported in IE versions < 7.
|
5
|
-
|
6
|
-
|
7
|
-
Credits
|
8
|
-
----------------------------------------------------------------
|
9
|
-
|
10
|
-
* Marc Morgan
|
11
|
-
* Olav Bjorkoy [bjorkoy.com]
|
12
|
-
|
13
|
-
|
14
|
-
Usage
|
15
|
-
----------------------------------------------------------------
|
16
|
-
|
17
|
-
1) Add this line to your HTML:
|
18
|
-
<link rel="stylesheet" href="css/blueprint/plugins/link-icons/screen.css" type="text/css" media="screen, projection">
|
@@ -1,40 +0,0 @@
|
|
1
|
-
/* --------------------------------------------------------------
|
2
|
-
|
3
|
-
link-icons.css
|
4
|
-
* Icons for links based on protocol or file type.
|
5
|
-
|
6
|
-
See the Readme file in this folder for additional instructions.
|
7
|
-
|
8
|
-
-------------------------------------------------------------- */
|
9
|
-
|
10
|
-
/* Use this class if a link gets an icon when it shouldn't. */
|
11
|
-
body a.noicon {
|
12
|
-
background:transparent none !important;
|
13
|
-
padding:0 !important;
|
14
|
-
margin:0 !important;
|
15
|
-
}
|
16
|
-
|
17
|
-
/* Make sure the icons are not cut */
|
18
|
-
a[href^="http:"], a[href^="mailto:"], a[href^="http:"]:visited,
|
19
|
-
a[href$=".pdf"], a[href$=".doc"], a[href$=".xls"], a[href$=".rss"],
|
20
|
-
a[href$=".rdf"], a[href^="aim:"] {
|
21
|
-
padding:2px 22px 2px 0;
|
22
|
-
margin:-2px 0;
|
23
|
-
background-repeat: no-repeat;
|
24
|
-
background-position: right center;
|
25
|
-
}
|
26
|
-
|
27
|
-
/* External links */
|
28
|
-
a[href^="http:"] { background-image: url(icons/external.png); }
|
29
|
-
a[href^="mailto:"] { background-image: url(icons/email.png); }
|
30
|
-
a[href^="http:"]:visited { background-image: url(icons/visited.png); }
|
31
|
-
|
32
|
-
/* Files */
|
33
|
-
a[href$=".pdf"] { background-image: url(icons/pdf.png); }
|
34
|
-
a[href$=".doc"] { background-image: url(icons/doc.png); }
|
35
|
-
a[href$=".xls"] { background-image: url(icons/xls.png); }
|
36
|
-
|
37
|
-
/* Misc */
|
38
|
-
a[href$=".rss"],
|
39
|
-
a[href$=".rdf"] { background-image: url(icons/feed.png); }
|
40
|
-
a[href^="aim:"] { background-image: url(icons/im.png); }
|
@@ -1,10 +0,0 @@
|
|
1
|
-
RTL
|
2
|
-
* Mirrors Blueprint, so it can be used with Right-to-Left languages.
|
3
|
-
|
4
|
-
By Ran Yaniv Hartstein, ranh.co.il
|
5
|
-
|
6
|
-
Usage
|
7
|
-
----------------------------------------------------------------
|
8
|
-
|
9
|
-
1) Add this line to your HTML:
|
10
|
-
<link rel="stylesheet" href="css/blueprint/plugins/rtl/screen.css" type="text/css" media="screen, projection">
|
@@ -1,110 +0,0 @@
|
|
1
|
-
/* --------------------------------------------------------------
|
2
|
-
|
3
|
-
rtl.css
|
4
|
-
* Mirrors Blueprint for left-to-right languages
|
5
|
-
|
6
|
-
By Ran Yaniv Hartstein [ranh.co.il]
|
7
|
-
|
8
|
-
-------------------------------------------------------------- */
|
9
|
-
|
10
|
-
body .container { direction: rtl; }
|
11
|
-
body .column, body .span-1, body .span-2, body .span-3, body .span-4, body .span-5, body .span-6, body .span-7, body .span-8, body .span-9, body .span-10, body .span-11, body .span-12, body .span-13, body .span-14, body .span-15, body .span-16, body .span-17, body .span-18, body .span-19, body .span-20, body .span-21, body .span-22, body .span-23, body .span-24 {
|
12
|
-
float: right;
|
13
|
-
margin-right: 0;
|
14
|
-
margin-left: 10px;
|
15
|
-
text-align:right;
|
16
|
-
}
|
17
|
-
|
18
|
-
body div.last { margin-left: 0; }
|
19
|
-
body table .last { padding-left: 0; }
|
20
|
-
|
21
|
-
body .append-1 { padding-right: 0; padding-left: 40px; }
|
22
|
-
body .append-2 { padding-right: 0; padding-left: 80px; }
|
23
|
-
body .append-3 { padding-right: 0; padding-left: 120px; }
|
24
|
-
body .append-4 { padding-right: 0; padding-left: 160px; }
|
25
|
-
body .append-5 { padding-right: 0; padding-left: 200px; }
|
26
|
-
body .append-6 { padding-right: 0; padding-left: 240px; }
|
27
|
-
body .append-7 { padding-right: 0; padding-left: 280px; }
|
28
|
-
body .append-8 { padding-right: 0; padding-left: 320px; }
|
29
|
-
body .append-9 { padding-right: 0; padding-left: 360px; }
|
30
|
-
body .append-10 { padding-right: 0; padding-left: 400px; }
|
31
|
-
body .append-11 { padding-right: 0; padding-left: 440px; }
|
32
|
-
body .append-12 { padding-right: 0; padding-left: 480px; }
|
33
|
-
body .append-13 { padding-right: 0; padding-left: 520px; }
|
34
|
-
body .append-14 { padding-right: 0; padding-left: 560px; }
|
35
|
-
body .append-15 { padding-right: 0; padding-left: 600px; }
|
36
|
-
body .append-16 { padding-right: 0; padding-left: 640px; }
|
37
|
-
body .append-17 { padding-right: 0; padding-left: 680px; }
|
38
|
-
body .append-18 { padding-right: 0; padding-left: 720px; }
|
39
|
-
body .append-19 { padding-right: 0; padding-left: 760px; }
|
40
|
-
body .append-20 { padding-right: 0; padding-left: 800px; }
|
41
|
-
body .append-21 { padding-right: 0; padding-left: 840px; }
|
42
|
-
body .append-22 { padding-right: 0; padding-left: 880px; }
|
43
|
-
body .append-23 { padding-right: 0; padding-left: 920px; }
|
44
|
-
|
45
|
-
body .prepend-1 { padding-left: 0; padding-right: 40px; }
|
46
|
-
body .prepend-2 { padding-left: 0; padding-right: 80px; }
|
47
|
-
body .prepend-3 { padding-left: 0; padding-right: 120px; }
|
48
|
-
body .prepend-4 { padding-left: 0; padding-right: 160px; }
|
49
|
-
body .prepend-5 { padding-left: 0; padding-right: 200px; }
|
50
|
-
body .prepend-6 { padding-left: 0; padding-right: 240px; }
|
51
|
-
body .prepend-7 { padding-left: 0; padding-right: 280px; }
|
52
|
-
body .prepend-8 { padding-left: 0; padding-right: 320px; }
|
53
|
-
body .prepend-9 { padding-left: 0; padding-right: 360px; }
|
54
|
-
body .prepend-10 { padding-left: 0; padding-right: 400px; }
|
55
|
-
body .prepend-11 { padding-left: 0; padding-right: 440px; }
|
56
|
-
body .prepend-12 { padding-left: 0; padding-right: 480px; }
|
57
|
-
body .prepend-13 { padding-left: 0; padding-right: 520px; }
|
58
|
-
body .prepend-14 { padding-left: 0; padding-right: 560px; }
|
59
|
-
body .prepend-15 { padding-left: 0; padding-right: 600px; }
|
60
|
-
body .prepend-16 { padding-left: 0; padding-right: 640px; }
|
61
|
-
body .prepend-17 { padding-left: 0; padding-right: 680px; }
|
62
|
-
body .prepend-18 { padding-left: 0; padding-right: 720px; }
|
63
|
-
body .prepend-19 { padding-left: 0; padding-right: 760px; }
|
64
|
-
body .prepend-20 { padding-left: 0; padding-right: 800px; }
|
65
|
-
body .prepend-21 { padding-left: 0; padding-right: 840px; }
|
66
|
-
body .prepend-22 { padding-left: 0; padding-right: 880px; }
|
67
|
-
body .prepend-23 { padding-left: 0; padding-right: 920px; }
|
68
|
-
|
69
|
-
body .border {
|
70
|
-
padding-right: 0;
|
71
|
-
padding-left: 4px;
|
72
|
-
margin-right: 0;
|
73
|
-
margin-left: 5px;
|
74
|
-
border-right: none;
|
75
|
-
border-left: 1px solid #eee;
|
76
|
-
}
|
77
|
-
|
78
|
-
body .colborder {
|
79
|
-
padding-right: 0;
|
80
|
-
padding-left: 24px;
|
81
|
-
margin-right: 0;
|
82
|
-
margin-left: 25px;
|
83
|
-
border-right: none;
|
84
|
-
border-left: 1px solid #eee;
|
85
|
-
}
|
86
|
-
|
87
|
-
body .pull-1 { margin-left: 0; margin-right: -40px; }
|
88
|
-
body .pull-2 { margin-left: 0; margin-right: -80px; }
|
89
|
-
body .pull-3 { margin-left: 0; margin-right: -120px; }
|
90
|
-
body .pull-4 { margin-left: 0; margin-right: -160px; }
|
91
|
-
|
92
|
-
body .push-0 { margin: 0 18px 0 0; }
|
93
|
-
body .push-1 { margin: 0 18px 0 -40px; }
|
94
|
-
body .push-2 { margin: 0 18px 0 -80px; }
|
95
|
-
body .push-3 { margin: 0 18px 0 -120px; }
|
96
|
-
body .push-4 { margin: 0 18px 0 -160px; }
|
97
|
-
body .push-0, body .push-1, body .push-2,
|
98
|
-
body .push-3, body .push-4 { float: left; }
|
99
|
-
|
100
|
-
|
101
|
-
/* Typography with RTL support */
|
102
|
-
body h1,body h2,body h3,
|
103
|
-
body h4,body h5,body h6 { font-family: Arial, sans-serif; }
|
104
|
-
html body { font-family: Arial, sans-serif; }
|
105
|
-
body pre,body code,body tt { font-family: monospace; }
|
106
|
-
|
107
|
-
/* Mirror floats and margins on typographic elements */
|
108
|
-
body p img { float: right; margin: 1.5em 0 1.5em 1.5em; }
|
109
|
-
body dd, body ul, body ol { margin-left: 0; margin-right: 1.5em;}
|
110
|
-
body td, body th { text-align:right; }
|
@@ -1,29 +0,0 @@
|
|
1
|
-
/* -----------------------------------------------------------------------
|
2
|
-
|
3
|
-
|
4
|
-
Blueprint CSS Framework 0.9
|
5
|
-
http://blueprintcss.org
|
6
|
-
|
7
|
-
* Copyright (c) 2007-Present. See LICENSE for more info.
|
8
|
-
* See README for instructions on how to use Blueprint.
|
9
|
-
* For credits and origins, see AUTHORS.
|
10
|
-
* This is a compressed file. See the sources in the 'src' directory.
|
11
|
-
|
12
|
-
----------------------------------------------------------------------- */
|
13
|
-
|
14
|
-
/* print.css */
|
15
|
-
body {line-height:1.5;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;color:#000;background:none;font-size:10pt;}
|
16
|
-
.container {background:none;}
|
17
|
-
hr {background:#ccc;color:#ccc;width:100%;height:2px;margin:2em 0;padding:0;border:none;}
|
18
|
-
hr.space {background:#fff;color:#fff;visibility:hidden;}
|
19
|
-
h1, h2, h3, h4, h5, h6 {font-family:"Helvetica Neue", Arial, "Lucida Grande", sans-serif;}
|
20
|
-
code {font:.9em "Courier New", Monaco, Courier, monospace;}
|
21
|
-
a img {border:none;}
|
22
|
-
p img.top {margin-top:0;}
|
23
|
-
blockquote {margin:1.5em;padding:1em;font-style:italic;font-size:.9em;}
|
24
|
-
.small {font-size:.9em;}
|
25
|
-
.large {font-size:1.1em;}
|
26
|
-
.quiet {color:#999;}
|
27
|
-
.hide {display:none;}
|
28
|
-
a:link, a:visited {background:transparent;font-weight:700;text-decoration:underline;}
|
29
|
-
a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}
|