Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LQDN Adminsys
amendments
Commits
74a3682c
Commit
74a3682c
authored
Mar 31, 2013
by
Michael Witrant
Browse files
bootstrap style
parent
3556d539
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
bootstrap.min.css
0 → 100644
View file @
74a3682c
This diff is collapsed.
Click to expand it.
server.rb
View file @
74a3682c
...
@@ -8,7 +8,7 @@ require 'haml'
...
@@ -8,7 +8,7 @@ require 'haml'
require
'./extract_amendments'
require
'./extract_amendments'
get
'/'
do
get
'/'
do
haml
:index
haml
:index
,
locals:
{
template:
File
.
read
(
"template.erb"
)}
end
end
post
'/extract'
do
post
'/extract'
do
...
@@ -16,17 +16,32 @@ post '/extract' do
...
@@ -16,17 +16,32 @@ post '/extract' do
haml
:extract
,
locals:
{
result:
result
}
haml
:extract
,
locals:
{
result:
result
}
end
end
get
'/bootstrap.min.css'
do
send_file
'bootstrap.min.css'
end
__END__
__END__
@@ layout
@@ layout
%html
%html
%head
%link{:href => "/bootstrap.min.css", :rel => "stylesheet"}/
%body
%body
= yield
.container
%h1 Amendment Extractor
= yield
@@ index
@@ index
%form{action: "/extract", method: "POST", enctype: 'multipart/form-data'}
.well
%input{type: "file", name: "file"}
%form.form-horizontal{action: "/extract", method: "POST", enctype: 'multipart/form-data'}
%input{type: "submit"}
.control-group
%label.control-label{:for => "file"} ODT File
.controls
%input#file{type: "file", name: "file"}
.control-group
.controls
%button.btn.btn-primary{:type => "submit"} Extract
@@ extract
@@ extract
%
pre
= Rack::Utils.escape_html(result)
%
textarea{rows: 20, style: 'width: 100%'}
= Rack::Utils.escape_html(result)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment