tRuTag 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/makecloud.rb +43 -0
- data/bin/makecloudfromarray.rb +30 -0
- data/css/tRuTag.css +35 -0
- data/doc/LICENSE.txt +57 -0
- data/doc/README.txt +100 -0
- data/doc/RoRwrapper +29 -0
- data/lib/tRuTag.rb +413 -0
- data/lib/tRuTag_full.rb +234 -0
- data/lib/websites.yml +35 -0
- data/sampleout/tRuTagcloud.html +3331 -0
- data/tRuTag.gemspec +30 -0
- data/test/xml/43Places.xml +17 -0
- data/test/xml/43Things.xml +17 -0
- data/test/xml/Delicious.xml +288 -0
- data/test/xml/dinnerbuzz.xml +20 -0
- data/test/xml/tagzania.xml +49 -0
- metadata +78 -0
data/tRuTag.gemspec
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
spec = Gem::Specification.new do |s|
|
5
|
+
s.add_dependency('r43', '>= 0.3.0')
|
6
|
+
s.add_dependency('flickr', '>= 1.0.0')
|
7
|
+
s.name = 'tRuTag'
|
8
|
+
s.version = '0.5.0'
|
9
|
+
s.author = 'Jamal Hansen'
|
10
|
+
s.email = 'jh@rubyyot.com'
|
11
|
+
s.homepage = "http://trutag.rubyforge.org"
|
12
|
+
s.rubyforge_project = "trutag"
|
13
|
+
s.platform = Gem::Platform::RUBY
|
14
|
+
s.summary = "A tag aggregator (taggregator) for personal or web use."
|
15
|
+
s.files = FileList['bin/**/*.rb', 'css/**/*.css', 'lib/**/*','sampleout/**/*.html','doc/**/*','test/xml/**/*.xml', 'tRuTag.gemspec'].to_a
|
16
|
+
s.autorequire = 'tRuTag'
|
17
|
+
s.require_path = 'lib'
|
18
|
+
s.default_executable = "bin/makecloud.rb"
|
19
|
+
s.has_rdoc = 'false'
|
20
|
+
s.required_ruby_version = '>= 1.8.1'
|
21
|
+
s.bindir = %q{bin}
|
22
|
+
s.executables = ["makecloud.rb", "makecloudfromarray.rb"]
|
23
|
+
s.requirements << 'gem r43 v0.3.0 or greater'
|
24
|
+
s.requirements << 'gem flickr v1.0.0 or greater'
|
25
|
+
end
|
26
|
+
|
27
|
+
if $0==__FILE__
|
28
|
+
Gem::manage_gems
|
29
|
+
Gem::Builder.new(spec).build
|
30
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<feed xmlns="http://43places.com/xml/2005/rc#">
|
3
|
+
<title>Erik Benson's tags on 43 Things</title>
|
4
|
+
<link href="http://www.43places.com/people/tags/boo" rel="alternate" type="text/html"/>
|
5
|
+
<tags>
|
6
|
+
<tag count="10">the moon</tag>
|
7
|
+
<tag count="2">France</tag>
|
8
|
+
<tag count="2">Spain</tag>
|
9
|
+
<tag count="6">Seattle</tag>
|
10
|
+
<tag count="2">M</tag>
|
11
|
+
<tag count="2">fiction</tag>
|
12
|
+
<tag count="2">Paris</tag>
|
13
|
+
<tag count="1">cities</tag>
|
14
|
+
<tag count="2">travel</tag>
|
15
|
+
<tag count="2">ambitious</tag>
|
16
|
+
</tags>
|
17
|
+
</feed>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<feed xmlns="http://43things.com/xml/2005/rc#">
|
3
|
+
<title>Erik Benson's tags on 43 Things</title>
|
4
|
+
<link href="http://www.43things.com/people/tags/erik" rel="alternate" type="text/html"/>
|
5
|
+
<tags>
|
6
|
+
<tag count="10">conference</tag>
|
7
|
+
<tag count="2">movies</tag>
|
8
|
+
<tag count="2">car</tag>
|
9
|
+
<tag count="6">web services</tag>
|
10
|
+
<tag count="2">television</tag>
|
11
|
+
<tag count="2">fiction</tag>
|
12
|
+
<tag count="2">celebrities</tag>
|
13
|
+
<tag count="1">cities</tag>
|
14
|
+
<tag count="2">travel</tag>
|
15
|
+
<tag count="2">ambitious</tag>
|
16
|
+
</tags>
|
17
|
+
</feed>
|
@@ -0,0 +1,288 @@
|
|
1
|
+
<?xml version='1.0' standalone='yes'?>
|
2
|
+
<tags>
|
3
|
+
<tag count="1" tag="3d" />
|
4
|
+
<tag count="2" tag="43things" />
|
5
|
+
<tag count="1" tag="AJAX" />
|
6
|
+
<tag count="2" tag="Blog" />
|
7
|
+
<tag count="2" tag="CSS" />
|
8
|
+
<tag count="1" tag="Games" />
|
9
|
+
<tag count="4" tag="Geek" />
|
10
|
+
<tag count="1" tag="HOWTO" />
|
11
|
+
<tag count="9" tag="Humor" />
|
12
|
+
<tag count="1" tag="Japanese" />
|
13
|
+
<tag count="1" tag="Javascript" />
|
14
|
+
<tag count="1" tag="LDAP" />
|
15
|
+
<tag count="2" tag="LaTeX" />
|
16
|
+
<tag count="1" tag="Lessons" />
|
17
|
+
<tag count="1" tag="Linux" />
|
18
|
+
<tag count="1" tag="Movie" />
|
19
|
+
<tag count="1" tag="OpenSource" />
|
20
|
+
<tag count="1" tag="Pinup" />
|
21
|
+
<tag count="3" tag="Programming" />
|
22
|
+
<tag count="1" tag="REXML" />
|
23
|
+
<tag count="1" tag="RPG" />
|
24
|
+
<tag count="1" tag="Reference" />
|
25
|
+
<tag count="8" tag="Ruby" />
|
26
|
+
<tag count="1" tag="Script" />
|
27
|
+
<tag count="1" tag="Shopping" />
|
28
|
+
<tag count="2" tag="Software" />
|
29
|
+
<tag count="2" tag="Tutorial" />
|
30
|
+
<tag count="8" tag="Wiki" />
|
31
|
+
<tag count="1" tag="Wikipedia" />
|
32
|
+
<tag count="1" tag="XML" />
|
33
|
+
<tag count="1" tag="YukihiroMatsumodo" />
|
34
|
+
<tag count="1" tag="Zeitgiest" />
|
35
|
+
<tag count="1" tag="activerecord" />
|
36
|
+
<tag count="1" tag="activist" />
|
37
|
+
<tag count="1" tag="admin" />
|
38
|
+
<tag count="3" tag="ajax" />
|
39
|
+
<tag count="1" tag="alphabet" />
|
40
|
+
<tag count="1" tag="antivirus" />
|
41
|
+
<tag count="6" tag="api" />
|
42
|
+
<tag count="15" tag="art" />
|
43
|
+
<tag count="1" tag="article" />
|
44
|
+
<tag count="1" tag="asia" />
|
45
|
+
<tag count="2" tag="asian" />
|
46
|
+
<tag count="3" tag="asp" />
|
47
|
+
<tag count="2" tag="audio" />
|
48
|
+
<tag count="1" tag="auth" />
|
49
|
+
<tag count="1" tag="bash" />
|
50
|
+
<tag count="1" tag="bellydancing" />
|
51
|
+
<tag count="1" tag="beowulf" />
|
52
|
+
<tag count="21" tag="blog" />
|
53
|
+
<tag count="1" tag="boilerplate" />
|
54
|
+
<tag count="2" tag="book" />
|
55
|
+
<tag count="1" tag="bookmark" />
|
56
|
+
<tag count="1" tag="bookmarks" />
|
57
|
+
<tag count="11" tag="books" />
|
58
|
+
<tag count="1" tag="bushism" />
|
59
|
+
<tag count="1" tag="c++" />
|
60
|
+
<tag count="1" tag="camera" />
|
61
|
+
<tag count="1" tag="career" />
|
62
|
+
<tag count="1" tag="cartoons" />
|
63
|
+
<tag count="1" tag="case" />
|
64
|
+
<tag count="1" tag="catalog" />
|
65
|
+
<tag count="1" tag="cd" />
|
66
|
+
<tag count="2" tag="cheatsheet" />
|
67
|
+
<tag count="1" tag="chess" />
|
68
|
+
<tag count="1" tag="clothes" />
|
69
|
+
<tag count="1" tag="color" />
|
70
|
+
<tag count="1" tag="commandline" />
|
71
|
+
<tag count="3" tag="computer" />
|
72
|
+
<tag count="1" tag="confession" />
|
73
|
+
<tag count="1" tag="configuration" />
|
74
|
+
<tag count="1" tag="contast" />
|
75
|
+
<tag count="1" tag="continuation" />
|
76
|
+
<tag count="1" tag="conversion" />
|
77
|
+
<tag count="2" tag="cool" />
|
78
|
+
<tag count="1" tag="cron" />
|
79
|
+
<tag count="8" tag="css" />
|
80
|
+
<tag count="1" tag="cultofthedeadcow" />
|
81
|
+
<tag count="5" tag="culture" />
|
82
|
+
<tag count="1" tag="custom" />
|
83
|
+
<tag count="1" tag="cvs" />
|
84
|
+
<tag count="17" tag="daily" />
|
85
|
+
<tag count="1" tag="data" />
|
86
|
+
<tag count="5" tag="del.icio.us" />
|
87
|
+
<tag count="3" tag="design" />
|
88
|
+
<tag count="1" tag="designpatterns" />
|
89
|
+
<tag count="1" tag="dictionary" />
|
90
|
+
<tag count="1" tag="digital" />
|
91
|
+
<tag count="1" tag="distro" />
|
92
|
+
<tag count="1" tag="dollar" />
|
93
|
+
<tag count="1" tag="edit" />
|
94
|
+
<tag count="1" tag="editor" />
|
95
|
+
<tag count="11" tag="education" />
|
96
|
+
<tag count="9" tag="erotic" />
|
97
|
+
<tag count="2" tag="erotica" />
|
98
|
+
<tag count="1" tag="error" />
|
99
|
+
<tag count="1" tag="essay" />
|
100
|
+
<tag count="1" tag="example" />
|
101
|
+
<tag count="1" tag="face" />
|
102
|
+
<tag count="2" tag="fantasysports" />
|
103
|
+
<tag count="3" tag="faq" />
|
104
|
+
<tag count="1" tag="farsi" />
|
105
|
+
<tag count="1" tag="fashion" />
|
106
|
+
<tag count="2" tag="fetish" />
|
107
|
+
<tag count="1" tag="filestorage" />
|
108
|
+
<tag count="2" tag="film" />
|
109
|
+
<tag count="4" tag="firefox" />
|
110
|
+
<tag count="1" tag="firewall" />
|
111
|
+
<tag count="3" tag="flickr" />
|
112
|
+
<tag count="12" tag="food" />
|
113
|
+
<tag count="1" tag="form" />
|
114
|
+
<tag count="1" tag="formhelper" />
|
115
|
+
<tag count="1" tag="forms" />
|
116
|
+
<tag count="2" tag="fractal" />
|
117
|
+
<tag count="1" tag="fractals" />
|
118
|
+
<tag count="13" tag="free" />
|
119
|
+
<tag count="18" tag="games" />
|
120
|
+
<tag count="10" tag="geek" />
|
121
|
+
<tag count="1" tag="geography" />
|
122
|
+
<tag count="1" tag="gimp" />
|
123
|
+
<tag count="1" tag="girls" />
|
124
|
+
<tag count="1" tag="gmail" />
|
125
|
+
<tag count="1" tag="go" />
|
126
|
+
<tag count="1" tag="goals" />
|
127
|
+
<tag count="2" tag="google" />
|
128
|
+
<tag count="1" tag="grammer" />
|
129
|
+
<tag count="1" tag="graph" />
|
130
|
+
<tag count="1" tag="greasemonkey" />
|
131
|
+
<tag count="1" tag="guns" />
|
132
|
+
<tag count="2" tag="helloworld" />
|
133
|
+
<tag count="1" tag="hipster" />
|
134
|
+
<tag count="5" tag="hiragana" />
|
135
|
+
<tag count="2" tag="history" />
|
136
|
+
<tag count="1" tag="hongkong" />
|
137
|
+
<tag count="2" tag="hosting" />
|
138
|
+
<tag count="41" tag="howto" />
|
139
|
+
<tag count="2" tag="html" />
|
140
|
+
<tag count="1" tag="http" />
|
141
|
+
<tag count="13" tag="humor" />
|
142
|
+
<tag count="1" tag="identity" />
|
143
|
+
<tag count="2" tag="identityinsert" />
|
144
|
+
<tag count="1" tag="iis" />
|
145
|
+
<tag count="2" tag="image" />
|
146
|
+
<tag count="1" tag="imagehosting" />
|
147
|
+
<tag count="1" tag="immersion" />
|
148
|
+
<tag count="1" tag="indie" />
|
149
|
+
<tag count="1" tag="interview" />
|
150
|
+
<tag count="1" tag="introduction" />
|
151
|
+
<tag count="1" tag="iran" />
|
152
|
+
<tag count="6" tag="japan" />
|
153
|
+
<tag count="46" tag="japanese" />
|
154
|
+
<tag count="2" tag="javascript" />
|
155
|
+
<tag count="2" tag="jobs" />
|
156
|
+
<tag count="4" tag="kanji" />
|
157
|
+
<tag count="2" tag="katakana" />
|
158
|
+
<tag count="1" tag="kernel" />
|
159
|
+
<tag count="2" tag="kungfu" />
|
160
|
+
<tag count="1" tag="lamp" />
|
161
|
+
<tag count="24" tag="language" />
|
162
|
+
<tag count="2" tag="languages" />
|
163
|
+
<tag count="1" tag="lessons" />
|
164
|
+
<tag count="1" tag="library" />
|
165
|
+
<tag count="1" tag="linustorvalds" />
|
166
|
+
<tag count="28" tag="linux" />
|
167
|
+
<tag count="1" tag="list" />
|
168
|
+
<tag count="1" tag="literature" />
|
169
|
+
<tag count="1" tag="login" />
|
170
|
+
<tag count="1" tag="mandriva" />
|
171
|
+
<tag count="3" tag="manga" />
|
172
|
+
<tag count="1" tag="markup" />
|
173
|
+
<tag count="1" tag="media" />
|
174
|
+
<tag count="1" tag="meme" />
|
175
|
+
<tag count="5" tag="movie" />
|
176
|
+
<tag count="2" tag="movies" />
|
177
|
+
<tag count="1" tag="mp3" />
|
178
|
+
<tag count="1" tag="murphyslaw" />
|
179
|
+
<tag count="3" tag="mysql" />
|
180
|
+
<tag count="1" tag="nealstephenson" />
|
181
|
+
<tag count="1" tag="netninjas" />
|
182
|
+
<tag count="1" tag="network" />
|
183
|
+
<tag count="1" tag="networking" />
|
184
|
+
<tag count="5" tag="news" />
|
185
|
+
<tag count="1" tag="nihongo" />
|
186
|
+
<tag count="1" tag="ninja" />
|
187
|
+
<tag count="1" tag="nostalgia" />
|
188
|
+
<tag count="1" tag="office" />
|
189
|
+
<tag count="2" tag="oop" />
|
190
|
+
<tag count="3" tag="opensource" />
|
191
|
+
<tag count="3" tag="organize" />
|
192
|
+
<tag count="1" tag="p2p" />
|
193
|
+
<tag count="1" tag="paper" />
|
194
|
+
<tag count="1" tag="papers" />
|
195
|
+
<tag count="1" tag="parenting" />
|
196
|
+
<tag count="1" tag="parser" />
|
197
|
+
<tag count="1" tag="patch" />
|
198
|
+
<tag count="2" tag="pattern" />
|
199
|
+
<tag count="1" tag="pdf" />
|
200
|
+
<tag count="1" tag="penpal" />
|
201
|
+
<tag count="1" tag="people" />
|
202
|
+
<tag count="1" tag="perl" />
|
203
|
+
<tag count="1" tag="persian" />
|
204
|
+
<tag count="1" tag="philosophy" />
|
205
|
+
<tag count="1" tag="photography" />
|
206
|
+
<tag count="1" tag="photoshop" />
|
207
|
+
<tag count="3" tag="pinup" />
|
208
|
+
<tag count="2" tag="pragmatic" />
|
209
|
+
<tag count="1" tag="presentation" />
|
210
|
+
<tag count="1" tag="privacy" />
|
211
|
+
<tag count="1" tag="productivity" />
|
212
|
+
<tag count="29" tag="programming" />
|
213
|
+
<tag count="1" tag="progress" />
|
214
|
+
<tag count="1" tag="python" />
|
215
|
+
<tag count="1" tag="quick" />
|
216
|
+
<tag count="2" tag="quickref" />
|
217
|
+
<tag count="1" tag="railfrog" />
|
218
|
+
<tag count="1" tag="ranking" />
|
219
|
+
<tag count="5" tag="reading" />
|
220
|
+
<tag count="1" tag="recursion" />
|
221
|
+
<tag count="1" tag="refactoring" />
|
222
|
+
<tag count="9" tag="reference" />
|
223
|
+
<tag count="2" tag="regularexpressions" />
|
224
|
+
<tag count="2" tag="religion" />
|
225
|
+
<tag count="1" tag="retro" />
|
226
|
+
<tag count="1" tag="reuse" />
|
227
|
+
<tag count="1" tag="review" />
|
228
|
+
<tag count="1" tag="rexml" />
|
229
|
+
<tag count="1" tag="romaji" />
|
230
|
+
<tag count="2" tag="rpm" />
|
231
|
+
<tag count="26" tag="ruby" />
|
232
|
+
<tag count="1" tag="rubyforge" />
|
233
|
+
<tag count="1" tag="rubygarden" />
|
234
|
+
<tag count="30" tag="rubyonrails" />
|
235
|
+
<tag count="1" tag="samurai" />
|
236
|
+
<tag count="1" tag="science" />
|
237
|
+
<tag count="8" tag="script" />
|
238
|
+
<tag count="1" tag="search" />
|
239
|
+
<tag count="4" tag="searchengine" />
|
240
|
+
<tag count="1" tag="security" />
|
241
|
+
<tag count="1" tag="server" />
|
242
|
+
<tag count="2" tag="shell" />
|
243
|
+
<tag count="1" tag="shellaccount" />
|
244
|
+
<tag count="3" tag="shopping" />
|
245
|
+
<tag count="1" tag="slackware" />
|
246
|
+
<tag count="1" tag="sms" />
|
247
|
+
<tag count="3" tag="social" />
|
248
|
+
<tag count="2" tag="socialnetwork" />
|
249
|
+
<tag count="5" tag="software" />
|
250
|
+
<tag count="1" tag="space" />
|
251
|
+
<tag count="2" tag="spanish" />
|
252
|
+
<tag count="1" tag="sql" />
|
253
|
+
<tag count="4" tag="sqlserver" />
|
254
|
+
<tag count="1" tag="steadycam" />
|
255
|
+
<tag count="1" tag="storage" />
|
256
|
+
<tag count="1" tag="storewars" />
|
257
|
+
<tag count="1" tag="system:unfiled" />
|
258
|
+
<tag count="1" tag="table" />
|
259
|
+
<tag count="1" tag="tattoo" />
|
260
|
+
<tag count="5" tag="tech" />
|
261
|
+
<tag count="2" tag="thai" />
|
262
|
+
<tag count="1" tag="timemanagement" />
|
263
|
+
<tag count="5" tag="tips" />
|
264
|
+
<tag count="2" tag="tokyo" />
|
265
|
+
<tag count="2" tag="tools" />
|
266
|
+
<tag count="1" tag="track" />
|
267
|
+
<tag count="1" tag="translate" />
|
268
|
+
<tag count="1" tag="tutorial" />
|
269
|
+
<tag count="1" tag="unicode" />
|
270
|
+
<tag count="1" tag="unix" />
|
271
|
+
<tag count="1" tag="validation" />
|
272
|
+
<tag count="1" tag="vb" />
|
273
|
+
<tag count="1" tag="vi" />
|
274
|
+
<tag count="1" tag="video" />
|
275
|
+
<tag count="1" tag="views" />
|
276
|
+
<tag count="6" tag="web" />
|
277
|
+
<tag count="2" tag="webdesign" />
|
278
|
+
<tag count="1" tag="webhosting" />
|
279
|
+
<tag count="3" tag="weird" />
|
280
|
+
<tag count="10" tag="wiki" />
|
281
|
+
<tag count="3" tag="wikipedia" />
|
282
|
+
<tag count="1" tag="woman" />
|
283
|
+
<tag count="1" tag="world" />
|
284
|
+
<tag count="2" tag="writing" />
|
285
|
+
<tag count="2" tag="xml" />
|
286
|
+
<tag count="1" tag="xp" />
|
287
|
+
<tag count="1" tag="zine" />
|
288
|
+
</tags>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:h="http://www.w3.org/1999/xhtml" xmlns:hr="http://www.w3.org/2000/08/w3c-synd/#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
|
3
|
+
|
4
|
+
<channel rdf:about="http://www.dinnerbuzz.com/feed.php?user&v=jhansen">
|
5
|
+
<title>Dinnerbuzz - jhansen's Posts</title>
|
6
|
+
<description>Dinnerbuzz - Social Guide to Dinner and Drinks</description>
|
7
|
+
<link>http://www.dinnerbuzz.com/index.php</link>
|
8
|
+
<items>
|
9
|
+
<rdf:Seq>
|
10
|
+
<rdf:li rdf:resource="http://www.dinnerbuzz.com/place.php?349" />
|
11
|
+
<rdf:li rdf:resource="http://www.dinnerbuzz.com/place.php?337" />
|
12
|
+
</rdf:Seq>
|
13
|
+
</items>
|
14
|
+
</channel>
|
15
|
+
|
16
|
+
<item rdf:about="http://www.dinnerbuzz.com/place.php?349"><title>Cafe India</title><description>as <span class="tags" title="indian slow good lamb lunch buffet"> <a href=tagu.php?indian&u=jhansen><font color=#6666ff>indian</font></a> <a href=tagu.php?slow&u=jhansen><font color=#6666ff>slow</font></a> <a href=tagu.php?good&u=jhansen><font color=#6666ff>good</font></a> <a href=tagu.php?lamb&u=jhansen><font color=#6666ff>lamb</font></a> <a href=tagu.php?lunch&u=jhansen><font color=#6666ff>lunch</font></a> <a href=tagu.php?buffet&u=jhansen><font color=#6666ff>buffet</font></a></span></description><link>http://www.dinnerbuzz.com/place.php?349</link><dc:date>2005-07-28T00:37:15-0400</dc:date></item>
|
17
|
+
|
18
|
+
<item rdf:about="http://www.dinnerbuzz.com/place.php?337"><title>Sage Mediteranean Cafe</title><description>as <span class="tags" title="Mediterranean cafe lunch salad"> <a href=tagu.php?Mediterranean&u=jhansen><font color=#6666ff>Mediterranean</font></a> <a href=tagu.php?cafe&u=jhansen><font color=#6666ff>cafe</font></a> <a href=tagu.php?lunch&u=jhansen><font color=#6666ff>lunch</font></a> <a href=tagu.php?salad&u=jhansen><font color=#6666ff>salad</font></a></span></description><link>http://www.dinnerbuzz.com/place.php?337</link><dc:date>2005-07-27T01:06:24-0400</dc:date></item>
|
19
|
+
|
20
|
+
</rdf:RDF>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<rdf:RDF
|
3
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
4
|
+
xmlns="http://purl.org/rss/1.0/"
|
5
|
+
xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/"
|
6
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
7
|
+
xmlns:syn="http://purl.org/rss/1.0/modules/syndication/"
|
8
|
+
xmlns:admin="http://webns.net/mvcb/"
|
9
|
+
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
|
10
|
+
>
|
11
|
+
<channel rdf:about="http://www.tagzania.com/user/jh">
|
12
|
+
<title>Tagzania - http://www.tagzania.com/user/jh</title>
|
13
|
+
<link>http://www.tagzania.com/user/jh</link>
|
14
|
+
<description></description>
|
15
|
+
<items>
|
16
|
+
<rdf:Seq>
|
17
|
+
<rdf:li rdf:resource="http://www.tagzania.com/item/1962" />
|
18
|
+
</rdf:Seq>
|
19
|
+
</items>
|
20
|
+
|
21
|
+
</channel>
|
22
|
+
|
23
|
+
<item rdf:about="http://www.tagzania.com/item/1962">
|
24
|
+
<title>Space Needle</title>
|
25
|
+
<link>http://www.tagzania.com/item/1962</link>
|
26
|
+
<geo:lat>47.6203</geo:lat>
|
27
|
+
<geo:long>-122.348</geo:long>
|
28
|
+
<dc:creator>jh</dc:creator>
|
29
|
+
<dc:date>2005-07-26T22:40:00Z </dc:date>
|
30
|
+
<dc:subject>spaceneedle
|
31
|
+
seattle
|
32
|
+
tall
|
33
|
+
tower
|
34
|
+
</dc:subject>
|
35
|
+
<taxo:topics>
|
36
|
+
<rdf:Bag>
|
37
|
+
<rdf:li resource="http://www.tagzania.com/tag/spaceneedle" />
|
38
|
+
<rdf:li resource="http://www.tagzania.com/tag/seattle" />
|
39
|
+
<rdf:li resource="http://www.tagzania.com/tag/tall" />
|
40
|
+
<rdf:li resource="http://www.tagzania.com/tag/tower" />
|
41
|
+
</rdf:Bag>
|
42
|
+
</taxo:topics>
|
43
|
+
</item>
|
44
|
+
|
45
|
+
|
46
|
+
</rdf:RDF>
|
47
|
+
|
48
|
+
|
49
|
+
|
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11
|
3
|
+
specification_version: 1
|
4
|
+
name: tRuTag
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.5.0
|
7
|
+
date: 2005-08-09 00:00:00 -07:00
|
8
|
+
summary: A tag aggregator (taggregator) for personal or web use.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: jh@rubyyot.com
|
12
|
+
homepage: http://trutag.rubyforge.org
|
13
|
+
rubyforge_project: trutag
|
14
|
+
description:
|
15
|
+
autorequire: tRuTag
|
16
|
+
default_executable: bin/makecloud.rb
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: "false"
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
-
|
22
|
+
- ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 1.8.1
|
25
|
+
version:
|
26
|
+
platform: ruby
|
27
|
+
signing_key:
|
28
|
+
cert_chain:
|
29
|
+
authors:
|
30
|
+
- Jamal Hansen
|
31
|
+
files:
|
32
|
+
- bin/makecloud.rb
|
33
|
+
- bin/makecloudfromarray.rb
|
34
|
+
- css/tRuTag.css
|
35
|
+
- lib/tRuTag_full.rb
|
36
|
+
- lib/tRuTag.rb
|
37
|
+
- lib/websites.yml
|
38
|
+
- sampleout/tRuTagcloud.html
|
39
|
+
- doc/LICENSE.txt
|
40
|
+
- doc/README.txt
|
41
|
+
- doc/RoRwrapper
|
42
|
+
- test/xml/43Places.xml
|
43
|
+
- test/xml/43Things.xml
|
44
|
+
- test/xml/Delicious.xml
|
45
|
+
- test/xml/dinnerbuzz.xml
|
46
|
+
- test/xml/tagzania.xml
|
47
|
+
- tRuTag.gemspec
|
48
|
+
test_files: []
|
49
|
+
rdoc_options: []
|
50
|
+
extra_rdoc_files: []
|
51
|
+
executables:
|
52
|
+
- makecloud.rb
|
53
|
+
- makecloudfromarray.rb
|
54
|
+
extensions: []
|
55
|
+
requirements:
|
56
|
+
- gem r43 v0.3.0 or greater
|
57
|
+
- gem flickr v1.0.0 or greater
|
58
|
+
dependencies:
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: r43
|
61
|
+
version_requirement:
|
62
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
63
|
+
requirements:
|
64
|
+
-
|
65
|
+
- ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: 0.3.0
|
68
|
+
version:
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: flickr
|
71
|
+
version_requirement:
|
72
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
73
|
+
requirements:
|
74
|
+
-
|
75
|
+
- ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 1.0.0
|
78
|
+
version:
|