el_vfs_client 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +24 -0
  4. data/app/assets/images/el_vfs/elfinder/arrows-active.png +0 -0
  5. data/app/assets/images/el_vfs/elfinder/arrows-normal.png +0 -0
  6. data/app/assets/images/el_vfs/elfinder/dialogs.png +0 -0
  7. data/app/assets/images/el_vfs/elfinder/icons-big.png +0 -0
  8. data/app/assets/images/el_vfs/elfinder/icons-small.png +0 -0
  9. data/app/assets/images/el_vfs/elfinder/logo.png +0 -0
  10. data/app/assets/images/el_vfs/elfinder/progress.gif +0 -0
  11. data/app/assets/images/el_vfs/elfinder/quicklook-bg.png +0 -0
  12. data/app/assets/images/el_vfs/elfinder/quicklook-icons.png +0 -0
  13. data/app/assets/images/el_vfs/elfinder/resize.png +0 -0
  14. data/app/assets/images/el_vfs/elfinder/spinner-mini.gif +0 -0
  15. data/app/assets/images/el_vfs/elfinder/toolbar.png +0 -0
  16. data/app/assets/images/el_vfs/ui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  17. data/app/assets/images/el_vfs/ui/ui-bg_flat_75_ffffff_40x100.png +0 -0
  18. data/app/assets/images/el_vfs/ui/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  19. data/app/assets/images/el_vfs/ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
  20. data/app/assets/images/el_vfs/ui/ui-bg_glass_75_dadada_1x400.png +0 -0
  21. data/app/assets/images/el_vfs/ui/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  22. data/app/assets/images/el_vfs/ui/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  23. data/app/assets/images/el_vfs/ui/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  24. data/app/assets/images/el_vfs/ui/ui-icons_222222_256x240.png +0 -0
  25. data/app/assets/images/el_vfs/ui/ui-icons_2e83ff_256x240.png +0 -0
  26. data/app/assets/images/el_vfs/ui/ui-icons_454545_256x240.png +0 -0
  27. data/app/assets/images/el_vfs/ui/ui-icons_888888_256x240.png +0 -0
  28. data/app/assets/images/el_vfs/ui/ui-icons_cd0a0a_256x240.png +0 -0
  29. data/app/assets/javascripts/el_vfs/elfinder.js +9601 -0
  30. data/app/assets/javascripts/el_vfs/i18n/elfinder.LANG.js +281 -0
  31. data/app/assets/javascripts/el_vfs/i18n/elfinder.ar.js +280 -0
  32. data/app/assets/javascripts/el_vfs/i18n/elfinder.ru.js +280 -0
  33. data/app/assets/stylesheets/el_vfs/el_vfs.sass +4 -0
  34. data/app/assets/stylesheets/el_vfs/elfinder.sass +1645 -0
  35. data/app/assets/stylesheets/el_vfs/jquery_ui.sass +1482 -0
  36. data/app/assets/stylesheets/el_vfs/reset.sass +3 -0
  37. data/app/assets/stylesheets/el_vfs/theme.sass +82 -0
  38. data/app/controllers/el_vfs_client/el_finder_controller.rb +36 -0
  39. data/config/routes.rb +5 -0
  40. metadata +113 -0
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2011 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = ElVfsClient
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
7
+ begin
8
+ require 'rdoc/task'
9
+ rescue LoadError
10
+ require 'rdoc/rdoc'
11
+ require 'rake/rdoctask'
12
+ RDoc::Task = Rake::RDocTask
13
+ end
14
+
15
+ RDoc::Task.new(:rdoc) do |rdoc|
16
+ rdoc.rdoc_dir = 'rdoc'
17
+ rdoc.title = 'ElVfsClient'
18
+ rdoc.options << '--line-numbers'
19
+ rdoc.rdoc_files.include('README.rdoc')
20
+ rdoc.rdoc_files.include('lib/**/*.rb')
21
+ end
22
+
23
+ Bundler::GemHelper.install_tasks
24
+