highlogger 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,48 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+ <title>
8
+ <%= title %>
9
+ </title>
10
+ <script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
11
+ <style>
12
+
13
+ </style>
14
+ <script type="text/javascript">
15
+ window.onload = function() {
16
+ settings = {
17
+ tl: { radius: 10 },
18
+ tr: { radius: 10 },
19
+ bl: { radius: 10 },
20
+ br: { radius: 10 },
21
+ antiAlias: true,
22
+ autoPad: true,
23
+ validTags: ["div"]
24
+ }
25
+ var versionBox = new curvyCorners(settings, document.getElementById("version"));
26
+ versionBox.applyCornersToAll();
27
+ }
28
+ </script>
29
+ </head>
30
+ <body>
31
+ <div id="main">
32
+
33
+ <h1><%= title %></h1>
34
+ <div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
35
+ <p>Get Version</p>
36
+ <a href="<%= download %>" class="numbers"><%= version %></a>
37
+ </div>
38
+ <%= body %>
39
+ <p class="coda">
40
+ <a href="FIXME email">FIXME full name</a>, <%= modified.pretty %><br>
41
+ Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
42
+ </p>
43
+ </div>
44
+
45
+ <!-- insert site tracking codes here, like Google Urchin -->
46
+
47
+ </body>
48
+ </html>
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.11
3
+ specification_version: 1
4
+ name: highlogger
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.0.1
7
+ date: 2007-10-21 00:00:00 -07:00
8
+ summary: A heirarchical component-based logging system
9
+ require_paths:
10
+ - lib
11
+ email: angelbob@nospam.users.sourceforge.net
12
+ homepage: http://ab-ext.rubyforge.org
13
+ rubyforge_project: ab-ext
14
+ description: A heirarchical component-based logging system
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ authors:
29
+ - Noah Gibbs
30
+ files:
31
+ - History.txt
32
+ - License.txt
33
+ - Manifest.txt
34
+ - README.txt
35
+ - Rakefile
36
+ - config/hoe.rb
37
+ - config/requirements.rb
38
+ - lib/highlogger.rb
39
+ - lib/highlogger/version.rb
40
+ - log/debug.log
41
+ - script/destroy
42
+ - script/generate
43
+ - script/txt2html
44
+ - setup.rb
45
+ - tasks/deployment.rake
46
+ - tasks/environment.rake
47
+ - tasks/website.rake
48
+ - test/test_helper.rb
49
+ - test/test_highlogger.rb
50
+ - website/index.html
51
+ - website/index.txt
52
+ - website/javascripts/rounded_corners_lite.inc.js
53
+ - website/stylesheets/screen.css
54
+ - website/template.rhtml
55
+ test_files:
56
+ - test/test_helper.rb
57
+ - test/test_highlogger.rb
58
+ rdoc_options:
59
+ - --main
60
+ - README.txt
61
+ extra_rdoc_files:
62
+ - History.txt
63
+ - License.txt
64
+ - Manifest.txt
65
+ - README.txt
66
+ - website/index.txt
67
+ executables: []
68
+
69
+ extensions: []
70
+
71
+ requirements: []
72
+
73
+ dependencies: []
74
+