picturepath 0.5.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.
@@ -0,0 +1,137 @@
1
+ body {
2
+ background-color: #fff;
3
+ font-family: "Georgia", sans-serif;
4
+ font-size: 16px;
5
+ line-height: 1.6em;
6
+ padding: 1.6em 0 0 0;
7
+ color: #333;
8
+ }
9
+ h1, h2, h3, h4, h5, h6 {
10
+ color: #444;
11
+ }
12
+ h1 {
13
+ font-family: sans-serif;
14
+ font-weight: normal;
15
+ font-size: 4em;
16
+ line-height: 0.8em;
17
+ letter-spacing: -0.1ex;
18
+ margin: 5px;
19
+ }
20
+ li {
21
+ padding: 0;
22
+ margin: 0;
23
+ list-style-type: square;
24
+ }
25
+ a {
26
+ color: #345;
27
+ font-weight: normal;
28
+ text-decoration: underline;
29
+ }
30
+ blockquote {
31
+ font-size: 90%;
32
+ font-style: italic;
33
+ border-left: 1px solid #111;
34
+ padding-left: 1em;
35
+ }
36
+ .caps {
37
+ font-size: 80%;
38
+ }
39
+
40
+ #main {
41
+ width: 45em;
42
+ padding: 0;
43
+ margin: 0 auto;
44
+ }
45
+ .coda {
46
+ text-align: right;
47
+ color: #77f;
48
+ font-size: smaller;
49
+ }
50
+
51
+ table {
52
+ font-size: 90%;
53
+ line-height: 1.4em;
54
+ color: #ff8;
55
+ background-color: #111;
56
+ padding: 2px 10px 2px 10px;
57
+ border-style: dashed;
58
+ }
59
+
60
+ th {
61
+ color: #fff;
62
+ }
63
+
64
+ td {
65
+ padding: 2px 10px 2px 10px;
66
+ }
67
+
68
+ .success {
69
+ color: #0CC52B;
70
+ }
71
+
72
+ .failed {
73
+ color: #E90A1B;
74
+ }
75
+
76
+ .unknown {
77
+ color: #995000;
78
+ }
79
+ pre, code {
80
+ font-family: monospace;
81
+ font-size: 90%;
82
+ line-height: 1.4em;
83
+ color: #ff8;
84
+ background-color: #111;
85
+ padding: 2px 10px 2px 10px;
86
+ }
87
+ .comment { color: #aaa; font-style: italic; }
88
+ .keyword { color: #eff; font-weight: bold; }
89
+ .punct { color: #eee; font-weight: bold; }
90
+ .symbol { color: #0bb; }
91
+ .string { color: #6b4; }
92
+ .ident { color: #ff8; }
93
+ .constant { color: #66f; }
94
+ .regex { color: #ec6; }
95
+ .number { color: #F99; }
96
+ .expr { color: #227; }
97
+
98
+ #version {
99
+ float: right;
100
+ text-align: right;
101
+ font-family: sans-serif;
102
+ font-weight: normal;
103
+ background-color: #999;
104
+ color: #141331;
105
+ padding: 15px 20px 10px 20px;
106
+ margin: 0 auto;
107
+ margin-top: 15px;
108
+ border: 3px solid #141331;
109
+ }
110
+
111
+ #version .numbers {
112
+ display: block;
113
+ font-size: 1.8em;
114
+ line-height: 0.8em;
115
+ letter-spacing: -0.1ex;
116
+ margin-bottom: 15px;
117
+ }
118
+
119
+ #version p {
120
+ text-decoration: none;
121
+ color: #141331;
122
+ background-color: #999;
123
+ margin: 0;
124
+ padding: 0;
125
+ }
126
+
127
+ #version a {
128
+ text-decoration: none;
129
+ color: #141331;
130
+ background-color: #999;
131
+ }
132
+
133
+ .clickable {
134
+ cursor: pointer;
135
+ cursor: hand;
136
+ }
137
+
@@ -0,0 +1,42 @@
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>Download here</p>
36
+ <a href="<%= download %>" class="numbers"><%= version %></a>
37
+ </div>
38
+ <%= body %>
39
+ </div>
40
+
41
+ </body>
42
+ </html>
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.2
3
+ specification_version: 1
4
+ name: picturepath
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.5.0
7
+ date: 2007-06-27 00:00:00 -07:00
8
+ summary: Ruby wrapper for submitting virtual tours to Realtor.com using the PicturePath AUI.
9
+ require_paths:
10
+ - lib
11
+ email: dean@esomnie.com, ben@esomnie.com
12
+ homepage: http://picturepath.rubyforge.org
13
+ rubyforge_project: picturepath
14
+ description: Ruby wrapper for submitting virtual tours to Realtor.com using the PicturePath AUI.
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
+ post_install_message:
29
+ authors:
30
+ - Dean Mao, Ben Curren
31
+ files:
32
+ - History.txt
33
+ - lib/picturepath
34
+ - lib/picturepath/account.rb
35
+ - lib/picturepath/client.rb
36
+ - lib/picturepath/request.rb
37
+ - lib/picturepath/response.rb
38
+ - lib/picturepath/version.rb
39
+ - lib/picturepath.rb
40
+ - License.txt
41
+ - Manifest.txt
42
+ - Rakefile
43
+ - README.txt
44
+ - scripts/txt2html
45
+ - setup.rb
46
+ - spec/account_spec.rb
47
+ - spec/expected_responses
48
+ - spec/expected_responses/check_failed.xml
49
+ - spec/expected_responses/check_success.xml
50
+ - spec/expected_responses/check_success_partial.xml
51
+ - spec/expected_responses/failed.xml
52
+ - spec/expected_responses/success.xml
53
+ - spec/expected_responses/success_partial.xml
54
+ - spec/picturepath_spec.rb
55
+ - spec/request_spec.rb
56
+ - spec/response_spec.rb
57
+ - spec/spec.opts
58
+ - spec/spec_helper.rb
59
+ - website/index.html
60
+ - website/index.txt
61
+ - website/javascripts
62
+ - website/javascripts/rounded_corners_lite.inc.js
63
+ - website/stylesheets
64
+ - website/stylesheets/screen.css
65
+ - website/template.rhtml
66
+ test_files: []
67
+
68
+ rdoc_options:
69
+ - --main
70
+ - README.txt
71
+ extra_rdoc_files:
72
+ - History.txt
73
+ - License.txt
74
+ - Manifest.txt
75
+ - README.txt
76
+ - website/index.txt
77
+ executables: []
78
+
79
+ extensions: []
80
+
81
+ requirements: []
82
+
83
+ dependencies:
84
+ - !ruby/object:Gem::Dependency
85
+ name: builder
86
+ version_requirement:
87
+ version_requirements: !ruby/object:Gem::Version::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: 2.1.0
92
+ version: