seep 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.rspec +1 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +63 -0
- data/LICENSE.txt +20 -0
- data/README +1 -0
- data/Rakefile +50 -0
- data/doc/small.jpg +0 -0
- data/doc/test_a.html +1785 -0
- data/doc/test_b.html +730 -0
- data/lib/seep.rb +19 -0
- data/lib/seep/doc.rb +44 -0
- data/lib/seep/fetcher.rb +107 -0
- data/lib/seep/image.rb +18 -0
- data/seep.gemspec +85 -0
- data/spec/a_spec.rb +7 -0
- data/spec/doc_spec.rb +42 -0
- data/spec/fetcher_spec.rb +66 -0
- data/spec/image_spec.rb +35 -0
- data/spec/spec_helper.rb +13 -0
- data/spider.rb +226 -0
- data/spidr_test.rb +11 -0
- metadata +172 -0
data/.document
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/Gemfile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
# Add dependencies required to use your gem here.
|
3
|
+
# Example:
|
4
|
+
# gem "activesupport", ">= 2.3.5"
|
5
|
+
gem "redis-native_hash", :git => "git@github.com:carlzulauf/redis-native_hash"
|
6
|
+
gem "gd2-ffij", :git => "git@github.com:carlzulauf/gd2-ffij"
|
7
|
+
#gem "gd2-ffij", :path => "../gd2-ffij"
|
8
|
+
gem "curb"
|
9
|
+
gem "nokogiri"
|
10
|
+
|
11
|
+
group :development do
|
12
|
+
gem 'ruby-debug19', require: 'ruby-debug'
|
13
|
+
gem "rspec", "~> 2.3.0"
|
14
|
+
gem "bundler", "~> 1.0.0"
|
15
|
+
gem "jeweler", "~> 1.6.4"
|
16
|
+
gem "rcov", ">= 0"
|
17
|
+
end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
GIT
|
2
|
+
remote: git@github.com:carlzulauf/gd2-ffij
|
3
|
+
revision: b45d5e6722e1142e935baa74b63990a70ab36bcb
|
4
|
+
specs:
|
5
|
+
gd2-ffij (0.0.3)
|
6
|
+
|
7
|
+
GIT
|
8
|
+
remote: git@github.com:carlzulauf/redis-native_hash
|
9
|
+
revision: 9c220949089c4399985b5235fad7fb53484abdc4
|
10
|
+
specs:
|
11
|
+
redis-native_hash (0.2.1)
|
12
|
+
redis (>= 2.0.0)
|
13
|
+
|
14
|
+
GEM
|
15
|
+
remote: http://rubygems.org/
|
16
|
+
specs:
|
17
|
+
archive-tar-minitar (0.5.2)
|
18
|
+
columnize (0.3.5)
|
19
|
+
curb (0.7.16)
|
20
|
+
diff-lcs (1.1.3)
|
21
|
+
git (1.2.5)
|
22
|
+
jeweler (1.6.4)
|
23
|
+
bundler (~> 1.0)
|
24
|
+
git (>= 1.2.5)
|
25
|
+
rake
|
26
|
+
linecache19 (0.5.12)
|
27
|
+
ruby_core_source (>= 0.1.4)
|
28
|
+
nokogiri (1.5.0)
|
29
|
+
rake (0.9.2)
|
30
|
+
rcov (0.9.9)
|
31
|
+
redis (2.2.2)
|
32
|
+
rspec (2.3.0)
|
33
|
+
rspec-core (~> 2.3.0)
|
34
|
+
rspec-expectations (~> 2.3.0)
|
35
|
+
rspec-mocks (~> 2.3.0)
|
36
|
+
rspec-core (2.3.1)
|
37
|
+
rspec-expectations (2.3.0)
|
38
|
+
diff-lcs (~> 1.1.2)
|
39
|
+
rspec-mocks (2.3.0)
|
40
|
+
ruby-debug-base19 (0.11.25)
|
41
|
+
columnize (>= 0.3.1)
|
42
|
+
linecache19 (>= 0.5.11)
|
43
|
+
ruby_core_source (>= 0.1.4)
|
44
|
+
ruby-debug19 (0.11.6)
|
45
|
+
columnize (>= 0.3.1)
|
46
|
+
linecache19 (>= 0.5.11)
|
47
|
+
ruby-debug-base19 (>= 0.11.19)
|
48
|
+
ruby_core_source (0.1.5)
|
49
|
+
archive-tar-minitar (>= 0.5.2)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
ruby
|
53
|
+
|
54
|
+
DEPENDENCIES
|
55
|
+
bundler (~> 1.0.0)
|
56
|
+
curb
|
57
|
+
gd2-ffij!
|
58
|
+
jeweler (~> 1.6.4)
|
59
|
+
nokogiri
|
60
|
+
rcov
|
61
|
+
redis-native_hash!
|
62
|
+
rspec (~> 2.3.0)
|
63
|
+
ruby-debug19
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011 Carl Zulauf
|
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/README
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
This will be a library used to spider content, download things, and organize them.
|
data/Rakefile
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'bundler'
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
require 'rake'
|
13
|
+
|
14
|
+
require 'jeweler'
|
15
|
+
Jeweler::Tasks.new do |gem|
|
16
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
17
|
+
gem.name = "seep"
|
18
|
+
gem.homepage = "http://github.com/carlzulauf/seep"
|
19
|
+
gem.license = "MIT"
|
20
|
+
gem.summary = %Q{web spidering/downloading tools}
|
21
|
+
gem.description = %Q{Collection of web spidering and downloading tools using redis, curl, and gd.}
|
22
|
+
gem.email = "carl@linkleaf.com"
|
23
|
+
gem.authors = ["Carl Zulauf"]
|
24
|
+
gem.version = '0.0.2'
|
25
|
+
# dependencies defined in Gemfile
|
26
|
+
end
|
27
|
+
Jeweler::RubygemsDotOrgTasks.new
|
28
|
+
|
29
|
+
require 'rspec/core'
|
30
|
+
require 'rspec/core/rake_task'
|
31
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
32
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
33
|
+
end
|
34
|
+
|
35
|
+
RSpec::Core::RakeTask.new(:rcov) do |spec|
|
36
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
37
|
+
spec.rcov = true
|
38
|
+
end
|
39
|
+
|
40
|
+
task :default => :spec
|
41
|
+
|
42
|
+
require 'rake/rdoctask'
|
43
|
+
Rake::RDocTask.new do |rdoc|
|
44
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : "0.0.2"
|
45
|
+
|
46
|
+
rdoc.rdoc_dir = 'rdoc'
|
47
|
+
rdoc.title = "seep #{version}"
|
48
|
+
rdoc.rdoc_files.include('README*')
|
49
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
50
|
+
end
|
data/doc/small.jpg
ADDED
Binary file
|
data/doc/test_a.html
ADDED
@@ -0,0 +1,1785 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<title>LinkLeaf | Leafs | home</title>
|
6
|
+
|
7
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
8
|
+
<link rel="stylesheet" href="linkleaf.css" type="text/css" />
|
9
|
+
|
10
|
+
<script src="js/prototype.js" type="text/javascript"></script>
|
11
|
+
<script src="js/scriptaculous.js" type="text/javascript"></script>
|
12
|
+
<script src="js/linkleaf2.js" type="text/javascript"></script>
|
13
|
+
<script language="JavaScript" type="text/javascript">
|
14
|
+
|
15
|
+
// <![CDATA[
|
16
|
+
|
17
|
+
// put code here
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
// ]]>
|
22
|
+
|
23
|
+
</script>
|
24
|
+
|
25
|
+
<style type="text/css">
|
26
|
+
/* saving this so that i can come at you real easy */
|
27
|
+
|
28
|
+
</style>
|
29
|
+
|
30
|
+
</head>
|
31
|
+
|
32
|
+
<body id="body">
|
33
|
+
|
34
|
+
<div id="banner">
|
35
|
+
<div>
|
36
|
+
|
37
|
+
<div id="mainbannerlinks">
|
38
|
+
<div>
|
39
|
+
|
40
|
+
<span id="titlebannerlink"><a href="index.php">LinkLeaf</a></span>
|
41
|
+
|
42
|
+
<span id="usernametitle">
|
43
|
+
examancer:
|
44
|
+
</span>
|
45
|
+
|
46
|
+
<span id="usernamelinks">
|
47
|
+
<a href="prefs.php?from=/">preferences</a>
|
48
|
+
<a href="index.php?recent">recent links</a>
|
49
|
+
<a href="logout.php">log out</a>
|
50
|
+
</span>
|
51
|
+
|
52
|
+
</div>
|
53
|
+
|
54
|
+
</div>
|
55
|
+
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
|
59
|
+
<div id="mainnavbar">
|
60
|
+
<div>
|
61
|
+
|
62
|
+
<span class="navbartext">
|
63
|
+
View LinkLeaf by:
|
64
|
+
</span>
|
65
|
+
|
66
|
+
<span class="activetab">
|
67
|
+
<a href="index.php?leaf">Leafs</a>
|
68
|
+
</span>
|
69
|
+
|
70
|
+
<span class="inactivetab">
|
71
|
+
<a href="index.php?tag">Tags</a>
|
72
|
+
</span>
|
73
|
+
|
74
|
+
<form method="GET" action="index.php" style="display: inline; margin: 0; padding: 0;">
|
75
|
+
|
76
|
+
<span id="searchbar">
|
77
|
+
<input type="text" size="30" name="tag" value=""/>
|
78
|
+
<input type="submit" value="Search" />
|
79
|
+
</span>
|
80
|
+
</form>
|
81
|
+
|
82
|
+
|
83
|
+
</div>
|
84
|
+
</div>
|
85
|
+
|
86
|
+
<div id="sidenav">
|
87
|
+
|
88
|
+
<div id="leafnav">
|
89
|
+
|
90
|
+
<div id="parentleafnav">
|
91
|
+
<div class="sidenavlabel">
|
92
|
+
Parent Leaf:
|
93
|
+
</div>
|
94
|
+
<a href="index.php?leaf=0"><i>root</i></a>
|
95
|
+
</div>
|
96
|
+
|
97
|
+
<div id="currentleafnav">
|
98
|
+
<div class="sidenavlabel">
|
99
|
+
Current Leaf:
|
100
|
+
</div>
|
101
|
+
<a href="index.php?leaf=1">home</a>
|
102
|
+
</div>
|
103
|
+
|
104
|
+
<div id="siblingnavtitle">
|
105
|
+
Siblings
|
106
|
+
</div>
|
107
|
+
|
108
|
+
<div id="siblingnav">
|
109
|
+
|
110
|
+
<div id="sibling225" class="siblinglink">
|
111
|
+
<a href="index.php?leaf=225">activities</a>
|
112
|
+
</div>
|
113
|
+
|
114
|
+
<div id="sibling212" class="siblinglink">
|
115
|
+
<a href="index.php?leaf=212">articles</a>
|
116
|
+
</div>
|
117
|
+
|
118
|
+
<div id="sibling261" class="siblinglink">
|
119
|
+
<a href="index.php?leaf=261">atheism</a>
|
120
|
+
</div>
|
121
|
+
|
122
|
+
<div id="sibling205" class="siblinglink">
|
123
|
+
<a href="index.php?leaf=205">business</a>
|
124
|
+
</div>
|
125
|
+
|
126
|
+
<div id="sibling282" class="siblinglink">
|
127
|
+
<a href="index.php?leaf=282">design</a>
|
128
|
+
</div>
|
129
|
+
|
130
|
+
<div id="sibling9" class="siblinglink">
|
131
|
+
<a href="index.php?leaf=9">development</a>
|
132
|
+
</div>
|
133
|
+
|
134
|
+
<div id="sibling27" class="siblinglink">
|
135
|
+
<a href="index.php?leaf=27">finance/banking</a>
|
136
|
+
</div>
|
137
|
+
|
138
|
+
<div id="sibling28" class="siblinglink">
|
139
|
+
<a href="index.php?leaf=28">gaming</a>
|
140
|
+
</div>
|
141
|
+
|
142
|
+
<div id="sibling252" class="siblinglink">
|
143
|
+
<a href="index.php?leaf=252">Government</a>
|
144
|
+
</div>
|
145
|
+
|
146
|
+
<div id="sibling29" class="siblinglink">
|
147
|
+
<a href="index.php?leaf=29">hardware</a>
|
148
|
+
</div>
|
149
|
+
|
150
|
+
<div id="sibling208" class="siblinglink">
|
151
|
+
<a href="index.php?leaf=208">hosting</a>
|
152
|
+
</div>
|
153
|
+
|
154
|
+
<div id="sibling30" class="siblinglink">
|
155
|
+
<a href="index.php?leaf=30">humor</a>
|
156
|
+
</div>
|
157
|
+
|
158
|
+
<div id="sibling32" class="siblinglink">
|
159
|
+
<a href="index.php?leaf=32">local</a>
|
160
|
+
</div>
|
161
|
+
|
162
|
+
<div id="sibling239" class="siblinglink">
|
163
|
+
<a href="index.php?leaf=239">motorcycles</a>
|
164
|
+
</div>
|
165
|
+
|
166
|
+
<div id="sibling10" class="siblinglink">
|
167
|
+
<a href="index.php?leaf=10">movies/tv</a>
|
168
|
+
</div>
|
169
|
+
|
170
|
+
<div id="sibling204" class="siblinglink">
|
171
|
+
<a href="index.php?leaf=204">music</a>
|
172
|
+
</div>
|
173
|
+
|
174
|
+
<div id="sibling2" class="siblinglink">
|
175
|
+
<a href="index.php?leaf=2">News</a>
|
176
|
+
</div>
|
177
|
+
|
178
|
+
<div id="sibling280" class="siblinglink">
|
179
|
+
<a href="index.php?leaf=280">personal</a>
|
180
|
+
</div>
|
181
|
+
|
182
|
+
<div id="sibling36" class="siblinglink">
|
183
|
+
<a href="index.php?leaf=36">Photography</a>
|
184
|
+
</div>
|
185
|
+
|
186
|
+
<div id="sibling242" class="siblinglink">
|
187
|
+
<a href="index.php?leaf=242">podcasts</a>
|
188
|
+
</div>
|
189
|
+
|
190
|
+
<div id="sibling211" class="siblinglink">
|
191
|
+
<a href="index.php?leaf=211">reference</a>
|
192
|
+
</div>
|
193
|
+
|
194
|
+
<div id="sibling39" class="siblinglink">
|
195
|
+
<a href="index.php?leaf=39">shopping</a>
|
196
|
+
</div>
|
197
|
+
|
198
|
+
<div id="sibling206" class="siblinglink">
|
199
|
+
<a href="index.php?leaf=206">social bookmarking</a>
|
200
|
+
</div>
|
201
|
+
|
202
|
+
<div id="sibling41" class="siblinglink">
|
203
|
+
<a href="index.php?leaf=41">software</a>
|
204
|
+
</div>
|
205
|
+
|
206
|
+
<div id="sibling43" class="siblinglink">
|
207
|
+
<a href="index.php?leaf=43">torrents</a>
|
208
|
+
</div>
|
209
|
+
|
210
|
+
<div id="sibling209" class="siblinglink">
|
211
|
+
<a href="index.php?leaf=209">video</a>
|
212
|
+
</div>
|
213
|
+
|
214
|
+
<div id="sibling44" class="siblinglink">
|
215
|
+
<a href="index.php?leaf=44">web games</a>
|
216
|
+
</div>
|
217
|
+
|
218
|
+
<div id="newsiblings">
|
219
|
+
|
220
|
+
</div>
|
221
|
+
|
222
|
+
</div>
|
223
|
+
|
224
|
+
<div>
|
225
|
+
<a href="javascript:toggleFamilyTree();"><span id="familytreelink">Family Tree</span></a>
|
226
|
+
</div>
|
227
|
+
<div id="familytreelist">
|
228
|
+
<!-- dynamic -->
|
229
|
+
</div>
|
230
|
+
|
231
|
+
<div id="populartagtitle">
|
232
|
+
Popular Tags
|
233
|
+
</div>
|
234
|
+
<div id="populartaglist">
|
235
|
+
|
236
|
+
|
237
|
+
<div class="populartaglistitem">
|
238
|
+
<span class="taglink"><a href="index.php?tag=news">news</a></span> <span class="taglinkcount">[31]</span>
|
239
|
+
</div>
|
240
|
+
|
241
|
+
<div class="populartaglistitem">
|
242
|
+
<span class="taglink"><a href="index.php?tag=humor">humor</a></span> <span class="taglinkcount">[23]</span>
|
243
|
+
</div>
|
244
|
+
|
245
|
+
<div class="populartaglistitem">
|
246
|
+
<span class="taglink"><a href="index.php?tag=technews">technews</a></span> <span class="taglinkcount">[20]</span>
|
247
|
+
</div>
|
248
|
+
|
249
|
+
<div class="populartaglistitem">
|
250
|
+
<span class="taglink"><a href="index.php?tag=funny">funny</a></span> <span class="taglinkcount">[17]</span>
|
251
|
+
</div>
|
252
|
+
|
253
|
+
<div class="populartaglistitem">
|
254
|
+
<span class="taglink"><a href="index.php?tag=programming">programming</a></span> <span class="taglinkcount">[16]</span>
|
255
|
+
</div>
|
256
|
+
|
257
|
+
<div class="populartaglistitem">
|
258
|
+
<span class="taglink"><a href="index.php?tag=gaming">gaming</a></span> <span class="taglinkcount">[15]</span>
|
259
|
+
</div>
|
260
|
+
|
261
|
+
<div class="populartaglistitem">
|
262
|
+
<span class="taglink"><a href="index.php?tag=reference">reference</a></span> <span class="taglinkcount">[15]</span>
|
263
|
+
</div>
|
264
|
+
|
265
|
+
<div class="populartaglistitem">
|
266
|
+
<span class="taglink"><a href="index.php?tag=hardware">hardware</a></span> <span class="taglinkcount">[12]</span>
|
267
|
+
</div>
|
268
|
+
|
269
|
+
<div class="populartaglistitem">
|
270
|
+
<span class="taglink"><a href="index.php?tag=hosting">hosting</a></span> <span class="taglinkcount">[12]</span>
|
271
|
+
</div>
|
272
|
+
|
273
|
+
<div class="populartaglistitem">
|
274
|
+
<span class="taglink"><a href="index.php?tag=php">php</a></span> <span class="taglinkcount">[12]</span>
|
275
|
+
</div>
|
276
|
+
|
277
|
+
<div class="populartaglistitem">
|
278
|
+
<span class="taglink"><a href="index.php?tag=SavedArticles">SavedArticles</a></span> <span class="taglinkcount">[12]</span>
|
279
|
+
</div>
|
280
|
+
|
281
|
+
<div class="populartaglistitem">
|
282
|
+
<span class="taglink"><a href="index.php?tag=computers">computers</a></span> <span class="taglinkcount">[11]</span>
|
283
|
+
</div>
|
284
|
+
|
285
|
+
<div class="populartaglistitem">
|
286
|
+
<span class="taglink"><a href="index.php?tag=linux">linux</a></span> <span class="taglinkcount">[11]</span>
|
287
|
+
</div>
|
288
|
+
|
289
|
+
<div class="populartaglistitem">
|
290
|
+
<span class="taglink"><a href="index.php?tag=local">local</a></span> <span class="taglinkcount">[11]</span>
|
291
|
+
</div>
|
292
|
+
|
293
|
+
<div class="populartaglistitem">
|
294
|
+
<span class="taglink"><a href="index.php?tag=webgames">webgames</a></span> <span class="taglinkcount">[11]</span>
|
295
|
+
</div>
|
296
|
+
|
297
|
+
<div class="populartaglistitem">
|
298
|
+
<span class="taglink"><a href="index.php?tag=games">games</a></span> <span class="taglinkcount">[10]</span>
|
299
|
+
</div>
|
300
|
+
|
301
|
+
<div class="populartaglistitem">
|
302
|
+
<span class="taglink"><a href="index.php?tag=ubuntu">ubuntu</a></span> <span class="taglinkcount">[10]</span>
|
303
|
+
</div>
|
304
|
+
|
305
|
+
<div class="populartaglistitem">
|
306
|
+
<span class="taglink"><a href="index.php?tag=video">video</a></span> <span class="taglinkcount">[10]</span>
|
307
|
+
</div>
|
308
|
+
|
309
|
+
<div class="populartaglistitem">
|
310
|
+
<span class="taglink"><a href="index.php?tag=Web2.0">Web2.0</a></span> <span class="taglinkcount">[10]</span>
|
311
|
+
</div>
|
312
|
+
|
313
|
+
<div class="populartaglistitem">
|
314
|
+
<span class="taglink"><a href="index.php?tag=photography">photography</a></span> <span class="taglinkcount">[9]</span>
|
315
|
+
</div>
|
316
|
+
|
317
|
+
<div class="populartaglistitem">
|
318
|
+
<span class="taglink"><a href="index.php?tag=webgame">webgame</a></span> <span class="taglinkcount">[9]</span>
|
319
|
+
</div>
|
320
|
+
|
321
|
+
<div class="populartaglistitem">
|
322
|
+
<span class="taglink"><a href="index.php?tag=music">music</a></span> <span class="taglinkcount">[8]</span>
|
323
|
+
</div>
|
324
|
+
|
325
|
+
<div class="populartaglistitem">
|
326
|
+
<span class="taglink"><a href="index.php?tag=finance">finance</a></span> <span class="taglinkcount">[7]</span>
|
327
|
+
</div>
|
328
|
+
|
329
|
+
<div class="populartaglistitem">
|
330
|
+
<span class="taglink"><a href="index.php?tag=game">game</a></span> <span class="taglinkcount">[7]</span>
|
331
|
+
</div>
|
332
|
+
|
333
|
+
<div class="populartaglistitem">
|
334
|
+
<span class="taglink"><a href="index.php?tag=mysql">mysql</a></span> <span class="taglinkcount">[7]</span>
|
335
|
+
</div>
|
336
|
+
|
337
|
+
</div>
|
338
|
+
|
339
|
+
</div>
|
340
|
+
|
341
|
+
</div>
|
342
|
+
|
343
|
+
<div id="breadcrumbs">
|
344
|
+
<span id="breadcrumblabel">
|
345
|
+
You are here:
|
346
|
+
</span>
|
347
|
+
|
348
|
+
<span id="breadcrumblinks">
|
349
|
+
<a href="index.php?leaf=0">Leafs</a>
|
350
|
+
|
351
|
+
-> <a href="index.php?leaf=1">home</a>
|
352
|
+
|
353
|
+
</span>
|
354
|
+
|
355
|
+
|
356
|
+
</div>
|
357
|
+
|
358
|
+
<div id="leafmain">
|
359
|
+
|
360
|
+
<div id="currentleaf">
|
361
|
+
<i style="font-size: 80%;">Current Leaf:</i>
|
362
|
+
<div id="leaf1" class="aleaf">
|
363
|
+
|
364
|
+
<div>
|
365
|
+
<span class="leafname">
|
366
|
+
<a href="index.php?leaf=1">home</a>
|
367
|
+
</span>
|
368
|
+
<span class="leaflinks">
|
369
|
+
<a href="javascript:toggleLeafAction(1);">action</a>
|
370
|
+
<span id="leaf1expand">
|
371
|
+
|
372
|
+
</span>
|
373
|
+
</span>
|
374
|
+
<span id="leaf1message" class="leafmessage">
|
375
|
+
</span>
|
376
|
+
|
377
|
+
<div id="leaf1action" class="leafaction" style="display: none;">
|
378
|
+
<a href="javascript:toggleLeafEdit(1);">edit</a>
|
379
|
+
<a href="javascript:toggleLeafDelete(1);">delete</a>
|
380
|
+
<a href="javascript:toggleLeafInfo(1);">info</a>
|
381
|
+
<a href="javascript:toggleLeafCopy(1);">copy</a>
|
382
|
+
<a href="javascript:toggleLeafMove(1);">move</a>
|
383
|
+
<a href="javascript:toggleLeafTag(1);">tag</a>
|
384
|
+
</div>
|
385
|
+
|
386
|
+
<div id="leaf1alert" class="leafalert" style="display: none;">
|
387
|
+
<!-- dynamic -->
|
388
|
+
</div>
|
389
|
+
|
390
|
+
<div id="leaf1stats" class="leafform" style="display: none;">
|
391
|
+
<div>
|
392
|
+
<p>Leaf created:<br>
|
393
|
+
2007-02-09 14:24:36 UTC
|
394
|
+
</p>
|
395
|
+
<p>Leaf modified:<br>
|
396
|
+
2011-12-18 23:00:10 UTC
|
397
|
+
</div>
|
398
|
+
</div>
|
399
|
+
|
400
|
+
<div id="leaf1edit" class="leafform" style="display: none;">
|
401
|
+
<div>
|
402
|
+
<h1>Edit Leaf:</h1>
|
403
|
+
<p>Leaf Name:<br>
|
404
|
+
<input id="leafe1name" type="text" value="home" size=50 maxlength=150></p>
|
405
|
+
<p>Leaf Description:<br>
|
406
|
+
<textarea id="leafe1info" rows=10 cols=72></textarea></p>
|
407
|
+
<p><a href="javascript:saveLeaf(1);">save leaf</a></p>
|
408
|
+
</div>
|
409
|
+
</div>
|
410
|
+
|
411
|
+
<div id="leaf1delete" class="leafform" style="display: none;">
|
412
|
+
<div>
|
413
|
+
<p>
|
414
|
+
Are you sure you want to delete this leaf?
|
415
|
+
</p>
|
416
|
+
<p>
|
417
|
+
<a href="javascript:deleteLeaf(1);">yes</a>
|
418
|
+
<a href="javascript:toggleLeafDelete(1);">no</a>
|
419
|
+
</p>
|
420
|
+
</div>
|
421
|
+
</div>
|
422
|
+
|
423
|
+
<div id="leaf1copy" class="leafform" style="display: none;">
|
424
|
+
<!-- dynamic -->
|
425
|
+
</div>
|
426
|
+
|
427
|
+
<div id="leaf1move" class="leafform" style="display: none;">
|
428
|
+
<!-- dynamic -->
|
429
|
+
</div>
|
430
|
+
|
431
|
+
<div id="leaf1tag" class="leafform" style="display: none;">
|
432
|
+
<!-- dynamic -->
|
433
|
+
</div>
|
434
|
+
|
435
|
+
<div id="leaf1preview" class="leafpreview" style="display: none;">
|
436
|
+
<!-- dynamic -->
|
437
|
+
</div>
|
438
|
+
</div>
|
439
|
+
|
440
|
+
</div>
|
441
|
+
</div>
|
442
|
+
<div id="leafmenus">
|
443
|
+
<span id="newlinklink"><a href="javascript:toggleNewLinkForm();">new link</a></span>
|
444
|
+
<span id="newfeedlink"><a href="javascript:toggleNewFeedForm();">new feed</a></span>
|
445
|
+
<span id="newleaflink"><a href="javascript:toggleNewChildForm();">new child</a></span>
|
446
|
+
|
447
|
+
<span id="newleaflink"><a href="javascript:toggleNewSiblingForm();">new sibling</a></span>
|
448
|
+
|
449
|
+
<div id="newlinkform" style="display: none;">
|
450
|
+
<div>
|
451
|
+
<h1>Add New Link</h1>
|
452
|
+
|
453
|
+
<p>Link Name:<br>
|
454
|
+
<input id="newlinkname" type="text" value="" size=50 maxlength=150 /></p>
|
455
|
+
<p>Link URL:<br>
|
456
|
+
<input id="newlinkurl" type="text" value="" size=72></p>
|
457
|
+
<p>Link Description:<br>
|
458
|
+
<textarea id="newlinkinfo" rows=10 cols=72></textarea></p>
|
459
|
+
<p>Private Tags:<br>
|
460
|
+
<input id="newlinkprv" type="text" value="" size=50></p>
|
461
|
+
<p>Public Tags:<br>
|
462
|
+
<input id="newlinkpub" type="text" value="" size=50></p>
|
463
|
+
<p><a href="javascript:saveNewLink(1);">save link</a></p>
|
464
|
+
</div>
|
465
|
+
</div>
|
466
|
+
|
467
|
+
<div id="newfeedform" style="display: none;">
|
468
|
+
<div>
|
469
|
+
<h1>Add New Feed</h1>
|
470
|
+
|
471
|
+
<p>Feed Name:<br>
|
472
|
+
<input id="newfeedname" type="text" value="" size=50 maxlength=150></p>
|
473
|
+
<p>Feed URL:<br>
|
474
|
+
<input id="newfeedurl" type="text" value="" size=72></p>
|
475
|
+
<p>Feed Description:<br>
|
476
|
+
<textarea id="newfeedinfo" rows=10 cols=72></textarea></p>
|
477
|
+
<p>Age Limit (in minutes):<br>
|
478
|
+
<input id="newfeedage" type="text" size="3" value="60"></p>
|
479
|
+
<p>Size Limit (0 = no limit):<br>
|
480
|
+
<input id="newfeedsize" type="text" size="3" value="5"></p>
|
481
|
+
<p>Private Tags:<br>
|
482
|
+
<input id="newfeedprv" type="text" value="" size=50></p>
|
483
|
+
<p>Public Tags:<br>
|
484
|
+
<input id="newfeedpub" type="text" value="" size=50></p>
|
485
|
+
<p><a href="javascript:saveNewFeed(1);">save feed</a></p>
|
486
|
+
|
487
|
+
</div>
|
488
|
+
</div>
|
489
|
+
|
490
|
+
<div id="newchildform" style="display: none;">
|
491
|
+
<div>
|
492
|
+
<h1>Add Child Leaf:</h1>
|
493
|
+
<p>Leaf Name:<br>
|
494
|
+
<input id="newchildname" type="text" value="" size=50 maxlength=150></p>
|
495
|
+
<p>Leaf Description:<br>
|
496
|
+
<textarea id="newchildinfo" rows=10 cols=72></textarea></p>
|
497
|
+
<p>Private Tags:<br>
|
498
|
+
<input id="newchildprv" type="text" value="" size=50></p>
|
499
|
+
<p>Public Tags:<br>
|
500
|
+
<input id="newchildpub" type="text" value="" size=50></p>
|
501
|
+
<p><a href="javascript:saveNewChild(1);">save leaf</a></p>
|
502
|
+
</div>
|
503
|
+
</div>
|
504
|
+
|
505
|
+
<div id="newsiblingform" style="display: none;">
|
506
|
+
<div>
|
507
|
+
<h1>Add Sibling Leaf:</h1>
|
508
|
+
<p>Leaf Name:<br>
|
509
|
+
<input id="newsiblingname" type="text" value="" size=50 maxlength=150></p>
|
510
|
+
<p>Leaf Description:<br>
|
511
|
+
<textarea id="newsiblinginfo" rows=10 cols=72></textarea></p>
|
512
|
+
<p>Private Tags:<br>
|
513
|
+
<input id="newsiblingprv" type="text" value="" size=50></p>
|
514
|
+
<p>Public Tags:<br>
|
515
|
+
<input id="newsiblingpub" type="text" value="" size=50></p>
|
516
|
+
<p><a href="javascript:saveNewSibling(1);">save leaf</a></p>
|
517
|
+
</div>
|
518
|
+
</div>
|
519
|
+
|
520
|
+
<div id="newitemalert" style="display: none;">
|
521
|
+
<!-- dynamic -->
|
522
|
+
</div>
|
523
|
+
|
524
|
+
</div>
|
525
|
+
|
526
|
+
<div class="leaflist">
|
527
|
+
|
528
|
+
|
529
|
+
<div id="leaf278" class="aleaf">
|
530
|
+
|
531
|
+
<div>
|
532
|
+
<span class="leafname">
|
533
|
+
<a href="index.php?leaf=278">htc evo 4g</a>
|
534
|
+
</span>
|
535
|
+
<span class="leaflinks">
|
536
|
+
<a href="javascript:toggleLeafAction(278);">action</a>
|
537
|
+
<span id="leaf278expand">
|
538
|
+
<a href="javascript:toggleLeafPreview(278);">expand >></a>
|
539
|
+
</span>
|
540
|
+
</span>
|
541
|
+
<span id="leaf278message" class="leafmessage">
|
542
|
+
</span>
|
543
|
+
|
544
|
+
<div id="leaf278action" class="leafaction" style="display: none;">
|
545
|
+
<a href="javascript:toggleLeafEdit(278);">edit</a>
|
546
|
+
<a href="javascript:toggleLeafDelete(278);">delete</a>
|
547
|
+
<a href="javascript:toggleLeafInfo(278);">info</a>
|
548
|
+
<a href="javascript:toggleLeafCopy(278);">copy</a>
|
549
|
+
<a href="javascript:toggleLeafMove(278);">move</a>
|
550
|
+
<a href="javascript:toggleLeafTag(278);">tag</a>
|
551
|
+
</div>
|
552
|
+
|
553
|
+
<div id="leaf278alert" class="leafalert" style="display: none;">
|
554
|
+
<!-- dynamic -->
|
555
|
+
</div>
|
556
|
+
|
557
|
+
<div id="leaf278stats" class="leafform" style="display: none;">
|
558
|
+
<div>
|
559
|
+
<p>Leaf created:<br>
|
560
|
+
2010-07-12 20:38:10 UTC
|
561
|
+
</p>
|
562
|
+
<p>Leaf modified:<br>
|
563
|
+
2011-10-16 18:40:13 UTC
|
564
|
+
</div>
|
565
|
+
</div>
|
566
|
+
|
567
|
+
<div id="leaf278edit" class="leafform" style="display: none;">
|
568
|
+
<div>
|
569
|
+
<h1>Edit Leaf:</h1>
|
570
|
+
<p>Leaf Name:<br>
|
571
|
+
<input id="leafe278name" type="text" value="htc evo 4g" size=50 maxlength=150></p>
|
572
|
+
<p>Leaf Description:<br>
|
573
|
+
<textarea id="leafe278info" rows=10 cols=72></textarea></p>
|
574
|
+
<p><a href="javascript:saveLeaf(278);">save leaf</a></p>
|
575
|
+
</div>
|
576
|
+
</div>
|
577
|
+
|
578
|
+
<div id="leaf278delete" class="leafform" style="display: none;">
|
579
|
+
<div>
|
580
|
+
<p>
|
581
|
+
Are you sure you want to delete this leaf?
|
582
|
+
</p>
|
583
|
+
<p>
|
584
|
+
<a href="javascript:deleteLeaf(278);">yes</a>
|
585
|
+
<a href="javascript:toggleLeafDelete(278);">no</a>
|
586
|
+
</p>
|
587
|
+
</div>
|
588
|
+
</div>
|
589
|
+
|
590
|
+
<div id="leaf278copy" class="leafform" style="display: none;">
|
591
|
+
<!-- dynamic -->
|
592
|
+
</div>
|
593
|
+
|
594
|
+
<div id="leaf278move" class="leafform" style="display: none;">
|
595
|
+
<!-- dynamic -->
|
596
|
+
</div>
|
597
|
+
|
598
|
+
<div id="leaf278tag" class="leafform" style="display: none;">
|
599
|
+
<!-- dynamic -->
|
600
|
+
</div>
|
601
|
+
|
602
|
+
<div id="leaf278preview" class="leafpreview" style="display: none;">
|
603
|
+
<!-- dynamic -->
|
604
|
+
</div>
|
605
|
+
</div>
|
606
|
+
|
607
|
+
</div>
|
608
|
+
|
609
|
+
<div id="leaf292" class="aleaf">
|
610
|
+
|
611
|
+
<div>
|
612
|
+
<span class="leafname">
|
613
|
+
<a href="index.php?leaf=292">minecraft</a>
|
614
|
+
</span>
|
615
|
+
<span class="leaflinks">
|
616
|
+
<a href="javascript:toggleLeafAction(292);">action</a>
|
617
|
+
<span id="leaf292expand">
|
618
|
+
<a href="javascript:toggleLeafPreview(292);">expand >></a>
|
619
|
+
</span>
|
620
|
+
</span>
|
621
|
+
<span id="leaf292message" class="leafmessage">
|
622
|
+
</span>
|
623
|
+
|
624
|
+
<div id="leaf292action" class="leafaction" style="display: none;">
|
625
|
+
<a href="javascript:toggleLeafEdit(292);">edit</a>
|
626
|
+
<a href="javascript:toggleLeafDelete(292);">delete</a>
|
627
|
+
<a href="javascript:toggleLeafInfo(292);">info</a>
|
628
|
+
<a href="javascript:toggleLeafCopy(292);">copy</a>
|
629
|
+
<a href="javascript:toggleLeafMove(292);">move</a>
|
630
|
+
<a href="javascript:toggleLeafTag(292);">tag</a>
|
631
|
+
</div>
|
632
|
+
|
633
|
+
<div id="leaf292alert" class="leafalert" style="display: none;">
|
634
|
+
<!-- dynamic -->
|
635
|
+
</div>
|
636
|
+
|
637
|
+
<div id="leaf292stats" class="leafform" style="display: none;">
|
638
|
+
<div>
|
639
|
+
<p>Leaf created:<br>
|
640
|
+
2011-04-12 08:59:18 UTC
|
641
|
+
</p>
|
642
|
+
<p>Leaf modified:<br>
|
643
|
+
2011-11-27 04:45:40 UTC
|
644
|
+
</div>
|
645
|
+
</div>
|
646
|
+
|
647
|
+
<div id="leaf292edit" class="leafform" style="display: none;">
|
648
|
+
<div>
|
649
|
+
<h1>Edit Leaf:</h1>
|
650
|
+
<p>Leaf Name:<br>
|
651
|
+
<input id="leafe292name" type="text" value="minecraft" size=50 maxlength=150></p>
|
652
|
+
<p>Leaf Description:<br>
|
653
|
+
<textarea id="leafe292info" rows=10 cols=72></textarea></p>
|
654
|
+
<p><a href="javascript:saveLeaf(292);">save leaf</a></p>
|
655
|
+
</div>
|
656
|
+
</div>
|
657
|
+
|
658
|
+
<div id="leaf292delete" class="leafform" style="display: none;">
|
659
|
+
<div>
|
660
|
+
<p>
|
661
|
+
Are you sure you want to delete this leaf?
|
662
|
+
</p>
|
663
|
+
<p>
|
664
|
+
<a href="javascript:deleteLeaf(292);">yes</a>
|
665
|
+
<a href="javascript:toggleLeafDelete(292);">no</a>
|
666
|
+
</p>
|
667
|
+
</div>
|
668
|
+
</div>
|
669
|
+
|
670
|
+
<div id="leaf292copy" class="leafform" style="display: none;">
|
671
|
+
<!-- dynamic -->
|
672
|
+
</div>
|
673
|
+
|
674
|
+
<div id="leaf292move" class="leafform" style="display: none;">
|
675
|
+
<!-- dynamic -->
|
676
|
+
</div>
|
677
|
+
|
678
|
+
<div id="leaf292tag" class="leafform" style="display: none;">
|
679
|
+
<!-- dynamic -->
|
680
|
+
</div>
|
681
|
+
|
682
|
+
<div id="leaf292preview" class="leafpreview" style="display: none;">
|
683
|
+
<!-- dynamic -->
|
684
|
+
</div>
|
685
|
+
</div>
|
686
|
+
|
687
|
+
</div>
|
688
|
+
|
689
|
+
<div id="leaf240" class="aleaf">
|
690
|
+
|
691
|
+
<div>
|
692
|
+
<span class="leafname">
|
693
|
+
<a href="index.php?leaf=240">personal tech</a>
|
694
|
+
</span>
|
695
|
+
<span class="leaflinks">
|
696
|
+
<a href="javascript:toggleLeafAction(240);">action</a>
|
697
|
+
<span id="leaf240expand">
|
698
|
+
<a href="javascript:toggleLeafPreview(240);">expand >></a>
|
699
|
+
</span>
|
700
|
+
</span>
|
701
|
+
<span id="leaf240message" class="leafmessage">
|
702
|
+
</span>
|
703
|
+
|
704
|
+
<div id="leaf240action" class="leafaction" style="display: none;">
|
705
|
+
<a href="javascript:toggleLeafEdit(240);">edit</a>
|
706
|
+
<a href="javascript:toggleLeafDelete(240);">delete</a>
|
707
|
+
<a href="javascript:toggleLeafInfo(240);">info</a>
|
708
|
+
<a href="javascript:toggleLeafCopy(240);">copy</a>
|
709
|
+
<a href="javascript:toggleLeafMove(240);">move</a>
|
710
|
+
<a href="javascript:toggleLeafTag(240);">tag</a>
|
711
|
+
</div>
|
712
|
+
|
713
|
+
<div id="leaf240alert" class="leafalert" style="display: none;">
|
714
|
+
<!-- dynamic -->
|
715
|
+
</div>
|
716
|
+
|
717
|
+
<div id="leaf240stats" class="leafform" style="display: none;">
|
718
|
+
<div>
|
719
|
+
<p>Leaf created:<br>
|
720
|
+
2008-05-14 19:09:03 UTC
|
721
|
+
</p>
|
722
|
+
<p>Leaf modified:<br>
|
723
|
+
2011-11-23 04:15:14 UTC
|
724
|
+
</div>
|
725
|
+
</div>
|
726
|
+
|
727
|
+
<div id="leaf240edit" class="leafform" style="display: none;">
|
728
|
+
<div>
|
729
|
+
<h1>Edit Leaf:</h1>
|
730
|
+
<p>Leaf Name:<br>
|
731
|
+
<input id="leafe240name" type="text" value="personal tech" size=50 maxlength=150></p>
|
732
|
+
<p>Leaf Description:<br>
|
733
|
+
<textarea id="leafe240info" rows=10 cols=72></textarea></p>
|
734
|
+
<p><a href="javascript:saveLeaf(240);">save leaf</a></p>
|
735
|
+
</div>
|
736
|
+
</div>
|
737
|
+
|
738
|
+
<div id="leaf240delete" class="leafform" style="display: none;">
|
739
|
+
<div>
|
740
|
+
<p>
|
741
|
+
Are you sure you want to delete this leaf?
|
742
|
+
</p>
|
743
|
+
<p>
|
744
|
+
<a href="javascript:deleteLeaf(240);">yes</a>
|
745
|
+
<a href="javascript:toggleLeafDelete(240);">no</a>
|
746
|
+
</p>
|
747
|
+
</div>
|
748
|
+
</div>
|
749
|
+
|
750
|
+
<div id="leaf240copy" class="leafform" style="display: none;">
|
751
|
+
<!-- dynamic -->
|
752
|
+
</div>
|
753
|
+
|
754
|
+
<div id="leaf240move" class="leafform" style="display: none;">
|
755
|
+
<!-- dynamic -->
|
756
|
+
</div>
|
757
|
+
|
758
|
+
<div id="leaf240tag" class="leafform" style="display: none;">
|
759
|
+
<!-- dynamic -->
|
760
|
+
</div>
|
761
|
+
|
762
|
+
<div id="leaf240preview" class="leafpreview" style="display: none;">
|
763
|
+
<!-- dynamic -->
|
764
|
+
</div>
|
765
|
+
</div>
|
766
|
+
|
767
|
+
</div>
|
768
|
+
|
769
|
+
<div id="newleafs">
|
770
|
+
<!-- dynamic -->
|
771
|
+
</div>
|
772
|
+
|
773
|
+
|
774
|
+
</div>
|
775
|
+
|
776
|
+
<div class="linklist">
|
777
|
+
|
778
|
+
|
779
|
+
<div id="link1236" class="alink">
|
780
|
+
|
781
|
+
<div>
|
782
|
+
<span class="linkname">
|
783
|
+
<a href="http://arstechnica.com" target="_blank">arstechnica.com</a>
|
784
|
+
</span>
|
785
|
+
<span class="linklinks">
|
786
|
+
<a href="javascript:toggleLinkAction(1236);">action</a>
|
787
|
+
</span>
|
788
|
+
|
789
|
+
<div id="link1236action" class="linkaction" style="display: none;">
|
790
|
+
<a href="javascript:toggleLinkEdit(1236);">edit</a>
|
791
|
+
<a href="javascript:toggleLinkDelete(1236);">delete</a>
|
792
|
+
<a href="javascript:toggleLinkCopy(1236);">copy</a>
|
793
|
+
<a href="javascript:toggleLinkMove(1236);">move</a>
|
794
|
+
<a href="javascript:toggleLinkTag(1236);">tag</a>
|
795
|
+
</div>
|
796
|
+
|
797
|
+
<div id="link1236alert" class="linkalert" style="display: none;">
|
798
|
+
<!-- dynamic -->
|
799
|
+
</div>
|
800
|
+
|
801
|
+
<div id="link1236edit" class="linkform" style="display: none;">
|
802
|
+
<div>
|
803
|
+
<h1>Edit Link:</h1>
|
804
|
+
<p>Link Name:<br>
|
805
|
+
<input id="linke1236name" type="text" value="arstechnica.com" size=50 maxlength=150></p>
|
806
|
+
<p>Link URL:<br>
|
807
|
+
<input id="linke1236url" type="text" value="http://arstechnica.com" size=72></p>
|
808
|
+
<p>Link Description:<br>
|
809
|
+
<textarea id="linke1236info" rows=10 cols=72></textarea></p>
|
810
|
+
<p><a href="javascript:saveLink(1236);">save link</a></p>
|
811
|
+
</div>
|
812
|
+
</div>
|
813
|
+
|
814
|
+
<div id="link1236delete" class="linkform" style="display: none;">
|
815
|
+
<div>
|
816
|
+
<p>
|
817
|
+
Are you sure you want to delete this link?
|
818
|
+
</p>
|
819
|
+
<p>
|
820
|
+
<a href="javascript:deleteLink(1236);">yes</a>
|
821
|
+
<a href="javascript:toggleLinkDelete(1236);">no</a>
|
822
|
+
</p>
|
823
|
+
</div>
|
824
|
+
</div>
|
825
|
+
|
826
|
+
<div id="link1236copy" class="linkform" style="display: none;">
|
827
|
+
<!-- dynamic -->
|
828
|
+
</div>
|
829
|
+
|
830
|
+
<div id="link1236move" class="linkform" style="display: none;">
|
831
|
+
<!-- dynamic -->
|
832
|
+
</div>
|
833
|
+
|
834
|
+
<div id="link1236tag" class="linkform" style="display: none;">
|
835
|
+
<!-- dynamic -->
|
836
|
+
</div>
|
837
|
+
</div>
|
838
|
+
|
839
|
+
</div>
|
840
|
+
|
841
|
+
<div id="link904" class="alink">
|
842
|
+
|
843
|
+
<div>
|
844
|
+
<span class="linkname">
|
845
|
+
<a href="https://exanotes.com/" target="_blank">ExaNotes</a>
|
846
|
+
</span>
|
847
|
+
<span class="linklinks">
|
848
|
+
<a href="javascript:toggleLinkAction(904);">action</a>
|
849
|
+
</span>
|
850
|
+
|
851
|
+
<div id="link904action" class="linkaction" style="display: none;">
|
852
|
+
<a href="javascript:toggleLinkEdit(904);">edit</a>
|
853
|
+
<a href="javascript:toggleLinkDelete(904);">delete</a>
|
854
|
+
<a href="javascript:toggleLinkCopy(904);">copy</a>
|
855
|
+
<a href="javascript:toggleLinkMove(904);">move</a>
|
856
|
+
<a href="javascript:toggleLinkTag(904);">tag</a>
|
857
|
+
</div>
|
858
|
+
|
859
|
+
<div id="link904alert" class="linkalert" style="display: none;">
|
860
|
+
<!-- dynamic -->
|
861
|
+
</div>
|
862
|
+
|
863
|
+
<div id="link904edit" class="linkform" style="display: none;">
|
864
|
+
<div>
|
865
|
+
<h1>Edit Link:</h1>
|
866
|
+
<p>Link Name:<br>
|
867
|
+
<input id="linke904name" type="text" value="ExaNotes" size=50 maxlength=150></p>
|
868
|
+
<p>Link URL:<br>
|
869
|
+
<input id="linke904url" type="text" value="https://exanotes.com/" size=72></p>
|
870
|
+
<p>Link Description:<br>
|
871
|
+
<textarea id="linke904info" rows=10 cols=72></textarea></p>
|
872
|
+
<p><a href="javascript:saveLink(904);">save link</a></p>
|
873
|
+
</div>
|
874
|
+
</div>
|
875
|
+
|
876
|
+
<div id="link904delete" class="linkform" style="display: none;">
|
877
|
+
<div>
|
878
|
+
<p>
|
879
|
+
Are you sure you want to delete this link?
|
880
|
+
</p>
|
881
|
+
<p>
|
882
|
+
<a href="javascript:deleteLink(904);">yes</a>
|
883
|
+
<a href="javascript:toggleLinkDelete(904);">no</a>
|
884
|
+
</p>
|
885
|
+
</div>
|
886
|
+
</div>
|
887
|
+
|
888
|
+
<div id="link904copy" class="linkform" style="display: none;">
|
889
|
+
<!-- dynamic -->
|
890
|
+
</div>
|
891
|
+
|
892
|
+
<div id="link904move" class="linkform" style="display: none;">
|
893
|
+
<!-- dynamic -->
|
894
|
+
</div>
|
895
|
+
|
896
|
+
<div id="link904tag" class="linkform" style="display: none;">
|
897
|
+
<!-- dynamic -->
|
898
|
+
</div>
|
899
|
+
</div>
|
900
|
+
|
901
|
+
</div>
|
902
|
+
|
903
|
+
<div id="link773" class="alink">
|
904
|
+
|
905
|
+
<div>
|
906
|
+
<span class="linkname">
|
907
|
+
<a href="http://www.google.com/reader/" target="_blank">Google Reader</a>
|
908
|
+
</span>
|
909
|
+
<span class="linklinks">
|
910
|
+
<a href="javascript:toggleLinkAction(773);">action</a>
|
911
|
+
</span>
|
912
|
+
|
913
|
+
<div id="link773action" class="linkaction" style="display: none;">
|
914
|
+
<a href="javascript:toggleLinkEdit(773);">edit</a>
|
915
|
+
<a href="javascript:toggleLinkDelete(773);">delete</a>
|
916
|
+
<a href="javascript:toggleLinkCopy(773);">copy</a>
|
917
|
+
<a href="javascript:toggleLinkMove(773);">move</a>
|
918
|
+
<a href="javascript:toggleLinkTag(773);">tag</a>
|
919
|
+
</div>
|
920
|
+
|
921
|
+
<div id="link773alert" class="linkalert" style="display: none;">
|
922
|
+
<!-- dynamic -->
|
923
|
+
</div>
|
924
|
+
|
925
|
+
<div id="link773edit" class="linkform" style="display: none;">
|
926
|
+
<div>
|
927
|
+
<h1>Edit Link:</h1>
|
928
|
+
<p>Link Name:<br>
|
929
|
+
<input id="linke773name" type="text" value="Google Reader" size=50 maxlength=150></p>
|
930
|
+
<p>Link URL:<br>
|
931
|
+
<input id="linke773url" type="text" value="http://www.google.com/reader/" size=72></p>
|
932
|
+
<p>Link Description:<br>
|
933
|
+
<textarea id="linke773info" rows=10 cols=72></textarea></p>
|
934
|
+
<p><a href="javascript:saveLink(773);">save link</a></p>
|
935
|
+
</div>
|
936
|
+
</div>
|
937
|
+
|
938
|
+
<div id="link773delete" class="linkform" style="display: none;">
|
939
|
+
<div>
|
940
|
+
<p>
|
941
|
+
Are you sure you want to delete this link?
|
942
|
+
</p>
|
943
|
+
<p>
|
944
|
+
<a href="javascript:deleteLink(773);">yes</a>
|
945
|
+
<a href="javascript:toggleLinkDelete(773);">no</a>
|
946
|
+
</p>
|
947
|
+
</div>
|
948
|
+
</div>
|
949
|
+
|
950
|
+
<div id="link773copy" class="linkform" style="display: none;">
|
951
|
+
<!-- dynamic -->
|
952
|
+
</div>
|
953
|
+
|
954
|
+
<div id="link773move" class="linkform" style="display: none;">
|
955
|
+
<!-- dynamic -->
|
956
|
+
</div>
|
957
|
+
|
958
|
+
<div id="link773tag" class="linkform" style="display: none;">
|
959
|
+
<!-- dynamic -->
|
960
|
+
</div>
|
961
|
+
</div>
|
962
|
+
|
963
|
+
</div>
|
964
|
+
|
965
|
+
<div id="link1145" class="alink">
|
966
|
+
|
967
|
+
<div>
|
968
|
+
<span class="linkname">
|
969
|
+
<a href="http://mail.exanotes.com" target="_blank">Mail - carl@exanotes.com</a>
|
970
|
+
</span>
|
971
|
+
<span class="linklinks">
|
972
|
+
<a href="javascript:toggleLinkAction(1145);">action</a>
|
973
|
+
</span>
|
974
|
+
|
975
|
+
<div id="link1145action" class="linkaction" style="display: none;">
|
976
|
+
<a href="javascript:toggleLinkEdit(1145);">edit</a>
|
977
|
+
<a href="javascript:toggleLinkDelete(1145);">delete</a>
|
978
|
+
<a href="javascript:toggleLinkCopy(1145);">copy</a>
|
979
|
+
<a href="javascript:toggleLinkMove(1145);">move</a>
|
980
|
+
<a href="javascript:toggleLinkTag(1145);">tag</a>
|
981
|
+
</div>
|
982
|
+
|
983
|
+
<div id="link1145alert" class="linkalert" style="display: none;">
|
984
|
+
<!-- dynamic -->
|
985
|
+
</div>
|
986
|
+
|
987
|
+
<div id="link1145edit" class="linkform" style="display: none;">
|
988
|
+
<div>
|
989
|
+
<h1>Edit Link:</h1>
|
990
|
+
<p>Link Name:<br>
|
991
|
+
<input id="linke1145name" type="text" value="Mail - carl@exanotes.com" size=50 maxlength=150></p>
|
992
|
+
<p>Link URL:<br>
|
993
|
+
<input id="linke1145url" type="text" value="http://mail.exanotes.com" size=72></p>
|
994
|
+
<p>Link Description:<br>
|
995
|
+
<textarea id="linke1145info" rows=10 cols=72></textarea></p>
|
996
|
+
<p><a href="javascript:saveLink(1145);">save link</a></p>
|
997
|
+
</div>
|
998
|
+
</div>
|
999
|
+
|
1000
|
+
<div id="link1145delete" class="linkform" style="display: none;">
|
1001
|
+
<div>
|
1002
|
+
<p>
|
1003
|
+
Are you sure you want to delete this link?
|
1004
|
+
</p>
|
1005
|
+
<p>
|
1006
|
+
<a href="javascript:deleteLink(1145);">yes</a>
|
1007
|
+
<a href="javascript:toggleLinkDelete(1145);">no</a>
|
1008
|
+
</p>
|
1009
|
+
</div>
|
1010
|
+
</div>
|
1011
|
+
|
1012
|
+
<div id="link1145copy" class="linkform" style="display: none;">
|
1013
|
+
<!-- dynamic -->
|
1014
|
+
</div>
|
1015
|
+
|
1016
|
+
<div id="link1145move" class="linkform" style="display: none;">
|
1017
|
+
<!-- dynamic -->
|
1018
|
+
</div>
|
1019
|
+
|
1020
|
+
<div id="link1145tag" class="linkform" style="display: none;">
|
1021
|
+
<!-- dynamic -->
|
1022
|
+
</div>
|
1023
|
+
</div>
|
1024
|
+
|
1025
|
+
</div>
|
1026
|
+
|
1027
|
+
<div id="link1146" class="alink">
|
1028
|
+
|
1029
|
+
<div>
|
1030
|
+
<span class="linkname">
|
1031
|
+
<a href="http://mail.linkleaf.com" target="_blank">Mail - carl@linkleaf.com</a>
|
1032
|
+
</span>
|
1033
|
+
<span class="linklinks">
|
1034
|
+
<a href="javascript:toggleLinkAction(1146);">action</a>
|
1035
|
+
</span>
|
1036
|
+
|
1037
|
+
<div id="link1146action" class="linkaction" style="display: none;">
|
1038
|
+
<a href="javascript:toggleLinkEdit(1146);">edit</a>
|
1039
|
+
<a href="javascript:toggleLinkDelete(1146);">delete</a>
|
1040
|
+
<a href="javascript:toggleLinkCopy(1146);">copy</a>
|
1041
|
+
<a href="javascript:toggleLinkMove(1146);">move</a>
|
1042
|
+
<a href="javascript:toggleLinkTag(1146);">tag</a>
|
1043
|
+
</div>
|
1044
|
+
|
1045
|
+
<div id="link1146alert" class="linkalert" style="display: none;">
|
1046
|
+
<!-- dynamic -->
|
1047
|
+
</div>
|
1048
|
+
|
1049
|
+
<div id="link1146edit" class="linkform" style="display: none;">
|
1050
|
+
<div>
|
1051
|
+
<h1>Edit Link:</h1>
|
1052
|
+
<p>Link Name:<br>
|
1053
|
+
<input id="linke1146name" type="text" value="Mail - carl@linkleaf.com" size=50 maxlength=150></p>
|
1054
|
+
<p>Link URL:<br>
|
1055
|
+
<input id="linke1146url" type="text" value="http://mail.linkleaf.com" size=72></p>
|
1056
|
+
<p>Link Description:<br>
|
1057
|
+
<textarea id="linke1146info" rows=10 cols=72></textarea></p>
|
1058
|
+
<p><a href="javascript:saveLink(1146);">save link</a></p>
|
1059
|
+
</div>
|
1060
|
+
</div>
|
1061
|
+
|
1062
|
+
<div id="link1146delete" class="linkform" style="display: none;">
|
1063
|
+
<div>
|
1064
|
+
<p>
|
1065
|
+
Are you sure you want to delete this link?
|
1066
|
+
</p>
|
1067
|
+
<p>
|
1068
|
+
<a href="javascript:deleteLink(1146);">yes</a>
|
1069
|
+
<a href="javascript:toggleLinkDelete(1146);">no</a>
|
1070
|
+
</p>
|
1071
|
+
</div>
|
1072
|
+
</div>
|
1073
|
+
|
1074
|
+
<div id="link1146copy" class="linkform" style="display: none;">
|
1075
|
+
<!-- dynamic -->
|
1076
|
+
</div>
|
1077
|
+
|
1078
|
+
<div id="link1146move" class="linkform" style="display: none;">
|
1079
|
+
<!-- dynamic -->
|
1080
|
+
</div>
|
1081
|
+
|
1082
|
+
<div id="link1146tag" class="linkform" style="display: none;">
|
1083
|
+
<!-- dynamic -->
|
1084
|
+
</div>
|
1085
|
+
</div>
|
1086
|
+
|
1087
|
+
</div>
|
1088
|
+
|
1089
|
+
<div id="link518" class="alink">
|
1090
|
+
|
1091
|
+
<div>
|
1092
|
+
<span class="linkname">
|
1093
|
+
<a href="http://gmail.com" target="_blank">Mail - examancer@gmail.com</a>
|
1094
|
+
</span>
|
1095
|
+
<span class="linklinks">
|
1096
|
+
<a href="javascript:toggleLinkAction(518);">action</a>
|
1097
|
+
</span>
|
1098
|
+
|
1099
|
+
<div id="link518action" class="linkaction" style="display: none;">
|
1100
|
+
<a href="javascript:toggleLinkEdit(518);">edit</a>
|
1101
|
+
<a href="javascript:toggleLinkDelete(518);">delete</a>
|
1102
|
+
<a href="javascript:toggleLinkCopy(518);">copy</a>
|
1103
|
+
<a href="javascript:toggleLinkMove(518);">move</a>
|
1104
|
+
<a href="javascript:toggleLinkTag(518);">tag</a>
|
1105
|
+
</div>
|
1106
|
+
|
1107
|
+
<div id="link518alert" class="linkalert" style="display: none;">
|
1108
|
+
<!-- dynamic -->
|
1109
|
+
</div>
|
1110
|
+
|
1111
|
+
<div id="link518edit" class="linkform" style="display: none;">
|
1112
|
+
<div>
|
1113
|
+
<h1>Edit Link:</h1>
|
1114
|
+
<p>Link Name:<br>
|
1115
|
+
<input id="linke518name" type="text" value="Mail - examancer@gmail.com" size=50 maxlength=150></p>
|
1116
|
+
<p>Link URL:<br>
|
1117
|
+
<input id="linke518url" type="text" value="http://gmail.com" size=72></p>
|
1118
|
+
<p>Link Description:<br>
|
1119
|
+
<textarea id="linke518info" rows=10 cols=72></textarea></p>
|
1120
|
+
<p><a href="javascript:saveLink(518);">save link</a></p>
|
1121
|
+
</div>
|
1122
|
+
</div>
|
1123
|
+
|
1124
|
+
<div id="link518delete" class="linkform" style="display: none;">
|
1125
|
+
<div>
|
1126
|
+
<p>
|
1127
|
+
Are you sure you want to delete this link?
|
1128
|
+
</p>
|
1129
|
+
<p>
|
1130
|
+
<a href="javascript:deleteLink(518);">yes</a>
|
1131
|
+
<a href="javascript:toggleLinkDelete(518);">no</a>
|
1132
|
+
</p>
|
1133
|
+
</div>
|
1134
|
+
</div>
|
1135
|
+
|
1136
|
+
<div id="link518copy" class="linkform" style="display: none;">
|
1137
|
+
<!-- dynamic -->
|
1138
|
+
</div>
|
1139
|
+
|
1140
|
+
<div id="link518move" class="linkform" style="display: none;">
|
1141
|
+
<!-- dynamic -->
|
1142
|
+
</div>
|
1143
|
+
|
1144
|
+
<div id="link518tag" class="linkform" style="display: none;">
|
1145
|
+
<!-- dynamic -->
|
1146
|
+
</div>
|
1147
|
+
</div>
|
1148
|
+
|
1149
|
+
</div>
|
1150
|
+
|
1151
|
+
<div id="link1229" class="alink">
|
1152
|
+
|
1153
|
+
<div>
|
1154
|
+
<span class="linkname">
|
1155
|
+
<a href="http://netflix.com" target="_blank">Netflix</a>
|
1156
|
+
</span>
|
1157
|
+
<span class="linklinks">
|
1158
|
+
<a href="javascript:toggleLinkAction(1229);">action</a>
|
1159
|
+
</span>
|
1160
|
+
|
1161
|
+
<div id="link1229action" class="linkaction" style="display: none;">
|
1162
|
+
<a href="javascript:toggleLinkEdit(1229);">edit</a>
|
1163
|
+
<a href="javascript:toggleLinkDelete(1229);">delete</a>
|
1164
|
+
<a href="javascript:toggleLinkCopy(1229);">copy</a>
|
1165
|
+
<a href="javascript:toggleLinkMove(1229);">move</a>
|
1166
|
+
<a href="javascript:toggleLinkTag(1229);">tag</a>
|
1167
|
+
</div>
|
1168
|
+
|
1169
|
+
<div id="link1229alert" class="linkalert" style="display: none;">
|
1170
|
+
<!-- dynamic -->
|
1171
|
+
</div>
|
1172
|
+
|
1173
|
+
<div id="link1229edit" class="linkform" style="display: none;">
|
1174
|
+
<div>
|
1175
|
+
<h1>Edit Link:</h1>
|
1176
|
+
<p>Link Name:<br>
|
1177
|
+
<input id="linke1229name" type="text" value="Netflix" size=50 maxlength=150></p>
|
1178
|
+
<p>Link URL:<br>
|
1179
|
+
<input id="linke1229url" type="text" value="http://netflix.com" size=72></p>
|
1180
|
+
<p>Link Description:<br>
|
1181
|
+
<textarea id="linke1229info" rows=10 cols=72></textarea></p>
|
1182
|
+
<p><a href="javascript:saveLink(1229);">save link</a></p>
|
1183
|
+
</div>
|
1184
|
+
</div>
|
1185
|
+
|
1186
|
+
<div id="link1229delete" class="linkform" style="display: none;">
|
1187
|
+
<div>
|
1188
|
+
<p>
|
1189
|
+
Are you sure you want to delete this link?
|
1190
|
+
</p>
|
1191
|
+
<p>
|
1192
|
+
<a href="javascript:deleteLink(1229);">yes</a>
|
1193
|
+
<a href="javascript:toggleLinkDelete(1229);">no</a>
|
1194
|
+
</p>
|
1195
|
+
</div>
|
1196
|
+
</div>
|
1197
|
+
|
1198
|
+
<div id="link1229copy" class="linkform" style="display: none;">
|
1199
|
+
<!-- dynamic -->
|
1200
|
+
</div>
|
1201
|
+
|
1202
|
+
<div id="link1229move" class="linkform" style="display: none;">
|
1203
|
+
<!-- dynamic -->
|
1204
|
+
</div>
|
1205
|
+
|
1206
|
+
<div id="link1229tag" class="linkform" style="display: none;">
|
1207
|
+
<!-- dynamic -->
|
1208
|
+
</div>
|
1209
|
+
</div>
|
1210
|
+
|
1211
|
+
</div>
|
1212
|
+
|
1213
|
+
<div id="link979" class="alink">
|
1214
|
+
|
1215
|
+
<div>
|
1216
|
+
<span class="linkname">
|
1217
|
+
<a href="http://www.meetup.com/omahaatheists/" target="_blank">Omaha Atheists Meetup Group (Omaha, NE) - Meetup.com</a>
|
1218
|
+
</span>
|
1219
|
+
<span class="linklinks">
|
1220
|
+
<a href="javascript:toggleLinkAction(979);">action</a>
|
1221
|
+
</span>
|
1222
|
+
|
1223
|
+
<div id="link979action" class="linkaction" style="display: none;">
|
1224
|
+
<a href="javascript:toggleLinkEdit(979);">edit</a>
|
1225
|
+
<a href="javascript:toggleLinkDelete(979);">delete</a>
|
1226
|
+
<a href="javascript:toggleLinkCopy(979);">copy</a>
|
1227
|
+
<a href="javascript:toggleLinkMove(979);">move</a>
|
1228
|
+
<a href="javascript:toggleLinkTag(979);">tag</a>
|
1229
|
+
</div>
|
1230
|
+
|
1231
|
+
<div id="link979alert" class="linkalert" style="display: none;">
|
1232
|
+
<!-- dynamic -->
|
1233
|
+
</div>
|
1234
|
+
|
1235
|
+
<div id="link979edit" class="linkform" style="display: none;">
|
1236
|
+
<div>
|
1237
|
+
<h1>Edit Link:</h1>
|
1238
|
+
<p>Link Name:<br>
|
1239
|
+
<input id="linke979name" type="text" value="Omaha Atheists Meetup Group (Omaha, NE) - Meetup.com" size=50 maxlength=150></p>
|
1240
|
+
<p>Link URL:<br>
|
1241
|
+
<input id="linke979url" type="text" value="http://www.meetup.com/omahaatheists/" size=72></p>
|
1242
|
+
<p>Link Description:<br>
|
1243
|
+
<textarea id="linke979info" rows=10 cols=72></textarea></p>
|
1244
|
+
<p><a href="javascript:saveLink(979);">save link</a></p>
|
1245
|
+
</div>
|
1246
|
+
</div>
|
1247
|
+
|
1248
|
+
<div id="link979delete" class="linkform" style="display: none;">
|
1249
|
+
<div>
|
1250
|
+
<p>
|
1251
|
+
Are you sure you want to delete this link?
|
1252
|
+
</p>
|
1253
|
+
<p>
|
1254
|
+
<a href="javascript:deleteLink(979);">yes</a>
|
1255
|
+
<a href="javascript:toggleLinkDelete(979);">no</a>
|
1256
|
+
</p>
|
1257
|
+
</div>
|
1258
|
+
</div>
|
1259
|
+
|
1260
|
+
<div id="link979copy" class="linkform" style="display: none;">
|
1261
|
+
<!-- dynamic -->
|
1262
|
+
</div>
|
1263
|
+
|
1264
|
+
<div id="link979move" class="linkform" style="display: none;">
|
1265
|
+
<!-- dynamic -->
|
1266
|
+
</div>
|
1267
|
+
|
1268
|
+
<div id="link979tag" class="linkform" style="display: none;">
|
1269
|
+
<!-- dynamic -->
|
1270
|
+
</div>
|
1271
|
+
</div>
|
1272
|
+
|
1273
|
+
</div>
|
1274
|
+
|
1275
|
+
<div id="link1121" class="alink">
|
1276
|
+
|
1277
|
+
<div>
|
1278
|
+
<span class="linkname">
|
1279
|
+
<a href="http://omahaatheists.org" target="_blank">omahaatheists.org</a>
|
1280
|
+
</span>
|
1281
|
+
<span class="linklinks">
|
1282
|
+
<a href="javascript:toggleLinkAction(1121);">action</a>
|
1283
|
+
</span>
|
1284
|
+
|
1285
|
+
<div id="link1121action" class="linkaction" style="display: none;">
|
1286
|
+
<a href="javascript:toggleLinkEdit(1121);">edit</a>
|
1287
|
+
<a href="javascript:toggleLinkDelete(1121);">delete</a>
|
1288
|
+
<a href="javascript:toggleLinkCopy(1121);">copy</a>
|
1289
|
+
<a href="javascript:toggleLinkMove(1121);">move</a>
|
1290
|
+
<a href="javascript:toggleLinkTag(1121);">tag</a>
|
1291
|
+
</div>
|
1292
|
+
|
1293
|
+
<div id="link1121alert" class="linkalert" style="display: none;">
|
1294
|
+
<!-- dynamic -->
|
1295
|
+
</div>
|
1296
|
+
|
1297
|
+
<div id="link1121edit" class="linkform" style="display: none;">
|
1298
|
+
<div>
|
1299
|
+
<h1>Edit Link:</h1>
|
1300
|
+
<p>Link Name:<br>
|
1301
|
+
<input id="linke1121name" type="text" value="omahaatheists.org" size=50 maxlength=150></p>
|
1302
|
+
<p>Link URL:<br>
|
1303
|
+
<input id="linke1121url" type="text" value="http://omahaatheists.org" size=72></p>
|
1304
|
+
<p>Link Description:<br>
|
1305
|
+
<textarea id="linke1121info" rows=10 cols=72></textarea></p>
|
1306
|
+
<p><a href="javascript:saveLink(1121);">save link</a></p>
|
1307
|
+
</div>
|
1308
|
+
</div>
|
1309
|
+
|
1310
|
+
<div id="link1121delete" class="linkform" style="display: none;">
|
1311
|
+
<div>
|
1312
|
+
<p>
|
1313
|
+
Are you sure you want to delete this link?
|
1314
|
+
</p>
|
1315
|
+
<p>
|
1316
|
+
<a href="javascript:deleteLink(1121);">yes</a>
|
1317
|
+
<a href="javascript:toggleLinkDelete(1121);">no</a>
|
1318
|
+
</p>
|
1319
|
+
</div>
|
1320
|
+
</div>
|
1321
|
+
|
1322
|
+
<div id="link1121copy" class="linkform" style="display: none;">
|
1323
|
+
<!-- dynamic -->
|
1324
|
+
</div>
|
1325
|
+
|
1326
|
+
<div id="link1121move" class="linkform" style="display: none;">
|
1327
|
+
<!-- dynamic -->
|
1328
|
+
</div>
|
1329
|
+
|
1330
|
+
<div id="link1121tag" class="linkform" style="display: none;">
|
1331
|
+
<!-- dynamic -->
|
1332
|
+
</div>
|
1333
|
+
</div>
|
1334
|
+
|
1335
|
+
</div>
|
1336
|
+
|
1337
|
+
<div id="link1160" class="alink">
|
1338
|
+
|
1339
|
+
<div>
|
1340
|
+
<span class="linkname">
|
1341
|
+
<a href="http://linkleaf.com/share/?carl" target="_blank">Share With Yourself</a>
|
1342
|
+
</span>
|
1343
|
+
<span class="linklinks">
|
1344
|
+
<a href="javascript:toggleLinkAction(1160);">action</a>
|
1345
|
+
</span>
|
1346
|
+
|
1347
|
+
<div id="link1160action" class="linkaction" style="display: none;">
|
1348
|
+
<a href="javascript:toggleLinkEdit(1160);">edit</a>
|
1349
|
+
<a href="javascript:toggleLinkDelete(1160);">delete</a>
|
1350
|
+
<a href="javascript:toggleLinkCopy(1160);">copy</a>
|
1351
|
+
<a href="javascript:toggleLinkMove(1160);">move</a>
|
1352
|
+
<a href="javascript:toggleLinkTag(1160);">tag</a>
|
1353
|
+
</div>
|
1354
|
+
|
1355
|
+
<div id="link1160alert" class="linkalert" style="display: none;">
|
1356
|
+
<!-- dynamic -->
|
1357
|
+
</div>
|
1358
|
+
|
1359
|
+
<div id="link1160edit" class="linkform" style="display: none;">
|
1360
|
+
<div>
|
1361
|
+
<h1>Edit Link:</h1>
|
1362
|
+
<p>Link Name:<br>
|
1363
|
+
<input id="linke1160name" type="text" value="Share With Yourself" size=50 maxlength=150></p>
|
1364
|
+
<p>Link URL:<br>
|
1365
|
+
<input id="linke1160url" type="text" value="http://linkleaf.com/share/?carl" size=72></p>
|
1366
|
+
<p>Link Description:<br>
|
1367
|
+
<textarea id="linke1160info" rows=10 cols=72></textarea></p>
|
1368
|
+
<p><a href="javascript:saveLink(1160);">save link</a></p>
|
1369
|
+
</div>
|
1370
|
+
</div>
|
1371
|
+
|
1372
|
+
<div id="link1160delete" class="linkform" style="display: none;">
|
1373
|
+
<div>
|
1374
|
+
<p>
|
1375
|
+
Are you sure you want to delete this link?
|
1376
|
+
</p>
|
1377
|
+
<p>
|
1378
|
+
<a href="javascript:deleteLink(1160);">yes</a>
|
1379
|
+
<a href="javascript:toggleLinkDelete(1160);">no</a>
|
1380
|
+
</p>
|
1381
|
+
</div>
|
1382
|
+
</div>
|
1383
|
+
|
1384
|
+
<div id="link1160copy" class="linkform" style="display: none;">
|
1385
|
+
<!-- dynamic -->
|
1386
|
+
</div>
|
1387
|
+
|
1388
|
+
<div id="link1160move" class="linkform" style="display: none;">
|
1389
|
+
<!-- dynamic -->
|
1390
|
+
</div>
|
1391
|
+
|
1392
|
+
<div id="link1160tag" class="linkform" style="display: none;">
|
1393
|
+
<!-- dynamic -->
|
1394
|
+
</div>
|
1395
|
+
</div>
|
1396
|
+
|
1397
|
+
</div>
|
1398
|
+
|
1399
|
+
<div id="link1310" class="alink">
|
1400
|
+
|
1401
|
+
<div>
|
1402
|
+
<span class="linkname">
|
1403
|
+
<a href="http://stackoverflow.com" target="_blank">Stack Overflow</a>
|
1404
|
+
</span>
|
1405
|
+
<span class="linklinks">
|
1406
|
+
<a href="javascript:toggleLinkAction(1310);">action</a>
|
1407
|
+
</span>
|
1408
|
+
|
1409
|
+
<div id="link1310action" class="linkaction" style="display: none;">
|
1410
|
+
<a href="javascript:toggleLinkEdit(1310);">edit</a>
|
1411
|
+
<a href="javascript:toggleLinkDelete(1310);">delete</a>
|
1412
|
+
<a href="javascript:toggleLinkCopy(1310);">copy</a>
|
1413
|
+
<a href="javascript:toggleLinkMove(1310);">move</a>
|
1414
|
+
<a href="javascript:toggleLinkTag(1310);">tag</a>
|
1415
|
+
</div>
|
1416
|
+
|
1417
|
+
<div id="link1310alert" class="linkalert" style="display: none;">
|
1418
|
+
<!-- dynamic -->
|
1419
|
+
</div>
|
1420
|
+
|
1421
|
+
<div id="link1310edit" class="linkform" style="display: none;">
|
1422
|
+
<div>
|
1423
|
+
<h1>Edit Link:</h1>
|
1424
|
+
<p>Link Name:<br>
|
1425
|
+
<input id="linke1310name" type="text" value="Stack Overflow" size=50 maxlength=150></p>
|
1426
|
+
<p>Link URL:<br>
|
1427
|
+
<input id="linke1310url" type="text" value="http://stackoverflow.com" size=72></p>
|
1428
|
+
<p>Link Description:<br>
|
1429
|
+
<textarea id="linke1310info" rows=10 cols=72></textarea></p>
|
1430
|
+
<p><a href="javascript:saveLink(1310);">save link</a></p>
|
1431
|
+
</div>
|
1432
|
+
</div>
|
1433
|
+
|
1434
|
+
<div id="link1310delete" class="linkform" style="display: none;">
|
1435
|
+
<div>
|
1436
|
+
<p>
|
1437
|
+
Are you sure you want to delete this link?
|
1438
|
+
</p>
|
1439
|
+
<p>
|
1440
|
+
<a href="javascript:deleteLink(1310);">yes</a>
|
1441
|
+
<a href="javascript:toggleLinkDelete(1310);">no</a>
|
1442
|
+
</p>
|
1443
|
+
</div>
|
1444
|
+
</div>
|
1445
|
+
|
1446
|
+
<div id="link1310copy" class="linkform" style="display: none;">
|
1447
|
+
<!-- dynamic -->
|
1448
|
+
</div>
|
1449
|
+
|
1450
|
+
<div id="link1310move" class="linkform" style="display: none;">
|
1451
|
+
<!-- dynamic -->
|
1452
|
+
</div>
|
1453
|
+
|
1454
|
+
<div id="link1310tag" class="linkform" style="display: none;">
|
1455
|
+
<!-- dynamic -->
|
1456
|
+
</div>
|
1457
|
+
</div>
|
1458
|
+
|
1459
|
+
</div>
|
1460
|
+
|
1461
|
+
<div id="link515" class="alink">
|
1462
|
+
|
1463
|
+
<div>
|
1464
|
+
<span class="linkname">
|
1465
|
+
<a href="http://www.tdameritrade.com" target="_blank">TD Ameritrade</a>
|
1466
|
+
</span>
|
1467
|
+
<span class="linklinks">
|
1468
|
+
<a href="javascript:toggleLinkAction(515);">action</a>
|
1469
|
+
</span>
|
1470
|
+
|
1471
|
+
<div id="link515action" class="linkaction" style="display: none;">
|
1472
|
+
<a href="javascript:toggleLinkEdit(515);">edit</a>
|
1473
|
+
<a href="javascript:toggleLinkDelete(515);">delete</a>
|
1474
|
+
<a href="javascript:toggleLinkCopy(515);">copy</a>
|
1475
|
+
<a href="javascript:toggleLinkMove(515);">move</a>
|
1476
|
+
<a href="javascript:toggleLinkTag(515);">tag</a>
|
1477
|
+
</div>
|
1478
|
+
|
1479
|
+
<div id="link515alert" class="linkalert" style="display: none;">
|
1480
|
+
<!-- dynamic -->
|
1481
|
+
</div>
|
1482
|
+
|
1483
|
+
<div id="link515edit" class="linkform" style="display: none;">
|
1484
|
+
<div>
|
1485
|
+
<h1>Edit Link:</h1>
|
1486
|
+
<p>Link Name:<br>
|
1487
|
+
<input id="linke515name" type="text" value="TD Ameritrade" size=50 maxlength=150></p>
|
1488
|
+
<p>Link URL:<br>
|
1489
|
+
<input id="linke515url" type="text" value="http://www.tdameritrade.com" size=72></p>
|
1490
|
+
<p>Link Description:<br>
|
1491
|
+
<textarea id="linke515info" rows=10 cols=72></textarea></p>
|
1492
|
+
<p><a href="javascript:saveLink(515);">save link</a></p>
|
1493
|
+
</div>
|
1494
|
+
</div>
|
1495
|
+
|
1496
|
+
<div id="link515delete" class="linkform" style="display: none;">
|
1497
|
+
<div>
|
1498
|
+
<p>
|
1499
|
+
Are you sure you want to delete this link?
|
1500
|
+
</p>
|
1501
|
+
<p>
|
1502
|
+
<a href="javascript:deleteLink(515);">yes</a>
|
1503
|
+
<a href="javascript:toggleLinkDelete(515);">no</a>
|
1504
|
+
</p>
|
1505
|
+
</div>
|
1506
|
+
</div>
|
1507
|
+
|
1508
|
+
<div id="link515copy" class="linkform" style="display: none;">
|
1509
|
+
<!-- dynamic -->
|
1510
|
+
</div>
|
1511
|
+
|
1512
|
+
<div id="link515move" class="linkform" style="display: none;">
|
1513
|
+
<!-- dynamic -->
|
1514
|
+
</div>
|
1515
|
+
|
1516
|
+
<div id="link515tag" class="linkform" style="display: none;">
|
1517
|
+
<!-- dynamic -->
|
1518
|
+
</div>
|
1519
|
+
</div>
|
1520
|
+
|
1521
|
+
</div>
|
1522
|
+
|
1523
|
+
<div id="link1226" class="alink">
|
1524
|
+
|
1525
|
+
<div>
|
1526
|
+
<span class="linkname">
|
1527
|
+
<a href="http://twitchy.linkleaf.com/" target="_blank">Twitchy - Twitter Auto-Refresh Browser Client</a>
|
1528
|
+
</span>
|
1529
|
+
<span class="linklinks">
|
1530
|
+
<a href="javascript:toggleLinkAction(1226);">action</a>
|
1531
|
+
</span>
|
1532
|
+
|
1533
|
+
<div id="link1226action" class="linkaction" style="display: none;">
|
1534
|
+
<a href="javascript:toggleLinkEdit(1226);">edit</a>
|
1535
|
+
<a href="javascript:toggleLinkDelete(1226);">delete</a>
|
1536
|
+
<a href="javascript:toggleLinkCopy(1226);">copy</a>
|
1537
|
+
<a href="javascript:toggleLinkMove(1226);">move</a>
|
1538
|
+
<a href="javascript:toggleLinkTag(1226);">tag</a>
|
1539
|
+
</div>
|
1540
|
+
|
1541
|
+
<div id="link1226alert" class="linkalert" style="display: none;">
|
1542
|
+
<!-- dynamic -->
|
1543
|
+
</div>
|
1544
|
+
|
1545
|
+
<div id="link1226edit" class="linkform" style="display: none;">
|
1546
|
+
<div>
|
1547
|
+
<h1>Edit Link:</h1>
|
1548
|
+
<p>Link Name:<br>
|
1549
|
+
<input id="linke1226name" type="text" value="Twitchy - Twitter Auto-Refresh Browser Client" size=50 maxlength=150></p>
|
1550
|
+
<p>Link URL:<br>
|
1551
|
+
<input id="linke1226url" type="text" value="http://twitchy.linkleaf.com/" size=72></p>
|
1552
|
+
<p>Link Description:<br>
|
1553
|
+
<textarea id="linke1226info" rows=10 cols=72></textarea></p>
|
1554
|
+
<p><a href="javascript:saveLink(1226);">save link</a></p>
|
1555
|
+
</div>
|
1556
|
+
</div>
|
1557
|
+
|
1558
|
+
<div id="link1226delete" class="linkform" style="display: none;">
|
1559
|
+
<div>
|
1560
|
+
<p>
|
1561
|
+
Are you sure you want to delete this link?
|
1562
|
+
</p>
|
1563
|
+
<p>
|
1564
|
+
<a href="javascript:deleteLink(1226);">yes</a>
|
1565
|
+
<a href="javascript:toggleLinkDelete(1226);">no</a>
|
1566
|
+
</p>
|
1567
|
+
</div>
|
1568
|
+
</div>
|
1569
|
+
|
1570
|
+
<div id="link1226copy" class="linkform" style="display: none;">
|
1571
|
+
<!-- dynamic -->
|
1572
|
+
</div>
|
1573
|
+
|
1574
|
+
<div id="link1226move" class="linkform" style="display: none;">
|
1575
|
+
<!-- dynamic -->
|
1576
|
+
</div>
|
1577
|
+
|
1578
|
+
<div id="link1226tag" class="linkform" style="display: none;">
|
1579
|
+
<!-- dynamic -->
|
1580
|
+
</div>
|
1581
|
+
</div>
|
1582
|
+
|
1583
|
+
</div>
|
1584
|
+
|
1585
|
+
<div id="link777" class="alink">
|
1586
|
+
|
1587
|
+
<div>
|
1588
|
+
<span class="linkname">
|
1589
|
+
<a href="http://twitter.com" target="_blank">Twitter: What are you doing?</a>
|
1590
|
+
</span>
|
1591
|
+
<span class="linklinks">
|
1592
|
+
<a href="javascript:toggleLinkAction(777);">action</a>
|
1593
|
+
</span>
|
1594
|
+
|
1595
|
+
<div id="link777action" class="linkaction" style="display: none;">
|
1596
|
+
<a href="javascript:toggleLinkEdit(777);">edit</a>
|
1597
|
+
<a href="javascript:toggleLinkDelete(777);">delete</a>
|
1598
|
+
<a href="javascript:toggleLinkCopy(777);">copy</a>
|
1599
|
+
<a href="javascript:toggleLinkMove(777);">move</a>
|
1600
|
+
<a href="javascript:toggleLinkTag(777);">tag</a>
|
1601
|
+
</div>
|
1602
|
+
|
1603
|
+
<div id="link777alert" class="linkalert" style="display: none;">
|
1604
|
+
<!-- dynamic -->
|
1605
|
+
</div>
|
1606
|
+
|
1607
|
+
<div id="link777edit" class="linkform" style="display: none;">
|
1608
|
+
<div>
|
1609
|
+
<h1>Edit Link:</h1>
|
1610
|
+
<p>Link Name:<br>
|
1611
|
+
<input id="linke777name" type="text" value="Twitter: What are you doing?" size=50 maxlength=150></p>
|
1612
|
+
<p>Link URL:<br>
|
1613
|
+
<input id="linke777url" type="text" value="http://twitter.com" size=72></p>
|
1614
|
+
<p>Link Description:<br>
|
1615
|
+
<textarea id="linke777info" rows=10 cols=72></textarea></p>
|
1616
|
+
<p><a href="javascript:saveLink(777);">save link</a></p>
|
1617
|
+
</div>
|
1618
|
+
</div>
|
1619
|
+
|
1620
|
+
<div id="link777delete" class="linkform" style="display: none;">
|
1621
|
+
<div>
|
1622
|
+
<p>
|
1623
|
+
Are you sure you want to delete this link?
|
1624
|
+
</p>
|
1625
|
+
<p>
|
1626
|
+
<a href="javascript:deleteLink(777);">yes</a>
|
1627
|
+
<a href="javascript:toggleLinkDelete(777);">no</a>
|
1628
|
+
</p>
|
1629
|
+
</div>
|
1630
|
+
</div>
|
1631
|
+
|
1632
|
+
<div id="link777copy" class="linkform" style="display: none;">
|
1633
|
+
<!-- dynamic -->
|
1634
|
+
</div>
|
1635
|
+
|
1636
|
+
<div id="link777move" class="linkform" style="display: none;">
|
1637
|
+
<!-- dynamic -->
|
1638
|
+
</div>
|
1639
|
+
|
1640
|
+
<div id="link777tag" class="linkform" style="display: none;">
|
1641
|
+
<!-- dynamic -->
|
1642
|
+
</div>
|
1643
|
+
</div>
|
1644
|
+
|
1645
|
+
</div>
|
1646
|
+
|
1647
|
+
<div id="newlinks">
|
1648
|
+
<!-- dynamic -->
|
1649
|
+
</div>
|
1650
|
+
|
1651
|
+
|
1652
|
+
</div>
|
1653
|
+
|
1654
|
+
<div class="feedlist">
|
1655
|
+
|
1656
|
+
|
1657
|
+
<div id="feed9" class="afeed">
|
1658
|
+
|
1659
|
+
<div>
|
1660
|
+
<span class="feed1name">
|
1661
|
+
<a href="index.php?feed=http://xml.weather.yahoo.com/forecastrss?p=68123&u=f"><span style="display: none;">aaa</span>Yahoo Weather | Bellevue, NE</a>
|
1662
|
+
</span>
|
1663
|
+
|
1664
|
+
<span class="feed1exlink">
|
1665
|
+
(<a href="http://us.rd.yahoo.com/dailynews/rss/weather/Bellevue__NE/*http://weather.yahoo.com/forecast/USNE0047_f.html target="_blank"">link</a>)
|
1666
|
+
</span>
|
1667
|
+
<span class="feed1links">
|
1668
|
+
<a href="javascript:toggleFeedAction(9);">action</a>
|
1669
|
+
<a href="javascript:refreshFeed(9,1);">refresh</a>
|
1670
|
+
</span>
|
1671
|
+
<span id="feed9message">
|
1672
|
+
<!-- dynamic -->
|
1673
|
+
</span>
|
1674
|
+
|
1675
|
+
<div id="feed9action" class="feed1action" style="display: none;">
|
1676
|
+
<a href="javascript:toggleFeedEdit(9);">edit</a>
|
1677
|
+
<a href="javascript:toggleFeedDelete(9);">delete</a>
|
1678
|
+
<a href="javascript:toggleFeedCopy(9);">copy</a>
|
1679
|
+
<a href="javascript:toggleFeedMove(9);">move</a>
|
1680
|
+
<a href="javascript:toggleFeedTag(9);">tag</a>
|
1681
|
+
</div>
|
1682
|
+
|
1683
|
+
<div id="feed9alert" class="feed1alert" style="display: none;">
|
1684
|
+
<!-- dynamic -->
|
1685
|
+
</div>
|
1686
|
+
|
1687
|
+
<div id="feed9edit" class="feed1form" style="display: none;">
|
1688
|
+
<div>
|
1689
|
+
<h1>Edit Feed:</h1>
|
1690
|
+
<p>Feed Name:<br>
|
1691
|
+
<input id="feede9name" type="text" value="<span style="display: none;">aaa</span>Yahoo Weather | Bellevue, NE" size=50 maxlength=150></p>
|
1692
|
+
<p>Feed URL:<br>
|
1693
|
+
<input id="feede9url" type="text" value="http://xml.weather.yahoo.com/forecastrss?p=68123&u=f" size=72></p>
|
1694
|
+
<p>Feed Description:<br>
|
1695
|
+
<textarea id="feede9info" rows=10 cols=72></textarea></p>
|
1696
|
+
<p>Age Limit (in minutes):<br>
|
1697
|
+
<input id="feede9age" type="text" size="3" value="15"></p>
|
1698
|
+
<p>Size Limit (0 = no limit):<br>
|
1699
|
+
<input id="feede9size" type="text" size="3" value="0"></p>
|
1700
|
+
<p><a href="javascript:saveFeed(9);">save feed</a></p>
|
1701
|
+
</div>
|
1702
|
+
</div>
|
1703
|
+
|
1704
|
+
<div id="feed9delete" class="feed1form" style="display: none;">
|
1705
|
+
<div>
|
1706
|
+
<p>
|
1707
|
+
Are you sure you want to delete this feed?
|
1708
|
+
</p>
|
1709
|
+
<p>
|
1710
|
+
<a href="javascript:deleteFeed(9);">yes</a>
|
1711
|
+
<a href="javascript:toggleFeedDelete(9);">no</a>
|
1712
|
+
</p>
|
1713
|
+
</div>
|
1714
|
+
</div>
|
1715
|
+
|
1716
|
+
<div id="feed9copy" class="feed1form" style="display: none;">
|
1717
|
+
<!-- dynamic -->
|
1718
|
+
</div>
|
1719
|
+
|
1720
|
+
<div id="feed9move" class="feed1form" style="display: none;">
|
1721
|
+
<!-- dynamic -->
|
1722
|
+
</div>
|
1723
|
+
|
1724
|
+
<div id="feed9tag" class="feed1form" style="display: none;">
|
1725
|
+
<!-- dynamic -->
|
1726
|
+
</div>
|
1727
|
+
|
1728
|
+
<div id="feed9content" class="feed1content">
|
1729
|
+
<div>
|
1730
|
+
<div class="feed1item" id="item9.0">
|
1731
|
+
|
1732
|
+
<span class="feed1itemlink" id="itemtitle9.0">
|
1733
|
+
<a href="http://us.rd.yahoo.com/dailynews/rss/weather/Bellevue__NE/*http://weather.yahoo.com/forecast/USNE0047_f.html" target="_blank">Conditions for Bellevue, NE at 3:54 pm CST</a>
|
1734
|
+
</span>
|
1735
|
+
|
1736
|
+
<span class="feed1itemaction" id="itemsave9.0">
|
1737
|
+
<a href="javascript:saveFeedLink(9,0)">save</a>
|
1738
|
+
</span>
|
1739
|
+
|
1740
|
+
<span class="feed1itemaction" id="itemmsg9.0">
|
1741
|
+
<!-- dynamic -->
|
1742
|
+
</span>
|
1743
|
+
|
1744
|
+
<input type="hidden" id="feedlink9.0url" value="http://us.rd.yahoo.com/dailynews/rss/weather/Bellevue__NE/*http://weather.yahoo.com/forecast/USNE0047_f.html">
|
1745
|
+
<input type="hidden" id="feedlink9.0title" value="Conditions for Bellevue, NE at 3:54 pm CST">
|
1746
|
+
|
1747
|
+
<div class="feed1iteminfo" id="iteminfo9.0">
|
1748
|
+
|
1749
|
+
<img src="http://l.yimg.com/a/i/us/we/52/34.gif"/><br />
|
1750
|
+
<b>Current Conditions:</b><br />
|
1751
|
+
Fair, 52 F<BR />
|
1752
|
+
<BR /><b>Forecast:</b><BR />
|
1753
|
+
Sun - Partly Cloudy. High: 52 Low: 28<br />
|
1754
|
+
Mon - Mostly Cloudy. High: 37 Low: 23<br />
|
1755
|
+
<br />
|
1756
|
+
<a href="http://us.rd.yahoo.com/dailynews/rss/weather/Bellevue__NE/*http://weather.yahoo.com/forecast/USNE0047_f.html">Full Forecast at Yahoo! Weather</a><BR/><BR/>
|
1757
|
+
(provided by <a href="http://www.weather.com" >The Weather Channel</a>)<br/>
|
1758
|
+
|
1759
|
+
</div>
|
1760
|
+
|
1761
|
+
</div>
|
1762
|
+
</div>
|
1763
|
+
</div>
|
1764
|
+
</div>
|
1765
|
+
|
1766
|
+
</div>
|
1767
|
+
|
1768
|
+
<div id="newfeeds">
|
1769
|
+
<!-- dynamic -->
|
1770
|
+
</div>
|
1771
|
+
|
1772
|
+
|
1773
|
+
</div>
|
1774
|
+
|
1775
|
+
|
1776
|
+
</div>
|
1777
|
+
|
1778
|
+
</body>
|
1779
|
+
|
1780
|
+
<div id="footer">
|
1781
|
+
<a href="http://linkleaf.com">linkleaf</a> is created by <a href="mailto:carl@linkleaf.com">Carl Zulauf</a>.
|
1782
|
+
</div>
|
1783
|
+
</body>
|
1784
|
+
</html>
|
1785
|
+
|