Sha256: f68188a7b56260b21d6e3b540429d0fc650b57a91f3b540f39a9615b75a64e92

Contents?: true

Size: 1.1 KB

Versions: 36

Compression:

Stored size: 1.1 KB

Contents

require 'rubygems'
require 'ramaze'

class MainController < Ramaze::Controller
  engine :RedCloth
  layout :layout

  def index
    @place = :home
    %{ #{a('Home',:/)} | #{a(:internal)} | #{a(:external)} }
  end

  def internal(*args)
    @place = :internal
    @args = args
    <<__REDCLOTH__
h1. The <%= @place %> Template for RedCloth

"Home":<%= r(:/) %>

Here you can pass some stuff if you like, parameters are just passed like this:<br />
"<%= @place %>/one":<%= r(@place, :one) %><br />
"<%= @place %>/two/three":<%= r(@place, :two, :three) %><br />
"<%= @place %>/one?foo=bar":<%= r(@place, :one, :foo => :bar) %>

The arguments you have passed to this action are:<br />
<% if @args.empty? %>
  none
<% else %>
  <% @args.each do |arg| %>
    <span><%= arg %></span>
  <% end %>
<% end %>

<%= request.params.inspect %>
__REDCLOTH__
  end

  def external(*args)
    @place = :external
    @args = args
  end

  def layout
    <<'__HTML__'
<html>
  <head>
    <title>Template::RedCloth <%= @place %></title>
  </head>
  <body>
    <%= @content %>
  </body>
</html>
__HTML__
  end
end

Ramaze.start :file => __FILE__

Version data entries

36 entries across 36 versions & 4 rubygems

Version Path
ramaze-2023.01.06 examples/templates/template_redcloth.rb
Pistos-ramaze-2009.04.08 examples/templates/template_redcloth.rb
Pistos-ramaze-2009.06.12 examples/templates/template_redcloth.rb
manveru-ramaze-2009.04.08 examples/templates/template_redcloth.rb
manveru-ramaze-2009.04.18 examples/templates/template_redcloth.rb
manveru-ramaze-2009.04.22 examples/templates/template_redcloth.rb
manveru-ramaze-2009.04 examples/templates/template_redcloth.rb
manveru-ramaze-2009.05.08 examples/templates/template_redcloth.rb
manveru-ramaze-2009.05 examples/templates/template_redcloth.rb
manveru-ramaze-2009.06.04 examples/templates/template_redcloth.rb
manveru-ramaze-2009.06.12 examples/templates/template_redcloth.rb
manveru-ramaze-2009.06 examples/templates/template_redcloth.rb
manveru-ramaze-2009.07 examples/templates/template_redcloth.rb
rjspotter-ramaze-2009.06.29 examples/templates/template_redcloth.rb
rjspotter-ramaze-2009.06.31 examples/templates/template_redcloth.rb
ramaze-2012.12.08 examples/templates/template_redcloth.rb
ramaze-2012.12.08b examples/templates/template_redcloth.rb
ramaze-2012.04.14 examples/templates/template_redcloth.rb
ramaze-2012.03.07 examples/templates/template_redcloth.rb
ramaze-2011.12.28 examples/templates/template_redcloth.rb