You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by Sam Ruby <ru...@apache.org> on 2016/02/27 00:41:46 UTC

[whimsy.git] [1/1] Commit 9c3afe5: adjust to base

Commit 9c3afe50ae98c991e9118f70f418f6f2321e26ad:
    adjust to base


Branch: refs/heads/master
Author: Sam Ruby <ru...@intertwingly.net>
Committer: Sam Ruby <ru...@intertwingly.net>
Pusher: rubys <ru...@apache.org>

------------------------------------------------------------
www/members/watch.cgi                                        | +++++ -----
------------------------------------------------------------
20 changes: 10 additions, 10 deletions.
------------------------------------------------------------


diff --git a/www/members/watch.cgi b/www/members/watch.cgi
index 4a2fb40..a1d85eb 100755
--- a/www/members/watch.cgi
+++ b/www/members/watch.cgi
@@ -148,10 +148,10 @@ _html do
               _td
             elsif person.asf_member?
               _td! do
-                _strong {_a person.id, href: "/roster/committer/#{person.id}"}
+                _strong {_a person.id, href: "roster/committer/#{person.id}"}
               end
             else
-              _td! {_a person.id, href: "/roster/committer/#{person.id}"}
+              _td! {_a person.id, href: "roster/committer/#{person.id}"}
             end
 
             # public name
@@ -164,10 +164,10 @@ _html do
                 person.committees.sort_by(&:name).each do |committee|
                   if committee.chair == person
                     _strong do
-                      _a committee.name, href: "../../roster/committee/#{committee.name}"
+                      _a committee.name, href: "roster/committee/#{committee.name}"
                     end
                   else
-                    _a committee.name, href: "../../roster/committee/#{committee.name}"
+                    _a committee.name, href: "roster/committee/#{committee.name}"
                   end
                 end
               end
@@ -200,7 +200,7 @@ _html do
     
                 date = 'unknown'
                 if minutes
-                  minutes = '../../board/minutes/' + File.basename(minutes)
+                  minutes = 'board/minutes/' + File.basename(minutes)
                 end
                 if resolution
                   minutes += '#' + resolution.at('a')['id']
@@ -232,27 +232,27 @@ _html do
     _ul do
       unless request =~ /appstatus/
         _li do
-          _a 'Application Status', href: 'watch/appstatus'
+          _a 'Application Status', href: 'members/watch/appstatus'
         end
       end
       unless list == watch_list
         _li do
-          _a 'Potential Member Watch List', href: 'watch'
+          _a 'Potential Member Watch List', href: 'members/watch'
         end
       end
       unless request =~ /nominees/
         _li do
-          _a 'Nominees', href: 'watch/nominees'
+          _a 'Nominees', href: 'members/watch/nominees'
         end
       end
       unless request =~ /multiple/
         _li do
-          _a 'Active in Multiple (>=3) PMCs', href: 'watch/multiple'
+          _a 'Active in Multiple (>=3) PMCs', href: 'members/watch/multiple'
         end
       end
       unless request =~ /chairs/
         _li do
-          _a 'Non-member PMC chairs', href: 'watch/chairs'
+          _a 'Non-member PMC chairs', href: 'members/watch/chairs'
         end
       end
     end