fnando-kitabu 0.2.1 → 0.3.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/README.markdown +7 -0
- data/Rakefile +55 -35
- data/bin/kitabu +42 -13
- data/kitabu.gemspec +28 -55
- data/lib/kitabu/base.rb +38 -14
- data/lib/kitabu/blackcloth.rb +1 -10
- data/lib/kitabu/templates.rb +49 -0
- data/lib/kitabu.rb +9 -12
- data/{app_generators/kitabu/templates → templates}/Rakefile +0 -0
- data/{app_generators/kitabu/templates → templates}/config.yml +0 -0
- data/{app_generators/kitabu/templates → templates}/layouts/boom/layout.css +0 -0
- data/{app_generators/kitabu/templates → templates}/layouts/boom/layout.html +8 -8
- data/templates/syntax.css +1065 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/active4d.css +0 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/blackboard.css +0 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/dawn.css +0 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/eiffel.css +0 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/idle.css +0 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/iplastic.css +0 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/lazy.css +0 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/mac_classic.css +0 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/slush_poppies.css +0 -0
- data/{app_generators/kitabu/templates/css → templates/themes}/sunburst.css +0 -0
- data/templates/user.css +1 -0
- metadata +26 -52
- data/History.txt +0 -67
- data/License.txt +0 -20
- data/TODO.txt +0 -2
- data/app_generators/kitabu/USAGE +0 -5
- data/app_generators/kitabu/kitabu_generator.rb +0 -68
- data/app_generators/kitabu/templates/user.css +0 -0
- data/themes/active4d.css +0 -114
- data/themes/all_hallows_eve.css +0 -72
- data/themes/amy.css +0 -147
- data/themes/blackboard.css +0 -88
- data/themes/brilliance_black.css +0 -605
- data/themes/brilliance_dull.css +0 -599
- data/themes/cobalt.css +0 -149
- data/themes/dawn.css +0 -121
- data/themes/eiffel.css +0 -121
- data/themes/espresso_libre.css +0 -109
- data/themes/idle.css +0 -62
- data/themes/iplastic.css +0 -80
- data/themes/lazy.css +0 -73
- data/themes/mac_classic.css +0 -123
- data/themes/magicwb_amiga.css +0 -104
- data/themes/pastels_on_dark.css +0 -188
- data/themes/slush_poppies.css +0 -85
- data/themes/spacecadet.css +0 -51
- data/themes/sunburst.css +0 -180
- data/themes/twilight.css +0 -137
- data/themes/zenburnesque.css +0 -91
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/templates/user.css
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
/* add custom CSS */
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fnando-kitabu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nando Vieira
|
@@ -9,11 +9,11 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-12-22 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: discount
|
17
17
|
version_requirement:
|
18
18
|
version_requirements: !ruby/object:Gem::Requirement
|
19
19
|
requirements:
|
@@ -22,7 +22,7 @@ dependencies:
|
|
22
22
|
version: "0"
|
23
23
|
version:
|
24
24
|
- !ruby/object:Gem::Dependency
|
25
|
-
name:
|
25
|
+
name: hpricot
|
26
26
|
version_requirement:
|
27
27
|
version_requirements: !ruby/object:Gem::Requirement
|
28
28
|
requirements:
|
@@ -31,7 +31,7 @@ dependencies:
|
|
31
31
|
version: "0"
|
32
32
|
version:
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
|
-
name:
|
34
|
+
name: unicode
|
35
35
|
version_requirement:
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
version: "0"
|
41
41
|
version:
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
|
-
name:
|
43
|
+
name: main
|
44
44
|
version_requirement:
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
@@ -60,60 +60,34 @@ extra_rdoc_files: []
|
|
60
60
|
files:
|
61
61
|
- Rakefile
|
62
62
|
- kitabu.gemspec
|
63
|
-
- History.txt
|
64
|
-
- License.txt
|
65
63
|
- README.markdown
|
66
|
-
- TODO.txt
|
67
|
-
- app_generators/kitabu
|
68
|
-
- app_generators/kitabu/kitabu_generator.rb
|
69
|
-
- app_generators/kitabu/templates
|
70
|
-
- app_generators/kitabu/templates/config.yml
|
71
|
-
- app_generators/kitabu/templates/css
|
72
|
-
- app_generators/kitabu/templates/css/active4d.css
|
73
|
-
- app_generators/kitabu/templates/css/blackboard.css
|
74
|
-
- app_generators/kitabu/templates/css/dawn.css
|
75
|
-
- app_generators/kitabu/templates/css/eiffel.css
|
76
|
-
- app_generators/kitabu/templates/css/idle.css
|
77
|
-
- app_generators/kitabu/templates/css/iplastic.css
|
78
|
-
- app_generators/kitabu/templates/css/lazy.css
|
79
|
-
- app_generators/kitabu/templates/css/mac_classic.css
|
80
|
-
- app_generators/kitabu/templates/css/slush_poppies.css
|
81
|
-
- app_generators/kitabu/templates/css/sunburst.css
|
82
|
-
- app_generators/kitabu/templates/layouts
|
83
|
-
- app_generators/kitabu/templates/layouts/boom
|
84
|
-
- app_generators/kitabu/templates/layouts/boom/layout.css
|
85
|
-
- app_generators/kitabu/templates/layouts/boom/layout.html
|
86
|
-
- app_generators/kitabu/templates/Rakefile
|
87
|
-
- app_generators/kitabu/templates/user.css
|
88
|
-
- app_generators/kitabu/USAGE
|
89
64
|
- bin/kitabu
|
90
65
|
- lib/kitabu
|
91
66
|
- lib/kitabu/base.rb
|
92
67
|
- lib/kitabu/blackcloth.rb
|
93
68
|
- lib/kitabu/redcloth.rb
|
94
69
|
- lib/kitabu/tasks.rb
|
70
|
+
- lib/kitabu/templates.rb
|
95
71
|
- lib/kitabu.rb
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
- themes
|
104
|
-
- themes/
|
105
|
-
- themes/
|
106
|
-
- themes/
|
107
|
-
- themes/
|
108
|
-
- themes/
|
109
|
-
- themes/
|
110
|
-
- themes/
|
111
|
-
- themes/
|
112
|
-
- themes/slush_poppies.css
|
113
|
-
- themes/
|
114
|
-
-
|
115
|
-
- themes/twilight.css
|
116
|
-
- themes/zenburnesque.css
|
72
|
+
- templates/config.yml
|
73
|
+
- templates/layouts
|
74
|
+
- templates/layouts/boom
|
75
|
+
- templates/layouts/boom/layout.css
|
76
|
+
- templates/layouts/boom/layout.html
|
77
|
+
- templates/Rakefile
|
78
|
+
- templates/syntax.css
|
79
|
+
- templates/themes
|
80
|
+
- templates/themes/active4d.css
|
81
|
+
- templates/themes/blackboard.css
|
82
|
+
- templates/themes/dawn.css
|
83
|
+
- templates/themes/eiffel.css
|
84
|
+
- templates/themes/idle.css
|
85
|
+
- templates/themes/iplastic.css
|
86
|
+
- templates/themes/lazy.css
|
87
|
+
- templates/themes/mac_classic.css
|
88
|
+
- templates/themes/slush_poppies.css
|
89
|
+
- templates/themes/sunburst.css
|
90
|
+
- templates/user.css
|
117
91
|
has_rdoc: false
|
118
92
|
homepage: http://github.com/fnando/kitabu
|
119
93
|
post_install_message:
|
data/History.txt
DELETED
@@ -1,67 +0,0 @@
|
|
1
|
-
== 0.0.1 2008-06-06
|
2
|
-
|
3
|
-
* 1 major enhancement:
|
4
|
-
* Initial release
|
5
|
-
|
6
|
-
== 0.0.2 2008-06-09
|
7
|
-
* 1 major enhancement
|
8
|
-
* Added textile support
|
9
|
-
* Bug fix
|
10
|
-
* Wrong require was throwing an error
|
11
|
-
|
12
|
-
== 0.0.3 2008-06-09
|
13
|
-
* Cleaning up the house
|
14
|
-
* README converted to Markdown
|
15
|
-
* 1 major enhancement
|
16
|
-
* Added syntax callback for Textile and Markdown
|
17
|
-
|
18
|
-
== 0.0.4 2008-06-12
|
19
|
-
* 1 major enhancement
|
20
|
-
* Added some textile helpers
|
21
|
-
* 1 bug fix
|
22
|
-
* Textile was escaping code inside <pre> blocks
|
23
|
-
|
24
|
-
== 0.0.5 2008-06-17
|
25
|
-
* 1 minor changes
|
26
|
-
* Removed frontcover and backcover jpgs
|
27
|
-
* 1 bug fix
|
28
|
-
* Line stub (__) now ignores spaces and tabs
|
29
|
-
|
30
|
-
== 0.0.6 2008-06-20
|
31
|
-
* 1 major change
|
32
|
-
* All rake tasks moved to namespace 'book'
|
33
|
-
* 1 major enhancement
|
34
|
-
* Added task book:watch
|
35
|
-
|
36
|
-
== 0.0.7 2008-06-21
|
37
|
-
* 1 major enhancement
|
38
|
-
* Added Table of Contents based on h2-h6 tags
|
39
|
-
* Added `book:titles` rake task
|
40
|
-
* 1 minor enhancement
|
41
|
-
* Added new Textile link tag (similar to Markdown)
|
42
|
-
|
43
|
-
== 0.0.8 2008-06-22
|
44
|
-
* 1 minor change
|
45
|
-
* Added Hpricot as dependency
|
46
|
-
* README updated to document highlight syntax
|
47
|
-
|
48
|
-
== 0.0.9 2008-07-25
|
49
|
-
* 1 bug fix
|
50
|
-
* Toc#to_s raised an error if book had no h2-h6 tags (thanks @rferraz)
|
51
|
-
|
52
|
-
== 0.0.10
|
53
|
-
* 2 bug fixes
|
54
|
-
* generator was ignoring directories inside chapter
|
55
|
-
* repeated titles are now numerated to keep id uniqueness
|
56
|
-
|
57
|
-
== 0.1.0
|
58
|
-
* 1 bug fix
|
59
|
-
* RedCloth 3.04 now is bundled with bookmaker until version 4 is supported
|
60
|
-
|
61
|
-
== 0.2.0
|
62
|
-
* 1 major change
|
63
|
-
* Gem refactored (dropped newgem structure)
|
64
|
-
|
65
|
-
== 0.2.1
|
66
|
-
* 1 minor change
|
67
|
-
* Fixed syntax block name regular expression
|
data/License.txt
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
Copyright (c) 2008 Nando Vieira
|
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/TODO.txt
DELETED
@@ -1,68 +0,0 @@
|
|
1
|
-
require 'kitabu'
|
2
|
-
|
3
|
-
class KitabuGenerator < RubiGen::Base
|
4
|
-
|
5
|
-
DEFAULT_SHEBANG = File.join(Config::CONFIG['bindir'],
|
6
|
-
Config::CONFIG['ruby_install_name'])
|
7
|
-
|
8
|
-
default_options :theme => Kitabu::Base.default_theme,
|
9
|
-
:layout => Kitabu::Base.default_layout
|
10
|
-
attr_reader :theme, :layout
|
11
|
-
|
12
|
-
def initialize(runtime_args, runtime_options = {})
|
13
|
-
super
|
14
|
-
usage if args.empty?
|
15
|
-
@destination_root = File.expand_path(args.shift)
|
16
|
-
@name = base_name
|
17
|
-
extract_options
|
18
|
-
end
|
19
|
-
|
20
|
-
def manifest
|
21
|
-
record do |m|
|
22
|
-
m.directory ''
|
23
|
-
BASEDIRS.each { |path| m.directory path }
|
24
|
-
|
25
|
-
m.template "Rakefile", "Rakefile"
|
26
|
-
m.template "user.css", "templates/user.css"
|
27
|
-
m.template "layouts/#{@layout}/layout.css", "templates/layout.css"
|
28
|
-
m.template "layouts/#{@layout}/layout.html", "templates/layout.html"
|
29
|
-
m.template "css/#{@theme}.css", "templates/syntax.css"
|
30
|
-
m.template "config.yml", "config.yml", :assigns => {:theme => @theme}
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
protected
|
35
|
-
def banner
|
36
|
-
<<-EOS
|
37
|
-
The 'kitabu' command creates a new book with a default
|
38
|
-
directory structure at the path you specify.
|
39
|
-
|
40
|
-
USAGE: #{spec.name} /path/to/your/book [options]
|
41
|
-
EOS
|
42
|
-
end
|
43
|
-
|
44
|
-
def add_options!(opts)
|
45
|
-
opts.separator ''
|
46
|
-
opts.separator 'Options:'
|
47
|
-
opts.on("-v", "--version", "Show the #{File.basename($0)} version number and quit.")
|
48
|
-
opts.on("--layout=LAYOUT_NAME", String,
|
49
|
-
"Define the book layout (#{Kitabu::Base.layouts.join('|')})",
|
50
|
-
"Default: #{Kitabu::Base.default_layout}") { |x| options[:layout] = x }
|
51
|
-
opts.on("--theme=THEME_NAME", String,
|
52
|
-
"Define the syntax highlight theme (#{Kitabu::Base.themes.join('|')})",
|
53
|
-
"Default: #{Kitabu::Base.default_theme}") { |x| options[:theme] = x } if RUBY_PLATFORM =~ /darwin/
|
54
|
-
end
|
55
|
-
|
56
|
-
def extract_options
|
57
|
-
@theme = options[:theme]
|
58
|
-
@layout = options[:layout]
|
59
|
-
end
|
60
|
-
|
61
|
-
BASEDIRS = %w(
|
62
|
-
templates
|
63
|
-
text
|
64
|
-
output
|
65
|
-
images
|
66
|
-
code
|
67
|
-
)
|
68
|
-
end
|
File without changes
|
data/themes/active4d.css
DELETED
@@ -1,114 +0,0 @@
|
|
1
|
-
pre.active4d .DiffHeader {
|
2
|
-
background-color: #656565;
|
3
|
-
color: #FFFFFF;
|
4
|
-
}
|
5
|
-
pre.active4d .Operator {
|
6
|
-
}
|
7
|
-
pre.active4d .InheritedClass {
|
8
|
-
}
|
9
|
-
pre.active4d .TypeName {
|
10
|
-
color: #21439C;
|
11
|
-
}
|
12
|
-
pre.active4d .Number {
|
13
|
-
color: #A8017E;
|
14
|
-
}
|
15
|
-
pre.active4d .EmbeddedSource {
|
16
|
-
background-color: #ECF1FF;
|
17
|
-
}
|
18
|
-
pre.active4d {
|
19
|
-
background-color: #FFFFFF;
|
20
|
-
color: #000000;
|
21
|
-
}
|
22
|
-
pre.active4d .DiffInsertedLine {
|
23
|
-
background-color: #98FF9A;
|
24
|
-
color: #000000;
|
25
|
-
}
|
26
|
-
pre.active4d .LibraryVariable {
|
27
|
-
color: #A535AE;
|
28
|
-
}
|
29
|
-
pre.active4d .Storage {
|
30
|
-
color: #FF5600;
|
31
|
-
}
|
32
|
-
pre.active4d .InterpolatedEntity {
|
33
|
-
font-weight: bold;
|
34
|
-
color: #66CCFF;
|
35
|
-
}
|
36
|
-
pre.active4d .line-numbers {
|
37
|
-
background-color: #BAD6FD;
|
38
|
-
color: #000000;
|
39
|
-
}
|
40
|
-
pre.active4d .LocalVariable {
|
41
|
-
font-weight: bold;
|
42
|
-
color: #6392FF;
|
43
|
-
}
|
44
|
-
pre.active4d .DiffLineRange {
|
45
|
-
background-color: #1B63FF;
|
46
|
-
color: #FFFFFF;
|
47
|
-
}
|
48
|
-
pre.active4d .BlockComment {
|
49
|
-
color: #D33435;
|
50
|
-
}
|
51
|
-
pre.active4d .TagName {
|
52
|
-
color: #016CFF;
|
53
|
-
}
|
54
|
-
pre.active4d .FunctionArgument {
|
55
|
-
}
|
56
|
-
pre.active4d .BuiltInConstant {
|
57
|
-
color: #A535AE;
|
58
|
-
}
|
59
|
-
pre.active4d .LineComment {
|
60
|
-
color: #D33535;
|
61
|
-
}
|
62
|
-
pre.active4d .DiffDeletedLine {
|
63
|
-
background-color: #FF7880;
|
64
|
-
color: #000000;
|
65
|
-
}
|
66
|
-
pre.active4d .NamedConstant {
|
67
|
-
color: #B7734C;
|
68
|
-
}
|
69
|
-
pre.active4d .CommandMethod {
|
70
|
-
font-weight: bold;
|
71
|
-
color: #45AE34;
|
72
|
-
}
|
73
|
-
pre.active4d .TableField {
|
74
|
-
color: #0BB600;
|
75
|
-
}
|
76
|
-
pre.active4d .PlainXmlText {
|
77
|
-
color: #000000;
|
78
|
-
}
|
79
|
-
pre.active4d .Invalid {
|
80
|
-
background-color: #990000;
|
81
|
-
color: #FFFFFF;
|
82
|
-
}
|
83
|
-
pre.active4d .LibraryClassType {
|
84
|
-
color: #A535AE;
|
85
|
-
}
|
86
|
-
pre.active4d .TagAttribute {
|
87
|
-
color: #963DFF;
|
88
|
-
}
|
89
|
-
pre.active4d .Keyword {
|
90
|
-
font-weight: bold;
|
91
|
-
color: #006699;
|
92
|
-
}
|
93
|
-
pre.active4d .UserDefinedConstant {
|
94
|
-
}
|
95
|
-
pre.active4d .String {
|
96
|
-
color: #666666;
|
97
|
-
}
|
98
|
-
pre.active4d .DiffUnchangedLine {
|
99
|
-
color: #5E5E5E;
|
100
|
-
}
|
101
|
-
pre.active4d .TagContainer {
|
102
|
-
color: #7A7A7A;
|
103
|
-
}
|
104
|
-
pre.active4d .FunctionName {
|
105
|
-
color: #21439C;
|
106
|
-
}
|
107
|
-
pre.active4d .Variable {
|
108
|
-
font-weight: bold;
|
109
|
-
color: #0053FF;
|
110
|
-
}
|
111
|
-
pre.active4d .DateTimeLiteral {
|
112
|
-
font-weight: bold;
|
113
|
-
color: #66CCFF;
|
114
|
-
}
|
data/themes/all_hallows_eve.css
DELETED
@@ -1,72 +0,0 @@
|
|
1
|
-
pre.all_hallows_eve .ClassInheritance {
|
2
|
-
font-style: italic;
|
3
|
-
}
|
4
|
-
pre.all_hallows_eve .Constant {
|
5
|
-
color: #3387CC;
|
6
|
-
}
|
7
|
-
pre.all_hallows_eve .TypeName {
|
8
|
-
text-decoration: underline;
|
9
|
-
}
|
10
|
-
pre.all_hallows_eve .TextBase {
|
11
|
-
background-color: #434242;
|
12
|
-
color: #FFFFFF;
|
13
|
-
}
|
14
|
-
pre.all_hallows_eve {
|
15
|
-
background-color: #000000;
|
16
|
-
color: #FFFFFF;
|
17
|
-
}
|
18
|
-
pre.all_hallows_eve .StringEscapesExecuted {
|
19
|
-
color: #555555;
|
20
|
-
}
|
21
|
-
pre.all_hallows_eve .line-numbers {
|
22
|
-
background-color: #73597E;
|
23
|
-
color: #FFFFFF;
|
24
|
-
}
|
25
|
-
pre.all_hallows_eve .StringExecuted {
|
26
|
-
background-color: #CCCC33;
|
27
|
-
color: #000000;
|
28
|
-
}
|
29
|
-
pre.all_hallows_eve .BlockComment {
|
30
|
-
background-color: #9B9B9B;
|
31
|
-
color: #FFFFFF;
|
32
|
-
}
|
33
|
-
pre.all_hallows_eve .TagName {
|
34
|
-
text-decoration: underline;
|
35
|
-
}
|
36
|
-
pre.all_hallows_eve .PreProcessorLine {
|
37
|
-
color: #D0D0FF;
|
38
|
-
}
|
39
|
-
pre.all_hallows_eve .SupportFunction {
|
40
|
-
color: #C83730;
|
41
|
-
}
|
42
|
-
pre.all_hallows_eve .FunctionArgument {
|
43
|
-
font-style: italic;
|
44
|
-
}
|
45
|
-
pre.all_hallows_eve .PreProcessorDirective {
|
46
|
-
}
|
47
|
-
pre.all_hallows_eve .StringEscapes {
|
48
|
-
color: #AAAAAA;
|
49
|
-
}
|
50
|
-
pre.all_hallows_eve .SourceBase {
|
51
|
-
background-color: #000000;
|
52
|
-
color: #FFFFFF;
|
53
|
-
}
|
54
|
-
pre.all_hallows_eve .TagAttribute {
|
55
|
-
}
|
56
|
-
pre.all_hallows_eve .StringLiteral {
|
57
|
-
color: #CCCC33;
|
58
|
-
}
|
59
|
-
pre.all_hallows_eve .String {
|
60
|
-
color: #66CC33;
|
61
|
-
}
|
62
|
-
pre.all_hallows_eve .Keyword {
|
63
|
-
color: #CC7833;
|
64
|
-
}
|
65
|
-
pre.all_hallows_eve .RegularExpression {
|
66
|
-
color: #CCCC33;
|
67
|
-
}
|
68
|
-
pre.all_hallows_eve .FunctionName {
|
69
|
-
}
|
70
|
-
pre.all_hallows_eve .Comment {
|
71
|
-
color: #9933CC;
|
72
|
-
}
|
data/themes/amy.css
DELETED
@@ -1,147 +0,0 @@
|
|
1
|
-
pre.amy .PolymorphicVariants {
|
2
|
-
color: #60B0FF;
|
3
|
-
font-style: italic;
|
4
|
-
}
|
5
|
-
pre.amy .KeywordDecorator {
|
6
|
-
color: #D0D0FF;
|
7
|
-
}
|
8
|
-
pre.amy .Punctuation {
|
9
|
-
color: #805080;
|
10
|
-
}
|
11
|
-
pre.amy .InheritedClass {
|
12
|
-
}
|
13
|
-
pre.amy .InvalidDepricated {
|
14
|
-
background-color: #CC66FF;
|
15
|
-
color: #200020;
|
16
|
-
}
|
17
|
-
pre.amy .LibraryVariable {
|
18
|
-
}
|
19
|
-
pre.amy .TokenReferenceOcamlyacc {
|
20
|
-
color: #3CB0D0;
|
21
|
-
}
|
22
|
-
pre.amy .Storage {
|
23
|
-
color: #B0FFF0;
|
24
|
-
}
|
25
|
-
pre.amy .KeywordOperator {
|
26
|
-
color: #A0A0FF;
|
27
|
-
}
|
28
|
-
pre.amy .CharacterConstant {
|
29
|
-
color: #666666;
|
30
|
-
}
|
31
|
-
pre.amy .line-numbers {
|
32
|
-
background-color: #800000;
|
33
|
-
color: #000000;
|
34
|
-
}
|
35
|
-
pre.amy .ClassName {
|
36
|
-
color: #70E080;
|
37
|
-
}
|
38
|
-
pre.amy .Int64Constant {
|
39
|
-
font-style: italic;
|
40
|
-
}
|
41
|
-
pre.amy .NonTerminalReferenceOcamlyacc {
|
42
|
-
color: #C0F0F0;
|
43
|
-
}
|
44
|
-
pre.amy .TokenDefinitionOcamlyacc {
|
45
|
-
color: #3080A0;
|
46
|
-
}
|
47
|
-
pre.amy .ClassType {
|
48
|
-
color: #70E0A0;
|
49
|
-
}
|
50
|
-
pre.amy .ControlKeyword {
|
51
|
-
color: #80A0FF;
|
52
|
-
}
|
53
|
-
pre.amy .LineNumberDirectives {
|
54
|
-
text-decoration: underline;
|
55
|
-
color: #C080C0;
|
56
|
-
}
|
57
|
-
pre.amy .FloatingPointConstant {
|
58
|
-
text-decoration: underline;
|
59
|
-
}
|
60
|
-
pre.amy .Int32Constant {
|
61
|
-
font-weight: bold;
|
62
|
-
}
|
63
|
-
pre.amy .TagName {
|
64
|
-
color: #009090;
|
65
|
-
}
|
66
|
-
pre.amy .ModuleTypeDefinitions {
|
67
|
-
text-decoration: underline;
|
68
|
-
color: #B000B0;
|
69
|
-
}
|
70
|
-
pre.amy .Integer {
|
71
|
-
color: #7090B0;
|
72
|
-
}
|
73
|
-
pre.amy .Camlp4TempParser {
|
74
|
-
}
|
75
|
-
pre.amy .InvalidIllegal {
|
76
|
-
font-weight: bold;
|
77
|
-
background-color: #FFFF00;
|
78
|
-
color: #400080;
|
79
|
-
}
|
80
|
-
pre.amy .LibraryConstant {
|
81
|
-
background-color: #200020;
|
82
|
-
}
|
83
|
-
pre.amy .ModuleDefinitions {
|
84
|
-
color: #B000B0;
|
85
|
-
}
|
86
|
-
pre.amy .Variants {
|
87
|
-
color: #60B0FF;
|
88
|
-
}
|
89
|
-
pre.amy .CompilerDirectives {
|
90
|
-
color: #C080C0;
|
91
|
-
}
|
92
|
-
pre.amy .FloatingPointInfixOperator {
|
93
|
-
text-decoration: underline;
|
94
|
-
}
|
95
|
-
pre.amy .BuiltInConstant1 {
|
96
|
-
}
|
97
|
-
pre.amy {
|
98
|
-
background-color: #200020;
|
99
|
-
color: #D0D0FF;
|
100
|
-
}
|
101
|
-
pre.amy .FunctionArgument {
|
102
|
-
color: #80B0B0;
|
103
|
-
}
|
104
|
-
pre.amy .FloatingPointPrefixOperator {
|
105
|
-
text-decoration: underline;
|
106
|
-
}
|
107
|
-
pre.amy .NativeintConstant {
|
108
|
-
font-weight: bold;
|
109
|
-
}
|
110
|
-
pre.amy .BuiltInConstant {
|
111
|
-
color: #707090;
|
112
|
-
}
|
113
|
-
pre.amy .BooleanConstant {
|
114
|
-
color: #8080A0;
|
115
|
-
}
|
116
|
-
pre.amy .LibraryClassType {
|
117
|
-
}
|
118
|
-
pre.amy .TagAttribute {
|
119
|
-
}
|
120
|
-
pre.amy .Keyword {
|
121
|
-
color: #A080FF;
|
122
|
-
}
|
123
|
-
pre.amy .UserDefinedConstant {
|
124
|
-
}
|
125
|
-
pre.amy .String {
|
126
|
-
color: #999999;
|
127
|
-
}
|
128
|
-
pre.amy .Camlp4Code {
|
129
|
-
background-color: #350060;
|
130
|
-
}
|
131
|
-
pre.amy .NonTerminalDefinitionOcamlyacc {
|
132
|
-
color: #90E0E0;
|
133
|
-
}
|
134
|
-
pre.amy .FunctionName {
|
135
|
-
color: #50A0A0;
|
136
|
-
}
|
137
|
-
pre.amy .SupportModules {
|
138
|
-
color: #A00050;
|
139
|
-
}
|
140
|
-
pre.amy .Variable {
|
141
|
-
color: #008080;
|
142
|
-
}
|
143
|
-
pre.amy .Comment {
|
144
|
-
background-color: #200020;
|
145
|
-
color: #404080;
|
146
|
-
font-style: italic;
|
147
|
-
}
|