You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2014/02/04 21:49:16 UTC

[2/2] git commit: [#7081] Standardize on 'follow' with star icon

[#7081] Standardize on 'follow' with star icon

Signed-off-by: Tim Van Steenburgh <tv...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/9d374611
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/9d374611
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/9d374611

Branch: refs/heads/master
Commit: 9d37461135a1c8fd8a6e308d99cad55248fb4827
Parents: e396291
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Fri Jan 31 14:52:12 2014 +0000
Committer: Cory Johns <cj...@slashdotmedia.com>
Committed: Tue Feb 4 20:49:01 2014 +0000

----------------------------------------------------------------------
 ForgeActivity/forgeactivity/widgets/follow.py | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/9d374611/ForgeActivity/forgeactivity/widgets/follow.py
----------------------------------------------------------------------
diff --git a/ForgeActivity/forgeactivity/widgets/follow.py b/ForgeActivity/forgeactivity/widgets/follow.py
index f5a15d7..1aed295 100644
--- a/ForgeActivity/forgeactivity/widgets/follow.py
+++ b/ForgeActivity/forgeactivity/widgets/follow.py
@@ -27,8 +27,8 @@ class FollowToggle(ew.SimpleForm):
         ew.SimpleForm.defaults,
         thing='project',
         action='follow',
-        action_label='watch',
-        icon='watch',
+        action_label='follow',
+        icon='star',
         following=False)
 
     class fields(ew_core.NameList):
@@ -42,8 +42,6 @@ class FollowToggle(ew.SimpleForm):
         if c.project.is_user_project:
             default_context.update(
                 thing=c.project.user_project_of.display_name,
-                action_label='follow',
-                icon='star',
             )
         else:
             default_context.update(thing=c.project.name)