blueprintr 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +35 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/bin/blueprintr +3 -0
- data/blueprintr.gemspec +119 -0
- data/lib/blueprint-css/.gitignore +5 -0
- data/lib/blueprint-css/AUTHORS.textile +42 -0
- data/lib/blueprint-css/CHANGELOG +159 -0
- data/lib/blueprint-css/LICENSE +314 -0
- data/lib/blueprint-css/README.textile +81 -0
- data/lib/blueprint-css/TUTORIAL.textile +206 -0
- data/lib/blueprint-css/blueprint/ie.css +35 -0
- data/lib/blueprint-css/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/buttons/icons/key.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/buttons/readme.txt +32 -0
- data/lib/blueprint-css/blueprint/plugins/buttons/screen.css +97 -0
- data/lib/blueprint-css/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/lib/blueprint-css/blueprint/plugins/fancy-type/screen.css +71 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/readme.txt +18 -0
- data/lib/blueprint-css/blueprint/plugins/link-icons/screen.css +40 -0
- data/lib/blueprint-css/blueprint/plugins/rtl/readme.txt +10 -0
- data/lib/blueprint-css/blueprint/plugins/rtl/screen.css +110 -0
- data/lib/blueprint-css/blueprint/print.css +29 -0
- data/lib/blueprint-css/blueprint/screen.css +258 -0
- data/lib/blueprint-css/blueprint/src/forms.css +65 -0
- data/lib/blueprint-css/blueprint/src/grid.css +280 -0
- data/lib/blueprint-css/blueprint/src/grid.png +0 -0
- data/lib/blueprint-css/blueprint/src/ie.css +76 -0
- data/lib/blueprint-css/blueprint/src/print.css +85 -0
- data/lib/blueprint-css/blueprint/src/reset.css +45 -0
- data/lib/blueprint-css/blueprint/src/typography.css +106 -0
- data/lib/blueprint-css/lib/blueprint/blueprint.rb +39 -0
- data/lib/blueprint-css/lib/blueprint/compressor.rb +265 -0
- data/lib/blueprint-css/lib/blueprint/core_ext.rb +39 -0
- data/lib/blueprint-css/lib/blueprint/css_parser.rb +69 -0
- data/lib/blueprint-css/lib/blueprint/custom_layout.rb +71 -0
- data/lib/blueprint-css/lib/blueprint/grid.css.erb +146 -0
- data/lib/blueprint-css/lib/blueprint/grid_builder.rb +54 -0
- data/lib/blueprint-css/lib/blueprint/namespace.rb +38 -0
- data/lib/blueprint-css/lib/blueprint/semantic_class_names.rb +57 -0
- data/lib/blueprint-css/lib/blueprint/validate/COPYRIGHT.html +93 -0
- data/lib/blueprint-css/lib/blueprint/validate/JIGSAW_COPYRIGHT +64 -0
- data/lib/blueprint-css/lib/blueprint/validate/README.html +83 -0
- data/lib/blueprint-css/lib/blueprint/validate/XERCES_COPYING.txt +56 -0
- data/lib/blueprint-css/lib/blueprint/validate/css-validator-javadoc.jar +0 -0
- data/lib/blueprint-css/lib/blueprint/validate/css-validator.jar +0 -0
- data/lib/blueprint-css/lib/blueprint/validate/jigsaw.jar +0 -0
- data/lib/blueprint-css/lib/blueprint/validate/xerces.jar +0 -0
- data/lib/blueprint-css/lib/blueprint/validator.rb +49 -0
- data/lib/blueprint-css/lib/compress.rb +149 -0
- data/lib/blueprint-css/lib/settings.example.yml +33 -0
- data/lib/blueprint-css/lib/validate.rb +15 -0
- data/lib/blueprint-css/templates/psd/fixed-width.psd +0 -0
- data/lib/blueprint-css/tests/index.html +83 -0
- data/lib/blueprint-css/tests/parts/elements.html +247 -0
- data/lib/blueprint-css/tests/parts/forms.html +191 -0
- data/lib/blueprint-css/tests/parts/grid.html +163 -0
- data/lib/blueprint-css/tests/parts/sample.html +75 -0
- data/lib/blueprint-css/tests/parts/test-small.jpg +0 -0
- data/lib/blueprint-css/tests/parts/test.jpg +0 -0
- data/lib/blueprint-css/tests/parts/valid.png +0 -0
- data/lib/blueprintr.rb +23 -0
- data/test/helper.rb +9 -0
- data/test/test_blueprintr.rb +14 -0
- metadata +139 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 cbrumelle
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
= Blueprintr
|
2
|
+
|
3
|
+
A gem wrapper to ease the use of the Blueprint CSS framework (http://www.blueprintcss.org)
|
4
|
+
|
5
|
+
== Installation
|
6
|
+
|
7
|
+
* sugo gem install blueprintr
|
8
|
+
|
9
|
+
== Usage
|
10
|
+
|
11
|
+
The Blueprintr gem gives a 'blueprintr' command that passes arguments to the compressor.rb (http://jdclayton.com/blueprints_compress_a_walkthrough.html) from the Blueprint project. All of the options one can pass to compressor.rb may be passed to blueprintr.
|
12
|
+
|
13
|
+
-f=SETTINGS_FILE Specify a non-default settings file path.
|
14
|
+
--settings_file
|
15
|
+
-o, --output_path=OUTPUT_PATH Define a different path to output generated CSS files to. Default is current working directory.
|
16
|
+
-n, --namespace=BP_NAMESPACE Define a namespace prepended to all Blueprint classes (e.g. .your-ns-span-24)
|
17
|
+
-p, --project=PROJECT_NAME If using the settings.yml file, PROJECT_NAME is the project name you want to export
|
18
|
+
--column_width=COLUMN_WIDTH Set a new column width (in pixels) for the output grid
|
19
|
+
--gutter_width=GUTTER_WIDTH Set a new gutter width (in pixels) for the output grid
|
20
|
+
--column_count=COLUMN_COUNT Set a new column count for the output grid
|
21
|
+
-h, --help Show this help message.
|
22
|
+
|
23
|
+
== Note on Patches/Pull Requests
|
24
|
+
|
25
|
+
* Fork the project.
|
26
|
+
* Make your feature addition or bug fix.
|
27
|
+
* Add tests for it. This is important so I don't break it in a
|
28
|
+
future version unintentionally.
|
29
|
+
* Commit, do not mess with rakefile, version, or history.
|
30
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
31
|
+
* Send me a pull request. Bonus points for topic branches.
|
32
|
+
|
33
|
+
== Copyright
|
34
|
+
|
35
|
+
Copyright (c) 2010 cbrumelle. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "blueprintr"
|
8
|
+
gem.summary = "A gem wrapper to ease the use of the Blueprint CSS framework (http://www.blueprintcss.org)"
|
9
|
+
gem.description = "A gem wrapper to ease the use of the Blueprint CSS framework (http://www.blueprintcss.org). " +
|
10
|
+
"This gem gives you the latest version of Blueprint CSS (0.9.1)."
|
11
|
+
gem.email = "colin@mixedcontent.com"
|
12
|
+
gem.homepage = "http://github.com/cbrumelle/blueprintr"
|
13
|
+
gem.authors = ["cbrumelle"]
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
Jeweler::GemcutterTasks.new
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'rake/testtask'
|
22
|
+
Rake::TestTask.new(:test) do |test|
|
23
|
+
test.libs << 'lib' << 'test'
|
24
|
+
test.pattern = 'test/**/test_*.rb'
|
25
|
+
test.verbose = true
|
26
|
+
end
|
27
|
+
|
28
|
+
begin
|
29
|
+
require 'rcov/rcovtask'
|
30
|
+
Rcov::RcovTask.new do |test|
|
31
|
+
test.libs << 'test'
|
32
|
+
test.pattern = 'test/**/test_*.rb'
|
33
|
+
test.verbose = true
|
34
|
+
end
|
35
|
+
rescue LoadError
|
36
|
+
task :rcov do
|
37
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
task :test => :check_dependencies
|
42
|
+
|
43
|
+
task :default => :test
|
44
|
+
|
45
|
+
require 'rake/rdoctask'
|
46
|
+
Rake::RDocTask.new do |rdoc|
|
47
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
48
|
+
|
49
|
+
rdoc.rdoc_dir = 'rdoc'
|
50
|
+
rdoc.title = "blueprintr #{version}"
|
51
|
+
rdoc.rdoc_files.include('README*')
|
52
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
53
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/bin/blueprintr
ADDED
data/blueprintr.gemspec
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{blueprintr}
|
8
|
+
s.version = "0.1.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["cbrumelle"]
|
12
|
+
s.date = %q{2010-05-11}
|
13
|
+
s.default_executable = %q{blueprintr}
|
14
|
+
s.description = %q{A gem wrapper to ease the use of the Blueprint CSS framework (http://www.blueprintcss.org). This gem gives you the latest version of Blueprint CSS (0.9.1).}
|
15
|
+
s.email = %q{colin@mixedcontent.com}
|
16
|
+
s.executables = ["blueprintr"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".document",
|
23
|
+
".gitignore",
|
24
|
+
"LICENSE",
|
25
|
+
"README.rdoc",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"bin/blueprintr",
|
29
|
+
"blueprintr.gemspec",
|
30
|
+
"lib/blueprint-css/.gitignore",
|
31
|
+
"lib/blueprint-css/AUTHORS.textile",
|
32
|
+
"lib/blueprint-css/CHANGELOG",
|
33
|
+
"lib/blueprint-css/LICENSE",
|
34
|
+
"lib/blueprint-css/README.textile",
|
35
|
+
"lib/blueprint-css/TUTORIAL.textile",
|
36
|
+
"lib/blueprint-css/blueprint/ie.css",
|
37
|
+
"lib/blueprint-css/blueprint/plugins/buttons/icons/cross.png",
|
38
|
+
"lib/blueprint-css/blueprint/plugins/buttons/icons/key.png",
|
39
|
+
"lib/blueprint-css/blueprint/plugins/buttons/icons/tick.png",
|
40
|
+
"lib/blueprint-css/blueprint/plugins/buttons/readme.txt",
|
41
|
+
"lib/blueprint-css/blueprint/plugins/buttons/screen.css",
|
42
|
+
"lib/blueprint-css/blueprint/plugins/fancy-type/readme.txt",
|
43
|
+
"lib/blueprint-css/blueprint/plugins/fancy-type/screen.css",
|
44
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/icons/doc.png",
|
45
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/icons/email.png",
|
46
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/icons/external.png",
|
47
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/icons/feed.png",
|
48
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/icons/im.png",
|
49
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/icons/pdf.png",
|
50
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/icons/visited.png",
|
51
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/icons/xls.png",
|
52
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/readme.txt",
|
53
|
+
"lib/blueprint-css/blueprint/plugins/link-icons/screen.css",
|
54
|
+
"lib/blueprint-css/blueprint/plugins/rtl/readme.txt",
|
55
|
+
"lib/blueprint-css/blueprint/plugins/rtl/screen.css",
|
56
|
+
"lib/blueprint-css/blueprint/print.css",
|
57
|
+
"lib/blueprint-css/blueprint/screen.css",
|
58
|
+
"lib/blueprint-css/blueprint/src/forms.css",
|
59
|
+
"lib/blueprint-css/blueprint/src/grid.css",
|
60
|
+
"lib/blueprint-css/blueprint/src/grid.png",
|
61
|
+
"lib/blueprint-css/blueprint/src/ie.css",
|
62
|
+
"lib/blueprint-css/blueprint/src/print.css",
|
63
|
+
"lib/blueprint-css/blueprint/src/reset.css",
|
64
|
+
"lib/blueprint-css/blueprint/src/typography.css",
|
65
|
+
"lib/blueprint-css/lib/blueprint/blueprint.rb",
|
66
|
+
"lib/blueprint-css/lib/blueprint/compressor.rb",
|
67
|
+
"lib/blueprint-css/lib/blueprint/core_ext.rb",
|
68
|
+
"lib/blueprint-css/lib/blueprint/css_parser.rb",
|
69
|
+
"lib/blueprint-css/lib/blueprint/custom_layout.rb",
|
70
|
+
"lib/blueprint-css/lib/blueprint/grid.css.erb",
|
71
|
+
"lib/blueprint-css/lib/blueprint/grid_builder.rb",
|
72
|
+
"lib/blueprint-css/lib/blueprint/namespace.rb",
|
73
|
+
"lib/blueprint-css/lib/blueprint/semantic_class_names.rb",
|
74
|
+
"lib/blueprint-css/lib/blueprint/validate/COPYRIGHT.html",
|
75
|
+
"lib/blueprint-css/lib/blueprint/validate/JIGSAW_COPYRIGHT",
|
76
|
+
"lib/blueprint-css/lib/blueprint/validate/README.html",
|
77
|
+
"lib/blueprint-css/lib/blueprint/validate/XERCES_COPYING.txt",
|
78
|
+
"lib/blueprint-css/lib/blueprint/validate/css-validator-javadoc.jar",
|
79
|
+
"lib/blueprint-css/lib/blueprint/validate/css-validator.jar",
|
80
|
+
"lib/blueprint-css/lib/blueprint/validate/jigsaw.jar",
|
81
|
+
"lib/blueprint-css/lib/blueprint/validate/xerces.jar",
|
82
|
+
"lib/blueprint-css/lib/blueprint/validator.rb",
|
83
|
+
"lib/blueprint-css/lib/compress.rb",
|
84
|
+
"lib/blueprint-css/lib/settings.example.yml",
|
85
|
+
"lib/blueprint-css/lib/validate.rb",
|
86
|
+
"lib/blueprint-css/templates/psd/fixed-width.psd",
|
87
|
+
"lib/blueprint-css/tests/index.html",
|
88
|
+
"lib/blueprint-css/tests/parts/elements.html",
|
89
|
+
"lib/blueprint-css/tests/parts/forms.html",
|
90
|
+
"lib/blueprint-css/tests/parts/grid.html",
|
91
|
+
"lib/blueprint-css/tests/parts/sample.html",
|
92
|
+
"lib/blueprint-css/tests/parts/test-small.jpg",
|
93
|
+
"lib/blueprint-css/tests/parts/test.jpg",
|
94
|
+
"lib/blueprint-css/tests/parts/valid.png",
|
95
|
+
"lib/blueprintr.rb",
|
96
|
+
"test/helper.rb",
|
97
|
+
"test/test_blueprintr.rb"
|
98
|
+
]
|
99
|
+
s.homepage = %q{http://github.com/cbrumelle/blueprintr}
|
100
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
101
|
+
s.require_paths = ["lib"]
|
102
|
+
s.rubygems_version = %q{1.3.6}
|
103
|
+
s.summary = %q{A gem wrapper to ease the use of the Blueprint CSS framework (http://www.blueprintcss.org)}
|
104
|
+
s.test_files = [
|
105
|
+
"test/helper.rb",
|
106
|
+
"test/test_blueprintr.rb"
|
107
|
+
]
|
108
|
+
|
109
|
+
if s.respond_to? :specification_version then
|
110
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
111
|
+
s.specification_version = 3
|
112
|
+
|
113
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
114
|
+
else
|
115
|
+
end
|
116
|
+
else
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
@@ -0,0 +1,42 @@
|
|
1
|
+
h1. Blueprint CSS Framework Authors and Contributors
|
2
|
+
|
3
|
+
Blueprint is based on the work of many talented people. It is
|
4
|
+
through their good intentions we are allowed to use many of the
|
5
|
+
techniques found in the framework.
|
6
|
+
|
7
|
+
h2. Current Team
|
8
|
+
|
9
|
+
Blueprint was realized and maintained through version 0.7.1 by
|
10
|
+
"Olav Bjorkoy":http://bjorkoy.com who has sinced passed the torch
|
11
|
+
to the current team. They are:
|
12
|
+
|
13
|
+
Admins:
|
14
|
+
* "Christian Montoya":http://christianmontoya.net
|
15
|
+
* "Josh Clayton":http://jdclayton.com
|
16
|
+
|
17
|
+
Contributors:
|
18
|
+
* "Glenn Rempe":http://blog.rempe.us/
|
19
|
+
* "Chris Eppstein":http://twitter.com/chriseppstein
|
20
|
+
* "Sean K. Stewart":http://seankstewart.com/
|
21
|
+
|
22
|
+
h2. Original CSS authors
|
23
|
+
|
24
|
+
The first iteration of Blueprint was built upon many conventions
|
25
|
+
and ideas that were developed by true CSS experts.
|
26
|
+
|
27
|
+
The grid and typography is based on work by:
|
28
|
+
* "Jeff Croft":http://jeffcroft.com
|
29
|
+
* "Nathan Borror":http://www.playgroundblues.com
|
30
|
+
* "Christian Metts":http://mintchaos.com
|
31
|
+
* "Wilson Miner":http://www.wilsonminer.com
|
32
|
+
|
33
|
+
The CSS reset is based on work by:
|
34
|
+
* "Eric Meyer":http://www.meyerweb.com/eric
|
35
|
+
|
36
|
+
The Fancy Type plugin is based on work by:
|
37
|
+
* "Mark Boulton":http://www.markboulton.co.uk
|
38
|
+
* "Typogrify":http://typogrify.googlecode.com
|
39
|
+
|
40
|
+
(However, remember that these people are not involved with the
|
41
|
+
framework, so please don't waste their or your time asking them
|
42
|
+
for support.)
|
@@ -0,0 +1,159 @@
|
|
1
|
+
Blueprint CSS Framework Change Log
|
2
|
+
----------------------------------------------------------------
|
3
|
+
|
4
|
+
Version 0.9 - Date May 29, 2009
|
5
|
+
--
|
6
|
+
New features:
|
7
|
+
* Changed all conditional comments to [if lt IE 8] for IE 8 compatibility [CMM]
|
8
|
+
* Updated forms code to align inline form elements, with additions for IE 6 [CMM]
|
9
|
+
* Use <form class="inline"> for inline forms
|
10
|
+
* Use classes "text", "button", "radio" and "checkbox" on inputs for IE 6 compatibility
|
11
|
+
|
12
|
+
|
13
|
+
Version 0.8 - Date November 11, 2008
|
14
|
+
--
|
15
|
+
New features:
|
16
|
+
* Much of the flexibility of 0.6 has been pushed back into the core [CMM]
|
17
|
+
* Plugins from 0.6 are now back in the core [CMM]
|
18
|
+
|
19
|
+
Bug fixes:
|
20
|
+
* Lots. See http://blueprintcss.lighthouseapp.com/projects/15318-blueprint-css
|
21
|
+
|
22
|
+
|
23
|
+
Version 0.7.1 - Date February 21, 2008
|
24
|
+
--
|
25
|
+
New features:
|
26
|
+
* Rubydoc for compressor [JC]
|
27
|
+
|
28
|
+
Bug fixes:
|
29
|
+
* Fixed bug in the compressor related to Rubygems. [JC]
|
30
|
+
* <tt> should be inline, not block. [OFB]
|
31
|
+
|
32
|
+
|
33
|
+
Version 0.7 - February 19, 2008
|
34
|
+
--
|
35
|
+
New features:
|
36
|
+
* New directory structure. [OFB]
|
37
|
+
* New compressor script. [JC]
|
38
|
+
* Ability to set custom namespace for BP classes. [JC]
|
39
|
+
* Optional custom column count and widths. [JC]
|
40
|
+
* Ability to add your own CSS files. [JC]
|
41
|
+
* Custom output paths. [JC]
|
42
|
+
* Support for multiple projects. [JC]
|
43
|
+
* Semantic class naming from CSS rules. [JC]
|
44
|
+
* Automatic compression for plugins. [JC]
|
45
|
+
* Compressed version of ie.css. [OFB]
|
46
|
+
* Alternating table row colors. [OFB]
|
47
|
+
* Added class .showgrid to see the grid of any column or container. [OFB]
|
48
|
+
* No need for .column! You now have to use divs for columns,
|
49
|
+
but you can still use span/prepend/append for other elements as well.
|
50
|
+
In other words, div.span-x now implies that the element is a .column. [OFB]
|
51
|
+
|
52
|
+
Bug fixes:
|
53
|
+
* Sidebar alignment in tests/sample.html. [OFB]
|
54
|
+
* Line-height on sub/sup. [OFB]
|
55
|
+
* Clearfix not properly applied to container. [OFB]
|
56
|
+
* Misc validation errors in tests. [OFB]
|
57
|
+
* Proper margin on address. [OFB]
|
58
|
+
* Unwanted bottom margin on nested lists. [OFB]
|
59
|
+
* Form labels with unwanted fancy-type indentation. [OFB]
|
60
|
+
* Proper margin on all form elements. [OFB]
|
61
|
+
* No margins for images in headings. [OFB]
|
62
|
+
* Push-x bottom margin. [OFB]
|
63
|
+
* Vertical align set to middle on tables. [OFB]
|
64
|
+
* Improved .notice, .error and .success color contrast. [OFB]
|
65
|
+
* Size of input[text]. [OFB]
|
66
|
+
* Baseline alignment of <h4>. [OFB]
|
67
|
+
|
68
|
+
Misc:
|
69
|
+
* Improved structure in print.css. [OFB]
|
70
|
+
* Dual-licensed under MIT and GPL licenses. [OFB]
|
71
|
+
* Changed name of .clear to .clearfix, and added .clear (clear:both;). [OFB]
|
72
|
+
|
73
|
+
|
74
|
+
Version 0.6 - September 21, 2007
|
75
|
+
--
|
76
|
+
* Created a new plugin, "iepngfix", that adds support for PNG transparency in IE5.5+ [OFB]
|
77
|
+
* Added an IE stylesheet, updated the test files and the readme accordingly [OFB]
|
78
|
+
* Re-added improved support for em units [OFB]
|
79
|
+
* Lots of minor changes to typography.css and reset.css, provided by Christian Montoya [OFB]
|
80
|
+
* Extracted the fancy typography section in typography.css to a new plugin [OFB]
|
81
|
+
* Extracted the support for CSS buttons into a new plugin. [OFB]
|
82
|
+
* Added new plugin structure. [OFB]
|
83
|
+
* Changed some default fonts so that BP works better with ClearType in XP [OFB]
|
84
|
+
* Re-added the hack for clearing floats without extra markup. [OFB]
|
85
|
+
* Added Changelog.txt to track changes in each release. [GR]
|
86
|
+
* Cleaned up and rationalized SVN dir structure. [GR, OFB]
|
87
|
+
* print.css : removed reference to 'baseline.png' as it no longer exists. [GR]
|
88
|
+
* grid.css : removed reference to '.first' css class as it no longer exists. [GR]
|
89
|
+
* Added append-13 to append-23 and prepend-13 to prepend-23 to allow pushing elements
|
90
|
+
to both extreme sides of the grid. Added test cases to tests/grid.css [GR]
|
91
|
+
* Moved test sample files to blueprint/tests sub-directory so tests stay with the code. [GR]
|
92
|
+
* Consolidated all references to release version number to screen.css [OFB]
|
93
|
+
* Added ruby script (generate_compressed_css.rb) to scripts dir, and 'csstidy' binary (OS X Universal)
|
94
|
+
for generating tidied version of Blueprint (lib/compressed.css).
|
95
|
+
* Consolidated test pages into one single page (test.html). Uses compressed stylesheet by default. This ensures test of
|
96
|
+
the chain of generation. (todo) Intention is to delete other test files if single file works well. (todo) ensure singular
|
97
|
+
test file contains latest changes to other test files. [GR]
|
98
|
+
* Moved the blueprint framework to its own folder in the package, so that the tests, script,
|
99
|
+
license and readme don't clutter up our BP folder. [OFB]
|
100
|
+
* Re-saved grid.png with Photoshop to remove Fireworks data which was bloating it.
|
101
|
+
Now its about 3KB instead of 40+KB. Resolves Issue 22. [GR]
|
102
|
+
* Moved compressed files to new compressed dir [OFB]
|
103
|
+
* print.css is now also being generated by the compressor ruby script and is available for use.
|
104
|
+
* Added new script 'validate_css.rb' which will validate all css files and present a report with
|
105
|
+
a local java binary of the W3C validator.
|
106
|
+
* Created an experimental CSS classes plugin, by popular demand. [OFB]
|
107
|
+
* Improved handling of multi-line headings. [OFB]
|
108
|
+
* Improved styling of <table>s, you may now use .span classes on <th>s to create tables that follow the grid. [OFB]
|
109
|
+
* Added support for indented paragraphs to the Fancy-type plugin. [OFB]
|
110
|
+
* Added a new plugin: link-icons. [OFB]
|
111
|
+
* Seperated the plugins tests into their own file. [OFB]
|
112
|
+
* Re-structured some of the tests.html sections. [OFB]
|
113
|
+
* Added class ".colborder" to grid.css. [OFB]
|
114
|
+
* Added .error, .notice and .success classes to typography.css. [OFB]
|
115
|
+
* Added tests for more elements which gets reset in reset.css [OFB, GR]
|
116
|
+
* Added forms.css, awaiting implementation. Moved form styling from typography.css [OFB]
|
117
|
+
* Updated compressor script to include forms.css [OFB]
|
118
|
+
* Improved forms.html tests for upcoming forms.css implementation. This will change based on the
|
119
|
+
markup that forms.css will use. [OFB]
|
120
|
+
* Fixed clearing image in button element bug in buttons.css [OFB]
|
121
|
+
* Fixed bug where IE6 clips pushed/pulled elements. [OFB]
|
122
|
+
* Fixed typo in grid.css formula. [OFB]
|
123
|
+
* Fixed varying formatting across core files. [OFB]
|
124
|
+
* Fixed legend element in IE6. [OFB]
|
125
|
+
* Fixed indentation in test files. [OFB]
|
126
|
+
* Removed tests for plugins not bundled with the next release. [OFB]
|
127
|
+
* Improved styling of <h3>. [OFB]
|
128
|
+
* Fixed indentation bug in ul/ol, removed some redundant styling. [OFB]
|
129
|
+
* Fixed validation errors in tests. [OFB]
|
130
|
+
* Changed IE stylesheet condition comment to include all versions of IE. [OFB]
|
131
|
+
* Started on a new approach for the PNG plugin. Will not be included in this release. [OFB]
|
132
|
+
* Fixed incorrect rendering of ol in IE6/7. [OFB]
|
133
|
+
* Created a new, spiffier sample page. [OFB]
|
134
|
+
|
135
|
+
|
136
|
+
Version 0.5 - August 28, 2007
|
137
|
+
--
|
138
|
+
* Changed grid width from 14 to 24 columns [OFB]
|
139
|
+
* Removed 'first' CSS class and the need to apply it to the first column in a row of columns. [OFB]
|
140
|
+
* Reverted to using pixels instead of em units to specify vertical spacing due to baseline issues with
|
141
|
+
all browsers except Firefox. [OFB]
|
142
|
+
* New set of default fonts. (Experimental) [OFB]
|
143
|
+
* Added test files [OFB]
|
144
|
+
|
145
|
+
|
146
|
+
Version 0.4 - August 11, 2007
|
147
|
+
--
|
148
|
+
* All font sizes and vertical margins are now elastic, through the use of em units.
|
149
|
+
Resizing works great in every tested browser. [OFB]
|
150
|
+
* Comes with a new, compressed version of BP, which reduces the size of the core files by 60 percent. [OFB]
|
151
|
+
* Support for incremental leading, contributed by Mark Boulton. [OFB]
|
152
|
+
* Adds perfected CSS buttons, by Kevin Hale of Particletree fame. [OFB]
|
153
|
+
* Fixes all known IE bugs. [OFB]
|
154
|
+
* Loads of minor fixes and additions. [OFB]
|
155
|
+
|
156
|
+
|
157
|
+
Version 0.3 - March 8, 2007
|
158
|
+
--
|
159
|
+
* Initial release of Blueprint (versions 0.1 and 0.2 were internal only).
|