James Moger
2011-05-26 17c417dad5c7be28df4b6e1fd25ec56b484faaff
src/com/gitblit/wicket/BasePage.java
@@ -1,5 +1,22 @@
/*
 * Copyright 2011 gitblit.com.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.gitblit.wicket;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.TimeZone;
import javax.servlet.http.HttpServletRequest;
@@ -14,6 +31,7 @@
import org.slf4j.LoggerFactory;
import com.gitblit.Constants;
import com.gitblit.Constants.AccessRestrictionType;
import com.gitblit.GitBlit;
import com.gitblit.Keys;
import com.gitblit.wicket.pages.SummaryPage;
@@ -39,22 +57,25 @@
         add(new Label("title", getServerName()));
      }
      // header
      String siteName = GitBlit.self().settings().getString(Keys.web.siteName, Constants.NAME);
      String siteName = GitBlit.getString(Keys.web.siteName, Constants.NAME);
      if (siteName == null || siteName.trim().length() == 0) {
         siteName = Constants.NAME;
      }
      add(new Label("siteName", siteName));
      add(new LinkPanel("repositoryName", null, repositoryName, SummaryPage.class, WicketUtils.newRepositoryParameter(repositoryName)));
      add(new LinkPanel("repositoryName", null, repositoryName, SummaryPage.class,
            WicketUtils.newRepositoryParameter(repositoryName)));
      add(new Label("pageName", pageName));
      // Feedback panel for info, warning, and non-fatal error messages
      add(new FeedbackPanel("feedback"));
      // footer
      if (GitBlit.self().settings().getBoolean(Keys.web.authenticateViewPages, true) || GitBlit.self().settings().getBoolean(Keys.web.authenticateAdminPages, true)) {
      if (GitBlit.getBoolean(Keys.web.authenticateViewPages, true)
            || GitBlit.getBoolean(Keys.web.authenticateAdminPages, true)) {
         if (GitBlitWebSession.get().isLoggedIn()) {
            // logout
            add(new LinkPanel("userPanel", null, getString("gb.logout") + " " + GitBlitWebSession.get().getUser().toString(), LogoutPage.class));
            add(new LinkPanel("userPanel", null, getString("gb.logout") + " "
                  + GitBlitWebSession.get().getUser().toString(), LogoutPage.class));
         } else {
            // login
            add(new LinkPanel("userPanel", null, getString("gb.login"), LoginPage.class));
@@ -63,13 +84,35 @@
         add(new Label("userPanel", ""));
      }
      add(new Label("gbVersion", "v" + Constants.VERSION));
      if (GitBlit.self().settings().getBoolean(Keys.web.aggressiveHeapManagement, false)) {
      if (GitBlit.getBoolean(Keys.web.aggressiveHeapManagement, false)) {
         System.gc();
      }
   }
   protected Map<AccessRestrictionType, String> getAccessRestrictions() {
      Map<AccessRestrictionType, String> map = new LinkedHashMap<AccessRestrictionType, String>();
      for (AccessRestrictionType type : AccessRestrictionType.values()) {
         switch (type) {
         case NONE:
            map.put(type, getString("gb.notRestricted"));
            break;
         case PUSH:
            map.put(type, getString("gb.pushRestricted"));
            break;
         case CLONE:
            map.put(type, getString("gb.cloneRestricted"));
            break;
         case VIEW:
            map.put(type, getString("gb.viewRestricted"));
            break;
         }
      }
      return map;
   }
   protected TimeZone getTimeZone() {
      return GitBlit.self().settings().getBoolean(Keys.web.useClientTimezone, false) ? GitBlitWebSession.get().getTimezone() : TimeZone.getDefault();
      return GitBlit.getBoolean(Keys.web.useClientTimezone, false) ? GitBlitWebSession.get()
            .getTimezone() : TimeZone.getDefault();
   }
   protected String getServerName() {