From d1f12af94b21a04c3cf96caf1ab83c4bdf552236 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 09 Feb 2012 17:48:11 -0500 Subject: [PATCH] Reversed the order of buttons on all forms so that default is submit --- src/com/gitblit/wicket/pages/BranchesPage.html | 25 ++++++++----------------- 1 files changed, 8 insertions(+), 17 deletions(-) diff --git a/src/com/gitblit/wicket/pages/BranchesPage.html b/src/com/gitblit/wicket/pages/BranchesPage.html index 0d0657e..65fd9b9 100644 --- a/src/com/gitblit/wicket/pages/BranchesPage.html +++ b/src/com/gitblit/wicket/pages/BranchesPage.html @@ -1,24 +1,15 @@ -<?xml version="1.0" encoding="UTF-8"?> -<html xmlns="http://www.w3.org/1999/xhtml" > +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd" + xml:lang="en" + lang="en"> + <body> <wicket:extend> - <!-- page nav links --> - <div wicket:id="pageLinks">[page links]</div> + <!-- branches --> + <div style="margin-top:5px;" wicket:id="branchesPanel">[branches panel]</div> - <!-- shortlog --> - <div style="margin-top:5px;" class="header" wicket:id="summary">[header]</div> - <table class="pretty"> - <tbody> - <tr wicket:id="branch"> - <td class="date"><span wicket:id="branchDate">[branch date]</span></td> - <td><div wicket:id="branchName">[branch name]</div></td> - <td><div wicket:id="branchType">[branch type]</div></td> - <td class="rightAlign"><span wicket:id="branchLinks">[branch links]</span></td> - </tr> - </tbody> - </table> - </wicket:extend> </body> </html> \ No newline at end of file -- Gitblit v1.9.1