jrhicks-static-generators 0.2.4 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +11 -1
- data/Manifest +24 -5
- data/Rakefile +1 -1
- data/rails_generators/static_app/static_app_generator.rb +26 -5
- data/rails_generators/static_app/templates/blueprint/LICENSE +314 -0
- data/rails_generators/static_app/templates/blueprint/grid.png +0 -0
- data/rails_generators/static_app/templates/blueprint/ie.css +35 -0
- data/rails_generators/static_app/templates/blueprint/print.css +30 -0
- data/rails_generators/static_app/templates/blueprint/screen.css +257 -0
- data/rails_generators/static_app/templates/icons/cross.png +0 -0
- data/rails_generators/static_app/templates/icons/doc.png +0 -0
- data/rails_generators/static_app/templates/icons/email.png +0 -0
- data/rails_generators/static_app/templates/icons/external.png +0 -0
- data/rails_generators/static_app/templates/icons/feed.png +0 -0
- data/rails_generators/static_app/templates/icons/key.png +0 -0
- data/rails_generators/static_app/templates/icons/pdf.png +0 -0
- data/rails_generators/static_app/templates/icons/tick.png +0 -0
- data/rails_generators/static_app/templates/icons/visited.png +0 -0
- data/rails_generators/static_app/templates/icons/xls.png +0 -0
- data/rails_generators/static_app/templates/navigation_bar_bg.gif +0 -0
- data/rails_generators/static_app/templates/{sorttable.js → sorttable/sorttable.js} +0 -0
- data/rails_generators/static_app/templates/standard_footer.html.erb +3 -0
- data/rails_generators/static_app/templates/standard_header.html.erb +36 -0
- data/rails_generators/static_app/templates/standard_navigation.html.erb +0 -0
- data/rails_generators/static_app/templates/static_style.css +19 -0
- data/rails_generators/static_app/templates/{jquery.js → uni-form/jquery.js} +0 -0
- data/rails_generators/static_app/templates/{uni-form-generic.css → uni-form/uni-form-generic.css} +0 -0
- data/rails_generators/static_app/templates/{uni-form.css → uni-form/uni-form.css} +0 -0
- data/rails_generators/static_app/templates/{uni-form.jquery.js → uni-form/uni-form.jquery.js} +0 -0
- data/rails_generators/static_scaffold/templates/layout.html.erb +2 -35
- data/static-generators.gemspec +3 -3
- metadata +26 -7
data/LICENSE
CHANGED
@@ -1,4 +1,11 @@
|
|
1
|
-
|
1
|
+
See LICENSE of included content and code which includes but is not limited to:
|
2
|
+
|
3
|
+
FamFamFam - icons
|
4
|
+
BluePrintCSS - CSS framework
|
5
|
+
Sorttable - javascript to sort tables
|
6
|
+
UniFormn - CSS and javascript for Input forms
|
7
|
+
|
8
|
+
All else is Copyright (c) 2009 Jeffrey Hicks
|
2
9
|
|
3
10
|
Permission is hereby granted, free of charge, to any person obtaining
|
4
11
|
a copy of this software and associated documentation files (the
|
@@ -19,3 +26,6 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
26
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
27
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
28
|
|
29
|
+
|
30
|
+
|
31
|
+
|
data/Manifest
CHANGED
@@ -3,14 +3,33 @@ lib/static_generators.rb
|
|
3
3
|
LICENSE
|
4
4
|
rails_generators/static_app/static_app_generator.rb
|
5
5
|
rails_generators/static_app/templates/application_helper.rb
|
6
|
-
rails_generators/static_app/templates/
|
6
|
+
rails_generators/static_app/templates/blueprint/grid.png
|
7
|
+
rails_generators/static_app/templates/blueprint/ie.css
|
8
|
+
rails_generators/static_app/templates/blueprint/LICENSE
|
9
|
+
rails_generators/static_app/templates/blueprint/print.css
|
10
|
+
rails_generators/static_app/templates/blueprint/screen.css
|
11
|
+
rails_generators/static_app/templates/icons/cross.png
|
12
|
+
rails_generators/static_app/templates/icons/doc.png
|
13
|
+
rails_generators/static_app/templates/icons/email.png
|
14
|
+
rails_generators/static_app/templates/icons/external.png
|
15
|
+
rails_generators/static_app/templates/icons/feed.png
|
16
|
+
rails_generators/static_app/templates/icons/key.png
|
17
|
+
rails_generators/static_app/templates/icons/pdf.png
|
18
|
+
rails_generators/static_app/templates/icons/tick.png
|
19
|
+
rails_generators/static_app/templates/icons/visited.png
|
20
|
+
rails_generators/static_app/templates/icons/xls.png
|
7
21
|
rails_generators/static_app/templates/layout.html.erb
|
8
22
|
rails_generators/static_app/templates/layout_helper.rb
|
9
|
-
rails_generators/static_app/templates/
|
23
|
+
rails_generators/static_app/templates/navigation_bar_bg.gif
|
24
|
+
rails_generators/static_app/templates/sorttable/sorttable.js
|
25
|
+
rails_generators/static_app/templates/standard_footer.html.erb
|
26
|
+
rails_generators/static_app/templates/standard_header.html.erb
|
27
|
+
rails_generators/static_app/templates/standard_navigation.html.erb
|
10
28
|
rails_generators/static_app/templates/static_style.css
|
11
|
-
rails_generators/static_app/templates/uni-form
|
12
|
-
rails_generators/static_app/templates/uni-form.css
|
13
|
-
rails_generators/static_app/templates/uni-form.
|
29
|
+
rails_generators/static_app/templates/uni-form/jquery.js
|
30
|
+
rails_generators/static_app/templates/uni-form/uni-form-generic.css
|
31
|
+
rails_generators/static_app/templates/uni-form/uni-form.css
|
32
|
+
rails_generators/static_app/templates/uni-form/uni-form.jquery.js
|
14
33
|
rails_generators/static_app/USAGE
|
15
34
|
rails_generators/static_authorization/static_authorization_generator.rb
|
16
35
|
rails_generators/static_authorization/templates/migration.rb
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('static-generators', '0.2.
|
5
|
+
Echoe.new('static-generators', '0.2.5') do |p|
|
6
6
|
p.project = "staticgenerators"
|
7
7
|
p.description = "Generate attractive interfaces that are easy to edit."
|
8
8
|
p.url = "http://github.com/jrhicks/static-scaffolds"
|
@@ -11,15 +11,36 @@ class StaticAppGenerator < Rails::Generator::Base
|
|
11
11
|
m.directory 'app/helpers'
|
12
12
|
m.template "layout.html.erb", "app/views/layouts/application.html.erb"
|
13
13
|
m.file "static_style.css", "public/stylesheets/static_style.css"
|
14
|
-
m.file "sorttable.js", "public/javascripts/sorttable.js"
|
15
14
|
m.file "application_helper.rb", "app/helpers/application_helper.rb"
|
16
15
|
m.file "layout_helper.rb", "app/helpers/layout_helper.rb"
|
16
|
+
|
17
|
+
# BluePrint CSS
|
18
|
+
m.file "blueprint/grid.png", "public/images/blueprint_css_grid.png"
|
19
|
+
m.file "blueprint/print.css", "public/stylesheets/print.css"
|
20
|
+
m.file "blueprint/ie.css", "public/stylesheets/ie.css"
|
21
|
+
m.file "blueprint/screen.css", "public/stylesheets/screen.css"
|
22
|
+
|
23
|
+
# header and footer
|
24
|
+
m.directory 'app/views/shared'
|
25
|
+
m.template "standard_navigation.html.erb", "app/views/shared/_standard_navigation.html.erb"
|
26
|
+
m.template "standard_header.html.erb", "app/views/shared/_standard_header.html.erb"
|
27
|
+
m.template "standard_footer.html.erb", "app/views/shared/_standard_footer.html.erb"
|
28
|
+
|
29
|
+
# Sorttable Tables
|
30
|
+
m.file "sorttable/sorttable.js", "public/javascripts/sorttable.js"
|
31
|
+
|
32
|
+
# icons
|
33
|
+
m.directory 'public/images/icons'
|
34
|
+
pngs = "tick cross feed key doc external pdf email visited xls".split()
|
35
|
+
for file in pngs
|
36
|
+
m.file "icons/#{file}.png", "public/images/icons/#{file}.png"
|
37
|
+
end
|
17
38
|
|
18
39
|
#Uni-formn
|
19
|
-
m.file "uni-form-generic.css", "public/stylesheets/uni-form-generic.css"
|
20
|
-
m.file "uni-form.css","public/stylesheets/uni-form.css"
|
21
|
-
m.file "uni-form.jquery.js", "public/javascripts/uni-form.jquery.js"
|
22
|
-
m.file "jquery.js", "public/javascripts/jquery.js"
|
40
|
+
m.file "uni-form/uni-form-generic.css", "public/stylesheets/uni-form-generic.css"
|
41
|
+
m.file "uni-form/uni-form.css","public/stylesheets/uni-form.css"
|
42
|
+
m.file "uni-form/uni-form.jquery.js", "public/javascripts/uni-form.jquery.js"
|
43
|
+
m.file "uni-form/jquery.js", "public/javascripts/jquery.js"
|
23
44
|
end
|
24
45
|
end
|
25
46
|
|
@@ -0,0 +1,314 @@
|
|
1
|
+
Blueprint CSS Framework License
|
2
|
+
----------------------------------------------------------------
|
3
|
+
|
4
|
+
Copyright (c) 2007-2008 blueprintcss.org
|
5
|
+
|
6
|
+
The Blueprint CSS Framework is available for use in all personal or
|
7
|
+
commercial projects, under both the (modified) MIT and the GPL license. You
|
8
|
+
may choose the one that fits your project.
|
9
|
+
|
10
|
+
|
11
|
+
The (modified) MIT License
|
12
|
+
----------------------------------------------------------------
|
13
|
+
|
14
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
15
|
+
of this software and associated documentation files (the "Software"), to deal
|
16
|
+
in the Software without restriction, including without limitation the rights
|
17
|
+
to use, copy, modify, merge, publish, distribute, sub-license, and/or sell
|
18
|
+
copies of the Software, and to permit persons to whom the Software is
|
19
|
+
furnished to do so, subject to the following conditions:
|
20
|
+
|
21
|
+
The above copyright notice, and every other copyright notice found in this
|
22
|
+
software, and all the attributions in every file, and this permission notice
|
23
|
+
shall be included in all copies or substantial portions of the Software.
|
24
|
+
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
26
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
27
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
28
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
29
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
30
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
31
|
+
THE SOFTWARE.
|
32
|
+
|
33
|
+
|
34
|
+
The GPL License
|
35
|
+
----------------------------------------------------------------
|
36
|
+
|
37
|
+
GNU GENERAL PUBLIC LICENSE
|
38
|
+
Version 2, June 1991
|
39
|
+
|
40
|
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
41
|
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
42
|
+
Everyone is permitted to copy and distribute verbatim copies
|
43
|
+
of this license document, but changing it is not allowed.
|
44
|
+
|
45
|
+
Preamble
|
46
|
+
|
47
|
+
The licenses for most software are designed to take away your
|
48
|
+
freedom to share and change it. By contrast, the GNU General Public
|
49
|
+
License is intended to guarantee your freedom to share and change free
|
50
|
+
software--to make sure the software is free for all its users. This
|
51
|
+
General Public License applies to most of the Free Software
|
52
|
+
Foundation's software and to any other program whose authors commit to
|
53
|
+
using it. (Some other Free Software Foundation software is covered by
|
54
|
+
the GNU Lesser General Public License instead.) You can apply it to
|
55
|
+
your programs, too.
|
56
|
+
|
57
|
+
When we speak of free software, we are referring to freedom, not
|
58
|
+
price. Our General Public Licenses are designed to make sure that you
|
59
|
+
have the freedom to distribute copies of free software (and charge for
|
60
|
+
this service if you wish), that you receive source code or can get it
|
61
|
+
if you want it, that you can change the software or use pieces of it
|
62
|
+
in new free programs; and that you know you can do these things.
|
63
|
+
|
64
|
+
To protect your rights, we need to make restrictions that forbid
|
65
|
+
anyone to deny you these rights or to ask you to surrender the rights.
|
66
|
+
These restrictions translate to certain responsibilities for you if you
|
67
|
+
distribute copies of the software, or if you modify it.
|
68
|
+
|
69
|
+
For example, if you distribute copies of such a program, whether
|
70
|
+
gratis or for a fee, you must give the recipients all the rights that
|
71
|
+
you have. You must make sure that they, too, receive or can get the
|
72
|
+
source code. And you must show them these terms so they know their
|
73
|
+
rights.
|
74
|
+
|
75
|
+
We protect your rights with two steps: (1) copyright the software, and
|
76
|
+
(2) offer you this license which gives you legal permission to copy,
|
77
|
+
distribute and/or modify the software.
|
78
|
+
|
79
|
+
Also, for each author's protection and ours, we want to make certain
|
80
|
+
that everyone understands that there is no warranty for this free
|
81
|
+
software. If the software is modified by someone else and passed on, we
|
82
|
+
want its recipients to know that what they have is not the original, so
|
83
|
+
that any problems introduced by others will not reflect on the original
|
84
|
+
authors' reputations.
|
85
|
+
|
86
|
+
Finally, any free program is threatened constantly by software
|
87
|
+
patents. We wish to avoid the danger that redistributors of a free
|
88
|
+
program will individually obtain patent licenses, in effect making the
|
89
|
+
program proprietary. To prevent this, we have made it clear that any
|
90
|
+
patent must be licensed for everyone's free use or not licensed at all.
|
91
|
+
|
92
|
+
The precise terms and conditions for copying, distribution and
|
93
|
+
modification follow.
|
94
|
+
|
95
|
+
GNU GENERAL PUBLIC LICENSE
|
96
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
97
|
+
|
98
|
+
0. This License applies to any program or other work which contains
|
99
|
+
a notice placed by the copyright holder saying it may be distributed
|
100
|
+
under the terms of this General Public License. The "Program", below,
|
101
|
+
refers to any such program or work, and a "work based on the Program"
|
102
|
+
means either the Program or any derivative work under copyright law:
|
103
|
+
that is to say, a work containing the Program or a portion of it,
|
104
|
+
either verbatim or with modifications and/or translated into another
|
105
|
+
language. (Hereinafter, translation is included without limitation in
|
106
|
+
the term "modification".) Each licensee is addressed as "you".
|
107
|
+
|
108
|
+
Activities other than copying, distribution and modification are not
|
109
|
+
covered by this License; they are outside its scope. The act of
|
110
|
+
running the Program is not restricted, and the output from the Program
|
111
|
+
is covered only if its contents constitute a work based on the
|
112
|
+
Program (independent of having been made by running the Program).
|
113
|
+
Whether that is true depends on what the Program does.
|
114
|
+
|
115
|
+
1. You may copy and distribute verbatim copies of the Program's
|
116
|
+
source code as you receive it, in any medium, provided that you
|
117
|
+
conspicuously and appropriately publish on each copy an appropriate
|
118
|
+
copyright notice and disclaimer of warranty; keep intact all the
|
119
|
+
notices that refer to this License and to the absence of any warranty;
|
120
|
+
and give any other recipients of the Program a copy of this License
|
121
|
+
along with the Program.
|
122
|
+
|
123
|
+
You may charge a fee for the physical act of transferring a copy, and
|
124
|
+
you may at your option offer warranty protection in exchange for a fee.
|
125
|
+
|
126
|
+
2. You may modify your copy or copies of the Program or any portion
|
127
|
+
of it, thus forming a work based on the Program, and copy and
|
128
|
+
distribute such modifications or work under the terms of Section 1
|
129
|
+
above, provided that you also meet all of these conditions:
|
130
|
+
|
131
|
+
a) You must cause the modified files to carry prominent notices
|
132
|
+
stating that you changed the files and the date of any change.
|
133
|
+
|
134
|
+
b) You must cause any work that you distribute or publish, that in
|
135
|
+
whole or in part contains or is derived from the Program or any
|
136
|
+
part thereof, to be licensed as a whole at no charge to all third
|
137
|
+
parties under the terms of this License.
|
138
|
+
|
139
|
+
c) If the modified program normally reads commands interactively
|
140
|
+
when run, you must cause it, when started running for such
|
141
|
+
interactive use in the most ordinary way, to print or display an
|
142
|
+
announcement including an appropriate copyright notice and a
|
143
|
+
notice that there is no warranty (or else, saying that you provide
|
144
|
+
a warranty) and that users may redistribute the program under
|
145
|
+
these conditions, and telling the user how to view a copy of this
|
146
|
+
License. (Exception: if the Program itself is interactive but
|
147
|
+
does not normally print such an announcement, your work based on
|
148
|
+
the Program is not required to print an announcement.)
|
149
|
+
|
150
|
+
These requirements apply to the modified work as a whole. If
|
151
|
+
identifiable sections of that work are not derived from the Program,
|
152
|
+
and can be reasonably considered independent and separate works in
|
153
|
+
themselves, then this License, and its terms, do not apply to those
|
154
|
+
sections when you distribute them as separate works. But when you
|
155
|
+
distribute the same sections as part of a whole which is a work based
|
156
|
+
on the Program, the distribution of the whole must be on the terms of
|
157
|
+
this License, whose permissions for other licensees extend to the
|
158
|
+
entire whole, and thus to each and every part regardless of who wrote it.
|
159
|
+
|
160
|
+
Thus, it is not the intent of this section to claim rights or contest
|
161
|
+
your rights to work written entirely by you; rather, the intent is to
|
162
|
+
exercise the right to control the distribution of derivative or
|
163
|
+
collective works based on the Program.
|
164
|
+
|
165
|
+
In addition, mere aggregation of another work not based on the Program
|
166
|
+
with the Program (or with a work based on the Program) on a volume of
|
167
|
+
a storage or distribution medium does not bring the other work under
|
168
|
+
the scope of this License.
|
169
|
+
|
170
|
+
3. You may copy and distribute the Program (or a work based on it,
|
171
|
+
under Section 2) in object code or executable form under the terms of
|
172
|
+
Sections 1 and 2 above provided that you also do one of the following:
|
173
|
+
|
174
|
+
a) Accompany it with the complete corresponding machine-readable
|
175
|
+
source code, which must be distributed under the terms of Sections
|
176
|
+
1 and 2 above on a medium customarily used for software interchange; or,
|
177
|
+
|
178
|
+
b) Accompany it with a written offer, valid for at least three
|
179
|
+
years, to give any third party, for a charge no more than your
|
180
|
+
cost of physically performing source distribution, a complete
|
181
|
+
machine-readable copy of the corresponding source code, to be
|
182
|
+
distributed under the terms of Sections 1 and 2 above on a medium
|
183
|
+
customarily used for software interchange; or,
|
184
|
+
|
185
|
+
c) Accompany it with the information you received as to the offer
|
186
|
+
to distribute corresponding source code. (This alternative is
|
187
|
+
allowed only for noncommercial distribution and only if you
|
188
|
+
received the program in object code or executable form with such
|
189
|
+
an offer, in accord with Subsection b above.)
|
190
|
+
|
191
|
+
The source code for a work means the preferred form of the work for
|
192
|
+
making modifications to it. For an executable work, complete source
|
193
|
+
code means all the source code for all modules it contains, plus any
|
194
|
+
associated interface definition files, plus the scripts used to
|
195
|
+
control compilation and installation of the executable. However, as a
|
196
|
+
special exception, the source code distributed need not include
|
197
|
+
anything that is normally distributed (in either source or binary
|
198
|
+
form) with the major components (compiler, kernel, and so on) of the
|
199
|
+
operating system on which the executable runs, unless that component
|
200
|
+
itself accompanies the executable.
|
201
|
+
|
202
|
+
If distribution of executable or object code is made by offering
|
203
|
+
access to copy from a designated place, then offering equivalent
|
204
|
+
access to copy the source code from the same place counts as
|
205
|
+
distribution of the source code, even though third parties are not
|
206
|
+
compelled to copy the source along with the object code.
|
207
|
+
|
208
|
+
4. You may not copy, modify, sublicense, or distribute the Program
|
209
|
+
except as expressly provided under this License. Any attempt
|
210
|
+
otherwise to copy, modify, sublicense or distribute the Program is
|
211
|
+
void, and will automatically terminate your rights under this License.
|
212
|
+
However, parties who have received copies, or rights, from you under
|
213
|
+
this License will not have their licenses terminated so long as such
|
214
|
+
parties remain in full compliance.
|
215
|
+
|
216
|
+
5. You are not required to accept this License, since you have not
|
217
|
+
signed it. However, nothing else grants you permission to modify or
|
218
|
+
distribute the Program or its derivative works. These actions are
|
219
|
+
prohibited by law if you do not accept this License. Therefore, by
|
220
|
+
modifying or distributing the Program (or any work based on the
|
221
|
+
Program), you indicate your acceptance of this License to do so, and
|
222
|
+
all its terms and conditions for copying, distributing or modifying
|
223
|
+
the Program or works based on it.
|
224
|
+
|
225
|
+
6. Each time you redistribute the Program (or any work based on the
|
226
|
+
Program), the recipient automatically receives a license from the
|
227
|
+
original licensor to copy, distribute or modify the Program subject to
|
228
|
+
these terms and conditions. You may not impose any further
|
229
|
+
restrictions on the recipients' exercise of the rights granted herein.
|
230
|
+
You are not responsible for enforcing compliance by third parties to
|
231
|
+
this License.
|
232
|
+
|
233
|
+
7. If, as a consequence of a court judgment or allegation of patent
|
234
|
+
infringement or for any other reason (not limited to patent issues),
|
235
|
+
conditions are imposed on you (whether by court order, agreement or
|
236
|
+
otherwise) that contradict the conditions of this License, they do not
|
237
|
+
excuse you from the conditions of this License. If you cannot
|
238
|
+
distribute so as to satisfy simultaneously your obligations under this
|
239
|
+
License and any other pertinent obligations, then as a consequence you
|
240
|
+
may not distribute the Program at all. For example, if a patent
|
241
|
+
license would not permit royalty-free redistribution of the Program by
|
242
|
+
all those who receive copies directly or indirectly through you, then
|
243
|
+
the only way you could satisfy both it and this License would be to
|
244
|
+
refrain entirely from distribution of the Program.
|
245
|
+
|
246
|
+
If any portion of this section is held invalid or unenforceable under
|
247
|
+
any particular circumstance, the balance of the section is intended to
|
248
|
+
apply and the section as a whole is intended to apply in other
|
249
|
+
circumstances.
|
250
|
+
|
251
|
+
It is not the purpose of this section to induce you to infringe any
|
252
|
+
patents or other property right claims or to contest validity of any
|
253
|
+
such claims; this section has the sole purpose of protecting the
|
254
|
+
integrity of the free software distribution system, which is
|
255
|
+
implemented by public license practices. Many people have made
|
256
|
+
generous contributions to the wide range of software distributed
|
257
|
+
through that system in reliance on consistent application of that
|
258
|
+
system; it is up to the author/donor to decide if he or she is willing
|
259
|
+
to distribute software through any other system and a licensee cannot
|
260
|
+
impose that choice.
|
261
|
+
|
262
|
+
This section is intended to make thoroughly clear what is believed to
|
263
|
+
be a consequence of the rest of this License.
|
264
|
+
|
265
|
+
8. If the distribution and/or use of the Program is restricted in
|
266
|
+
certain countries either by patents or by copyrighted interfaces, the
|
267
|
+
original copyright holder who places the Program under this License
|
268
|
+
may add an explicit geographical distribution limitation excluding
|
269
|
+
those countries, so that distribution is permitted only in or among
|
270
|
+
countries not thus excluded. In such case, this License incorporates
|
271
|
+
the limitation as if written in the body of this License.
|
272
|
+
|
273
|
+
9. The Free Software Foundation may publish revised and/or new versions
|
274
|
+
of the General Public License from time to time. Such new versions will
|
275
|
+
be similar in spirit to the present version, but may differ in detail to
|
276
|
+
address new problems or concerns.
|
277
|
+
|
278
|
+
Each version is given a distinguishing version number. If the Program
|
279
|
+
specifies a version number of this License which applies to it and "any
|
280
|
+
later version", you have the option of following the terms and conditions
|
281
|
+
either of that version or of any later version published by the Free
|
282
|
+
Software Foundation. If the Program does not specify a version number of
|
283
|
+
this License, you may choose any version ever published by the Free Software
|
284
|
+
Foundation.
|
285
|
+
|
286
|
+
10. If you wish to incorporate parts of the Program into other free
|
287
|
+
programs whose distribution conditions are different, write to the author
|
288
|
+
to ask for permission. For software which is copyrighted by the Free
|
289
|
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
290
|
+
make exceptions for this. Our decision will be guided by the two goals
|
291
|
+
of preserving the free status of all derivatives of our free software and
|
292
|
+
of promoting the sharing and reuse of software generally.
|
293
|
+
|
294
|
+
NO WARRANTY
|
295
|
+
|
296
|
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
297
|
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
298
|
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
299
|
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
300
|
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
301
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
302
|
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
303
|
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
304
|
+
REPAIR OR CORRECTION.
|
305
|
+
|
306
|
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
307
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
308
|
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
309
|
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
310
|
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
311
|
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
312
|
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
313
|
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
314
|
+
POSSIBILITY OF SUCH DAMAGES.
|
Binary file
|
@@ -0,0 +1,35 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
|
3
|
+
|
4
|
+
Blueprint CSS Framework 0.9
|
5
|
+
http://blueprintcss.org
|
6
|
+
|
7
|
+
* Copyright (c) 2007-Present. See LICENSE for more info.
|
8
|
+
* See README for instructions on how to use Blueprint.
|
9
|
+
* For credits and origins, see AUTHORS.
|
10
|
+
* This is a compressed file. See the sources in the 'src' directory.
|
11
|
+
|
12
|
+
----------------------------------------------------------------------- */
|
13
|
+
|
14
|
+
/* ie.css */
|
15
|
+
body {text-align:center;}
|
16
|
+
.container {text-align:left;}
|
17
|
+
* html .column, * html div.span-1, * html div.span-2, * html div.span-3, * html div.span-4, * html div.span-5, * html div.span-6, * html div.span-7, * html div.span-8, * html div.span-9, * html div.span-10, * html div.span-11, * html div.span-12, * html div.span-13, * html div.span-14, * html div.span-15, * html div.span-16, * html div.span-17, * html div.span-18, * html div.span-19, * html div.span-20, * html div.span-21, * html div.span-22, * html div.span-23, * html div.span-24 {overflow-x:hidden;}
|
18
|
+
* html legend {margin:0px -8px 16px 0;padding:0;}
|
19
|
+
ol {margin-left:2em;}
|
20
|
+
sup {vertical-align:text-top;}
|
21
|
+
sub {vertical-align:text-bottom;}
|
22
|
+
html>body p code {*white-space:normal;}
|
23
|
+
hr {margin:-8px auto 11px;}
|
24
|
+
img {-ms-interpolation-mode:bicubic;}
|
25
|
+
.clearfix, .container {display:inline-block;}
|
26
|
+
* html .clearfix, * html .container {height:1%;}
|
27
|
+
fieldset {padding-top:0;}
|
28
|
+
input.text, input.title {background-color:#fff;border:1px solid #bbb;}
|
29
|
+
input.text:focus, input.title:focus {border-color:#666;}
|
30
|
+
input.text, input.title, textarea, select {margin:0.5em 0;}
|
31
|
+
input.checkbox, input.radio {position:relative;top:.25em;}
|
32
|
+
form.inline div, form.inline p {vertical-align:middle;}
|
33
|
+
form.inline label {position:relative;top:-0.25em;}
|
34
|
+
form.inline input.checkbox, form.inline input.radio, form.inline input.button, form.inline button {margin:0.5em 0;}
|
35
|
+
button, input.button {position:relative;top:0.25em;}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
|
3
|
+
|
4
|
+
Blueprint CSS Framework 0.9
|
5
|
+
http://blueprintcss.org
|
6
|
+
|
7
|
+
* Copyright (c) 2007-Present. See LICENSE for more info.
|
8
|
+
* See README for instructions on how to use Blueprint.
|
9
|
+
* For credits and origins, see AUTHORS.
|
10
|
+
* This is a compressed file. See the sources in the 'src' directory.
|
11
|
+
|
12
|
+
----------------------------------------------------------------------- */
|
13
|
+
|
14
|
+
/* print.css */
|
15
|
+
body {line-height:1.5;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;color:#000;background:none;font-size:10pt;}
|
16
|
+
.container {background:none;}
|
17
|
+
hr {background:#ccc;color:#ccc;width:100%;height:2px;margin:2em 0;padding:0;border:none;}
|
18
|
+
hr.space {background:#fff;color:#fff;}
|
19
|
+
h1, h2, h3, h4, h5, h6 {font-family:"Helvetica Neue", Arial, "Lucida Grande", sans-serif;}
|
20
|
+
code {font:.9em "Courier New", Monaco, Courier, monospace;}
|
21
|
+
img {float:left;margin:1.5em 1.5em 1.5em 0;}
|
22
|
+
a img {border:none;}
|
23
|
+
p img.top {margin-top:0;}
|
24
|
+
blockquote {margin:1.5em;padding:1em;font-style:italic;font-size:.9em;}
|
25
|
+
.small {font-size:.9em;}
|
26
|
+
.large {font-size:1.1em;}
|
27
|
+
.quiet {color:#999;}
|
28
|
+
.hide {display:none;}
|
29
|
+
a:link, a:visited {background:transparent;font-weight:700;text-decoration:underline;}
|
30
|
+
a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}
|
@@ -0,0 +1,257 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
|
3
|
+
|
4
|
+
Blueprint CSS Framework 0.9
|
5
|
+
http://blueprintcss.org
|
6
|
+
|
7
|
+
* Copyright (c) 2007-Present. See LICENSE for more info.
|
8
|
+
* See README for instructions on how to use Blueprint.
|
9
|
+
* For credits and origins, see AUTHORS.
|
10
|
+
* This is a compressed file. See the sources in the 'src' directory.
|
11
|
+
|
12
|
+
----------------------------------------------------------------------- */
|
13
|
+
|
14
|
+
/* reset.css */
|
15
|
+
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
|
16
|
+
body {line-height:1.5;}
|
17
|
+
table {border-collapse:separate;border-spacing:0;}
|
18
|
+
caption, th, td {text-align:left;font-weight:normal;}
|
19
|
+
table, td, th {vertical-align:middle;}
|
20
|
+
blockquote:before, blockquote:after, q:before, q:after {content:"";}
|
21
|
+
blockquote, q {quotes:"" "";}
|
22
|
+
a img {border:none;}
|
23
|
+
|
24
|
+
/* typography.css */
|
25
|
+
body {font-size:75%;color:#222;background:#fff;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;}
|
26
|
+
h1, h2, h3, h4, h5, h6 {font-weight:normal;color:#111;}
|
27
|
+
h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
|
28
|
+
h2 {font-size:2em;margin-bottom:0.75em;}
|
29
|
+
h3 {font-size:1.5em;line-height:1;margin-bottom:1em;}
|
30
|
+
h4 {font-size:1.2em;line-height:1.25;margin-bottom:1.25em;}
|
31
|
+
h5 {font-size:1em;font-weight:bold;margin-bottom:1.5em;}
|
32
|
+
h6 {font-size:1em;font-weight:bold;}
|
33
|
+
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {margin:0;}
|
34
|
+
p {margin:0 0 1.5em;}
|
35
|
+
p img.left {float:left;margin:1.5em 1.5em 1.5em 0;padding:0;}
|
36
|
+
p img.right {float:right;margin:1.5em 0 1.5em 1.5em;}
|
37
|
+
a:focus, a:hover {color:#000;}
|
38
|
+
a {color:#009;text-decoration:underline;}
|
39
|
+
blockquote {margin:1.5em;color:#666;font-style:italic;}
|
40
|
+
strong {font-weight:bold;}
|
41
|
+
em, dfn {font-style:italic;}
|
42
|
+
dfn {font-weight:bold;}
|
43
|
+
sup, sub {line-height:0;}
|
44
|
+
abbr, acronym {border-bottom:1px dotted #666;}
|
45
|
+
address {margin:0 0 1.5em;font-style:italic;}
|
46
|
+
del {color:#666;}
|
47
|
+
pre {margin:1.5em 0;white-space:pre;}
|
48
|
+
pre, code, tt {font:1em 'andale mono', 'lucida console', monospace;line-height:1.5;}
|
49
|
+
li ul, li ol {margin:0 1.5em;}
|
50
|
+
ul, ol {margin:0 1.5em 1.5em 1.5em;}
|
51
|
+
ul {list-style-type:disc;}
|
52
|
+
ol {list-style-type:decimal;}
|
53
|
+
dl {margin:0 0 1.5em 0;}
|
54
|
+
dl dt {font-weight:bold;}
|
55
|
+
dd {margin-left:1.5em;}
|
56
|
+
/*table {margin-bottom:1.4em;width:100%;} */
|
57
|
+
table {margin-bottom:1.4em;}
|
58
|
+
th {font-weight:bold;}
|
59
|
+
thead th {background:#c3d9ff;}
|
60
|
+
th, td, caption {padding:4px 10px 4px 5px;}
|
61
|
+
tr.even td {background:#e5ecf9;}
|
62
|
+
tfoot {font-style:italic;}
|
63
|
+
caption {background:#eee;}
|
64
|
+
.small {font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
|
65
|
+
.large {font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
|
66
|
+
.hide {display:none;}
|
67
|
+
.quiet {color:#666;}
|
68
|
+
.loud {color:#000;}
|
69
|
+
.highlight {background:#ff0;}
|
70
|
+
.added {background:#060;color:#fff;}
|
71
|
+
.removed {background:#900;color:#fff;}
|
72
|
+
.first {margin-left:0;padding-left:0;}
|
73
|
+
.last {margin-right:0;padding-right:0;}
|
74
|
+
.top {margin-top:0;padding-top:0;}
|
75
|
+
.bottom {margin-bottom:0;padding-bottom:0;}
|
76
|
+
|
77
|
+
/* forms.css
|
78
|
+
label {font-weight:bold;}
|
79
|
+
fieldset {padding:1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
|
80
|
+
legend {font-weight:bold;font-size:1.2em;}
|
81
|
+
input[type=text], input[type=password], input.text, input.title, textarea, select {background-color:#fff;border:1px solid #bbb;}
|
82
|
+
input[type=text]:focus, input[type=password]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus {border-color:#666;}
|
83
|
+
input[type=text], input[type=password], input.text, input.title, textarea, select {margin:0.5em 0;}
|
84
|
+
input.text, input.title {width:300px;padding:5px;}
|
85
|
+
input.title {font-size:1.5em;}
|
86
|
+
textarea {width:390px;height:250px;padding:5px;}
|
87
|
+
input[type=checkbox], input[type=radio], input.checkbox, input.radio {position:relative;top:.25em;}
|
88
|
+
form.inline {line-height:3;}
|
89
|
+
form.inline p {margin-bottom:0;}
|
90
|
+
.error, .notice, .success {padding:.8em;margin-bottom:1em;border:2px solid #ddd;}
|
91
|
+
.error {background:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
|
92
|
+
.notice {background:#FFF6BF;color:#514721;border-color:#FFD324;}
|
93
|
+
.success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
|
94
|
+
.error a {color:#8a1f11;}
|
95
|
+
.notice a {color:#514721;}
|
96
|
+
.success a {color:#264409;} *
|
97
|
+
|
98
|
+
/* grid.css */
|
99
|
+
.container {width:950px;margin:0 auto;}
|
100
|
+
.showgrid {background:url(/images/blueprint_css_grid.png);}
|
101
|
+
.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23, div.span-24 {float:left;margin-right:10px;}
|
102
|
+
.last, div.last {margin-right:0;}
|
103
|
+
.span-1 {width:30px;}
|
104
|
+
.span-2 {width:70px;}
|
105
|
+
.span-3 {width:110px;}
|
106
|
+
.span-4 {width:150px;}
|
107
|
+
.span-5 {width:190px;}
|
108
|
+
.span-6 {width:230px;}
|
109
|
+
.span-7 {width:270px;}
|
110
|
+
.span-8 {width:310px;}
|
111
|
+
.span-9 {width:350px;}
|
112
|
+
.span-10 {width:390px;}
|
113
|
+
.span-11 {width:430px;}
|
114
|
+
.span-12 {width:470px;}
|
115
|
+
.span-13 {width:510px;}
|
116
|
+
.span-14 {width:550px;}
|
117
|
+
.span-15 {width:590px;}
|
118
|
+
.span-16 {width:630px;}
|
119
|
+
.span-17 {width:670px;}
|
120
|
+
.span-18 {width:710px;}
|
121
|
+
.span-19 {width:750px;}
|
122
|
+
.span-20 {width:790px;}
|
123
|
+
.span-21 {width:830px;}
|
124
|
+
.span-22 {width:870px;}
|
125
|
+
.span-23 {width:910px;}
|
126
|
+
.span-24, div.span-24 {width:950px;margin:0;}
|
127
|
+
input.span-1, textarea.span-1, input.span-2, textarea.span-2, input.span-3, textarea.span-3, input.span-4, textarea.span-4, input.span-5, textarea.span-5, input.span-6, textarea.span-6, input.span-7, textarea.span-7, input.span-8, textarea.span-8, input.span-9, textarea.span-9, input.span-10, textarea.span-10, input.span-11, textarea.span-11, input.span-12, textarea.span-12, input.span-13, textarea.span-13, input.span-14, textarea.span-14, input.span-15, textarea.span-15, input.span-16, textarea.span-16, input.span-17, textarea.span-17, input.span-18, textarea.span-18, input.span-19, textarea.span-19, input.span-20, textarea.span-20, input.span-21, textarea.span-21, input.span-22, textarea.span-22, input.span-23, textarea.span-23, input.span-24, textarea.span-24 {border-left-width:1px!important;border-right-width:1px!important;padding-left:5px!important;padding-right:5px!important;}
|
128
|
+
input.span-1, textarea.span-1 {width:18px!important;}
|
129
|
+
input.span-2, textarea.span-2 {width:58px!important;}
|
130
|
+
input.span-3, textarea.span-3 {width:98px!important;}
|
131
|
+
input.span-4, textarea.span-4 {width:138px!important;}
|
132
|
+
input.span-5, textarea.span-5 {width:178px!important;}
|
133
|
+
input.span-6, textarea.span-6 {width:218px!important;}
|
134
|
+
input.span-7, textarea.span-7 {width:258px!important;}
|
135
|
+
input.span-8, textarea.span-8 {width:298px!important;}
|
136
|
+
input.span-9, textarea.span-9 {width:338px!important;}
|
137
|
+
input.span-10, textarea.span-10 {width:378px!important;}
|
138
|
+
input.span-11, textarea.span-11 {width:418px!important;}
|
139
|
+
input.span-12, textarea.span-12 {width:458px!important;}
|
140
|
+
input.span-13, textarea.span-13 {width:498px!important;}
|
141
|
+
input.span-14, textarea.span-14 {width:538px!important;}
|
142
|
+
input.span-15, textarea.span-15 {width:578px!important;}
|
143
|
+
input.span-16, textarea.span-16 {width:618px!important;}
|
144
|
+
input.span-17, textarea.span-17 {width:658px!important;}
|
145
|
+
input.span-18, textarea.span-18 {width:698px!important;}
|
146
|
+
input.span-19, textarea.span-19 {width:738px!important;}
|
147
|
+
input.span-20, textarea.span-20 {width:778px!important;}
|
148
|
+
input.span-21, textarea.span-21 {width:818px!important;}
|
149
|
+
input.span-22, textarea.span-22 {width:858px!important;}
|
150
|
+
input.span-23, textarea.span-23 {width:898px!important;}
|
151
|
+
input.span-24, textarea.span-24 {width:938px!important;}
|
152
|
+
.append-1 {padding-right:40px;}
|
153
|
+
.append-2 {padding-right:80px;}
|
154
|
+
.append-3 {padding-right:120px;}
|
155
|
+
.append-4 {padding-right:160px;}
|
156
|
+
.append-5 {padding-right:200px;}
|
157
|
+
.append-6 {padding-right:240px;}
|
158
|
+
.append-7 {padding-right:280px;}
|
159
|
+
.append-8 {padding-right:320px;}
|
160
|
+
.append-9 {padding-right:360px;}
|
161
|
+
.append-10 {padding-right:400px;}
|
162
|
+
.append-11 {padding-right:440px;}
|
163
|
+
.append-12 {padding-right:480px;}
|
164
|
+
.append-13 {padding-right:520px;}
|
165
|
+
.append-14 {padding-right:560px;}
|
166
|
+
.append-15 {padding-right:600px;}
|
167
|
+
.append-16 {padding-right:640px;}
|
168
|
+
.append-17 {padding-right:680px;}
|
169
|
+
.append-18 {padding-right:720px;}
|
170
|
+
.append-19 {padding-right:760px;}
|
171
|
+
.append-20 {padding-right:800px;}
|
172
|
+
.append-21 {padding-right:840px;}
|
173
|
+
.append-22 {padding-right:880px;}
|
174
|
+
.append-23 {padding-right:920px;}
|
175
|
+
.prepend-1 {padding-left:40px;}
|
176
|
+
.prepend-2 {padding-left:80px;}
|
177
|
+
.prepend-3 {padding-left:120px;}
|
178
|
+
.prepend-4 {padding-left:160px;}
|
179
|
+
.prepend-5 {padding-left:200px;}
|
180
|
+
.prepend-6 {padding-left:240px;}
|
181
|
+
.prepend-7 {padding-left:280px;}
|
182
|
+
.prepend-8 {padding-left:320px;}
|
183
|
+
.prepend-9 {padding-left:360px;}
|
184
|
+
.prepend-10 {padding-left:400px;}
|
185
|
+
.prepend-11 {padding-left:440px;}
|
186
|
+
.prepend-12 {padding-left:480px;}
|
187
|
+
.prepend-13 {padding-left:520px;}
|
188
|
+
.prepend-14 {padding-left:560px;}
|
189
|
+
.prepend-15 {padding-left:600px;}
|
190
|
+
.prepend-16 {padding-left:640px;}
|
191
|
+
.prepend-17 {padding-left:680px;}
|
192
|
+
.prepend-18 {padding-left:720px;}
|
193
|
+
.prepend-19 {padding-left:760px;}
|
194
|
+
.prepend-20 {padding-left:800px;}
|
195
|
+
.prepend-21 {padding-left:840px;}
|
196
|
+
.prepend-22 {padding-left:880px;}
|
197
|
+
.prepend-23 {padding-left:920px;}
|
198
|
+
div.border {padding-right:4px;margin-right:5px;border-right:1px solid #eee;}
|
199
|
+
div.colborder {padding-right:24px;margin-right:25px;border-right:1px solid #eee;}
|
200
|
+
.pull-1 {margin-left:-40px;}
|
201
|
+
.pull-2 {margin-left:-80px;}
|
202
|
+
.pull-3 {margin-left:-120px;}
|
203
|
+
.pull-4 {margin-left:-160px;}
|
204
|
+
.pull-5 {margin-left:-200px;}
|
205
|
+
.pull-6 {margin-left:-240px;}
|
206
|
+
.pull-7 {margin-left:-280px;}
|
207
|
+
.pull-8 {margin-left:-320px;}
|
208
|
+
.pull-9 {margin-left:-360px;}
|
209
|
+
.pull-10 {margin-left:-400px;}
|
210
|
+
.pull-11 {margin-left:-440px;}
|
211
|
+
.pull-12 {margin-left:-480px;}
|
212
|
+
.pull-13 {margin-left:-520px;}
|
213
|
+
.pull-14 {margin-left:-560px;}
|
214
|
+
.pull-15 {margin-left:-600px;}
|
215
|
+
.pull-16 {margin-left:-640px;}
|
216
|
+
.pull-17 {margin-left:-680px;}
|
217
|
+
.pull-18 {margin-left:-720px;}
|
218
|
+
.pull-19 {margin-left:-760px;}
|
219
|
+
.pull-20 {margin-left:-800px;}
|
220
|
+
.pull-21 {margin-left:-840px;}
|
221
|
+
.pull-22 {margin-left:-880px;}
|
222
|
+
.pull-23 {margin-left:-920px;}
|
223
|
+
.pull-24 {margin-left:-960px;}
|
224
|
+
.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21, .pull-22, .pull-23, .pull-24 {float:left;position:relative;}
|
225
|
+
.push-1 {margin:0 -40px 1.5em 40px;}
|
226
|
+
.push-2 {margin:0 -80px 1.5em 80px;}
|
227
|
+
.push-3 {margin:0 -120px 1.5em 120px;}
|
228
|
+
.push-4 {margin:0 -160px 1.5em 160px;}
|
229
|
+
.push-5 {margin:0 -200px 1.5em 200px;}
|
230
|
+
.push-6 {margin:0 -240px 1.5em 240px;}
|
231
|
+
.push-7 {margin:0 -280px 1.5em 280px;}
|
232
|
+
.push-8 {margin:0 -320px 1.5em 320px;}
|
233
|
+
.push-9 {margin:0 -360px 1.5em 360px;}
|
234
|
+
.push-10 {margin:0 -400px 1.5em 400px;}
|
235
|
+
.push-11 {margin:0 -440px 1.5em 440px;}
|
236
|
+
.push-12 {margin:0 -480px 1.5em 480px;}
|
237
|
+
.push-13 {margin:0 -520px 1.5em 520px;}
|
238
|
+
.push-14 {margin:0 -560px 1.5em 560px;}
|
239
|
+
.push-15 {margin:0 -600px 1.5em 600px;}
|
240
|
+
.push-16 {margin:0 -640px 1.5em 640px;}
|
241
|
+
.push-17 {margin:0 -680px 1.5em 680px;}
|
242
|
+
.push-18 {margin:0 -720px 1.5em 720px;}
|
243
|
+
.push-19 {margin:0 -760px 1.5em 760px;}
|
244
|
+
.push-20 {margin:0 -800px 1.5em 800px;}
|
245
|
+
.push-21 {margin:0 -840px 1.5em 840px;}
|
246
|
+
.push-22 {margin:0 -880px 1.5em 880px;}
|
247
|
+
.push-23 {margin:0 -920px 1.5em 920px;}
|
248
|
+
.push-24 {margin:0 -960px 1.5em 960px;}
|
249
|
+
.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {float:right;position:relative;}
|
250
|
+
.prepend-top {margin-top:1.5em;}
|
251
|
+
.append-bottom {margin-bottom:1.5em;}
|
252
|
+
.box {padding:1.5em;margin-bottom:1.5em;background:#E5ECF9;}
|
253
|
+
hr {background:#ddd;color:#ddd;clear:both;float:none;width:100%;height:.1em;margin:0 0 1.45em;border:none;}
|
254
|
+
hr.space {background:#fff;color:#fff;}
|
255
|
+
.clearfix:after, .container:after {content:"\0020";display:block;height:0;clear:both;visibility:hidden;overflow:hidden;}
|
256
|
+
.clearfix, .container {display:block;}
|
257
|
+
.clear {clear:both;}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
<head>
|
6
|
+
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
7
|
+
<title><%%= h yield(:title) || <%=File.basename(RAILS_ROOT).titleize.inspect%> %></title>
|
8
|
+
<%%= stylesheet_link_tag 'static_style' %>
|
9
|
+
<%%= javascript_include_tag 'sorttable' %>
|
10
|
+
|
11
|
+
<%%# Uni-Form %>
|
12
|
+
<style type="text/css" media="screen">
|
13
|
+
@import "/stylesheets/default-style.css";
|
14
|
+
@import "/stylesheets/uni-form.css";
|
15
|
+
</style>
|
16
|
+
|
17
|
+
<!--[if lte ie 7]>
|
18
|
+
<style type="text/css" media="screen">
|
19
|
+
/*
|
20
|
+
Move these to your IE6/7 specific stylesheet if possible
|
21
|
+
*/
|
22
|
+
.uniForm, .uniForm fieldset, .uniForm .ctrlHolder, .uniForm .formHint, .uniForm .buttonHolder, .uniForm .ctrlHolder .multiField, .uniForm .inlineLabel{ zoom:1; }
|
23
|
+
.uniForm .inlineLabels label, .uniForm .inlineLabels .label, .uniForm .blockLabels label, .uniForm .blockLabels .label, .uniForm .inlineLabel span{ padding-bottom: .2em; }
|
24
|
+
.uniForm .inlineLabel input, .uniForm .inlineLabels .inlineLabel input, .uniForm .blockLabels .inlineLabel input{ margin-top: -.3em; }
|
25
|
+
</style>
|
26
|
+
<![endif]-->
|
27
|
+
|
28
|
+
<%%= javascript_include_tag 'jquery' %>
|
29
|
+
<%%= javascript_include_tag 'uni-form.jquery' %>
|
30
|
+
|
31
|
+
<link rel="stylesheet" href="/stylesheets/screen.css" type="text/css" media="screen, projection">
|
32
|
+
<link rel="stylesheet" href="/stylesheets/print.css" type="text/css" media="print">
|
33
|
+
|
34
|
+
</head>
|
35
|
+
<body <%%if @onload_javascript%>onLoad="on_load_function();"<%%end%>>
|
36
|
+
<div class="container showgrid">
|
File without changes
|
@@ -11,6 +11,25 @@ pre {
|
|
11
11
|
font-size: 11px;
|
12
12
|
}
|
13
13
|
|
14
|
+
.static_body {
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
.static_site_navigation {
|
20
|
+
background-image: url(/images/navigation_section_bg.gif);
|
21
|
+
background-repeat: repeat-y;
|
22
|
+
background-position: right;
|
23
|
+
width: 15%;
|
24
|
+
}
|
25
|
+
|
26
|
+
.static_site_navigation h1 {
|
27
|
+
margin-top: 0;
|
28
|
+
background-color: #336699;
|
29
|
+
color: white;
|
30
|
+
padding: .25em;
|
31
|
+
}
|
32
|
+
|
14
33
|
a { color: #000; }
|
15
34
|
a:visited { color: #666; }
|
16
35
|
a:hover { color: #fff; background-color:#000; }
|
File without changes
|
data/rails_generators/static_app/templates/{uni-form-generic.css → uni-form/uni-form-generic.css}
RENAMED
File without changes
|
File without changes
|
data/rails_generators/static_app/templates/{uni-form.jquery.js → uni-form/uni-form.jquery.js}
RENAMED
File without changes
|
@@ -1,40 +1,7 @@
|
|
1
|
-
|
2
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
-
|
4
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
-
<head>
|
6
|
-
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
|
7
|
-
<title><<%%= h yield(:title) || <%=File.basename(RAILS_ROOT).titleize.inspect%> %></title>
|
8
|
-
<%%= stylesheet_link_tag 'static_style' %>
|
9
|
-
<%%= javascript_include_tag 'sorttable' %>
|
10
|
-
|
11
|
-
<%# Uni-Form %>
|
12
|
-
<style type="text/css" media="screen">
|
13
|
-
/* Uni-Form style sheet */
|
14
|
-
@import "/stylesheets/default-style.css";
|
15
|
-
@import "/stylesheets/uni-form.css";
|
16
|
-
</style>
|
17
|
-
|
18
|
-
<!--[if lte ie 7]>
|
19
|
-
<style type="text/css" media="screen">
|
20
|
-
/*
|
21
|
-
Move these to your IE6/7 specific stylesheet if possible
|
22
|
-
*/
|
23
|
-
.uniForm, .uniForm fieldset, .uniForm .ctrlHolder, .uniForm .formHint, .uniForm .buttonHolder, .uniForm .ctrlHolder .multiField, .uniForm .inlineLabel{ zoom:1; }
|
24
|
-
.uniForm .inlineLabels label, .uniForm .inlineLabels .label, .uniForm .blockLabels label, .uniForm .blockLabels .label, .uniForm .inlineLabel span{ padding-bottom: .2em; }
|
25
|
-
.uniForm .inlineLabel input, .uniForm .inlineLabels .inlineLabel input, .uniForm .blockLabels .inlineLabel input{ margin-top: -.3em; }
|
26
|
-
</style>
|
27
|
-
<![endif]-->
|
28
|
-
|
29
|
-
<%%= javascript_include_tag 'jquery' %>
|
30
|
-
<%%= javascript_include_tag 'uni-form.jquery' %>
|
31
|
-
|
32
|
-
</head>
|
33
|
-
<body>
|
1
|
+
<%%=render :partial=>"shared/standard_header"%>
|
34
2
|
|
35
3
|
<p style="color: green"><%%= flash[:notice] %></p>
|
36
4
|
|
37
5
|
<%%= yield %>
|
38
6
|
|
39
|
-
|
40
|
-
</html>
|
7
|
+
<%%=render :partial=>"shared/standard_footer"%>
|
data/static-generators.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{static-generators}
|
5
|
-
s.version = "0.2.
|
5
|
+
s.version = "0.2.5"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Jeffrey Hicks"]
|
9
|
-
s.date = %q{2009-07-
|
9
|
+
s.date = %q{2009-07-08}
|
10
10
|
s.description = %q{Generate attractive interfaces that are easy to edit.}
|
11
11
|
s.email = %q{jrhicks (at) gmail (dot) com}
|
12
12
|
s.extra_rdoc_files = ["CHANGELOG", "lib/static_generators.rb", "LICENSE", "README.md", "tasks/deployment.rake", "TODO"]
|
13
|
-
s.files = ["CHANGELOG", "lib/static_generators.rb", "LICENSE", "rails_generators/static_app/static_app_generator.rb", "rails_generators/static_app/templates/application_helper.rb", "rails_generators/static_app/templates/
|
13
|
+
s.files = ["CHANGELOG", "lib/static_generators.rb", "LICENSE", "rails_generators/static_app/static_app_generator.rb", "rails_generators/static_app/templates/application_helper.rb", "rails_generators/static_app/templates/blueprint/grid.png", "rails_generators/static_app/templates/blueprint/ie.css", "rails_generators/static_app/templates/blueprint/LICENSE", "rails_generators/static_app/templates/blueprint/print.css", "rails_generators/static_app/templates/blueprint/screen.css", "rails_generators/static_app/templates/icons/cross.png", "rails_generators/static_app/templates/icons/doc.png", "rails_generators/static_app/templates/icons/email.png", "rails_generators/static_app/templates/icons/external.png", "rails_generators/static_app/templates/icons/feed.png", "rails_generators/static_app/templates/icons/key.png", "rails_generators/static_app/templates/icons/pdf.png", "rails_generators/static_app/templates/icons/tick.png", "rails_generators/static_app/templates/icons/visited.png", "rails_generators/static_app/templates/icons/xls.png", "rails_generators/static_app/templates/layout.html.erb", "rails_generators/static_app/templates/layout_helper.rb", "rails_generators/static_app/templates/navigation_bar_bg.gif", "rails_generators/static_app/templates/sorttable/sorttable.js", "rails_generators/static_app/templates/standard_footer.html.erb", "rails_generators/static_app/templates/standard_header.html.erb", "rails_generators/static_app/templates/standard_navigation.html.erb", "rails_generators/static_app/templates/static_style.css", "rails_generators/static_app/templates/uni-form/jquery.js", "rails_generators/static_app/templates/uni-form/uni-form-generic.css", "rails_generators/static_app/templates/uni-form/uni-form.css", "rails_generators/static_app/templates/uni-form/uni-form.jquery.js", "rails_generators/static_app/USAGE", "rails_generators/static_authorization/static_authorization_generator.rb", "rails_generators/static_authorization/templates/migration.rb", "rails_generators/static_authorization/USAGE", "rails_generators/static_gen_specs/static_gen_specs_generator.rb", "rails_generators/static_gen_specs/templates/generator_specs.rb", "rails_generators/static_gen_specs/templates/model_gen_specs.rb", "rails_generators/static_gen_specs/USAGE", "rails_generators/static_scaffold/static_scaffold_generator.rb", "rails_generators/static_scaffold/templates/controller.rb", "rails_generators/static_scaffold/templates/functional_test.rb", "rails_generators/static_scaffold/templates/helper.rb", "rails_generators/static_scaffold/templates/helper_test.rb", "rails_generators/static_scaffold/templates/layout.html.erb", "rails_generators/static_scaffold/templates/model.rb", "rails_generators/static_scaffold/templates/paperclip_tokens.rb", "rails_generators/static_scaffold/templates/view_edit.html.erb", "rails_generators/static_scaffold/templates/view_index.html.erb", "rails_generators/static_scaffold/templates/view_new.html.erb", "rails_generators/static_scaffold/templates/view_show.html.erb", "rails_generators/static_scaffold/USAGE", "Rakefile", "README.md", "tasks/deployment.rake", "TODO", "USAGE", "Manifest", "static-generators.gemspec"]
|
14
14
|
s.has_rdoc = true
|
15
15
|
s.homepage = %q{http://github.com/jrhicks/static-scaffolds}
|
16
16
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Static-generators", "--main", "README.md"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jrhicks-static-generators
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeffrey Hicks
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-07-
|
12
|
+
date: 2009-07-08 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -32,14 +32,33 @@ files:
|
|
32
32
|
- LICENSE
|
33
33
|
- rails_generators/static_app/static_app_generator.rb
|
34
34
|
- rails_generators/static_app/templates/application_helper.rb
|
35
|
-
- rails_generators/static_app/templates/
|
35
|
+
- rails_generators/static_app/templates/blueprint/grid.png
|
36
|
+
- rails_generators/static_app/templates/blueprint/ie.css
|
37
|
+
- rails_generators/static_app/templates/blueprint/LICENSE
|
38
|
+
- rails_generators/static_app/templates/blueprint/print.css
|
39
|
+
- rails_generators/static_app/templates/blueprint/screen.css
|
40
|
+
- rails_generators/static_app/templates/icons/cross.png
|
41
|
+
- rails_generators/static_app/templates/icons/doc.png
|
42
|
+
- rails_generators/static_app/templates/icons/email.png
|
43
|
+
- rails_generators/static_app/templates/icons/external.png
|
44
|
+
- rails_generators/static_app/templates/icons/feed.png
|
45
|
+
- rails_generators/static_app/templates/icons/key.png
|
46
|
+
- rails_generators/static_app/templates/icons/pdf.png
|
47
|
+
- rails_generators/static_app/templates/icons/tick.png
|
48
|
+
- rails_generators/static_app/templates/icons/visited.png
|
49
|
+
- rails_generators/static_app/templates/icons/xls.png
|
36
50
|
- rails_generators/static_app/templates/layout.html.erb
|
37
51
|
- rails_generators/static_app/templates/layout_helper.rb
|
38
|
-
- rails_generators/static_app/templates/
|
52
|
+
- rails_generators/static_app/templates/navigation_bar_bg.gif
|
53
|
+
- rails_generators/static_app/templates/sorttable/sorttable.js
|
54
|
+
- rails_generators/static_app/templates/standard_footer.html.erb
|
55
|
+
- rails_generators/static_app/templates/standard_header.html.erb
|
56
|
+
- rails_generators/static_app/templates/standard_navigation.html.erb
|
39
57
|
- rails_generators/static_app/templates/static_style.css
|
40
|
-
- rails_generators/static_app/templates/uni-form
|
41
|
-
- rails_generators/static_app/templates/uni-form.css
|
42
|
-
- rails_generators/static_app/templates/uni-form.
|
58
|
+
- rails_generators/static_app/templates/uni-form/jquery.js
|
59
|
+
- rails_generators/static_app/templates/uni-form/uni-form-generic.css
|
60
|
+
- rails_generators/static_app/templates/uni-form/uni-form.css
|
61
|
+
- rails_generators/static_app/templates/uni-form/uni-form.jquery.js
|
43
62
|
- rails_generators/static_app/USAGE
|
44
63
|
- rails_generators/static_authorization/static_authorization_generator.rb
|
45
64
|
- rails_generators/static_authorization/templates/migration.rb
|