Sha256: b49f7b9c4fee9747a2048d000b6982a818a9f0814356bded12daf5c2a6f5b58b

Contents?: true

Size: 1.4 KB

Versions: 22

Compression:

Stored size: 1.4 KB

Contents

require 'rubygems'
require 'ramaze'

class MainController < Ramaze::Controller
  engine :Markaby

  helper :markaby

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

  def internal *args
    options = {:place => :internal, :action => 'internal',
      :args => args, :request => request, :this => self}
    mab options do
      html do
        head do
          title "Template::Markaby #@place"
        end
        body do
          h1 "The #@place Template for Markaby"
          a("Home", :href => R(@this))
          p do
            text "Here you can pass some stuff if you like, parameters are just passed like this:"
            br
            a("#@place/one", :href => R(@this, @place, :one))
            br
            a("#@place/one/two/three", :href => R(@this, @place, :one, :two, :three))
            br
            a("#@place/one?foo=bar", :href => R(@this, @place, :one, :foo => :bar))
            br
          end
          div do
            text "The arguments you have passed to this action are:"
            if @args.empty?
              text "none"
            else
              args.each do |arg|
                span arg
              end
            end
          end
          div @request.params.inspect
        end
      end
    end.to_s
  end

  def external *args
    @args = args
    @request = request
    @place = :external
  end
end

Ramaze.start :file => __FILE__

Version data entries

22 entries across 22 versions & 4 rubygems

Version Path
Pistos-ramaze-2009.04.08 examples/templates/template_markaby.rb
Pistos-ramaze-2009.06.12 examples/templates/template_markaby.rb
manveru-ramaze-2009.04.01 examples/templates/template_markaby.rb
manveru-ramaze-2009.04.08 examples/templates/template_markaby.rb
manveru-ramaze-2009.04.18 examples/templates/template_markaby.rb
manveru-ramaze-2009.04.22 examples/templates/template_markaby.rb
manveru-ramaze-2009.04 examples/templates/template_markaby.rb
manveru-ramaze-2009.05.08 examples/templates/template_markaby.rb
manveru-ramaze-2009.05 examples/templates/template_markaby.rb
manveru-ramaze-2009.06.04 examples/templates/template_markaby.rb
manveru-ramaze-2009.06.12 examples/templates/template_markaby.rb
manveru-ramaze-2009.06 examples/templates/template_markaby.rb
manveru-ramaze-2009.07 examples/templates/template_markaby.rb
rjspotter-ramaze-2009.06.29 examples/templates/template_markaby.rb
rjspotter-ramaze-2009.06.31 examples/templates/template_markaby.rb
ramaze-2009.10 examples/templates/template_markaby.rb
ramaze-2009.07 examples/templates/template_markaby.rb
ramaze-2009.04 examples/templates/template_markaby.rb
ramaze-2009.05 examples/templates/template_markaby.rb
ramaze-2009.06.04 examples/templates/template_markaby.rb