RuGPost 0.1.0.1.beta → 0.1.1

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.
Files changed (43) hide show
  1. data/Gemfile +6 -6
  2. data/Gemfile.lock +34 -5
  3. data/README.rdoc +43 -3
  4. data/Rakefile +13 -39
  5. data/RuGPost.gemspec +54 -12
  6. data/VERSION +1 -1
  7. data/bin/rugpost +9 -0
  8. data/lib/RuGPost.rb +26 -0
  9. data/lib/rugpost/commands.rb +15 -0
  10. data/lib/rugpost/commands/post_commands.rb +20 -0
  11. data/lib/rugpost/commands/project_commands.rb +23 -0
  12. data/lib/rugpost/on_error.rb +6 -0
  13. data/lib/rugpost/post.rb +96 -0
  14. data/lib/rugpost/prepost.rb +10 -0
  15. data/lib/rugpost/project.rb +34 -0
  16. data/lib/rugpost/site.rb +6 -0
  17. data/lib/rugpost/utilis.rb +27 -0
  18. data/rdoc/classes/RuGPost.html +200 -0
  19. data/rdoc/classes/RuGPost/Post.html +462 -0
  20. data/rdoc/classes/RuGPost/Project.html +210 -0
  21. data/rdoc/classes/RuGPost/Site.html +111 -0
  22. data/rdoc/classes/RuGPost/Utilis.html +196 -0
  23. data/rdoc/created.rid +1 -0
  24. data/rdoc/files/README_rdoc.html +204 -0
  25. data/rdoc/files/lib/RuGPost_rb.html +113 -0
  26. data/rdoc/files/lib/rugpost/commands/post_commands_rb.html +101 -0
  27. data/rdoc/files/lib/rugpost/commands/project_commands_rb.html +101 -0
  28. data/rdoc/files/lib/rugpost/commands_rb.html +108 -0
  29. data/rdoc/files/lib/rugpost/on_error_rb.html +101 -0
  30. data/rdoc/files/lib/rugpost/post_rb.html +101 -0
  31. data/rdoc/files/lib/rugpost/prepost_rb.html +101 -0
  32. data/rdoc/files/lib/rugpost/project_rb.html +101 -0
  33. data/rdoc/files/lib/rugpost/site_rb.html +101 -0
  34. data/rdoc/files/lib/rugpost/utilis_rb.html +101 -0
  35. data/rdoc/fr_class_index.html +31 -0
  36. data/rdoc/fr_file_index.html +37 -0
  37. data/rdoc/fr_method_index.html +43 -0
  38. data/rdoc/index.html +26 -0
  39. data/rdoc/rdoc-style.css +208 -0
  40. data/spec/post_spec.rb +76 -0
  41. data/spec/project_spec.rb +40 -0
  42. data/spec/spec_helper.rb +24 -0
  43. metadata +100 -33
@@ -0,0 +1,210 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>Class: RuGPost::Project</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="classHeader">
50
+ <table class="header-table">
51
+ <tr class="top-aligned-row">
52
+ <td><strong>Class</strong></td>
53
+ <td class="class-name-in-header">RuGPost::Project</td>
54
+ </tr>
55
+ <tr class="top-aligned-row">
56
+ <td><strong>In:</strong></td>
57
+ <td>
58
+ <a href="../../files/lib/rugpost/project_rb.html">
59
+ lib/rugpost/project.rb
60
+ </a>
61
+ <br />
62
+ </td>
63
+ </tr>
64
+
65
+ <tr class="top-aligned-row">
66
+ <td><strong>Parent:</strong></td>
67
+ <td>
68
+ Object
69
+ </td>
70
+ </tr>
71
+ </table>
72
+ </div>
73
+ <!-- banner header -->
74
+
75
+ <div id="bodyContent">
76
+
77
+
78
+
79
+ <div id="contextContent">
80
+
81
+
82
+
83
+ </div>
84
+
85
+ <div id="method-list">
86
+ <h3 class="section-bar">Methods</h3>
87
+
88
+ <div class="name-list">
89
+ <a href="#M000016">add_repo</a>&nbsp;&nbsp;
90
+ <a href="#M000017">config</a>&nbsp;&nbsp;
91
+ <a href="#M000015">init</a>&nbsp;&nbsp;
92
+ </div>
93
+ </div>
94
+
95
+ </div>
96
+
97
+
98
+ <!-- if includes -->
99
+
100
+ <div id="section">
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+ <!-- if method_list -->
110
+ <div id="methods">
111
+ <h3 class="section-bar">Public Class methods</h3>
112
+
113
+ <div id="method-M000016" class="method-detail">
114
+ <a name="M000016"></a>
115
+
116
+ <div class="method-heading">
117
+ <a href="#M000016" class="method-signature">
118
+ <span class="method-name">add_repo</span><span class="method-args">(args=[],ops={})</span>
119
+ </a>
120
+ </div>
121
+
122
+ <div class="method-description">
123
+ <p><a class="source-toggle" href="#"
124
+ onclick="toggleCode('M000016-source');return false;">[Source]</a></p>
125
+ <div class="method-source-code" id="M000016-source">
126
+ <pre>
127
+ <span class="ruby-comment cmt"># File lib/rugpost/project.rb, line 10</span>
128
+ <span class="ruby-keyword kw">def</span> <span class="ruby-constant">Project</span>.<span class="ruby-identifier">add_repo</span>(<span class="ruby-identifier">args</span>=[],<span class="ruby-identifier">ops</span>={})
129
+ <span class="ruby-identifier">raise</span> <span class="ruby-value str">&quot;Must supply repo name&quot;</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">size</span> <span class="ruby-operator">==</span> <span class="ruby-value">1</span>
130
+ <span class="ruby-identifier">raise</span> <span class="ruby-value str">&quot;Site repo already exists&quot;</span> <span class="ruby-keyword kw">if</span> <span class="ruby-constant">File</span>.<span class="ruby-identifier">exist?</span>(<span class="ruby-identifier">args</span>[<span class="ruby-value">0</span>])
131
+ <span class="ruby-comment cmt"># create repository structure</span>
132
+ <span class="ruby-identifier">puts</span> <span class="ruby-node">&quot;Adding new site repository: #{args[0]}...&quot;</span>
133
+ <span class="ruby-identifier">repo</span> = <span class="ruby-identifier">args</span>[<span class="ruby-value">0</span>]
134
+ <span class="ruby-constant">Dir</span>.<span class="ruby-identifier">mkdir</span>(<span class="ruby-identifier">repo</span>)
135
+ <span class="ruby-constant">Dir</span>.<span class="ruby-identifier">mkdir</span>(<span class="ruby-identifier">repo</span><span class="ruby-operator">/</span><span class="ruby-value str">'drafts'</span>)
136
+ <span class="ruby-constant">Dir</span>.<span class="ruby-identifier">mkdir</span>(<span class="ruby-identifier">repo</span><span class="ruby-operator">/</span><span class="ruby-value str">'published'</span>)
137
+ <span class="ruby-constant">Dir</span>.<span class="ruby-identifier">mkdir</span>(<span class="ruby-identifier">repo</span><span class="ruby-operator">/</span><span class="ruby-value str">'published/source'</span>)
138
+ <span class="ruby-constant">Dir</span>.<span class="ruby-identifier">mkdir</span>(<span class="ruby-identifier">repo</span><span class="ruby-operator">/</span><span class="ruby-value str">'published/output'</span>)
139
+ <span class="ruby-keyword kw">end</span>
140
+ </pre>
141
+ </div>
142
+ </div>
143
+ </div>
144
+
145
+ <div id="method-M000017" class="method-detail">
146
+ <a name="M000017"></a>
147
+
148
+ <div class="method-heading">
149
+ <a href="#M000017" class="method-signature">
150
+ <span class="method-name">config</span><span class="method-args">(args=[],ops={})</span>
151
+ </a>
152
+ </div>
153
+
154
+ <div class="method-description">
155
+ <p><a class="source-toggle" href="#"
156
+ onclick="toggleCode('M000017-source');return false;">[Source]</a></p>
157
+ <div class="method-source-code" id="M000017-source">
158
+ <pre>
159
+ <span class="ruby-comment cmt"># File lib/rugpost/project.rb, line 23</span>
160
+ <span class="ruby-keyword kw">def</span> <span class="ruby-constant">Project</span>.<span class="ruby-identifier">config</span>(<span class="ruby-identifier">args</span>=[],<span class="ruby-identifier">ops</span>={})
161
+ <span class="ruby-comment cmt"># load configuration as hash</span>
162
+ <span class="ruby-identifier">config</span> = <span class="ruby-constant">YAML</span>.<span class="ruby-identifier">load_file</span>( <span class="ruby-constant">CONFIG</span> )
163
+ <span class="ruby-comment cmt"># set key</span>
164
+ <span class="ruby-identifier">config</span>.<span class="ruby-identifier">merge!</span>(<span class="ruby-identifier">ops</span>)
165
+ <span class="ruby-comment cmt"># hash to config</span>
166
+ <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>( <span class="ruby-constant">CONFIG</span>,<span class="ruby-value str">'w'</span> ) {<span class="ruby-operator">|</span><span class="ruby-identifier">f</span><span class="ruby-operator">|</span> <span class="ruby-identifier">f</span>.<span class="ruby-identifier">write</span>( <span class="ruby-identifier">config</span>.<span class="ruby-identifier">to_yaml</span> )}
167
+ <span class="ruby-keyword kw">end</span>
168
+ </pre>
169
+ </div>
170
+ </div>
171
+ </div>
172
+
173
+ <div id="method-M000015" class="method-detail">
174
+ <a name="M000015"></a>
175
+
176
+ <div class="method-heading">
177
+ <a href="#M000015" class="method-signature">
178
+ <span class="method-name">init</span><span class="method-args">(args=[],ops={})</span>
179
+ </a>
180
+ </div>
181
+
182
+ <div class="method-description">
183
+ <p><a class="source-toggle" href="#"
184
+ onclick="toggleCode('M000015-source');return false;">[Source]</a></p>
185
+ <div class="method-source-code" id="M000015-source">
186
+ <pre>
187
+ <span class="ruby-comment cmt"># File lib/rugpost/project.rb, line 4</span>
188
+ <span class="ruby-keyword kw">def</span> <span class="ruby-constant">Project</span>.<span class="ruby-identifier">init</span>(<span class="ruby-identifier">args</span>=[],<span class="ruby-identifier">ops</span>={})
189
+ <span class="ruby-identifier">puts</span> <span class="ruby-value str">&quot;Initializing RuGPost project under current directory...&quot;</span>
190
+ <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>( <span class="ruby-constant">CONFIG</span>, <span class="ruby-value str">'w'</span> ) { <span class="ruby-operator">|</span><span class="ruby-identifier">f</span><span class="ruby-operator">|</span> <span class="ruby-identifier">f</span>.<span class="ruby-identifier">write</span>(<span class="ruby-value str">&quot;---\n:gmail: notset&quot;</span>) }
191
+ <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>( <span class="ruby-constant">TEMPLATE</span>, <span class="ruby-value str">'w'</span> ) {<span class="ruby-operator">|</span><span class="ruby-identifier">f</span><span class="ruby-operator">|</span> <span class="ruby-identifier">f</span>.<span class="ruby-identifier">write</span>(<span class="ruby-identifier">template_meta</span> <span class="ruby-operator">+</span> <span class="ruby-value str">&quot;---\n&quot;</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">template_body</span>)}
192
+ <span class="ruby-keyword kw">end</span>
193
+ </pre>
194
+ </div>
195
+ </div>
196
+ </div>
197
+
198
+
199
+ </div>
200
+
201
+
202
+ </div>
203
+
204
+
205
+ <div id="validator-badges">
206
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
207
+ </div>
208
+
209
+ </body>
210
+ </html>
@@ -0,0 +1,111 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>Class: RuGPost::Site</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="classHeader">
50
+ <table class="header-table">
51
+ <tr class="top-aligned-row">
52
+ <td><strong>Class</strong></td>
53
+ <td class="class-name-in-header">RuGPost::Site</td>
54
+ </tr>
55
+ <tr class="top-aligned-row">
56
+ <td><strong>In:</strong></td>
57
+ <td>
58
+ <a href="../../files/lib/rugpost/site_rb.html">
59
+ lib/rugpost/site.rb
60
+ </a>
61
+ <br />
62
+ </td>
63
+ </tr>
64
+
65
+ <tr class="top-aligned-row">
66
+ <td><strong>Parent:</strong></td>
67
+ <td>
68
+ Object
69
+ </td>
70
+ </tr>
71
+ </table>
72
+ </div>
73
+ <!-- banner header -->
74
+
75
+ <div id="bodyContent">
76
+
77
+
78
+
79
+ <div id="contextContent">
80
+
81
+
82
+
83
+ </div>
84
+
85
+
86
+ </div>
87
+
88
+
89
+ <!-- if includes -->
90
+
91
+ <div id="section">
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+ <!-- if method_list -->
101
+
102
+
103
+ </div>
104
+
105
+
106
+ <div id="validator-badges">
107
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
108
+ </div>
109
+
110
+ </body>
111
+ </html>
@@ -0,0 +1,196 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>Module: RuGPost::Utilis</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="classHeader">
50
+ <table class="header-table">
51
+ <tr class="top-aligned-row">
52
+ <td><strong>Module</strong></td>
53
+ <td class="class-name-in-header">RuGPost::Utilis</td>
54
+ </tr>
55
+ <tr class="top-aligned-row">
56
+ <td><strong>In:</strong></td>
57
+ <td>
58
+ <a href="../../files/lib/rugpost/utilis_rb.html">
59
+ lib/rugpost/utilis.rb
60
+ </a>
61
+ <br />
62
+ </td>
63
+ </tr>
64
+
65
+ </table>
66
+ </div>
67
+ <!-- banner header -->
68
+
69
+ <div id="bodyContent">
70
+
71
+
72
+
73
+ <div id="contextContent">
74
+
75
+
76
+
77
+ </div>
78
+
79
+ <div id="method-list">
80
+ <h3 class="section-bar">Methods</h3>
81
+
82
+ <div class="name-list">
83
+ <a href="#M000003">get_gmail</a>&nbsp;&nbsp;
84
+ <a href="#M000002">template_body</a>&nbsp;&nbsp;
85
+ <a href="#M000001">template_meta</a>&nbsp;&nbsp;
86
+ </div>
87
+ </div>
88
+
89
+ </div>
90
+
91
+
92
+ <!-- if includes -->
93
+
94
+ <div id="section">
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+ <!-- if method_list -->
104
+ <div id="methods">
105
+ <h3 class="section-bar">Public Instance methods</h3>
106
+
107
+ <div id="method-M000003" class="method-detail">
108
+ <a name="M000003"></a>
109
+
110
+ <div class="method-heading">
111
+ <a href="#M000003" class="method-signature">
112
+ <span class="method-name">get_gmail</span><span class="method-args">()</span>
113
+ </a>
114
+ </div>
115
+
116
+ <div class="method-description">
117
+ <p><a class="source-toggle" href="#"
118
+ onclick="toggleCode('M000003-source');return false;">[Source]</a></p>
119
+ <div class="method-source-code" id="M000003-source">
120
+ <pre>
121
+ <span class="ruby-comment cmt"># File lib/rugpost/utilis.rb, line 17</span>
122
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">get_gmail</span>
123
+ <span class="ruby-identifier">puts</span> <span class="ruby-value str">&quot;Please insert your gmail user name:&quot;</span>
124
+ <span class="ruby-constant">STDOUT</span>.<span class="ruby-identifier">flush</span>
125
+ <span class="ruby-identifier">gmail</span>=<span class="ruby-identifier">gets</span>.<span class="ruby-identifier">chomp</span>
126
+ <span class="ruby-identifier">puts</span> <span class="ruby-identifier">gmail</span>
127
+ <span class="ruby-keyword kw">return</span> <span class="ruby-identifier">gmail</span>
128
+ <span class="ruby-keyword kw">end</span>
129
+ </pre>
130
+ </div>
131
+ </div>
132
+ </div>
133
+
134
+ <div id="method-M000002" class="method-detail">
135
+ <a name="M000002"></a>
136
+
137
+ <div class="method-heading">
138
+ <a href="#M000002" class="method-signature">
139
+ <span class="method-name">template_body</span><span class="method-args">()</span>
140
+ </a>
141
+ </div>
142
+
143
+ <div class="method-description">
144
+ <p><a class="source-toggle" href="#"
145
+ onclick="toggleCode('M000002-source');return false;">[Source]</a></p>
146
+ <div class="method-source-code" id="M000002-source">
147
+ <pre>
148
+ <span class="ruby-comment cmt"># File lib/rugpost/utilis.rb, line 13</span>
149
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">template_body</span>
150
+ <span class="ruby-node">&quot;Hello from new *RuGPost* (#{VERSION}) user!&quot;</span>
151
+ <span class="ruby-keyword kw">end</span>
152
+ </pre>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <div id="method-M000001" class="method-detail">
158
+ <a name="M000001"></a>
159
+
160
+ <div class="method-heading">
161
+ <a href="#M000001" class="method-signature">
162
+ <span class="method-name">template_meta</span><span class="method-args">()</span>
163
+ </a>
164
+ </div>
165
+
166
+ <div class="method-description">
167
+ <p><a class="source-toggle" href="#"
168
+ onclick="toggleCode('M000001-source');return false;">[Source]</a></p>
169
+ <div class="method-source-code" id="M000001-source">
170
+ <pre>
171
+ <span class="ruby-comment cmt"># File lib/rugpost/utilis.rb, line 5</span>
172
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">template_meta</span>
173
+ <span class="ruby-identifier">metahash</span> = {
174
+ <span class="ruby-identifier">:title</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-value str">&quot;Hello World&quot;</span>,
175
+ <span class="ruby-identifier">:tags</span> =<span class="ruby-operator">&gt;</span> [<span class="ruby-value str">&quot;Hello World&quot;</span>, <span class="ruby-constant">VERSION</span>]
176
+ }
177
+ <span class="ruby-identifier">metahash</span>.<span class="ruby-identifier">to_yaml</span>
178
+ <span class="ruby-keyword kw">end</span>
179
+ </pre>
180
+ </div>
181
+ </div>
182
+ </div>
183
+
184
+
185
+ </div>
186
+
187
+
188
+ </div>
189
+
190
+
191
+ <div id="validator-badges">
192
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
193
+ </div>
194
+
195
+ </body>
196
+ </html>