sexy_bookmarks 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. data/Gemfile +12 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +202 -0
  4. data/Rakefile +14 -0
  5. data/lib/sexy_bookmarks.rb +6 -68
  6. data/lib/sexy_bookmarks/engine.rb +7 -0
  7. data/lib/sexy_bookmarks/exceptions.rb +5 -0
  8. data/lib/sexy_bookmarks/fixtures/socials.yml +328 -0
  9. data/lib/sexy_bookmarks/macros_helper.rb +67 -0
  10. data/lib/sexy_bookmarks/version.rb +3 -0
  11. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/custom-fugue-sprite.png +0 -0
  12. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/error-delete.jpg +0 -0
  13. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/flo-head.jpg +0 -0
  14. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/green-grad.png +0 -0
  15. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/information-delete.jpg +0 -0
  16. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/red-grad.png +0 -0
  17. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-enjoy.png +0 -0
  18. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-german.png +0 -0
  19. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-knowledge.png +0 -0
  20. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-love-hearts.png +0 -0
  21. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/share-wealth.png +0 -0
  22. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/shareaholic-220.png +0 -0
  23. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/sharing-caring-hearts.png +0 -0
  24. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/sharing-caring.png +0 -0
  25. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/sharing-shr.png +0 -0
  26. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/shr-sprite.png +0 -0
  27. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/shrsb-logo.png +0 -0
  28. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/success-delete.jpg +0 -0
  29. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/warning-big.png +0 -0
  30. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/warning-delete.jpg +0 -0
  31. data/{lib/sexybookmarks/assets/images/sexybookmarks → vendor/assets/images}/white-pix.jpg +0 -0
  32. data/vendor/assets/stylesheets/jquery.sexy_bookmarks.scss.erb +830 -0
  33. data/vendor/assets/stylesheets/sexy_bookmarks.css +3 -0
  34. metadata +151 -51
  35. data/README.rdoc +0 -76
  36. data/init.rb +0 -2
  37. data/lib/fixtures/socials.yml +0 -246
  38. data/lib/sexy_bookmarks_macros_helper.rb +0 -58
  39. data/lib/sexybookmarks/assets/stylesheets/sexybookmarks/style.css +0 -1
  40. data/sexy_bookmarks.gemspec +0 -17
  41. data/test/sexy_bookmarks_test.rb +0 -8
  42. data/test/test_helper.rb +0 -3
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ source 'https://rubygems.org'
2
+ gem 'rails'
3
+ gem 'jquery-rails'
4
+
5
+ group :assets do
6
+ gem 'sass-rails', ">= 3.2.0"
7
+ gem 'coffee-rails', ">= 3.2.0"
8
+ gem 'uglifier'
9
+ end
10
+
11
+ # Specify your gem's dependencies in sexy_bookmarks.gemspec
12
+ gemspec
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Enrique Vidal
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.md ADDED
@@ -0,0 +1,202 @@
1
+ # SexyBookmarks
2
+ [![Build Status](https://secure.travis-ci.org/cloverinteractive/sexy_bookmarks.png?branch=master)](http://travis-ci.org/cloverinteractive/sexy_bookmarks)
3
+
4
+ This plugin provides the installation and utilization of SexyBookmarks in Ruby on Rails - It's still in progress but should work out of the box for you.
5
+
6
+ SexyBookmarks is a cool plugin for wordpress that includes list of social networks to publish content to by [Shareaholic](http://sexybookmarks.shareaholic.com/)
7
+
8
+ ## Installation
9
+ Installing SexyBookmarks is pretty simple and straight forward
10
+
11
+ ### Rails >= 3.1
12
+ ```ruby
13
+ gem 'sexy_bookmarks'
14
+ ```
15
+
16
+ Then in the asset pipeline in your `application.css` add:
17
+
18
+ ```
19
+ *= require sexy_bookmarks
20
+ ```
21
+
22
+ That's it!
23
+
24
+ ### Rails 2.3.x - 3.0.x
25
+ ```ruby
26
+ gem 'sexy_bookmarks', '0.1.1'
27
+ ```
28
+
29
+ #### Step 2
30
+ Add the following to the top of the controller of the page you want to add SexyBookmarks to.
31
+
32
+ `uses_sexy_bookmarks`
33
+
34
+ Then to display the list of links in your page just add this to your view:
35
+
36
+ ```erb
37
+ <%= show_sexy_bookmarks :permalink => 'http://mycoolsite.com/my_cool_article', :title => @article.title %>
38
+ ```
39
+
40
+ Lastly add the following to the `<head>` element of your application view:
41
+
42
+ `include_sexy_bookmarks_if_needed`
43
+
44
+ This will load the CSS needed by SexyBookmarks whenever its needed.
45
+
46
+ ## Configuration
47
+ There are a couple of options you can easily tweak in Sexy bookmarks:
48
+
49
+ 1. You can choose which social networks to show
50
+ 2. You can set different text options for SexyBookmarks
51
+ 3. You can choose in what actions to load the SexyBookmarks CSS
52
+
53
+ ## The SexyBookmarks parameters
54
+ The show_sexy_bookmarks method receives 3 parameters, this is what its signature looks like:
55
+
56
+ ```ruby
57
+ show_sexy_bookmarks(content, socials = nil, per_row = 8)
58
+ ```
59
+
60
+ * The content parameter is a hash that contains, all the article text options such as title, permalink and post summary
61
+
62
+ REQUIRED KEYS FOR CONTENT / OPTIONS HASH
63
+ `[ :title, :permalink, :post_summary ]`
64
+
65
+ * The socials parameter is an array that contains a collection of the social networks we wish to show
66
+ * Finally the per_row parameter is the number of social network icons that fit in your design, by default SexyBookmarks will use 100% of the space available, knowing how many links can fit is useful to properly show/hide the links upon hover
67
+
68
+ Only the first parameter is mandatory.
69
+
70
+ ### Choosing your social networks
71
+ By default SexyBookmarks will show all the links available, however you can choose what links to show simply by passing the show_sexy_bookmarks an array of networks like this:
72
+
73
+ ```erb
74
+ <%= show_sexy_bookmarks( options, [ :facebook, :linkedin, :googlebuzz, :myspace ] )
75
+ ```
76
+
77
+ ## Loading stylesheets only when necessary
78
+ This will only work in rails `3.0` and `2.3`, rails `>= 3.1` uses the asset pipeline.
79
+
80
+ The uses_sexy_bookmarks method on your controller set an instance variable to true which is the compared to load the CSS in your application layout, this method also takes a parameter:
81
+
82
+ ```ruby
83
+ uses_sexy_bookmarks :only => [ :show ]
84
+ ```
85
+
86
+ This will ensure that the SexyBookmark CSS is only loaded when you visit the actions in the method's parameter.
87
+
88
+ ## Running the tests
89
+
90
+ You'll need to simply `git clone`, `cd` and run `rake`
91
+
92
+ ```
93
+ git clone git://github.com/cloverinteractive/sexy_bookmarks.git
94
+ cd sexy_bookmarks
95
+ rake
96
+ ```
97
+
98
+ There is a dummy up with a view you can run too, once in the sexy_bookmarks dir do:
99
+
100
+ ```
101
+ cd test/dummy
102
+ rails s
103
+ ```
104
+
105
+ You can now check `localhost:3000` and you should se a blank view with three bookmark options in it.
106
+
107
+ ## Important Notes
108
+
109
+ In development you will probably be hitting these things with localhost:3000 or similar, some of these do not work with such an address, usually because they try and scrape it or are doing some sort url verificiation on their end.
110
+
111
+ Below is a list of services that will appear not to work when passed a url of http://localhost:3000 They should work on your production site.
112
+
113
+ * LinkedIn
114
+ * Stumbleupon
115
+
116
+ Support for installing as rails plugin has been dropped, please use as gem through bundler.
117
+
118
+ ### All supported Social Network options
119
+
120
+ This is the list of all the suported social networks, thanks @asn for the observation:
121
+
122
+ * 100zakladok
123
+ * bebo
124
+ * bitacoras
125
+ * blinklist
126
+ * blogengage
127
+ * blogger
128
+ * blogmarks
129
+ * bobrdobr
130
+ * bonzobox
131
+ * boxnet
132
+ * buzzster
133
+ * current
134
+ * delicious
135
+ * designbump
136
+ * designfloat
137
+ * digg
138
+ * diigo
139
+ * dzone
140
+ * ekudos
141
+ * evernote
142
+ * facebook
143
+ * faqpal
144
+ * friendfeed
145
+ * fwisp
146
+ * globalgrind
147
+ * googlebookmarks
148
+ * googlebuzz
149
+ * googlereader
150
+ * hackernews
151
+ * hatena
152
+ * hyves
153
+ * identica
154
+ * izeby
155
+ * jumptags
156
+ * kaevur
157
+ * linkedin
158
+ * memoryru
159
+ * meneame
160
+ * moemesto
161
+ * mylinkvault
162
+ * myspace
163
+ * n4g
164
+ * netvibes
165
+ * netvouz
166
+ * newsvine
167
+ * ning
168
+ * nujij
169
+ * oknotizie
170
+ * orkut
171
+ * pfbuzz
172
+ * pingfm
173
+ * plaxo
174
+ * plurk
175
+ * posterous
176
+ * printfriendly
177
+ * propeller
178
+ * pusha
179
+ * reddit
180
+ * scriptstyle
181
+ * slashdot
182
+ * sphinn
183
+ * springpad
184
+ * squidoo
185
+ * strands
186
+ * stumbleupon
187
+ * stumpedia
188
+ * techmeme
189
+ * technorati
190
+ * tipd
191
+ * tumblr
192
+ * twitter
193
+ * twittley
194
+ * viadeo
195
+ * virb
196
+ * webblend
197
+ * wikio
198
+ * wykop
199
+ * xerpi
200
+ * yahoobuzz
201
+ * yandex
202
+ * zabox
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env rake
2
+
3
+ require "bundler/gem_tasks"
4
+
5
+ require 'rake'
6
+ desc 'Default: run all tests.'
7
+ task :default => :test
8
+
9
+ require 'rake/testtask'
10
+ Rake::TestTask.new( :test ) do |test|
11
+ test.libs << 'test'
12
+ test.pattern = 'test/**/*_test.rb'
13
+ test.verbose = true
14
+ end
@@ -1,76 +1,14 @@
1
- require 'sexy_bookmarks_macros_helper'
1
+ require 'sexy_bookmarks/version'
2
+ require 'sexy_bookmarks/engine'
3
+ require 'sexy_bookmarks/exceptions'
4
+ require 'sexy_bookmarks/macros_helper'
2
5
 
3
6
  module SexyBookmarks
4
7
  def self.included(base)
5
8
  base.extend(ClassMethods)
6
9
  end
7
-
8
- def self.initialize
9
- return if @intialized
10
-
11
- SexyBookmarks.install
12
- @intialized = true
13
- end
14
-
15
- def self.install
16
- require 'fileutils'
17
- original_stylesheets = File.join(File.dirname(__FILE__), 'sexybookmarks', 'assets', 'stylesheets', 'sexybookmarks' )
18
- original_images = File.join(File.dirname(__FILE__), 'sexybookmarks', 'assets', 'images', 'sexybookmarks' )
19
- destination = File.join(Rails.root.to_s, 'public')
20
-
21
- stylesheet_dest = File.join(destination, 'stylesheets', 'sexybookmarks')
22
- stylesheet = File.join(stylesheet_dest, 'style.css')
23
-
24
- images_dest = File.join(destination, 'images', 'sexybookmarks')
25
-
26
- unless File.exists?( stylesheet ) && FileUtils.identical?( File.join( original_stylesheets, 'style.css' ), stylesheet )
27
- if !File.exists?( stylesheet )
28
- begin
29
- puts "Creating directory #{stylesheet_dest}..."
30
- FileUtils.mkdir_p stylesheet_dest
31
- puts "Copying SexyBookmarks CSS to #{stylesheet_dest}..."
32
- FileUtils.cp_r "#{original_stylesheets}/.", stylesheet_dest
33
- puts "Successfully copied SexyBookmarks css."
34
- rescue
35
- puts "ERROR: Problem installing SexyBookmarks. Please manually copy "
36
- puts stylesheet
37
- puts "to"
38
- puts stylesheet_dest
39
- end
40
- end
41
- end
42
-
43
- unless File.exists?(images_dest)
44
- begin
45
- puts "Creating directory #{images_dest}..."
46
- FileUtils.mkdir_p images_dest
47
- puts "Copying SexyBookmarks images to #{images_dest}"
48
- FileUtils.cp_r "#{original_images}/.", images_dest
49
- puts "Successfully copied SexyBookmarks images"
50
- rescue
51
- puts "ERROR: Problem installing SexyBookmarks. Please manually copy the images in"
52
- puts original_images
53
- puts "to"
54
- puts images_dest
55
- end
56
- end
57
- end
58
-
59
- module ClassMethods
60
- def uses_sexy_bookmarks(options = {})
61
- proc = Proc.new do |current_class|
62
- current_class.instance_variable_set(:@uses_sexy_bookmarks, true)
63
- end
64
-
65
- before_filter(proc, options)
66
- end
67
- end
68
-
69
- self.initialize
70
-
71
10
  end
72
11
 
73
12
  class ActionController::Base
74
- include SexyBookmarks
75
- self.helper SexyBookmarksMacrosHelper
76
- end
13
+ self.helper SexyBookmarks::MacrosHelper
14
+ end
@@ -0,0 +1,7 @@
1
+ module SexyBookmarks
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module SexyBookmarks
2
+ module Exceptions
3
+ class NotEnoughInfo < RuntimeError; end
4
+ end
5
+ end
@@ -0,0 +1,328 @@
1
+ 100zakladok:
2
+ url: 'http://www.100zakladok.ru/save/?bmurl=PERMALINK&bmtitle=TITLE'
3
+ message: 'Add this to 100 bookmarks'
4
+
5
+ bebo:
6
+ url: 'http://www.bebo.com/c/share?Url=PERMALINK&Title=TITLE'
7
+ message: 'Share this on Bebo'
8
+
9
+ bitacoras:
10
+ url: 'http://bitacoras.com/anotaciones/PERMALINK'
11
+ message: 'Submit this to bitacoras'
12
+
13
+ blinklist:
14
+ url: 'http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=PERMALINK&Title=TITLE'
15
+ message: 'Share this on Blinklist'
16
+
17
+ blogengage:
18
+ url: 'http://www.blogengage.com/submit.php?url=PERMALINK'
19
+ message: 'Engage this article!'
20
+
21
+ blogger:
22
+ url: 'http://www.blogger.com/blog_this.pyra?t&u=PERMALINK&n=TITLE&pli=1'
23
+ message: 'Blog this on Blogger'
24
+
25
+ blogmarks:
26
+ url: 'http://blogmarks.net/my/new.php?mini=1&simple=1&url=PERMALINK&title=TITLE'
27
+ message: 'Mark this on BlogMarks'
28
+
29
+ bobrdobr:
30
+ url: 'http://bobrdobr.ru/addext.html?url=PERMALINK&title=TITLE'
31
+ message: 'Share this on BobrDobr'
32
+
33
+ bonzobox:
34
+ url: 'http://bonzobox.com/toolbar/add?pop=1&u=PERMALINK&t=TITLE&d=POST_SUMMARY'
35
+ message: 'Add this to BonzoBox'
36
+
37
+ boxnet:
38
+ url: 'https://www.box.net/api/1.0/import?url=PERMALINK&name=TITLE&description=POST_SUMMARY&import_as=link'
39
+ message: 'Add this link to Box.net'
40
+
41
+ buzzster:
42
+ url: "javascript:var%20s=document.createElement('script');s.src='http://www.buzzster.com/javascripts/bzz_adv.js';s.type='text/javascript';void(document.getElementsByTagName('head')[0].appendChild(s));"
43
+ message: 'Buzzter!'
44
+
45
+ current:
46
+ url: 'http://current.com/clipper.htm?url=PERMALINK&title=TITLE'
47
+ message: 'Post this on Current'
48
+
49
+ delicious:
50
+ url: 'http://delicious.com/post?url=PERMALINK&title=TITLE'
51
+ message: 'Share this on del.icio.us'
52
+
53
+ designbump:
54
+ url: 'http://designbump.com/submit?url=PERMALINK&title=TITLE&body=POST_SUMMARY'
55
+ message: 'Bump this on DesignBump'
56
+
57
+ designfloat:
58
+ url: 'http://www.designfloat.com/submit.php?url=PERMALINK&title=TITLE'
59
+ message: 'Submit this to DesignFloat'
60
+
61
+ digg:
62
+ url: 'http://digg.com/submit?phase=2&url=PERMALINK&title=TITLE'
63
+ message: 'Digg this!'
64
+
65
+ diigo:
66
+ url: 'http://www.diigo.com/post?url=PERMALINK&title=TITLE&desc=SEXY_TEASER'
67
+ message: 'Post this on Diigo'
68
+
69
+ dzone:
70
+ url: 'http://www.dzone.com/links/add.html?url=PERMALINK&title=TITLE&description=POST_SUMMARY'
71
+ message: 'Add this to DZone'
72
+
73
+ ekudos:
74
+ url: 'http://www.ekudos.nl/artikel/nieuw?url=PERMALINK&title=TITLE&desc=POST_SUMMARY'
75
+ message: 'Submit this to eKudos'
76
+
77
+ evernote:
78
+ url: 'http://www.evernote.com/clip.action?url=PERMALINK&title=TITLE'
79
+ message: 'Clip this to Evernote'
80
+
81
+ facebook:
82
+ url: 'http://www.facebook.com/share.php?v=4&src=bm&u=PERMALINK&t=TITLE'
83
+ message: 'Share this on Facebook'
84
+
85
+ faqpal:
86
+ url: 'http://www.faqpal.com/submit?url=PERMALINK'
87
+ message: 'Submit this to FAQpal'
88
+
89
+ friendfeed:
90
+ url: 'http://www.friendfeed.com/share?title=TITLE&link=PERMALINK'
91
+ message: 'Share this on FriendFeed'
92
+
93
+ fwisp:
94
+ url: 'http://fwisp.com/submit?url=PERMALINK'
95
+ message: 'Share this on Fwisp'
96
+
97
+ globalgrind:
98
+ url: 'http://globalgrind.com/submission/submit.aspx?url=PERMALINK&type=Article&title=TITLE'
99
+ message: 'Grind this! on Global Grind'
100
+
101
+ googlebookmarks:
102
+ url: 'http://www.google.com/bookmarks/mark?op=add&bkmk=PERMALINK&title=TITLE'
103
+ message: 'Add this to Google Bookmarks'
104
+
105
+ googlebuzz:
106
+ url: 'http://www.google.com/buzz/post?url=PERMALINK&imageurl='
107
+ message: 'Post on Google Buzz'
108
+
109
+ googlereader:
110
+ url: 'http://www.google.com/reader/link?url=PERMALINK&title=TITLE&srcUrl=PERMALINK&srcTitle=TITLE&snippet=POST_SUMMARY'
111
+ message: 'Add this to Google Reader'
112
+
113
+ hackernews:
114
+ url: 'http://news.ycombinator.com/submitlink?u=PERMALINK&t=TITLE'
115
+ message: 'Submit this to Hacker News'
116
+
117
+ hatena:
118
+ url: 'http://b.hatena.ne.jp/add?mode=confirm&url=PERMALINK&title=TITLE'
119
+ message: 'Bookmark this on Hatena Bookmarks'
120
+
121
+ hyves:
122
+ url: 'http://www.hyves.nl/profilemanage/add/tips/?name=TITLE&text=POST_SUMMARY+-+PERMALINK&rating=5'
123
+ message: 'Share this on Hyves'
124
+
125
+ identica:
126
+ url: 'http://identi.ca//index.php?action=newnotice&status_textarea=Reading:+&quot;SHORT_TITLE&quot;+-+from+FETCH_URL'
127
+ message: 'Save this to Xerpi'
128
+
129
+ izeby:
130
+ url: 'http://izeby.com/submit.php?url=PERMALINK'
131
+ message: 'Add this to Izeby'
132
+
133
+ jumptags:
134
+ url: 'http://www.jumptags.com/add/?url=PERMALINK&title=TITLE'
135
+ message: 'Submit this link to JumpTags'
136
+
137
+ kaevur:
138
+ url: 'http://kaevur.com/submit.php?url=PERMALINK'
139
+ message: 'Share this on Kaevur'
140
+
141
+ linkedin:
142
+ url: 'http://www.linkedin.com/shareArticle?mini=true&url=ESCAPED_PERMALINK&title=TITLE&ro=false&summary=POST_SUMMARY&source='
143
+ message: 'Share this on LinkedIn'
144
+
145
+ memoryru:
146
+ url: 'http://memori.ru/link/?sm=1&u_data[url]=PERMALINK&u_data[name]=TITLE'
147
+ message: 'Add this to Memory.ru'
148
+
149
+ meneame:
150
+ url: 'http://meneame.net/submit.php?url=PERMALINK'
151
+ message: 'Submit this to Meneame'
152
+
153
+ mixx:
154
+ url: 'http://www.mixx.com/submit?page_url=PERMALINK&title=TITLE'
155
+ message: 'Share this on Mixx'
156
+
157
+ moemesto:
158
+ url: 'http://moemesto.ru/post.php?url=PERMALINK&title=TITLE'
159
+ message: 'Add this to MyPlace'
160
+
161
+ mylinkvault:
162
+ url: 'http://www.mylinkvault.com/link-page.php?u=PERMALINK&n=TITLE'
163
+ message: 'Store this link on MyLinkVault'
164
+
165
+ myspace:
166
+ url: 'http://www.myspace.com/Modules/PostTo/Pages/?u=PERMALINK&t=TITLE&c=POST_SUMMARY'
167
+ message: 'Post this to MySpace'
168
+
169
+ n4g:
170
+ url: 'http://www.n4g.com/tips.aspx?url=PERMALINK&title=TITLE'
171
+ message: 'Submit tip to N4G'
172
+
173
+ netvibes:
174
+ url: 'http://www.netvibes.com/share?title=TITLE&url=PERMALINK'
175
+ message: 'Submit this to Netvibes'
176
+
177
+ netvouz:
178
+ url: 'http://www.netvouz.com/action/submitBookmark?url=PERMALINK&title=TITLE&popup=no'
179
+ message: 'Submit this to Netvouz'
180
+
181
+ newsvine:
182
+ url: 'http://www.newsvine.com/_tools/seed&save?u=PERMALINK&h=TITLE'
183
+ message: 'Seed this on Newsvine'
184
+
185
+ ning:
186
+ url: 'http://bookmarks.ning.com/addItem.php?url=PERMALINK&T=TITLE'
187
+ message: 'Add this to Ning'
188
+
189
+ nujij:
190
+ url: 'http://nujij.nl/jij.lynkx?t=TITLE&u=PERMALINK&b=POST_SUMMARY'
191
+ message: 'Submit this to NUjij'
192
+
193
+ oknotizie:
194
+ url: 'http://oknotizie.virgilio.it/post?url=PERMALINK&title=TITLE'
195
+ message: 'Share this on OkNotizie'
196
+
197
+ orkut:
198
+ url: 'http://promote.orkut.com/preview?nt=orkut.com&tt=TITLE&du=PERMALINK&cn=POST_SUMMARY'
199
+ message: 'Promote this on Orkut'
200
+
201
+ pfbuzz:
202
+ url: 'http://pfbuzz.com/submit?url=PERMALINK&title=TITLE'
203
+ message: 'Share this on PFBuzz'
204
+
205
+ pingfm:
206
+ url: 'http://ping.fm/ref/?link=PERMALINK&title=TITLE&body=POST_SUMMARY'
207
+ message: 'Ping this on Ping.fm'
208
+
209
+ plaxo:
210
+ url: 'http://www.plaxo.com/?share_link=PERMALINK'
211
+ message: 'Share this on Plaxo'
212
+
213
+ plurk:
214
+ url: 'http://www.plurk.com/m?content=TITLE+-+PERMALINK&qualifier=shares'
215
+ message: 'Share this on Plurk'
216
+
217
+ posterous:
218
+ url: 'http://posterous.com/share?linkto=PERMALINK&title=TITLE&selection=POST_SUMMARY'
219
+ message: 'Post this to Posterous'
220
+
221
+ printfriendly:
222
+ url: 'http://www.printfriendly.com/print?url=PERMALINK'
223
+ message: 'Send this page to Print Friendly'
224
+
225
+ propeller:
226
+ url: 'http://www.propeller.com/submit/?url=PERMALINK'
227
+ message: 'Submit this story to Propeller'
228
+
229
+ pusha:
230
+ url: 'http://www.pusha.se/posta?url=PERMALINK&title=TITLE'
231
+ message: 'Push this on Pusha'
232
+
233
+ reddit:
234
+ url: 'http://reddit.com/submit?url=PERMALINK&title=TITLE'
235
+ message: 'Share this on Reddit'
236
+
237
+ scriptstyle:
238
+ url: 'http://scriptandstyle.com/submit?url=PERMALINK&title=TITLE'
239
+ message: 'Submit this to Script & Style'
240
+
241
+ slashdot:
242
+ url: 'http://slashdot.org/bookmark.pl?url=PERMALINK&title=TITLE'
243
+ message: 'Submit this to SlashDot'
244
+
245
+ sphinn:
246
+ url: 'http://sphinn.com/index.php?c=post&m=submit&link=PERMALINK'
247
+ message: 'Sphinn this on Sphinn'
248
+
249
+ springpad:
250
+ url: 'http://springpadit.com/clip.action?body=POST_SUMMARY&url=PERMALINK&format=microclip&title=TITLE&isSelected=true'
251
+ message: 'Spring this on SpringPad'
252
+
253
+ squidoo:
254
+ url: 'http://www.squidoo.com/lensmaster/bookmark?PERMALINK'
255
+ message: 'Add this to a lense on Squidoo'
256
+
257
+ strands:
258
+ url: 'http://www.strands.com/tools/share/webpage?title=TITLE&url=PERMALINK'
259
+ message: 'Submit this to Strands'
260
+
261
+ stumbleupon:
262
+ url: 'http://www.stumbleupon.com/submit?url=PERMALINK&title=TITLE'
263
+ message: 'Stumble upon something good? Share it on StumbleUpon'
264
+
265
+ stumpedia:
266
+ url: 'http://www.stumpedia.com/submit?url=PERMALINK&title=TITLE'
267
+ message: 'Add this to Stumpedia'
268
+
269
+ techmeme:
270
+ url: 'http://twitter.com/home/?status=Tip+@Techmeme+PERMALINK+&quot;TITLE&quot;&source=shareaholic'
271
+ message: 'Tip this to TechMeme'
272
+
273
+ technorati:
274
+ url: 'http://www.stumbleupon.com/submit?url=PERMALINK&title=TITLE'
275
+ message: 'Stumble upon something good? Share it on StumbleUpon'
276
+
277
+ tipd:
278
+ url: 'http://tipd.com/submit.php?url=PERMALINK'
279
+ message: 'Share this on Tipd'
280
+
281
+ tumblr:
282
+ image_url: "http://www.tumblr.com/share/photo?caption=TITLE&source=IMAGE&clickthru=ESCAPED_PERMALINK"
283
+ url: "http://www.tumblr.com/share/link?url=PERMALINK&name=TITLE&description=POST_SUMMARY"
284
+ message: 'Share this on Tumblr'
285
+
286
+ twitter:
287
+ url: 'https://twitter.com/share?url=PERMALINK&text=POST_SUMMARY'
288
+ message: 'Tweet This!'
289
+
290
+ twittley:
291
+ url: 'http://twittley.com/submit/?title=TITLE&url=PERMALINK&desc=POST_SUMMARY&pcat=TWITT_CAT&tags=DEFAULT_TAGS'
292
+ message: 'Submit this to Twittley'
293
+
294
+ viadeo:
295
+ url: 'http://www.viadeo.com/shareit/share/?url=PERMALINK&title=TITLE&urlaffiliate=31138'
296
+ message: 'Share this on Viadeo'
297
+
298
+ virb:
299
+ url: 'http://virb.com/share?external&v=2&url=PERMALINK&title=TITLE'
300
+ message: 'Share this on Virb'
301
+
302
+ webblend:
303
+ url: 'http://thewebblend.com/submit?url=PERMALINK&title=TITLE&body=POST_SUMMARY'
304
+ message: 'Blend this!'
305
+
306
+ wikio:
307
+ url: 'http://www.wikio.com/sharethis?url=PERMALINK&title=TITLE'
308
+ message: 'Share this on Wikio'
309
+
310
+ wykop:
311
+ url: 'http://www.wykop.pl/dodaj?url=PERMALINK&title=TITLE'
312
+ message: 'Add this to Wykop!'
313
+
314
+ xerpi:
315
+ url: 'http://www.xerpi.com/block/add_link_from_extension?url=PERMALINK&title=TITLE'
316
+ message: 'Save this to Xerpi'
317
+
318
+ yahoobuzz:
319
+ url: 'http://buzz.yahoo.com/submit/?submitUrl=PERMALINK&submitHeadline=TITLE&submitSummary=YAHOOTEASER&submitCategory=YAHOOCATEGORY&submitAssetType=YAHOOMEDIATYPE'
320
+ message: 'Buzz up!'
321
+
322
+ yandex:
323
+ url: 'http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&lurl=PERMALINK&lname=TITLE'
324
+ message: 'Yandex.Bookmarks'
325
+
326
+ zabox:
327
+ url: 'http://www.zabox.net/submit.php?url=PERMALINK'
328
+ message: 'Box this on Zabox'