This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
plemp/plemp.rb

75 lines
1.6 KiB
Ruby

require "camping"
require "markaby"
require "pathname"
Camping.goes :Plemp
Markaby::Builder.set(:indent, 2)
PUBLIC_DIR = Pathname.new(__FILE__).dirname + "public"
module Plemp::Controllers
class Index
def get
render :main
end
end
class PublicX
MIME_TYPES = {'.css' => 'text/css',
'.js' => 'text/javascript',
'.jpg' => 'image/jpeg'}
def get(path)
@headers['Content-Type'] = MIME_TYPES[path[/\.\w+$/, 0]] || "text/plain"
unless path.include? ".." # prevent directory traversal attacks
@headers['X-Sendfile'] = "#{PUBLIC_DIR}/#{path}"
else
@status = "403"
"403 - Invalid path"
end
end
end
class SaveposXXX
def post(id, top, left)
$stderr.puts("Got: top: #{top}, left: #{left}")
""
end
end
end
module Plemp::Views
def layout
xhtml_strict do
head do
title "Plemp!"
['drag', 'prototype', 'effects', 'controls'].each do |js|
script :src => R(PublicX, "#{js}.js"), :type => "text/javascript"
end
end
body do
self << yield
end
end
end
def main
div.first! :style => "position:absolute;top:120px;left:100px",
:onmousedown => "drag(event)" do "First" end
div.second! :style => "position:absolute;top:170px;left:300px",
:onmousedown => "drag(event)",
:onmouseup => _savepos do "Second" end
end
def _savepos
"new Ajax.Request('http://localhost:3301/savepos/' + " +
"this.id + '/' + this.style.top + '/' + this.style.left); " +
"return false;"
end
end