librefm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Librefm-commits] [1266] make all non-user artist tag clouds be free art


From: Clint Adams
Subject: [Librefm-commits] [1266] make all non-user artist tag clouds be free artists by default
Date: Wed, 06 May 2009 23:37:04 +0000

Revision: 1266
          http://svn.sv.gnu.org/viewvc/?view=rev&root=librefm&revision=1266
Author:   clint
Date:     2009-05-06 23:37:04 +0000 (Wed, 06 May 2009)
Log Message:
-----------
make all non-user artist tag clouds be free artists by default

Modified Paths:
--------------
    trunk/nixtape/artist.php
    trunk/nixtape/edit_group.php
    trunk/nixtape/explore.php
    trunk/nixtape/group.php
    trunk/nixtape/track.php
    trunk/nixtape/user-edit.php

Modified: trunk/nixtape/artist.php
===================================================================
--- trunk/nixtape/artist.php    2009-05-06 23:21:25 UTC (rev 1265)
+++ trunk/nixtape/artist.php    2009-05-06 23:37:04 UTC (rev 1266)
@@ -32,7 +32,7 @@
 $smarty->assign("id", $artist->id);
 $smarty->assign("bio_summary", $artist->bio_summary);
 
-$aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist');
+$aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist');
 if (!PEAR::isError ($aTagCloud)) {
         $smarty->assign('tagcloud', $aTagCloud);
 }

Modified: trunk/nixtape/edit_group.php
===================================================================
--- trunk/nixtape/edit_group.php        2009-05-06 23:21:25 UTC (rev 1265)
+++ trunk/nixtape/edit_group.php        2009-05-06 23:37:04 UTC (rev 1266)
@@ -44,7 +44,7 @@
        else
        {
                $smarty->assign('newform', true);
-               $aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist');
+               $aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 
'artist');
                if (!PEAR::isError ($aTagCloud))
                {
                        $smarty->assign('tagcloud', $aTagCloud);
@@ -132,7 +132,7 @@
        # And display the page.
        $smarty->assign('errors', $errors);
        $smarty->assign('newform', false);
-       $aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist');
+       $aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist');
        if (!PEAR::isError ($aTagCloud))
        {
                $smarty->assign('tagcloud', $aTagCloud);

Modified: trunk/nixtape/explore.php
===================================================================
--- trunk/nixtape/explore.php   2009-05-06 23:21:25 UTC (rev 1265)
+++ trunk/nixtape/explore.php   2009-05-06 23:37:04 UTC (rev 1266)
@@ -27,7 +27,7 @@
 require_once('data/TagCloud.php');
 
 // This should be contextual based on the mode= parameter?
-$aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist');
+$aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist');
 if (!PEAR::isError ($aTagCloud)) {
         $smarty->assign('tagcloud', $aTagCloud);
 }

Modified: trunk/nixtape/group.php
===================================================================
--- trunk/nixtape/group.php     2009-05-06 23:21:25 UTC (rev 1265)
+++ trunk/nixtape/group.php     2009-05-06 23:37:04 UTC (rev 1266)
@@ -36,7 +36,7 @@
                                'href' => 
$base_url.'/rdf.php?fmt=xml&page='.htmlentities($_SERVER['REQUEST_URI'])
                                )
                ));
-       $aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist');
+       $aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist');
        if (!PEAR::isError ($aTagCloud))
        {
                $smarty->assign('tagcloud', $aTagCloud);

Modified: trunk/nixtape/track.php
===================================================================
--- trunk/nixtape/track.php     2009-05-06 23:21:25 UTC (rev 1265)
+++ trunk/nixtape/track.php     2009-05-06 23:37:04 UTC (rev 1266)
@@ -33,7 +33,7 @@
 $smarty->assign("artisturl", Server::getArtistURL($track->artist_name));
 
 // no idea how this would be track-relevant
-$aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist');
+$aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist');
 if (!PEAR::isError ($aTagCloud)) {
         $smarty->assign('tagcloud', $aTagCloud);
 }

Modified: trunk/nixtape/user-edit.php
===================================================================
--- trunk/nixtape/user-edit.php 2009-05-06 23:21:25 UTC (rev 1265)
+++ trunk/nixtape/user-edit.php 2009-05-06 23:37:04 UTC (rev 1266)
@@ -170,7 +170,7 @@
        }
 
        # And display the page.
-       $aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist');
+       $aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist');
        if (!PEAR::isError ($aTagCloud))
        {
                $smarty->assign('tagcloud', $aTagCloud);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]