Return-Path: X-Original-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E8E16D0F8 for ; Tue, 12 Mar 2013 20:04:51 +0000 (UTC) Received: (qmail 99030 invoked by uid 500); 12 Mar 2013 20:04:51 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 98958 invoked by uid 500); 12 Mar 2013 20:04:51 -0000 Mailing-List: contact allura-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: allura-dev@incubator.apache.org Delivered-To: mailing list allura-commits@incubator.apache.org Received: (qmail 98714 invoked by uid 99); 12 Mar 2013 20:04:51 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Mar 2013 20:04:51 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id B2B7BD136; Tue, 12 Mar 2013 20:04:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tvansteenburgh@apache.org To: allura-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [49/50] [abbrv] git commit: [#5453] Make image assets local to tool Message-Id: <20130312200450.B2B7BD136@tyr.zones.apache.org> Date: Tue, 12 Mar 2013 20:04:50 +0000 (UTC) [#5453] Make image assets local to tool Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/b5a40285 Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/b5a40285 Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/b5a40285 Branch: refs/heads/si/5453 Commit: b5a4028582666ecad4a5746d4492b1edd49c3bec Parents: 686752f Author: Tim Van Steenburgh Authored: Tue Mar 5 21:44:54 2013 +0000 Committer: Tim Van Steenburgh Committed: Tue Mar 12 16:29:59 2013 +0000 ---------------------------------------------------------------------- ForgeUserStats/forgeuserstats/main.py | 10 +++++----- .../nf/userstats/images/stats_24.png | Bin 0 -> 654 bytes .../nf/userstats/images/stats_32.png | Bin 0 -> 715 bytes .../nf/userstats/images/stats_48.png | Bin 0 -> 925 bytes 4 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/b5a40285/ForgeUserStats/forgeuserstats/main.py ---------------------------------------------------------------------- diff --git a/ForgeUserStats/forgeuserstats/main.py b/ForgeUserStats/forgeuserstats/main.py index dcecdb9..acc196d 100644 --- a/ForgeUserStats/forgeuserstats/main.py +++ b/ForgeUserStats/forgeuserstats/main.py @@ -71,8 +71,8 @@ class UserStatsListener(EventsListener): class ForgeUserStatsApp(Application): __version__ = version.__version__ - tool_label='Statistics' - default_mount_label='Statistics' + tool_label='Stats' + default_mount_label='Stats' default_mount_point='stats' permissions = ['configure', 'read', 'write', 'unmoderated_post', 'post', 'moderate', 'admin'] @@ -81,9 +81,9 @@ class ForgeUserStatsApp(Application): config_options = Application.config_options default_external_feeds = [] icons={ - 24:'images/stats_24.png', - 32:'images/stats_32.png', - 48:'images/stats_48.png' + 24:'../../tool/userstats/images/stats_24.png', + 32:'../../tool/userstats/images/stats_32.png', + 48:'../../tool/userstats/images/stats_48.png' } root = ForgeUserStatsController() http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/b5a40285/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_24.png ---------------------------------------------------------------------- diff --git a/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_24.png b/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_24.png new file mode 100644 index 0000000..e3e9f5e Binary files /dev/null and b/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_24.png differ http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/b5a40285/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_32.png ---------------------------------------------------------------------- diff --git a/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_32.png b/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_32.png new file mode 100644 index 0000000..ba76a37 Binary files /dev/null and b/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_32.png differ http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/b5a40285/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_48.png ---------------------------------------------------------------------- diff --git a/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_48.png b/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_48.png new file mode 100644 index 0000000..851e122 Binary files /dev/null and b/ForgeUserStats/forgeuserstats/nf/userstats/images/stats_48.png differ