##// END OF EJS Templates
remove trailing white space from test/fixtures/workflows.yml...
remove trailing white space from test/fixtures/workflows.yml git-svn-id: http://svn.redmine.org/redmine/trunk@16339 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9351:8d73ddf73ffc
r15957:7816a4025a03 master
Show More
README.rdoc
54 lines | 1.7 KiB | text/plain | TextLexer
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960 == Gravatar Plugin
This plugin provides a handful of view helpers for displaying gravatars
(globally-recognized avatars).
Gravatars allow users to configure an avatar to go with their email address at
a central location: http://gravatar.com. Gravatar-aware websites (such
as yours) can then look up and display each user's preferred avatar, without
having to handle avatar management. The user gets the benefit of not having to
set up an avatar for each site that they post on.
== Installation
cd ~/myapp
Eric Davis
Upgraded the gravatar plugin from http://github.com/woods/gravatar-plugin...
r2727 ruby script/plugin install git://github.com/woods/gravatar-plugin.git
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960
or, if you're using piston[http://piston.rubyforge.org] (worth it!):
cd ~/myapp/vendor/plugins
Eric Davis
Upgraded the gravatar plugin from http://github.com/woods/gravatar-plugin...
r2727 piston import git://github.com/woods/gravatar-plugin.git
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960
== Example
If you represent your users with a model that has an +email+ method (typical
for most rails authentication setups), then you can simply use this method
in your views:
<%= gravatar_for @user %>
This will be replaced with the full HTML +img+ tag necessary for displaying
that user's gravatar.
Other helpers are documented under GravatarHelper::PublicMethods.
== Acknowledgments
Eric Davis
Upgraded the gravatar plugin from http://github.com/woods/gravatar-plugin...
r2727 Thanks to Magnus Bergmark (http://github.com/Mange), who contributed the SSL
support in this plugin, as well as a few minor fixes.
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960 The following people have also written gravatar-related Ruby libraries:
* Seth Rasmussen created the gravatar gem[http://gravatar.rubyforge.org]
* Matt McCray has also created a gravatar
plugin[http://mattmccray.com/svn/rails/plugins/gravatar_helper]
== Author
Scott A. Woods
West Arete Computing, Inc.
http://westarete.com
scott at westarete dot com
== TODO
Eric Davis
Upgraded the gravatar plugin from http://github.com/woods/gravatar-plugin...
r2727 * Add specs for ssl support
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960 * Finish rdoc documentation