I just redeployed the wicket examples found inside the wicketstuff repo, but it doesn't show the new styling? Is our bamboo borked?
Martijn On Dec 8, 2007 10:25 AM, <[EMAIL PROTECTED]> wrote: > Author: gseitz > Date: Sat Dec 8 01:25:38 2007 > New Revision: 602351 > > URL: http://svn.apache.org/viewvc?rev=602351&view=rev > Log: > ghop-asf task 12: restyle wicket examples > > Added: > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/ie.css (with > props) > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/images/background.gif > (with props) > > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/images/bg_container.png > (with props) > > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/images/logo_graduated.png > (with props) > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/images/wicket.png > (with props) > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/logo.png (with > props) > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/main_style.css > (with props) > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/style.css (with > props) > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/wicket-bg.png > (with props) > Modified: > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.java > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignInPage.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignOutPage.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/debug/bug.png > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/frames/TopFrame.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/source/SourcesPage.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/stateless/Index.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatefulPage.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatelessPage.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/velocity/Home.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.html > wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.java > wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/index.html > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.html > Sat Dec 8 01:25:38 2007 > @@ -1,8 +1,7 @@ > <html xmlns:wicket> > <body> > <wicket:panel> > - <h1 wicket:id="hideInPortlet"><a href="index.html" style="color: > #E9601A" target="_top">Wicket Examples</a></h1> > - <span wicket:id="inspector"/> > + <div wicket:id="hideInPortlet"><a href="index.html" style="color: > #E9601A" target="_top"><img src="logo.png" /></a><span > wicket:id="inspector"/></div> > <div id="titleblock" style="font-size:larger;height:1.5em > ;vertical-align:center;"> > <div style="float:left;"><span wicket:id="exampleTitle">Example > Title Goes Here</span></div> > <div style="float:right;padding-right:10px"><a href="#" > wicket:id="sources">Source code</a></div> > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.java > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.java?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.java > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/WicketExampleHeader.java > Sat Dec 8 01:25:38 2007 > @@ -27,7 +27,6 @@ > import org.apache.wicket.markup.html.link.PopupSettings; > import org.apache.wicket.markup.html.panel.Panel; > > - > /** > * Navigation panel for the examples project. > * > @@ -48,7 +47,7 @@ > public WicketExampleHeader(String id, String exampleTitle, WebPage > page) > { > super(id); > - add(new WebMarkupContainer("hideInPortlet") > + WebMarkupContainer hideInPortlet = new > WebMarkupContainer("hideInPortlet") > { > /** > * @see org.apache.wicket.Component#isVisible() > @@ -58,11 +57,13 @@ > { > return > !RequestContext.get().isPortletRequest(); > } > - }); > - add(new InspectorBug("inspector", page)); > + }; > + add(hideInPortlet); > + hideInPortlet.add(new InspectorBug("inspector", page)); > add(new Label("exampleTitle", exampleTitle)); > Link link = new Link("sources") > { > + @Override > public void onClick() > { > setResponsePage(new > SourcesPage(getPage().getClass())); > @@ -71,7 +72,7 @@ > add(link); > > PopupSettings settings = new PopupSettings(PageMap.forName > ("sources"), > - PopupSettings.RESIZABLE); > + PopupSettings.RESIZABLE); > settings.setWidth(800); > settings.setHeight(600); > settings.setWindowName("sources"); > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignInPage.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignInPage.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignInPage.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignInPage.html > Sat Dec 8 01:25:38 2007 > @@ -18,6 +18,9 @@ > <head> > <title>Sign In</title> > <link rel="stylesheet" type="text/css" href="style.css"/> > + <style> > + body { background-image: none; } > + </style> > </head> > <body> > <h2>Sign In</h2> > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignOutPage.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignOutPage.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignOutPage.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/authentication/MySignOutPage.html > Sat Dec 8 01:25:38 2007 > @@ -18,6 +18,9 @@ > <head> > <title>Sign Out</title> > <link rel="stylesheet" type="text/css" href="style.css"/> > + <style> > + body { background-image: none; } > + </style> > </head> > <body> > <h2>Goodbye!</h2> > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/debug/bug.png > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/debug/bug.png?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > Binary files - no diff available. > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/frames/TopFrame.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/frames/TopFrame.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/frames/TopFrame.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/frames/TopFrame.html > Sat Dec 8 01:25:38 2007 > @@ -2,6 +2,7 @@ > <html xmlns="http://www.w3.org/1999/xhtml" > > <head> > <title>Top Frame</title> > + <link rel="stylesheet" type="text/css" href="style.css"/> > </head> > <body> > <span wicket:id="mainNavigation"/> > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/source/SourcesPage.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/source/SourcesPage.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/source/SourcesPage.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/source/SourcesPage.html > Sat Dec 8 01:25:38 2007 > @@ -11,6 +11,7 @@ > padding: 0; > margin: 0; > height: 100%; > + background-image: none; > } > > #header { > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/stateless/Index.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/stateless/Index.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/stateless/Index.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/stateless/Index.html > Sat Dec 8 01:25:38 2007 > @@ -3,6 +3,9 @@ > <head> > <title>Wicket Examples - stateless</title> > <link rel="stylesheet" type="text/css" href="style.css" /> > + <style> > + body { background-image: none; } > + </style> > </head> > <body> > <span wicket:id="message" id="message">Message goes > here</span> > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatefulPage.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatefulPage.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatefulPage.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatefulPage.html > Sat Dec 8 01:25:38 2007 > @@ -3,6 +3,9 @@ > <head> > <title>Wicket Examples - stateless</title> > <link rel="stylesheet" type="text/css" href="style.css" /> > + <style> > + body { background-image: none; } > + </style> > </head> > <body> > <span wicket:id="message" id="message">Message goes > here</span> > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatelessPage.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatelessPage.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatelessPage.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/stateless/StatelessPage.html > Sat Dec 8 01:25:38 2007 > @@ -3,6 +3,9 @@ > <head> > <title>Wicket Examples - stateless</title> > <link rel="stylesheet" type="text/css" href="style.css" /> > + <style> > + body { background-image: none; } > + </style> > </head> > <body> > <span wicket:id="message" id="message">Message goes > here</span> > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/examples/velocity/Home.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/velocity/Home.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/velocity/Home.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/examples/velocity/Home.html > Sat Dec 8 01:25:38 2007 > @@ -12,8 +12,8 @@ > The VelocityPanel is useful for CMS-like functionality, > where you want > to enable users to do basic scripting in predefined areas > of your web > application. Read more about the > - <a href="http://jakarta.apache.org/velocity/">velocity</a> > language > - <a href=" > http://jakarta.apache.org/velocity/user-guide.html">here</a>. > + <a href="http://velocity.apache.org/">velocity</a> > language > + <a href=" > http://velocity.apache.org/engine/devel/user-guide.html">here</a>. > </p> > </div> > > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.html > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.html > Sat Dec 8 01:25:38 2007 > @@ -21,6 +21,7 @@ > </head> > > <body> > + <span wicket:id="mainNavigation"/> > <a href="#" wicket:id="home-link">Home Page</a> > <hr/> > <wicket:child/> > > Modified: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.java > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.java?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.java > (original) > +++ > wicket/trunk/jdk-1.5/wicket-examples/src/main/java/org/apache/wicket/spring/common/web/BasePage.java > Sat Dec 8 01:25:38 2007 > @@ -16,7 +16,7 @@ > */ > package org.apache.wicket.spring.common.web; > > -import org.apache.wicket.markup.html.WebPage; > +import org.apache.wicket.examples.WicketExamplePage; > import org.apache.wicket.markup.html.link.BookmarkablePageLink; > > /** > @@ -24,7 +24,7 @@ > * > * @author Igor Vaynberg (ivaynberg) > */ > -public class BasePage extends WebPage > +public class BasePage extends WicketExamplePage > { > public BasePage() > { > > Added: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/ie.css > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/ie.css?rev=602351&view=auto > > ============================================================================== > --- wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/ie.css (added) > +++ wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/ie.css Sat Dec 8 > 01:25:38 2007 > @@ -0,0 +1,20 @@ > +/* > + * Licensed to the Apache Software Foundation (ASF) under one or more > + * contributor license agreements. See the NOTICE file distributed with > + * this work for additional information regarding copyright ownership. > + * The ASF licenses this file to You 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. > + */ > +#container { > + background-image: none; > + > filter:progid:DXimageTransform.Microsoft.AlphaimageLoader(src='images/bg_container.png', > sizingMethod='scale'); > +} > \ No newline at end of file > > Propchange: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/ie.css > > ------------------------------------------------------------------------------ > svn:mime-type = text/plain > > Added: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/webapp/images/background.gif > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/images/background.gif?rev=602351&view=auto > > ============================================================================== > Binary file - no diff available. > > Propchange: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/webapp/images/background.gif > > ------------------------------------------------------------------------------ > svn:mime-type = application/octet-stream > > Added: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/webapp/images/bg_container.png > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/images/bg_container.png?rev=602351&view=auto > > ============================================================================== > Binary file - no diff available. > > Propchange: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/webapp/images/bg_container.png > > ------------------------------------------------------------------------------ > svn:mime-type = application/octet-stream > > Added: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/webapp/images/logo_graduated.png > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/images/logo_graduated.png?rev=602351&view=auto > > ============================================================================== > Binary file - no diff available. > > Propchange: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/webapp/images/logo_graduated.png > > ------------------------------------------------------------------------------ > svn:mime-type = application/octet-stream > > Added: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/webapp/images/wicket.png > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/images/wicket.png?rev=602351&view=auto > > ============================================================================== > Binary file - no diff available. > > Propchange: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/webapp/images/wicket.png > > ------------------------------------------------------------------------------ > svn:mime-type = application/octet-stream > > Modified: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/index.html > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/index.html?rev=602351&r1=602350&r2=602351&view=diff > > ============================================================================== > --- wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/index.html > (original) > +++ wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/index.html Sat > Dec 8 01:25:38 2007 > @@ -1,19 +1,23 @@ > -<html xmlns:wicket="http://wicket.apache.org/"> > - <head> > - <title>Wicket examples</title> > - <link rel="stylesheet" type="text/css" href="style.css"/> > - </head> > - <body> > - <p> > - <h1>Wicket Examples</h1> > - <p id="titleblock"> > - <b><font size="+1">menu</font></b> > - </p> > - <p> > - The following examples demonstrate both core functionality and also > functionality in other modules (e.g. wicket-extensions): > - </p> > - <table> > - <tr><td align="right"><a > href="helloworld">helloworld</a></td><td> - As simple as it gets.</td></tr> > +<?xml version="1.0" encoding="UTF-8"?> > +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " > http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> > +<head> > + <title>Wicket Examples</title> > + <link href="main_style.css" rel="stylesheet" type="text/css" /> > + <!--[if lte IE 6]> > + <link href="ie.css" rel="stylesheet" type="text/css" /> > + <![endif]--> > + > +</head> > + > +<body> > +<div id="container"> > + <div id="content"> > + <div id="header"></div> > + </div> > + <h1> Menu</h1> > +<table> > + <tbody><tr><td align="right"><a > href="helloworld">helloworld</a></td><td> - As simple as it gets.</td></tr> > <tr><td align="right"><a href="echo">echo</a></td><td> - > Trivial input form.</td></tr> > <tr><td align="right"><a href="forminput">forminput</a></td><td> - > Basic form processing.</td></tr> > <tr><td align="right"><a > href="compref">compref</a></td><td> - Component Reference.</td></tr> > @@ -54,6 +58,14 @@ > <tr class="section"><td align="right"><a > href="spring">spring</a></td><td> - Demonstrates integration options with > the Spring framework.</td></tr> > <tr><td align="right"><a href="guice">guice</a></td><td> - > Integration with the Google Guice IoC container.</td></tr> > <tr><td align="right"><a > href="velocity">velocity</a></td><td> - Shows a Velocity panel in > action.</td></tr> > - </table> > - </body> > -</html> > + </tbody></table> > + > + > + > + > + <!-- </div> --> > + <div id="clearer"/> > +</div> > +</body> > + > +</html> > \ No newline at end of file > > Added: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/logo.png > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/logo.png?rev=602351&view=auto > > ============================================================================== > Binary file - no diff available. > > Propchange: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/logo.png > > ------------------------------------------------------------------------------ > svn:mime-type = application/octet-stream > > Added: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/main_style.css > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/main_style.css?rev=602351&view=auto > > ============================================================================== > --- wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/main_style.css > (added) > +++ wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/main_style.css > Sat Dec 8 01:25:38 2007 > @@ -0,0 +1,85 @@ > +/* > + * Licensed to the Apache Software Foundation (ASF) under one or more > + * contributor license agreements. See the NOTICE file distributed with > + * this work for additional information regarding copyright ownership. > + * The ASF licenses this file to You 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. > + */ > +html { > + height: 100%; > +} > + > +body { > + background: #787878 url(images/background.gif) repeat scroll 0%; > + color: #4A4A4A; > + font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, > Arial, > + Helvetica, sans-serif; > + font-size: 76%; > + height: 100%; > + margin: 0px; > + padding: 0px; > + text-align: center; > +} > + > +table { > + margin-left: 60px; > +} > + > +a,a:visited { > + color: #EB5A0A; > + text-decoration: none; > +} > + > +a:hover { > + text-decoration: underline; > +} > + > +#container { > + background: transparent url(images/bg_container.png) repeat scroll > 0%; > + margin-left: auto; > + margin-right: auto; > + min-height: 100%; > + padding-left: 28px; > + width: 927px; > + width *: 955px; > + text-align: left; > + margin-left: auto; > +} > + > +#header { > + background: #E8590A url(images/logo_graduated.png) repeat scroll > 0%; > + height: 108px; > + width: 899px; > +} > + > +#content { > + height: auto; > + width: 899px; > +} > + > +#contentbody { > + background: #FFFFFF none repeat scroll 0%; > + float: left; > + height: auto; > + padding-top: 20px; > + width: 668px; > +} > + > +h1 { > + color: #EB5A0A; > + font-size: 1.4em; > + font-weight: bold; > + text-decoration: none; > + background-image: url(images/wicket.png); > + background-repeat: no-repeat; > + margin-left: 30px; > +} > \ No newline at end of file > > Propchange: wicket/trunk/jdk-1.5 > /wicket-examples/src/main/webapp/main_style.css > > ------------------------------------------------------------------------------ > svn:mime-type = text/plain > > Added: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/style.css > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/style.css?rev=602351&view=auto > > ============================================================================== > --- wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/style.css (added) > +++ wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/style.css Sat Dec > 8 01:25:38 2007 > @@ -0,0 +1,491 @@ > +/* > + * Licensed to the Apache Software Foundation (ASF) under one or more > + * contributor license agreements. See the NOTICE file distributed with > + * this work for additional information regarding copyright ownership. > + * The ASF licenses this file to You 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. > + */ > +body { > + background-color: white; > + background-image: url('wicket-bg.png'); > + background-repeat: repeat-x; > + color: black; > + font-family: 'Tahoma', 'Lucida Sans', 'Arial', 'Helvetica', > 'Sans-serif', 'sans'; > + font-size: 9pt; > + line-height: 1.8em; > + padding: 10px 10px 10px 10px; > + margin: 10px 10px 10px 10px; > +} > + > +h1,h2,h3,h4,h5,h6,h7,h8 { > + color: #E9601A; > + font-weight: normal; > +} > + > +h1,h2 { > + letter-spacing: -1px; > + font-family: 'Trebuchet MS'; > +} > + > +#extitle { > + font-size: 12pt; > + font-weight: bold; > + color: #E9601A; > + padding: 10px 10px 10px 10px; > +} > + > +.mark { > + background-color: yellow; > + margin: 5px; > +} > + > +.feedbackPanelERROR { > + color: red; > + list-style: circle; > + font-weight: bold; > +} > + > +.feedbackPanelINFO { > + color: green; > + list-style: circle; > + font-weight: bold; > +} > +.nospam { > + display : none; > +} > + > +.block { > + padding: 10px; > +} > + > +.blockWithBorder { > + border-width: thin; > + border-style: dotted; > + border-color: #E9601A; > +} > + > +#hellomessage { > + font-size: 30pt; > +} > + > +#titleblock { > + color: white; > + font-weight: bold; > + border-width: thin; > + padding: 17px 2px 2px 6px; > +} > + > +#titleblock a { > + color: #000; > +} > + > +h2 { > + font-size: 1.25em; > +} > + > +h3 { > + font-size: 1em; > +} > + > +a { > + color: #E9601A; > + font-weight: bold; > + text-decoration: none; > +} > + > +a:hover { > + text-decoration: underline; > +} > + > +img { > + border: none; > +} > + > +pre { > + font-family: 'Lucida Sans', 'Helvetica', 'Sans serif', 'sans'; > +} > + > +th { > + background: #C3C3C3; > + color: white; > + font-weight: bold; > +} > + > +tr.b { > + background: #F5F5F5; > +} > + > +tr.a { > + background: #E6E6E5; > +} > + > +tr.none { > + background: transparent; > +} > + > +a.none { > + background: transparent; > + padding-right: 0px; > +} > + > +.inputForm label { > + display: block; > + margin-top: 5px; > +} > + > +#numberRadioChoice label { display: inline !important; } > + > +.inputForm label.non { > + display: inline !important; > +} > + > +.inputFormTable td { > + vertical-align: top; > + padding: 10px; > +} > + > +#nestedExampleTree { > + width: 300px; > +} > + > +#feedbackPanel { > + width: 600px; > +} > + > +#siteSelection { > + width: 200px; > +} > + > +div.tabRowContent { > + border-color: #DDDDDD; > + border-style: solid; > + border-width: 1px; > + margin: 4px; > + padding: 4px; > +} > + > + > +table.dataview { > + margin-bottom: 10px; > + border-bottom: 1px solid #0079d6; > + font-size: 1em; > + font-family: arial; > + } > + > +table.dataview caption { text-align: left; } > +table.dataview tr { padding-top: 2px; padding-bottom: 2px; } > +table.dataview tr.even { background-color: #ffebcd; } > +table.dataview tr.odd { background-color: #fff; } > +table.dataview tr td { padding-left: 8px; padding-right: 30px; } > +table.dataview tr th { color: black; padding-top: 3px; padding-bottom: > 3px; padding-left: 8px; padding-right: 30px; background-color: #c1e4ff; > border-bottom: 1px solid #0079d6; border-top: 1px solid #0079d6; text-align: > left; white-space: nowrap; vertical-align: middle;} > + > +table.dataview tr th { background-position: right; > background-repeat:no-repeat; } > +table.dataview tr th.wicket_orderDown { > + background-color: #87cbff; background-image: > url(displaytag/img/arrow_down.png); } > +table.dataview tr th.wicket_orderUp { > + background-color: #87cbff; background-image: > url(displaytag/img/arrow_up.png); } > +table.dataview tr th.wicket_orderNone { > + background-image: url(displaytag/img/arrow_off.png); > +} > +table.dataview tr th a { font-weight: normal; } > +table.dataview #message { padding-left: 3px; } > +table.dataview caption { padding-bottom: 2px; } > + > +/* TAB PANEL STYLES */ > + > +div.tabpanel div.tab-row{ > + float:left; > + width:100%; > + background:#DAE0D2 url("tabs/bg.gif") repeat-x bottom; > + line-height:normal; > + } > + > +div.tabpanel div.tab-row ul { > + margin:0; > + padding:10px 10px 0; > + list-style:none; > + } > + > +div.tabpanel div.tab-row li { > + float:left; > + background:url("tabs/left.gif") no-repeat left top; > + margin:0; > + padding:0 0 0 9px; > + } > + > +div.tabpanel div.tab-row a { > + display:block; > + background:url("tabs/right.gif") no-repeat right top; > + padding:5px 15px 4px 6px; > + text-decoration:none; > + font-weight:bold; > + white-space:nowrap; > + color:#eee; > + } > + > +div.tab-panel { > + clear: left; > +} > + > +div.tabpanel div.tab-row a:hover { > + color:#fff; > + } > + > +div.tabpanel div.tab-row li.selected { > + background-image:url("tabs/left_on.gif"); > + } > + > +div.tabpanel div.tab-row li.selected a { > + background-image:url("tabs/right_on.gif"); > + color:#333; > + padding-bottom:5px; > + } > + > +/* VARIATION 1 TAB PANEL STYLES */ > +div.tabpanel1 div.tab-row{ > + float:left; > + width:100%; > + background:#DAE0D2 url("tabs1/bg.gif") repeat-x bottom; > + line-height:normal; > + } > + > +div.tabpanel1 div.tab-row ul { > + margin:0; > + padding:10px 10px 0; > + list-style:none; > + } > + > +div.tabpanel1 div.tab-row li { > + float:left; > + background:url("tabs1/left.gif") no-repeat left top; > + margin:0; > + padding:0 0 0 9px; > + } > + > +div.tabpanel1 div.tab-row a { > + display:block; > + background:url("tabs1/right.gif") no-repeat right top; > + padding:5px 15px 4px 6px; > + text-decoration:none; > + font-weight:bold; > + color:#765; > + white-space:nowrap; > + } > + > +div.tabpanel1 div.tab-row a:hover { > + color:#333; > + } > + > +div.tabpanel1 div.tab-row li.selected { > + background-image:url("tabs1/left_on.gif"); > + } > + > +div.tabpanel1 div.tab-row li.selected a { > + background-image:url("tabs1/right_on.gif"); > + color:#333; > + padding-bottom:5px; > + } > + > +/* TABBED PANEL VARIATION 2 */ > +div.tabpanel2 div.tab-row { > + float:left; > + width:100%; > + background:#369 url("tabs2/bg.gif") repeat-x bottom; > + font-size:85%; > + line-height:normal; > + } > +div.tabpanel2 div.tab-row ul { > + margin:0; > + padding:10px 10px 0; > + list-style:none; > + } > +div.tabpanel2 div.tab-row li { > + float:left; > + background:url("tabs2/right.gif") no-repeat right top; > + margin:0; > + padding:0 5px 0 0; > + } > +div.tabpanel2 div.tab-row a { > + float:left; > + display:block; > + background:url("tabs2/left.gif") no-repeat left top; > + padding:5px 7px 4px 20px; > + text-decoration:none; > + font-weight:bold; > + color:#9cf; > + white-space:nowrap; > + } > +/* Commented Backslash Hack > + hides rule from IE5-Mac \*/ > +div.tabpanel2 div.tab-row a {float:none;} > +/* End IE5-Mac hack */ > +div.tabpanel2 div.tab-row a:hover { > + color:#fff; > + } > +div.tabpanel2 div.tab-row li.selected { > + background-image:url("tabs2/right_on.gif"); > + } > +div.tabpanel2 div.tab-row li.selected a { > + background-image:url("tabs2/left_on.gif"); > + color:#333; > + padding-bottom:5px; > + } > + > +/* TABBED PANEL VARIATION 3 */ > +div.tabpanel3 div.tab-row { > + float:left; > + width:100%; > + background:#eee url("tabs3/bg.jpg") repeat-x top; > + line-height:normal; > + } > +div.tabpanel3 div.tab-row ul { > + margin:0; > + padding:10px 10px 0; > + list-style:none; > + } > +div.tabpanel3 div.tab-row li { > + float:left; > + background:url("tabs3/left.gif") no-repeat left top; > + margin:0; > + padding:0 0 0 28px; > + } > +div.tabpanel3 div.tab-row a { > + float:left; > + display:block; > + background:url("tabs3/right.gif") no-repeat right top; > + padding:9px 28px 4px 0px; > + text-decoration:none; > + font-weight:bold; > + color:#92A2AC; > + } > +/* Commented Backslash Hack > + hides rule from IE5-Mac \*/ > +div.tabpanel3 div.tab-row a {float:none;} > +/* End IE5-Mac hack */ > +div.tabpanel3 div.tab-row a:hover { > + color:#A56060; > + } > +div.tabpanel3 div.tab-row li.selected { > + background-image:url("tabs3/left_on.gif"); > + } > +div.tabpanel3 div.tab-row li.selected a { > + background-image:url("tabs3/right_on.gif"); > + color:#A56060; > + } > + > + > + > +div.tabpanel4 div.tab-row ul { > + height: 20px; > + margin: 0; > + padding-left: 10px; > + background: url( tabs4/tab_bottom.gif ) repeat-x bottom; > +} > + > +div.tabpanel4 div.tab-row li { > + margin: 0; > + padding: 0; > + display: inline; > + list-style-type: none; > +} > + > +div.tabpanel4 div.tab-row a:link, div.tabpanel4 div.tab-row a:visited { > + float: left; > + background: #f3f3f3; > + font-size: 12px; > + line-height: 14px; > + font-weight: bold; > + padding: 2px 10px 2px 10px; > + margin-right: 4px; > + border: 1px solid #ccc; > + text-decoration: none; > + color: #666; > +} > + > +div.tabpanel4 div.tab-row li.selected a:link, div.tabpanel4 div.tab-rowa: > visited.active { > + border-bottom: 1px solid #fff; > + background: #fff; > + color: #000; > +} > + > +div.tabpanel4 div.tab-row a:hover { > + background: #fff; > +} > + > +/* PROGRESS BAR */ > + > + div.wupb-uploadStatus { > + margin: 5px; > + color: #aaa; > + } > + > + div.wupb-progressBar { > + margin: 5px; > + } > + > + div.wupb-progressBar .wupb-border { > + background: url( progress-remainder.gif ) repeat-x; > + background-color: #eee; > + border-left: 1px solid grey; > + border-right: 1px solid grey; > + width: 100%; > + } > + > + div.wupb-progressBar .wupb-background { > + background: url( progress-bar.gif ) repeat-x; > + background-color: #507090; > + height: 18px; > + width: 0%; > + } > +/* END PROGRESS BAR */ > + > +table.grid { > + margin-bottom: 10px; > + border-bottom: 1px solid #0079d6; > + font-size: 1em; > + font-family: arial; > + width: 100%; > + } > + > + > +table.grid tr { padding-top: 2px; padding-bottom: 2px; } > +table.grid tr.odd { background-color: #ffebcd; } > +table.grid tr.even { background-color: #fff; } > +table.grid tr td { padding-left: 8px; padding-right: 30px; } > + > + > +/* NAVIGATION */ > +table.grid tr.navigation { text-align: left; font-size: 0.8em;} > +table.grid tr.navigation td { padding-right: 0px;} > + > + > +/* HEADERS */ > +table.grid tr th { font-weight: normal; padding-top: 3px; padding-bottom: > 3px; padding-left: 8px; padding-right: 24px; background-color: #c1e4ff; > border-bottom: 1px solid #0079d6; border-top: 1px solid #0079d6; text-align: > left; white-space: nowrap; vertical-align: middle;} > +table.grid tr th a { padding-right: 15px; background-position: right; > background-repeat:no-repeat; } > +table.grid tr th.wicket_orderDown a { color:black; background-image: > url(images/arrow_down.png); } > +table.grid tr th.wicket_orderUp a { color: black; background-image: > url(images/arrow_up.png); } > +table.grid tr th.wicket_orderNone a { > + background-image: url(images/arrow_off.png); > +} > +table.grid tr th a { font-weight: normal; } > + > + > +/* FILTERS */ > +table.grid td.filter-td { font-size: 1em; background-color: #c1e4ff; > border-bottom: 1px solid #0079d6; } > +table.grid td.filter-td input.go { width: 45%; } > +table.grid td.filter-td input.clear { width: 45%; } > +table.grid td.filter-td input { width: 100%; font-size: 0.6em; } > +table.grid td.filter-td select { width: 100%; font-size: 0.6em; } > + > +tr.section td { > + padding-top: 0.75em; > +} > \ No newline at end of file > > Propchange: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/style.css > > ------------------------------------------------------------------------------ > svn:eol-style = native > > Propchange: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/style.css > > ------------------------------------------------------------------------------ > svn:keywords = Author Date Id Revision > > Propchange: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/style.css > > ------------------------------------------------------------------------------ > svn:mime-type = text/plain > > Added: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/wicket-bg.png > URL: > http://svn.apache.org/viewvc/wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/wicket-bg.png?rev=602351&view=auto > > ============================================================================== > Binary file - no diff available. > > Propchange: wicket/trunk/jdk-1.5/wicket-examples/src/main/webapp/wicket- > bg.png > > ------------------------------------------------------------------------------ > svn:mime-type = application/octet-stream > > > -- Buy Wicket in Action: http://manning.com/dashorst Apache Wicket 1.3.0-rc1 is released Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-rc1/
