You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2006/12/05 20:18:00 UTC

svn commit: r482742 - in /maven/continuum/trunk/continuum-webapp/src/main/webapp: WEB-INF/jsp/navigations/DefaultTop.jsp css/tigris.css

Author: evenisse
Date: Tue Dec  5 11:17:56 2006
New Revision: 482742

URL: http://svn.apache.org/viewvc?view=rev&rev=482742
Log: (empty)

Modified:
    maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp
    maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css

Modified: maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp?view=diff&rev=482742&r1=482741&r2=482742
==============================================================================
--- maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp (original)
+++ maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp Tue Dec  5 11:17:56 2006
@@ -4,22 +4,18 @@
 
 <ww:i18n name="localization.Continuum">
   <div id="banner">
-    <table border="1" cellpadding="8" cellspacing="0" width="100%">
-      <tbody>
-        <tr>
-          <td>
-            <a href="http://maven.apache.org/continuum">
-              <img src="<ww:url value="/images/continuum_logo_75.gif"/>" alt="Continuum" title="Continuum" border="0">
-            </a>
-          </td>
-          <td>
-            <div align="right">
-              <ww:action name="companyInfo" executeResult="true"/>
-            </div>
-          </td>
-        </tr>
-      </tbody>
-    </table>
+    <span id="bannerLeft">
+      <a href="http://maven.apache.org/continuum">
+        <img src="<ww:url value="/images/continuum_logo_75.gif"/>" alt="Continuum" title="Continuum" border="0">
+      </a>
+    </span>
+    <span id="bannerRight">
+      <ww:action name="companyInfo" executeResult="true"/>
+    </span>
+
+    <div class="clear">
+      <hr/>
+    </div>
   </div>
 
   <div id="breadcrumbs">

Modified: maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css?view=diff&rev=482742&r1=482741&r2=482742
==============================================================================
--- maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css (original)
+++ maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css Tue Dec  5 11:17:56 2006
@@ -428,6 +428,42 @@
   font-style: normal;
 }
 
+div.clear {
+    clear: both;
+    visibility: hidden;
+}
+
+div.clear hr {
+    display: none;
+}
+
+#bannerLeft, #bannerRight {
+    font-size: xx-large;
+    font-weight: bold;
+}
+
+#bannerLeft img, #bannerRight img {
+    margin: 0px;
+}
+
+.xleft, #bannerLeft img {
+    float: left;
+    text-shadow: #7CFC00;
+}
+
+.xright, #bannerRight img {
+    float: right;
+    text-shadow: #7CFC00;
+}
+
+#banner {
+    padding: 0px;
+}
+
+#banner img {
+    border: none;
+}
+
 #banner h1 {
   font-size: 1.25em;
 }



Re: svn commit: r482742 - in /maven/continuum/trunk/continuum-webapp/src/main/webapp: WEB-INF/jsp/navigations/DefaultTop.jsp css/tigris.css

Posted by Emmanuel Venisse <em...@venisse.net>.

Brett Porter a écrit :
> 
> On 06/12/2006, at 7:44 PM, Emmanuel Venisse wrote:
> 
>> I'd like to use the same css for all our web parts but I don't know if 
>> I'll found the time to do it.
>> If we move to the standard xhtml template, will we keep the actual 
>> continuum page style?
> 
> Yes, it should look identical. I think the one area we need to work on 
> more consistency is tables in the CSS, but that one could be applied 
> back to the application-skin and used in all apps.
> 
>>
>> I think it would be good to create a shared module that include the 
>> header, footer, breadcrumb and css, so we'll define them at one place 
>> and we'll have consistency between our webapps.
> 
> The css and images can come from the application-skin. I think the 
> header, footer and breadcrumbs are necessarily different between apps 
> though?

The header can be shared too, just need to have a parameter for the app logo
The footer can be shared too, just need to have a parameter for the inception year
The breadcrumbs can be shared too, just need to allow additional links from the app.

Emmanuel



Re: svn commit: r482742 - in /maven/continuum/trunk/continuum-webapp/src/main/webapp: WEB-INF/jsp/navigations/DefaultTop.jsp css/tigris.css

Posted by Brett Porter <br...@apache.org>.
On 06/12/2006, at 7:44 PM, Emmanuel Venisse wrote:

> I'd like to use the same css for all our web parts but I don't know  
> if I'll found the time to do it.
> If we move to the standard xhtml template, will we keep the actual  
> continuum page style?

Yes, it should look identical. I think the one area we need to work  
on more consistency is tables in the CSS, but that one could be  
applied back to the application-skin and used in all apps.

>
> I think it would be good to create a shared module that include the  
> header, footer, breadcrumb and css, so we'll define them at one  
> place and we'll have consistency between our webapps.

The css and images can come from the application-skin. I think the  
header, footer and breadcrumbs are necessarily different between apps  
though?

- Brett

Re: svn commit: r482742 - in /maven/continuum/trunk/continuum-webapp/src/main/webapp: WEB-INF/jsp/navigations/DefaultTop.jsp css/tigris.css

Posted by Emmanuel Venisse <em...@venisse.net>.
I'd like to use the same css for all our web parts but I don't know if I'll found the time to do it.
If we move to the standard xhtml template, will we keep the actual continuum page style?

I think it would be good to create a shared module that include the header, footer, breadcrumb and css, so we'll define them at one place and we'll have consistency between our webapps.

Emmanuel

Brett Porter a écrit :
> If we're going to start making changes like this, can we nuke tigris.* 
> altogether and move to the standard xhtml template used by the site 
> plugin and archiva?
> 
> On 06/12/2006, at 6:18 AM, evenisse@apache.org wrote:
> 
>> Author: evenisse
>> Date: Tue Dec  5 11:17:56 2006
>> New Revision: 482742
>>
>> URL: http://svn.apache.org/viewvc?view=rev&rev=482742
>> Log: (empty)
>>
>> Modified:
>>     
>> maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp 
>>
>>     maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css
>>
>> Modified: 
>> maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp 
>>
>> URL: 
>> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp?view=diff&rev=482742&r1=482741&r2=482742 
>>
>> ============================================================================== 
>>
>> --- 
>> maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp 
>> (original)
>> +++ 
>> maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp 
>> Tue Dec  5 11:17:56 2006
>> @@ -4,22 +4,18 @@
>>
>>  <ww:i18n name="localization.Continuum">
>>    <div id="banner">
>> -    <table border="1" cellpadding="8" cellspacing="0" width="100%">
>> -      <tbody>
>> -        <tr>
>> -          <td>
>> -            <a href="http://maven.apache.org/continuum">
>> -              <img src="<ww:url 
>> value="/images/continuum_logo_75.gif"/>" alt="Continuum" 
>> title="Continuum" border="0">
>> -            </a>
>> -          </td>
>> -          <td>
>> -            <div align="right">
>> -              <ww:action name="companyInfo" executeResult="true"/>
>> -            </div>
>> -          </td>
>> -        </tr>
>> -      </tbody>
>> -    </table>
>> +    <span id="bannerLeft">
>> +      <a href="http://maven.apache.org/continuum">
>> +        <img src="<ww:url value="/images/continuum_logo_75.gif"/>" 
>> alt="Continuum" title="Continuum" border="0">
>> +      </a>
>> +    </span>
>> +    <span id="bannerRight">
>> +      <ww:action name="companyInfo" executeResult="true"/>
>> +    </span>
>> +
>> +    <div class="clear">
>> +      <hr/>
>> +    </div>
>>    </div>
>>
>>    <div id="breadcrumbs">
>>
>> Modified: 
>> maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css
>> URL: 
>> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css?view=diff&rev=482742&r1=482741&r2=482742 
>>
>> ============================================================================== 
>>
>> --- 
>> maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css 
>> (original)
>> +++ 
>> maven/continuum/trunk/continuum-webapp/src/main/webapp/css/tigris.css 
>> Tue Dec  5 11:17:56 2006
>> @@ -428,6 +428,42 @@
>>    font-style: normal;
>>  }
>>
>> +div.clear {
>> +    clear: both;
>> +    visibility: hidden;
>> +}
>> +
>> +div.clear hr {
>> +    display: none;
>> +}
>> +
>> +#bannerLeft, #bannerRight {
>> +    font-size: xx-large;
>> +    font-weight: bold;
>> +}
>> +
>> +#bannerLeft img, #bannerRight img {
>> +    margin: 0px;
>> +}
>> +
>> +.xleft, #bannerLeft img {
>> +    float: left;
>> +    text-shadow: #7CFC00;
>> +}
>> +
>> +.xright, #bannerRight img {
>> +    float: right;
>> +    text-shadow: #7CFC00;
>> +}
>> +
>> +#banner {
>> +    padding: 0px;
>> +}
>> +
>> +#banner img {
>> +    border: none;
>> +}
>> +
>>  #banner h1 {
>>    font-size: 1.25em;
>>  }
>>
> 
> 
> 


Re: svn commit: r482742 - in /maven/continuum/trunk/continuum-webapp/src/main/webapp: WEB-INF/jsp/navigations/DefaultTop.jsp css/tigris.css

Posted by Brett Porter <br...@apache.org>.
If we're going to start making changes like this, can we nuke  
tigris.* altogether and move to the standard xhtml template used by  
the site plugin and archiva?

On 06/12/2006, at 6:18 AM, evenisse@apache.org wrote:

> Author: evenisse
> Date: Tue Dec  5 11:17:56 2006
> New Revision: 482742
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=482742
> Log: (empty)
>
> Modified:
>     maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/ 
> jsp/navigations/DefaultTop.jsp
>     maven/continuum/trunk/continuum-webapp/src/main/webapp/css/ 
> tigris.css
>
> Modified: maven/continuum/trunk/continuum-webapp/src/main/webapp/ 
> WEB-INF/jsp/navigations/DefaultTop.jsp
> URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum- 
> webapp/src/main/webapp/WEB-INF/jsp/navigations/DefaultTop.jsp? 
> view=diff&rev=482742&r1=482741&r2=482742
> ====================================================================== 
> ========
> --- maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/ 
> jsp/navigations/DefaultTop.jsp (original)
> +++ maven/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/ 
> jsp/navigations/DefaultTop.jsp Tue Dec  5 11:17:56 2006
> @@ -4,22 +4,18 @@
>
>  <ww:i18n name="localization.Continuum">
>    <div id="banner">
> -    <table border="1" cellpadding="8" cellspacing="0" width="100%">
> -      <tbody>
> -        <tr>
> -          <td>
> -            <a href="http://maven.apache.org/continuum">
> -              <img src="<ww:url value="/images/ 
> continuum_logo_75.gif"/>" alt="Continuum" title="Continuum"  
> border="0">
> -            </a>
> -          </td>
> -          <td>
> -            <div align="right">
> -              <ww:action name="companyInfo" executeResult="true"/>
> -            </div>
> -          </td>
> -        </tr>
> -      </tbody>
> -    </table>
> +    <span id="bannerLeft">
> +      <a href="http://maven.apache.org/continuum">
> +        <img src="<ww:url value="/images/continuum_logo_75.gif"/>"  
> alt="Continuum" title="Continuum" border="0">
> +      </a>
> +    </span>
> +    <span id="bannerRight">
> +      <ww:action name="companyInfo" executeResult="true"/>
> +    </span>
> +
> +    <div class="clear">
> +      <hr/>
> +    </div>
>    </div>
>
>    <div id="breadcrumbs">
>
> Modified: maven/continuum/trunk/continuum-webapp/src/main/webapp/ 
> css/tigris.css
> URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum- 
> webapp/src/main/webapp/css/tigris.css? 
> view=diff&rev=482742&r1=482741&r2=482742
> ====================================================================== 
> ========
> --- maven/continuum/trunk/continuum-webapp/src/main/webapp/css/ 
> tigris.css (original)
> +++ maven/continuum/trunk/continuum-webapp/src/main/webapp/css/ 
> tigris.css Tue Dec  5 11:17:56 2006
> @@ -428,6 +428,42 @@
>    font-style: normal;
>  }
>
> +div.clear {
> +    clear: both;
> +    visibility: hidden;
> +}
> +
> +div.clear hr {
> +    display: none;
> +}
> +
> +#bannerLeft, #bannerRight {
> +    font-size: xx-large;
> +    font-weight: bold;
> +}
> +
> +#bannerLeft img, #bannerRight img {
> +    margin: 0px;
> +}
> +
> +.xleft, #bannerLeft img {
> +    float: left;
> +    text-shadow: #7CFC00;
> +}
> +
> +.xright, #bannerRight img {
> +    float: right;
> +    text-shadow: #7CFC00;
> +}
> +
> +#banner {
> +    padding: 0px;
> +}
> +
> +#banner img {
> +    border: none;
> +}
> +
>  #banner h1 {
>    font-size: 1.25em;
>  }
>