markitup-rails 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +12 -0
- data/.ruby-version +1 -0
- data/Gemfile +18 -0
- data/LICENSE.txt +20 -0
- data/README.md +199 -0
- data/Rakefile +12 -0
- data/app/controllers/markitup/rails/preview_controller.rb +13 -0
- data/app/views/layouts/markitup.html.erb +16 -0
- data/app/views/markitup/rails/preview/preview.html.erb +2 -0
- data/config/routes.rb +3 -0
- data/lib/markitup/rails/configuration.rb +22 -0
- data/lib/markitup/rails/engine.rb +15 -0
- data/lib/markitup/rails/version.rb +5 -0
- data/markitup-rails.gemspec +24 -0
- data/test/configuration_test.rb +52 -0
- data/test/controllers/markitup/rails/preview_controller_test.rb +12 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/mailers/.gitkeep +0 -0
- data/test/dummy/app/models/.gitkeep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +68 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/markitup_rails.rb +1 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +11 -0
- data/test/dummy/db/schema.rb +16 -0
- data/test/dummy/lib/assets/.gitkeep +0 -0
- data/test/dummy/log/.gitkeep +0 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/markitup-rails_test.rb +7 -0
- data/test/minitest_helper.rb +24 -0
- data/vendor/assets/images/markitup/sets/bbcode/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/clean.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/code.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/fonts.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/link.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/list-item.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/quotes.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/stroke.png +0 -0
- data/vendor/assets/images/markitup/sets/bbcode/underline.png +0 -0
- data/vendor/assets/images/markitup/sets/css/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/css/css.png +0 -0
- data/vendor/assets/images/markitup/sets/css/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/css/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/css/stroke.png +0 -0
- data/vendor/assets/images/markitup/sets/css/tag.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_align_center.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_align_justify.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_align_left.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_align_right.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_indent.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_letterspacing.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_linespacing.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_lowercase.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_padding_bottom.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_padding_left.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_padding_right.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_padding_top.png +0 -0
- data/vendor/assets/images/markitup/sets/css/text_uppercase.png +0 -0
- data/vendor/assets/images/markitup/sets/default/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/default/clean.png +0 -0
- data/vendor/assets/images/markitup/sets/default/image.png +0 -0
- data/vendor/assets/images/markitup/sets/default/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/default/link.png +0 -0
- data/vendor/assets/images/markitup/sets/default/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/default/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/default/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/default/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/default/stroke.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/code.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/h6.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/link.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/quotes.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/stroke.png +0 -0
- data/vendor/assets/images/markitup/sets/dotclear/url.png +0 -0
- data/vendor/assets/images/markitup/sets/html/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/html/clean.png +0 -0
- data/vendor/assets/images/markitup/sets/html/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/html/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/html/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/html/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/html/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/html/h6.png +0 -0
- data/vendor/assets/images/markitup/sets/html/image.png +0 -0
- data/vendor/assets/images/markitup/sets/html/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/html/link.png +0 -0
- data/vendor/assets/images/markitup/sets/html/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/html/list-item.png +0 -0
- data/vendor/assets/images/markitup/sets/html/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/html/paragraph.png +0 -0
- data/vendor/assets/images/markitup/sets/html/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/html/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/html/stroke.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/code.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/h6.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/link.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/markdown/quotes.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/code.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/h6.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/link.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/markmin/quotes.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/code.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/link.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/rest/quotes.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/code.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/h6.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/link.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/paragraph.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/quotes.png +0 -0
- data/vendor/assets/images/markitup/sets/textile/stroke.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/code.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/disconnect.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/h6.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/link.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/page_white_code.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/quotes.png +0 -0
- data/vendor/assets/images/markitup/sets/texy/stroke.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/code.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/disconnect.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/link.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/quotes.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/stroke.png +0 -0
- data/vendor/assets/images/markitup/sets/txt2tags/underline.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/code.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/h6.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/link.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/quotes.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/stroke.png +0 -0
- data/vendor/assets/images/markitup/sets/wiki/url.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/bold.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/clean.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/h1.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/h2.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/h3.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/h4.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/h5.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/h6.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/image.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/italic.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/link.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/list-bullet.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/list-item.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/list-numeric.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/paragraph.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/picture.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/preview.png +0 -0
- data/vendor/assets/images/markitup/sets/xbbcode/stroke.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-container.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-editor-bbcode.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-editor-dotclear.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-editor-html.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-editor-json.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-editor-markdown.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-editor-textile.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-editor-wiki.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-editor-xml.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/bg-editor.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/handle.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/menu.png +0 -0
- data/vendor/assets/images/markitup/skins/markitup/submenu.png +0 -0
- data/vendor/assets/images/markitup/skins/simple/handle.png +0 -0
- data/vendor/assets/images/markitup/skins/simple/menu.png +0 -0
- data/vendor/assets/images/markitup/skins/simple/submenu.png +0 -0
- data/vendor/assets/javascripts/markitup.js +634 -0
- data/vendor/assets/javascripts/markitup/sets/bbcode/set.js +39 -0
- data/vendor/assets/javascripts/markitup/sets/css/set.js +52 -0
- data/vendor/assets/javascripts/markitup/sets/default/set.js +30 -0
- data/vendor/assets/javascripts/markitup/sets/dotclear/set.js +37 -0
- data/vendor/assets/javascripts/markitup/sets/html/set.js +39 -0
- data/vendor/assets/javascripts/markitup/sets/markdown/set.js +52 -0
- data/vendor/assets/javascripts/markitup/sets/markmin/set.js +49 -0
- data/vendor/assets/javascripts/markitup/sets/rest/set.js +51 -0
- data/vendor/assets/javascripts/markitup/sets/textile/set.js +40 -0
- data/vendor/assets/javascripts/markitup/sets/texy/set.js +51 -0
- data/vendor/assets/javascripts/markitup/sets/txt2tags/set.js +41 -0
- data/vendor/assets/javascripts/markitup/sets/wiki/set.js +37 -0
- data/vendor/assets/javascripts/markitup/sets/xbbcode/set.js +36 -0
- data/vendor/assets/stylesheets/markitup/sets/bbcode/style.scss +47 -0
- data/vendor/assets/stylesheets/markitup/sets/css/style.scss +72 -0
- data/vendor/assets/stylesheets/markitup/sets/default/style.scss +34 -0
- data/vendor/assets/stylesheets/markitup/sets/dotclear/style.scss +54 -0
- data/vendor/assets/stylesheets/markitup/sets/html/style.scss +59 -0
- data/vendor/assets/stylesheets/markitup/sets/markdown/style.scss +54 -0
- data/vendor/assets/stylesheets/markitup/sets/markmin/style.scss +54 -0
- data/vendor/assets/stylesheets/markitup/sets/rest/style.scss +53 -0
- data/vendor/assets/stylesheets/markitup/sets/textile/style.scss +60 -0
- data/vendor/assets/stylesheets/markitup/sets/texy/style.scss +51 -0
- data/vendor/assets/stylesheets/markitup/sets/txt2tags/style.scss +62 -0
- data/vendor/assets/stylesheets/markitup/sets/wiki/style.scss +57 -0
- data/vendor/assets/stylesheets/markitup/sets/xbbcode/style.scss +59 -0
- data/vendor/assets/stylesheets/markitup/skins/markitup/style.scss +147 -0
- data/vendor/assets/stylesheets/markitup/skins/simple/style.css +118 -0
- metadata +308 -2
data/.gitignore
ADDED
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.9.3@markitup-rails
|
data/Gemfile
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
source "https://rubygems.org"
|
|
2
|
+
|
|
3
|
+
gemspec
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
platforms :jruby do
|
|
7
|
+
gem "activerecord-jdbc-adapter", require: false
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
group :test do
|
|
11
|
+
platforms :ruby do
|
|
12
|
+
gem "sqlite3"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
platforms :jruby do
|
|
16
|
+
gem "activerecord-jdbcsqlite3-adapter", require: false
|
|
17
|
+
end
|
|
18
|
+
end
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
Copyright © 2013 Phil Cohen <github@phlippers.net>
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
+
of this software and associated documentation files (the “Software”), to deal
|
|
6
|
+
in the Software without restriction, including without limitation the rights
|
|
7
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
9
|
+
furnished to do so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in
|
|
12
|
+
all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
20
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
# markitup-rails
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
The [markItUp!](http://markitup.jaysalvat.com/home/) universal markup editor, bundled for Rails 3.1+ Asset Pipeline.
|
|
6
|
+
|
|
7
|
+
markItUp! is a JavaScript plug-in built on the jQuery library. It allows you to turn any textarea into a markup editor. HTML, Textile, Wiki Syntax, Markdown, BBcode or even your own Markup system can be easily implemented.
|
|
8
|
+
|
|
9
|
+
`markitup-rails` ships with several markup "sets" and editor "skins" including:
|
|
10
|
+
|
|
11
|
+
### Markup Sets
|
|
12
|
+
|
|
13
|
+
* `bbcode`
|
|
14
|
+
* `css`
|
|
15
|
+
* `default`
|
|
16
|
+
* `dotclear`
|
|
17
|
+
* `html`
|
|
18
|
+
* `markdown`
|
|
19
|
+
* `markmin`
|
|
20
|
+
* `rest`
|
|
21
|
+
* `textile`
|
|
22
|
+
* `texy`
|
|
23
|
+
* `txt2tags`
|
|
24
|
+
* `wiki`
|
|
25
|
+
* `xbbcode`
|
|
26
|
+
|
|
27
|
+
### Editor Skins
|
|
28
|
+
|
|
29
|
+
* `markitup`
|
|
30
|
+
* `simple`
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## Requirements
|
|
34
|
+
|
|
35
|
+
This gem requires Rails 3.1+ and has been tested on the following versions:
|
|
36
|
+
|
|
37
|
+
* 3.1
|
|
38
|
+
* 3.2
|
|
39
|
+
|
|
40
|
+
This gem requires Ruby 1.9+ and has been tested against the following Ruby versions:
|
|
41
|
+
|
|
42
|
+
* 1.9.2
|
|
43
|
+
* 1.9.3
|
|
44
|
+
* JRuby
|
|
45
|
+
* Rubinius
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
## Installation
|
|
49
|
+
|
|
50
|
+
Add this line to your application's Gemfile:
|
|
51
|
+
|
|
52
|
+
```ruby
|
|
53
|
+
gem "markitup-rails"
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
And then execute:
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
$ bundle
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Or install it yourself as:
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
$ gem install markitup-rails
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
## Configuration
|
|
70
|
+
|
|
71
|
+
The `Markitup::Rails` module accepts a `configure` block with options to customize the engine behavior.
|
|
72
|
+
|
|
73
|
+
Place any custom configuration in a file such as `config/initializers/markitup_rails.rb`.
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Layout
|
|
77
|
+
|
|
78
|
+
Set the `layout` option to customize the layout used by the AJAX live preview:
|
|
79
|
+
|
|
80
|
+
```ruby
|
|
81
|
+
Markitup::Rails.configure do |config|
|
|
82
|
+
config.layout = "other" # default is `markitup`
|
|
83
|
+
end
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
You may also override the default locally by creating a new layout file at `app/views/layouts/markitup.html.erb`.
|
|
87
|
+
|
|
88
|
+
### Formatter
|
|
89
|
+
|
|
90
|
+
Set the `formatter` option to customize the renderer for the preview. This can be any object that responds to `call` and which takes a single argument with the markup to render:
|
|
91
|
+
|
|
92
|
+
```ruby
|
|
93
|
+
Markitup::Rails.configure do |config|
|
|
94
|
+
config.formatter = -> markup { BBCodeParser.parse(markup) }
|
|
95
|
+
end
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Route
|
|
99
|
+
|
|
100
|
+
`markitup-rails` provides a URL endpoint that be mounted to support a live server-side preview of markItUp! content.
|
|
101
|
+
|
|
102
|
+
To enable, mount the engine in your `config/routes.rb` file:
|
|
103
|
+
|
|
104
|
+
```ruby
|
|
105
|
+
mount Markitup::Rails::Engine, at: "markitup", as: "markitup"
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
This will create a URL helper for `markitup.preview_url` which will route to `/markitup/preview`.
|
|
109
|
+
|
|
110
|
+
The preview URL will render the editor content using the `config.formatter` and display the content within the `config.layout`.
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
## Usage
|
|
114
|
+
|
|
115
|
+
For Rails 3.1 and greater, the files will be added to the asset pipeline and available for you to use.
|
|
116
|
+
|
|
117
|
+
To enable the markItUp! editor in your application, you will need to include the appropriate JavaScript and Stylesheet files for the Set and Skin you wish to use.
|
|
118
|
+
|
|
119
|
+
Example:
|
|
120
|
+
|
|
121
|
+
* Add the following line to the file `app/assets/javascripts/application.js` (or other [sprockets](https://github.com/sstephenson/sprockets) manifest):
|
|
122
|
+
|
|
123
|
+
```javascript
|
|
124
|
+
//= require markitup
|
|
125
|
+
//= require markitup/sets/xbbcode/set
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
* Add the following line to the file `app/assets/stylesheets/application.css`:
|
|
129
|
+
|
|
130
|
+
```css
|
|
131
|
+
*= require markitup/skins/markitup/style
|
|
132
|
+
*= require markitup/sets/xbbcode/style
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
You may also include the styles in your SCSS file directly:
|
|
136
|
+
|
|
137
|
+
```scss
|
|
138
|
+
@import "markitup/skins/markitup/style";
|
|
139
|
+
@import "markitup/sets/xbbcode/style";
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
### Using markItUp!
|
|
144
|
+
|
|
145
|
+
Example:
|
|
146
|
+
|
|
147
|
+
```coffee
|
|
148
|
+
jQuery ->
|
|
149
|
+
|
|
150
|
+
# Target all text areas
|
|
151
|
+
$("textarea").markItUp mySettings
|
|
152
|
+
|
|
153
|
+
# Target a specific ID
|
|
154
|
+
$("#my_id").markItUp mySettings
|
|
155
|
+
|
|
156
|
+
# Target a specific class
|
|
157
|
+
$("textarea.markitup").markItUp mySettings
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
See the [markItUp! documentation](http://markitup.jaysalvat.com/documentation/) for more information.
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
## Contributing
|
|
164
|
+
|
|
165
|
+
1. Fork it
|
|
166
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
167
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
|
168
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
169
|
+
5. Create a Pull Request
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
## Contributors
|
|
173
|
+
|
|
174
|
+
Many thanks go to the following who have contributed to making this gem even better:
|
|
175
|
+
|
|
176
|
+
* **[@ugorelik](https://github.com/ugorelik)**
|
|
177
|
+
* initial version
|
|
178
|
+
* **[@phlipper](https://github.com/phlipper)**
|
|
179
|
+
* complete rewrite as an engine for Rails 3.1+
|
|
180
|
+
* add AJAX live preview support
|
|
181
|
+
* add support for Sets and Skins, add many defaults to choose from
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
## License
|
|
185
|
+
|
|
186
|
+
**markitup-rails**
|
|
187
|
+
|
|
188
|
+
* Freely distributable and licensed under the [MIT license](http://phlipper.mit-license.org/2013/license.html).
|
|
189
|
+
* Copyright (c) 2013 Phil Cohen (github@phlippers.net) [](http://coderwall.com/phlipper)
|
|
190
|
+
* http://phlippers.net/
|
|
191
|
+
|
|
192
|
+
**markItUp!**
|
|
193
|
+
|
|
194
|
+
* Author: [Jay Salvat](http://www.jaysalvat.com/)
|
|
195
|
+
* Licence: MIT/GPL
|
|
196
|
+
* http://markitup.jaysalvat.com/
|
|
197
|
+
|
|
198
|
+
markItUp! is released under both the MIT and GPL Open Source licenses.
|
|
199
|
+
In short, this means that markItUp! is totally Free, and you can do whatever you want with it. You are only obligated to keep the credits in place.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
module Markitup::Rails
|
|
2
|
+
|
|
3
|
+
# Public: Provide server-side preview of editor markup
|
|
4
|
+
#
|
|
5
|
+
class PreviewController < ApplicationController
|
|
6
|
+
layout Markitup::Rails.configuration.layout
|
|
7
|
+
|
|
8
|
+
def preview
|
|
9
|
+
@content = Markitup::Rails.configuration.formatter.call(params[:data])
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>markItUp! preview template</title>
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
/* preview style examples */
|
|
7
|
+
body {
|
|
8
|
+
background-color: #efefef;
|
|
9
|
+
font: 70% Verdana, Arial, Helvetica, sans-serif;
|
|
10
|
+
}
|
|
11
|
+
</style>
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<%= yield %>
|
|
15
|
+
</body>
|
|
16
|
+
</html>
|
data/config/routes.rb
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
module Markitup
|
|
2
|
+
module Rails
|
|
3
|
+
class << self
|
|
4
|
+
attr_accessor :configuration
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
def self.configure
|
|
8
|
+
self.configuration ||= Configuration.new
|
|
9
|
+
yield configuration if block_given?
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
# Public: Configuration options for the Markitup::Rails module
|
|
13
|
+
class Configuration
|
|
14
|
+
attr_accessor :layout, :formatter
|
|
15
|
+
|
|
16
|
+
def initialize
|
|
17
|
+
@layout = "markitup"
|
|
18
|
+
@formatter = -> markup { markup }
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
require "rails"
|
|
2
|
+
|
|
3
|
+
module Markitup
|
|
4
|
+
module Rails
|
|
5
|
+
# Public: Initialize the Rails engine
|
|
6
|
+
class Engine < ::Rails::Engine
|
|
7
|
+
isolate_namespace Markitup::Rails
|
|
8
|
+
|
|
9
|
+
initializer "markitup.rails.configuration" do
|
|
10
|
+
# initialize a default configuration
|
|
11
|
+
Markitup::Rails.configuration ||= Markitup::Rails::Configuration.new
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
2
|
+
|
|
3
|
+
require "markitup/rails/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "markitup-rails"
|
|
7
|
+
s.version = Markitup::Rails::VERSION
|
|
8
|
+
s.summary = "The markItUp! universal markup editor, bundled for Rails 3.1+ Asset Pipeline."
|
|
9
|
+
s.description = "The markItUp! universal markup editor, bundled for Rails 3.1+ Asset Pipeline."
|
|
10
|
+
s.authors = ["Uri Gorelik", "Phil Cohen"]
|
|
11
|
+
s.email = ["uri@ndstorefront.com", "github@phlippers.net"]
|
|
12
|
+
s.homepage = "https://github.com/HealthyWeb/markitup-rails"
|
|
13
|
+
|
|
14
|
+
s.files = `git ls-files`.split("\n")
|
|
15
|
+
|
|
16
|
+
s.add_dependency "rails", ">= 3.1"
|
|
17
|
+
|
|
18
|
+
s.add_development_dependency "bundler", ">= 1.2.0"
|
|
19
|
+
s.add_development_dependency "cane", "~> 2.5.0"
|
|
20
|
+
s.add_development_dependency "minitest", "~> 4.3.0"
|
|
21
|
+
s.add_development_dependency "minitest-rails", "~> 0.3.0"
|
|
22
|
+
s.add_development_dependency "rake", ">= 10.0.0"
|
|
23
|
+
s.add_development_dependency "simplecov", "~> 0.7.1"
|
|
24
|
+
end
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
require "minitest_helper"
|
|
2
|
+
|
|
3
|
+
describe Markitup::Rails::Configuration do
|
|
4
|
+
subject { Markitup::Rails.configuration }
|
|
5
|
+
|
|
6
|
+
describe "layout" do
|
|
7
|
+
it { subject.layout.must_equal "markitup" }
|
|
8
|
+
|
|
9
|
+
describe "with a custom layout" do
|
|
10
|
+
before do
|
|
11
|
+
@old_layout = subject.layout
|
|
12
|
+
|
|
13
|
+
Markitup::Rails.configure do |config|
|
|
14
|
+
config.layout = "other"
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
after { Markitup::Rails.configuration.layout = @old_layout }
|
|
19
|
+
|
|
20
|
+
it { Markitup::Rails.configuration.layout.must_equal "other" }
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
describe "formatter" do
|
|
25
|
+
it { subject.must_respond_to(:formatter, :call) }
|
|
26
|
+
it { subject.formatter.call("text").must_equal "text" }
|
|
27
|
+
|
|
28
|
+
describe "with a custom formatter" do
|
|
29
|
+
before do
|
|
30
|
+
class Frobnicate
|
|
31
|
+
def self.call(markup)
|
|
32
|
+
"Frobnicate: #{markup}"
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
@old_formatter = subject.formatter
|
|
37
|
+
|
|
38
|
+
Markitup::Rails.configure do |config|
|
|
39
|
+
config.formatter = Frobnicate
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
after { Markitup::Rails.configuration.formatter = @old_formatter }
|
|
44
|
+
|
|
45
|
+
it "frobnicates" do
|
|
46
|
+
expected = "Frobnicate: foo"
|
|
47
|
+
Markitup::Rails.configuration.formatter.call("foo").must_equal expected
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
end
|