summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-01-21 13:54:45 -0800
committerelijah <elijah@riseup.net>2014-01-23 11:37:49 -0800
commit87383e624855def55e13d238b2f20b79c418c1d9 (patch)
treebfba7820ab8ed90b433c5e0fc56def4c7ea523fc /config
parent01941b7d930c581a6684f6b939b3ae2f62bd832e (diff)
added default pricing, privacy policy and tos pages.
Diffstat (limited to 'config')
-rw-r--r--config/initializers/markdown_handler.rb19
-rw-r--r--config/locales/en.yml5
-rw-r--r--config/routes.rb8
3 files changed, 32 insertions, 0 deletions
diff --git a/config/initializers/markdown_handler.rb b/config/initializers/markdown_handler.rb
new file mode 100644
index 0000000..b9e73ba
--- /dev/null
+++ b/config/initializers/markdown_handler.rb
@@ -0,0 +1,19 @@
+#
+# This adds support for markdown in views. Just name the template with ".md"
+# erb expansion is supported.
+#
+
+require 'rdiscount'
+
+module MarkdownHandler
+ def self.erb
+ @erb ||= ActionView::Template.registered_template_handler(:erb)
+ end
+
+ def self.call(template)
+ compiled_source = erb.call(template)
+ "RDiscount.new(begin;#{compiled_source};end, :generate_toc, :smart, :autolink).to_html"
+ end
+end
+
+ActionView::Template.register_template_handler :md, MarkdownHandler
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 63f1c3e..00ef06b 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -1 +1,6 @@
en:
+ privacy_policy: Privacy Policy
+ terms_of_use: Terms of Use
+ pricing: Pricing
+ about: About Us
+ contact: Contact \ No newline at end of file
diff --git a/config/routes.rb b/config/routes.rb
index b3e24b9..f8f0c26 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -6,5 +6,13 @@ LeapWeb::Application.routes.draw do
root :to => "home#index"
get '(:locale)' => 'home#index', :locale => MATCH_LOCALE, :as => 'home'
+ scope "(:locale)", :locale => MATCH_LOCALE, :controller => 'pages', :action => 'show' do
+ get 'privacy-policy', :as => 'privacy_policy'
+ get 'terms-of-service', :as => 'terms_of_service'
+ get 'about', :as => 'about'
+ get 'contact', :as => 'contact'
+ get 'pricing', :as => 'pricing'
+ end
+
get '/provider.json' => 'static_config#provider'
end