Skip to content

Commit

Permalink
Item8265:
Browse files Browse the repository at this point in the history
   * made sorting terms case-insensitive
   * added new "case" option for case-sensitive sorting
   * fixed off-by-one error in min option
   * improved stop-wordds handling



git-svn-id: http://svn.foswiki.org/trunk/TagCloudPlugin@4762 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
MichaelDaum authored and MichaelDaum committed Sep 3, 2009
1 parent a9c1a5a commit 5ac3226
Show file tree
Hide file tree
Showing 4 changed files with 357 additions and 10 deletions.
7 changes: 4 additions & 3 deletions data/System/TagCloudPlugin.txt
Expand Up @@ -85,7 +85,7 @@ Parameters:
(default: undefined)
* =buckets=: number of buckets which to sort terms into
(default: 10)
* =sort=: sort terms in the tag cloud alphabetically or by weight (alpha, count or weight)
* =sort=: sort terms in the tag cloud alphabetically, casesensitive or by weight (alpha, case, count or weight)
(default: alpha)
* =group=: format string to distinguish groups within the sortion; if the tag cloud is
sorted alphabetically terms are grouped according their first letter; terms sorted by
Expand Down Expand Up @@ -188,9 +188,10 @@ Cloud for the above text:
| Plugin Author: | Michael Daum |
| Copyright ©: | 2006-2009, Michael Daum http://michaeldaumconsulting.com |
| License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) |
| Plugin Version: | v2.01 |
| Plugin Version: | v2.10 |
| Change History: |   |
| 25 Aug 2009: | added custom fields (Foswiki:Main.OliverKrueger) |
| 03 Sep 2009: | made sorting case insensitive; added case sensitive extra param |
| 25 Aug 2009: | added custom fields for terms in the tagcloud (Foswiki:Main.OliverKrueger) |
| 24 Apr 2009: | converted to foswiki plugin |
| 07 Jan 2009: | fixed parsing of parameters (tststs); \
certified for foswiki/compat |
Expand Down
2 changes: 1 addition & 1 deletion lib/Foswiki/Plugins/TagCloudPlugin.pm
Expand Up @@ -24,7 +24,7 @@ use vars qw(
);

$VERSION = '$Rev$';
$RELEASE = 'v2.01';
$RELEASE = 'v2.10';
$NO_PREFS_IN_TOPIC = 1;
$SHORTDESCRIPTION = 'Renders a tag cloud given a list of terms';

Expand Down

0 comments on commit 5ac3226

Please sign in to comment.