kennedy 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/.yardoc +0 -0
- data/LICENSE +20 -0
- data/MAIN.rdoc +23 -0
- data/README.markdown +17 -0
- data/Rakefile +52 -0
- data/VERSION +1 -0
- data/bin/kennedy-gen +13 -0
- data/doc/Kennedy.html +98 -0
- data/doc/Kennedy/Backends.html +94 -0
- data/doc/Kennedy/Backends/LDAP.html +471 -0
- data/doc/Kennedy/BadTicketException.html +92 -0
- data/doc/Kennedy/Granter.html +570 -0
- data/doc/Kennedy/Server.html +258 -0
- data/doc/Kennedy/Ticket.html +875 -0
- data/doc/_index.html +170 -0
- data/doc/class_list.html +97 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +23 -0
- data/doc/css/style.css +261 -0
- data/doc/file.README.html +69 -0
- data/doc/file_list.html +29 -0
- data/doc/index.html +69 -0
- data/doc/js/app.js +91 -0
- data/doc/js/full_list.js +39 -0
- data/doc/js/jquery.js +19 -0
- data/doc/method_list.html +152 -0
- data/doc/top-level-namespace.html +80 -0
- data/kennedy.gemspec +114 -0
- data/lib/kennedy.rb +2 -0
- data/lib/kennedy/backends/ldap.rb +35 -0
- data/lib/kennedy/generator.rb +69 -0
- data/lib/kennedy/granter.rb +52 -0
- data/lib/kennedy/instance_configuration.rb +58 -0
- data/lib/kennedy/server.rb +164 -0
- data/lib/kennedy/ticket.rb +97 -0
- data/logo.png +0 -0
- data/template/config.ru.erb +22 -0
- data/template/config/api_keys.yml.erb +1 -0
- data/template/config/backend.rb +0 -0
- data/template/config/encryption.yml.erb +2 -0
- data/template/config/sessions.yml.erb +1 -0
- data/test/granter_test.rb +93 -0
- data/test/ldap_backend_test.rb +66 -0
- data/test/server_test.rb +285 -0
- data/test/teststrap.rb +34 -0
- data/test/ticket_test.rb +84 -0
- metadata +177 -0
data/doc/_index.html
ADDED
@@ -0,0 +1,170 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta name="Content-Type" content="text/html; charset=UTF-8" />
|
6
|
+
<title>Documentation by YARD 0.4.0</title>
|
7
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
|
8
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
9
|
+
|
10
|
+
<script type="text/javascript" charset="utf-8">
|
11
|
+
relpath = '';
|
12
|
+
if (relpath != '') relpath += '/';
|
13
|
+
</script>
|
14
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
16
|
+
|
17
|
+
</head>
|
18
|
+
<body>
|
19
|
+
<div id="header">
|
20
|
+
<div id="menu">
|
21
|
+
|
22
|
+
|
23
|
+
<span class="title"></span>
|
24
|
+
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<div id="search">
|
28
|
+
<a id="class_list_link" href="#">Namespace List</a>
|
29
|
+
<a id="method_list_link" href="#">Method List</a>
|
30
|
+
<a id ="file_list_link" href="#">File List</a>
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<div class="clear"></div>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<iframe id="search_frame"></iframe>
|
37
|
+
|
38
|
+
<div id="content"><div id="listing">
|
39
|
+
<h1 class="noborder title">Documentation by YARD 0.4.0</h1>
|
40
|
+
<h1 class="alphaindex">Alphabetic Index</h1>
|
41
|
+
|
42
|
+
|
43
|
+
<h2>File Listing</h2>
|
44
|
+
<ul id="files">
|
45
|
+
|
46
|
+
|
47
|
+
<li class="r1"><a title="README" href="index.html">README</a></li>
|
48
|
+
|
49
|
+
|
50
|
+
</ul>
|
51
|
+
|
52
|
+
<div class="clear"></div>
|
53
|
+
|
54
|
+
<h2>Namespace Listing A-Z</h2>
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
<table>
|
60
|
+
<tr>
|
61
|
+
<td valign='top' width="33%">
|
62
|
+
|
63
|
+
|
64
|
+
<ul id="alpha_B" class="alpha">
|
65
|
+
<li class="letter">B</li>
|
66
|
+
<ul>
|
67
|
+
|
68
|
+
<li>
|
69
|
+
<a title="Backends" href="Kennedy/Backends.html">Backends</a>
|
70
|
+
|
71
|
+
<small>(Kennedy)</small>
|
72
|
+
|
73
|
+
</li>
|
74
|
+
|
75
|
+
<li>
|
76
|
+
<a title="BadTicketException" href="Kennedy/BadTicketException.html">BadTicketException</a>
|
77
|
+
|
78
|
+
<small>(Kennedy)</small>
|
79
|
+
|
80
|
+
</li>
|
81
|
+
|
82
|
+
</ul>
|
83
|
+
</ul>
|
84
|
+
|
85
|
+
|
86
|
+
<ul id="alpha_G" class="alpha">
|
87
|
+
<li class="letter">G</li>
|
88
|
+
<ul>
|
89
|
+
|
90
|
+
<li>
|
91
|
+
<a title="Granter" href="Kennedy/Granter.html">Granter</a>
|
92
|
+
|
93
|
+
<small>(Kennedy)</small>
|
94
|
+
|
95
|
+
</li>
|
96
|
+
|
97
|
+
</ul>
|
98
|
+
</ul>
|
99
|
+
|
100
|
+
|
101
|
+
<ul id="alpha_K" class="alpha">
|
102
|
+
<li class="letter">K</li>
|
103
|
+
<ul>
|
104
|
+
|
105
|
+
<li>
|
106
|
+
<a title="Kennedy" href="Kennedy.html">Kennedy</a>
|
107
|
+
|
108
|
+
</li>
|
109
|
+
|
110
|
+
</ul>
|
111
|
+
</ul>
|
112
|
+
|
113
|
+
|
114
|
+
<ul id="alpha_L" class="alpha">
|
115
|
+
<li class="letter">L</li>
|
116
|
+
<ul>
|
117
|
+
|
118
|
+
<li>
|
119
|
+
<a title="LDAP" href="Kennedy/Backends/LDAP.html">LDAP</a>
|
120
|
+
|
121
|
+
<small>(Kennedy::Backends)</small>
|
122
|
+
|
123
|
+
</li>
|
124
|
+
|
125
|
+
</ul>
|
126
|
+
</ul>
|
127
|
+
|
128
|
+
|
129
|
+
<ul id="alpha_S" class="alpha">
|
130
|
+
<li class="letter">S</li>
|
131
|
+
<ul>
|
132
|
+
|
133
|
+
<li>
|
134
|
+
<a title="Server" href="Kennedy/Server.html">Server</a>
|
135
|
+
|
136
|
+
<small>(Kennedy)</small>
|
137
|
+
|
138
|
+
</li>
|
139
|
+
|
140
|
+
</ul>
|
141
|
+
</ul>
|
142
|
+
|
143
|
+
|
144
|
+
<ul id="alpha_T" class="alpha">
|
145
|
+
<li class="letter">T</li>
|
146
|
+
<ul>
|
147
|
+
|
148
|
+
<li>
|
149
|
+
<a title="Ticket" href="Kennedy/Ticket.html">Ticket</a>
|
150
|
+
|
151
|
+
<small>(Kennedy)</small>
|
152
|
+
|
153
|
+
</li>
|
154
|
+
|
155
|
+
</ul>
|
156
|
+
</ul>
|
157
|
+
|
158
|
+
</td>
|
159
|
+
</tr>
|
160
|
+
</table>
|
161
|
+
</div></div>
|
162
|
+
|
163
|
+
<div id="footer">
|
164
|
+
Generated on Tue Dec 8 16:39:38 2009 by
|
165
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool">yard</a>
|
166
|
+
0.4.0 (ruby-1.8.7).
|
167
|
+
</div>
|
168
|
+
|
169
|
+
</body>
|
170
|
+
</html>
|
data/doc/class_list.html
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta name="Content-Type" content="text/html; charset=UTF-8" />
|
6
|
+
<link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
|
7
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
8
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
9
|
+
<script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
|
10
|
+
<base target="_parent" />
|
11
|
+
</head>
|
12
|
+
<body>
|
13
|
+
<h1 id="full_list_header">Namespace List</h1>
|
14
|
+
<div id="search">Search: <input type="text" /></div>
|
15
|
+
<div class="clear"></div>
|
16
|
+
<ul id="full_list">
|
17
|
+
|
18
|
+
|
19
|
+
<li class="r1 ">
|
20
|
+
|
21
|
+
<a href="top-level-namespace.html">Top Level Namespace</a>
|
22
|
+
|
23
|
+
|
24
|
+
</li>
|
25
|
+
|
26
|
+
<li class="r2 ">
|
27
|
+
|
28
|
+
<a title="Backends" href="Kennedy/Backends.html">Backends</a>
|
29
|
+
|
30
|
+
<small>(Kennedy)</small>
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
</li>
|
35
|
+
|
36
|
+
<li class="r1 ">
|
37
|
+
|
38
|
+
<a title="BadTicketException" href="Kennedy/BadTicketException.html">BadTicketException</a>
|
39
|
+
|
40
|
+
<small>(Kennedy)</small>
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
</li>
|
45
|
+
|
46
|
+
<li class="r2 ">
|
47
|
+
|
48
|
+
<a title="Granter" href="Kennedy/Granter.html">Granter</a>
|
49
|
+
|
50
|
+
<small>(Kennedy)</small>
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
</li>
|
55
|
+
|
56
|
+
<li class="r1 ">
|
57
|
+
|
58
|
+
<a title="Kennedy" href="Kennedy.html">Kennedy</a>
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
</li>
|
63
|
+
|
64
|
+
<li class="r2 ">
|
65
|
+
|
66
|
+
<a title="LDAP" href="Kennedy/Backends/LDAP.html">LDAP</a>
|
67
|
+
|
68
|
+
<small>(Kennedy::Backends)</small>
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
</li>
|
73
|
+
|
74
|
+
<li class="r1 ">
|
75
|
+
|
76
|
+
<a title="Server" href="Kennedy/Server.html">Server</a>
|
77
|
+
|
78
|
+
<small>(Kennedy)</small>
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
</li>
|
83
|
+
|
84
|
+
<li class="r2 ">
|
85
|
+
|
86
|
+
<a title="Ticket" href="Kennedy/Ticket.html">Ticket</a>
|
87
|
+
|
88
|
+
<small>(Kennedy)</small>
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
</li>
|
93
|
+
|
94
|
+
</ul>
|
95
|
+
</body>
|
96
|
+
</html>
|
97
|
+
|
data/doc/css/common.css
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
/* Override this file with custom rules */
|
@@ -0,0 +1,23 @@
|
|
1
|
+
body {
|
2
|
+
margin: 0;
|
3
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
4
|
+
font-size: 13px;
|
5
|
+
height: 101%;
|
6
|
+
}
|
7
|
+
html { overflow-y: scroll; }
|
8
|
+
|
9
|
+
h1 { padding: 0; margin: 5px; margin-top: 12px; margin-left: 10px; margin-bottom: 0; font-size: 1.4em; }
|
10
|
+
.clear { clear: both; }
|
11
|
+
#search { position: absolute; right: 5px; top: 9px; }
|
12
|
+
#full_list { padding: 0; list-style: none; margin-left: 0; }
|
13
|
+
#full_list li { padding: 7px 15px; font-size: 1.1em; }
|
14
|
+
#noresults { display: none; padding: 7px 15px; }
|
15
|
+
li { color: #555; }
|
16
|
+
li.deprecated { text-decoration: line-through; font-style: italic; }
|
17
|
+
li.r1 { background: #f0f0f0; border: 1px dotted #f0f0f0; border-left-width: 0; border-right-width: 0; }
|
18
|
+
li.r2 { background: #fafafa; border: 1px dotted #fafafa; border-left-width: 0; border-right-width: 0; }
|
19
|
+
li:hover { background: #ffffa5; cursor: pointer; border: 1px dotted #ddddc4; border-left-width: 0; border-right-width: 0; }
|
20
|
+
li:hover * { position: relative; left: -3px; }
|
21
|
+
a:link, a:visited { text-decoration: none; color: #05a; }
|
22
|
+
a:hover { background: #ffffa5; }
|
23
|
+
#search input { border: 1px solid #bbb; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
|
data/doc/css/style.css
ADDED
@@ -0,0 +1,261 @@
|
|
1
|
+
body {
|
2
|
+
padding: 0 20px;
|
3
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
4
|
+
font-size: 13px;
|
5
|
+
}
|
6
|
+
h1 { font-size: 25px; margin: 1em 0 0.5em; padding-top: 4px; border-top: 1px dotted #d5d5d5; }
|
7
|
+
h1.noborder { border-top: 0px; margin-top: 0; padding-top: 4px; }
|
8
|
+
h1.title { margin-bottom: 10px; }
|
9
|
+
h1.alphaindex { margin-top: 0; font-size: 22px; }
|
10
|
+
h2 {
|
11
|
+
padding: 0;
|
12
|
+
padding-bottom: 3px;
|
13
|
+
border-bottom: 1px #aaa solid;
|
14
|
+
font-size: 1.4em;
|
15
|
+
margin: 1.8em 0 0.5em;
|
16
|
+
}
|
17
|
+
.clear { clear: both; }
|
18
|
+
.docstring h1, .docstring h2, .docstring h3, .docstring h4 { padding: 0; border: 0; border-bottom: 1px dotted #bbb; }
|
19
|
+
.docstring h1 { font-size: 1.2em; }
|
20
|
+
.docstring h2 { font-size: 1.1em; }
|
21
|
+
.docstring h3, .docstring h4 { font-size: 1em; border-bottom: 0; padding-top: 10px; }
|
22
|
+
|
23
|
+
.note {
|
24
|
+
color: #222;
|
25
|
+
-moz-border-radius: 3px; -webkit-border-radius: 3px;
|
26
|
+
background: #e3e4e3; border: 1px solid #d5d5d5; padding: 7px 10px;
|
27
|
+
}
|
28
|
+
.note.todo { background: #ffffc5; border-color: #ececaa; }
|
29
|
+
.note.deprecated { background: #ffe5e5; border-color: #e9dada; }
|
30
|
+
.note.title { text-transform: lowercase; padding: 1px 5px; margin-left: 5px; font-size: 0.9em; font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif; }
|
31
|
+
h1 .note.title { font-size: 0.5em; font-weight: normal; padding: 3px 5px; position: relative; top: -3px; text-transform: capitalize; }
|
32
|
+
.note.title.writeonly { color: #fff; background: #45a638; border-color: #2da31d; }
|
33
|
+
.note.title.readonly { color: #fff; background: #6a98d6; border-color: #6689d6; }
|
34
|
+
.note.title.private { background: #d5d5d5; border-color: #c5c5c5; }
|
35
|
+
|
36
|
+
h3.inherited {
|
37
|
+
font-style: italic;
|
38
|
+
font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
|
39
|
+
font-weight: normal;
|
40
|
+
padding: 0;
|
41
|
+
margin: 0;
|
42
|
+
margin-top: 12px;
|
43
|
+
margin-bottom: 3px;
|
44
|
+
font-size: 13px;
|
45
|
+
}
|
46
|
+
p.inherited {
|
47
|
+
padding: 0;
|
48
|
+
margin: 0;
|
49
|
+
margin-left: 25px;
|
50
|
+
}
|
51
|
+
|
52
|
+
dl.box {
|
53
|
+
width: 520px;
|
54
|
+
font-size: 1em;
|
55
|
+
}
|
56
|
+
dl.box dt {
|
57
|
+
float: left;
|
58
|
+
display: block;
|
59
|
+
width: 100px;
|
60
|
+
margin: 0;
|
61
|
+
text-align: right;
|
62
|
+
font-weight: bold;
|
63
|
+
border: 1px solid #aaa;
|
64
|
+
border-width: 1px 0px 0px 1px;
|
65
|
+
padding: 6px 0;
|
66
|
+
padding-right: 10px;
|
67
|
+
}
|
68
|
+
dl.box dd {
|
69
|
+
float: left;
|
70
|
+
display: block;
|
71
|
+
width: 380px;
|
72
|
+
margin: 0;
|
73
|
+
padding: 6px 0;
|
74
|
+
padding-right: 20px;
|
75
|
+
border: 1px solid #aaa;
|
76
|
+
border-width: 1px 1px 0 0;
|
77
|
+
}
|
78
|
+
dl.box .last {
|
79
|
+
border-bottom: 1px solid #aaa;
|
80
|
+
}
|
81
|
+
dl.box .r1 { background: #eee; }
|
82
|
+
|
83
|
+
ul.toplevel { list-style: none; padding-left: 0; font-size: 1.1em; }
|
84
|
+
#files { padding-left: 15px; font-size: 1.1em; }
|
85
|
+
|
86
|
+
#files { padding: 0; }
|
87
|
+
#files li { list-style: none; display: inline; padding: 7px 12px; line-height: 35px; }
|
88
|
+
|
89
|
+
dl.constants { margin-left: 40px; }
|
90
|
+
dl.constants dt { font-weight: bold; font-size: 1.1em; margin-bottom: 5px; }
|
91
|
+
dl.constants dd { width: 75%; white-space: pre; font-family: monospace; margin-bottom: 18px; }
|
92
|
+
|
93
|
+
.summary_desc { margin-left: 32px; display: block; font-family: sans-serif; }
|
94
|
+
.summary_desc tt { font-size: 0.9em; }
|
95
|
+
dl.constants .summary_desc { font-size: 0.9em; font-weight: normal; }
|
96
|
+
|
97
|
+
.method_details { border-top: 1px dotted #aaa; margin-top: 15px; padding-top: 0; }
|
98
|
+
.method_details.first { border: 0; }
|
99
|
+
p.signature {
|
100
|
+
font-size: 1.1em; font-weight: normal; font-family: Monaco, Consolas, Courier, monospace;
|
101
|
+
padding: 6px 10px; margin-top: 18px;
|
102
|
+
background: #e5e8ff; border: 1px solid #d8d8e5; -moz-border-radius: 3px; -webkit-border-radius: 3px;
|
103
|
+
}
|
104
|
+
p.signature tt { font-family: Monaco, Consolas, Courier, monospace; }
|
105
|
+
p.signature .overload { display: block; }
|
106
|
+
p.signature .extras { font-weight: normal; font-family: sans-serif; color: #444; font-size: 1em; }
|
107
|
+
p.signature .aliases { display: block; font-weight: normal; font-size: 0.9em; font-family: sans-serif; margin-top: 0px; color: #555; }
|
108
|
+
p.signature .aliases .names { font-family: Monaco, Consolas, Courier, monospace; font-weight: bold; color: #000; font-size: 1.2em; }
|
109
|
+
|
110
|
+
.tags h3 { font-size: 1em; margin-bottom: 0; }
|
111
|
+
.tags ul { margin-top: 5px; padding-left: 30px; list-style: square; }
|
112
|
+
.tags ul li { margin-bottom: 3px; }
|
113
|
+
.tags ul .name { font-family: monospace; font-weight: bold; }
|
114
|
+
.tags ul p { display: inline; margin-bottom: 5px; }
|
115
|
+
.tags { margin-bottom: 12px; }
|
116
|
+
|
117
|
+
.tags .examples h3 { margin-bottom: 10px; }
|
118
|
+
.tags .examples h4 { padding: 0; margin: 0; margin-left: 15px; font-weight: bold; font-size: 0.9em; }
|
119
|
+
|
120
|
+
.tags .overload .overload_item { list-style: none; margin-bottom: 25px; }
|
121
|
+
.tags .overload .overload_item .signature {
|
122
|
+
padding: 2px 8px;
|
123
|
+
background: #e5e8ff; border: 1px solid #d8d8e5; -moz-border-radius: 3px; -webkit-border-radius: 3px;
|
124
|
+
}
|
125
|
+
.tags .overload .signature { margin-left: -15px; font-family: monospace; display: block; font-size: 1.1em; }
|
126
|
+
.tags .overload .docstring { margin-top: 15px; }
|
127
|
+
|
128
|
+
.defines { display: none; }
|
129
|
+
|
130
|
+
#method_missing_details .notice.this { position: relative; top: -8px; color: #888; padding: 0; margin: 0; }
|
131
|
+
|
132
|
+
.showSource { font-size: 0.9em; }
|
133
|
+
.showSource a:link, .showSource a:visited { text-decoration: none; color: #666; }
|
134
|
+
|
135
|
+
#content a:link, #content a:visited { text-decoration: none; color: #05a; }
|
136
|
+
#content a:hover { background: #ffffa5; }
|
137
|
+
.docstring { margin-right: 6em; }
|
138
|
+
|
139
|
+
ul.summary {
|
140
|
+
list-style: none;
|
141
|
+
font-family: monospace;
|
142
|
+
font-size: 1em;
|
143
|
+
line-height: 1.5em;
|
144
|
+
}
|
145
|
+
ul.summary a:link, ul.summary a:visited {
|
146
|
+
text-decoration: none; font-size: 1.1em;
|
147
|
+
}
|
148
|
+
ul.summary li { margin-bottom: 5px; }
|
149
|
+
.summary .summary_signature {
|
150
|
+
padding: 1px 10px;
|
151
|
+
background: #eaeaff; border: 1px solid #dfdfe5;
|
152
|
+
-moz-border-radius: 3px; -webkit-border-radius: 3px;
|
153
|
+
}
|
154
|
+
.summary_signature:hover { background: #eeeeff; cursor: pointer; }
|
155
|
+
#content .summary_signature:hover a:link,
|
156
|
+
#content .summary_signature:hover a:visited {
|
157
|
+
background: transparent;
|
158
|
+
color: #48f;
|
159
|
+
}
|
160
|
+
|
161
|
+
p.inherited a { font-family: monospace; font-size: 0.9em; }
|
162
|
+
p.inherited { word-spacing: 5px; font-size: 1.2em; }
|
163
|
+
|
164
|
+
p.children { font-size: 1.2em; }
|
165
|
+
p.children a { font-size: 0.9em; }
|
166
|
+
p.children strong { font-size: 0.8em; }
|
167
|
+
p.children strong.modules { padding-left: 5px; }
|
168
|
+
|
169
|
+
ul.fullTree { display: none; padding-left: 0; list-style: none; margin-left: 0; margin-bottom: 10px; }
|
170
|
+
ul.fullTree ul { margin-left: 0; padding-left: 0; list-style: none; }
|
171
|
+
ul.fullTree li { text-align: center; }
|
172
|
+
ul.fullTree li.next:before { font-size: 1.2em; content: '⬆'; color: #bbb; display: block; margin-top: 3px; }
|
173
|
+
|
174
|
+
#search { position: absolute; right: 14px; top: 0px; }
|
175
|
+
#search a:link, #search a:visited {
|
176
|
+
display: block; float: left; margin-right: 4px;
|
177
|
+
padding: 8px 10px; text-decoration: none; color: #05a; background: #eaeaff;
|
178
|
+
border: 1px solid #d8d8e5;
|
179
|
+
-moz-border-radius-bottomleft: 3px; -moz-border-radius-bottomright: 3px;
|
180
|
+
-webkit-border-bottom-left-radius: 3px; -webkit-border-bottom-right-radius: 3px;
|
181
|
+
}
|
182
|
+
#search a:hover { background: #eef; color: #06b; }
|
183
|
+
#search a.active {
|
184
|
+
background: #568; padding-bottom: 20px; color: #fff; border: 1px solid #457;
|
185
|
+
-moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
|
186
|
+
-webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px;
|
187
|
+
}
|
188
|
+
#search a.inactive { color: #999; }
|
189
|
+
.inheritanceTree, .toggleDefines { float: right; }
|
190
|
+
|
191
|
+
#menu { font-size: 1.3em; color: #bbb; top: -5px; position: relative; }
|
192
|
+
#menu .title, #menu a { font-size: 0.7em; }
|
193
|
+
#menu .title { color: #555; }
|
194
|
+
#menu a:link, #menu a:visited { color: #333; text-decoration: none; border-bottom: 1px dotted #bbd; }
|
195
|
+
#menu a:hover { color: #05a; }
|
196
|
+
|
197
|
+
#footer { margin-top: 15px; border-top: 1px solid #ccc; text-align: center; padding: 7px 0; color: #999; }
|
198
|
+
#footer a:link, #footer a:visited { color: #444; text-decoration: none; border-bottom: 1px dotted #bbd; }
|
199
|
+
#footer a:hover { color: #05a; }
|
200
|
+
|
201
|
+
#listing ul.alpha { font-size: 1.1em; }
|
202
|
+
#listing ul.alpha { margin: 0; padding: 0; padding-bottom: 10px; list-style: none; }
|
203
|
+
#listing ul.alpha li.letter { font-size: 1.4em; padding-bottom: 10px; }
|
204
|
+
#listing ul.alpha ul { margin: 0; padding: 0; }
|
205
|
+
#listing ul small { color: #666; font-size: 0.7em; }
|
206
|
+
|
207
|
+
li.r1 { background: #f0f0f0; }
|
208
|
+
li.r2 { background: #fafafa; }
|
209
|
+
|
210
|
+
#search_frame {
|
211
|
+
background: #fff;
|
212
|
+
display: none;
|
213
|
+
position: absolute;
|
214
|
+
top: 36px;
|
215
|
+
right: 18px;
|
216
|
+
width: 500px;
|
217
|
+
height: 80%;
|
218
|
+
overflow-y: scroll;
|
219
|
+
border: 1px solid #999;
|
220
|
+
border-collapse: collapse;
|
221
|
+
-webkit-box-shadow: -2px 5px 25px #aaa;
|
222
|
+
-moz-box-shadow: -2px 5px 25px #aaa;
|
223
|
+
-moz-border-radius: 2px;
|
224
|
+
-webkit-border-radius: 2px;
|
225
|
+
}
|
226
|
+
|
227
|
+
#content ul.summary li.deprecated a:link,
|
228
|
+
#content ul.summary li.deprecated a:visited { text-decoration: line-through; font-style: italic; }
|
229
|
+
|
230
|
+
/* syntax highlighting */
|
231
|
+
.source_code { display: none; padding: 3px 8px; border-left: 8px solid #ddd; margin-top: 5px; }
|
232
|
+
#filecontents pre.code, .docstring pre.code, .source_code pre { font-family: monospace; }
|
233
|
+
#filecontents pre.code, .docstring pre.code { display: block; }
|
234
|
+
.source_code .lines { padding-right: 12px; color: #555; text-align: right; }
|
235
|
+
#filecontents pre.code, .docstring pre.code,
|
236
|
+
.tags .example { padding: 5px 12px; margin-top: 4px; border: 1px solid #eef; background: #f5f5ff; }
|
237
|
+
pre.code { color: #000; }
|
238
|
+
pre.code .info.file { color: #555; }
|
239
|
+
pre.code .val { color: #036A07; }
|
240
|
+
pre.code .tstring_content,
|
241
|
+
pre.code .heredoc_beg, pre.code .heredoc_end,
|
242
|
+
pre.code .qwords_beg, pre.code .qwords_end,
|
243
|
+
pre.code .tstring, pre.code .dstring { color: #036A07; }
|
244
|
+
pre.code .fid, pre.code .id.new, pre.code .id.to_s,
|
245
|
+
pre.code .id.to_sym, pre.code .id.to_f,
|
246
|
+
pre.code .dot + pre.code .id,
|
247
|
+
pre.code .id.to_i pre.code .id.each { color: #0085FF; }
|
248
|
+
pre.code .comment { color: #0066FF; }
|
249
|
+
pre.code .const, pre.code .constant { color: #585CF6; }
|
250
|
+
pre.code .symbol { color: #C5060B; }
|
251
|
+
pre.code .kw,
|
252
|
+
pre.code .label,
|
253
|
+
pre.code .id.require,
|
254
|
+
pre.code .id.extend,
|
255
|
+
pre.code .id.include { color: #0000FF; }
|
256
|
+
pre.code .ivar { color: #318495; }
|
257
|
+
pre.code .gvar,
|
258
|
+
pre.code .id.backref,
|
259
|
+
pre.code .id.nth_ref { color: #6D79DE; }
|
260
|
+
pre.code .regexp, .dregexp { color: #036A07; }
|
261
|
+
|