You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by th...@apache.org on 2004/07/06 03:24:31 UTC

svn commit: rev 22605 - in forrest/trunk: . src/core/context/skins src/core/context/skins/css-style-dev src/core/context/skins/css-style-dev/css src/core/context/skins/css-style-dev/xslt/html

Author: thorsten
Date: Mon Jul  5 18:24:30 2004
New Revision: 22605

Added:
   forrest/trunk/src/core/context/skins/css-style-dev/note.txt
Modified:
   forrest/trunk/   (props changed)
   forrest/trunk/src/core/context/skins/   (props changed)
   forrest/trunk/src/core/context/skins/css-style-dev/css/profile.css.xslt
   forrest/trunk/src/core/context/skins/css-style-dev/css/screen.css
   forrest/trunk/src/core/context/skins/css-style-dev/xslt/html/site2xhtml.xsl
Log:


Modified: forrest/trunk/src/core/context/skins/css-style-dev/css/profile.css.xslt
==============================================================================
--- forrest/trunk/src/core/context/skins/css-style-dev/css/profile.css.xslt	(original)
+++ forrest/trunk/src/core/context/skins/css-style-dev/css/profile.css.xslt	Mon Jul  5 18:24:30 2004
@@ -29,21 +29,22 @@
 </xsl:template>
 
 <xsl:template match="color[@name='tab-selected']"> 
-#top .header .current { background-color: <xsl:alue-of select="@value"/>;} 
+#top .header .current { background-color: <xsl:value-of select="@value"/>;} 
 #top .header .current a:link {  color: <xsl:value-of select="@link"/>;  }
 #top .header .current a:visited { color: <xsl:value-of select="@vlink"/>; }
 #top .header .current a:hover { color: <xsl:value-of select="@hlink"/>; }
-.border         { background-color: <xsl:value-of select="@value"/>;} 
+#main      { border-top: solid <xsl:value-of select="@value"/> 15px; }
+<!--#menu { background-color: <xsl:value-of select="@value"/>; }-->
 </xsl:template> 
 
-<!--xsl:template match="color[@name='tab-unselected']"> 
-.tab.unselected      { background-color: <xsl:value-of select="@value"/>;} 
-.tab.unselected a:link {  color: <xsl:value-of select="@link"/>;  }
-.tab.unselected a:visited { color: <xsl:value-of select="@vlink"/>; }
-.tab.unselected a:hover { color: <xsl:value-of select="@hlink"/>; }
+<xsl:template match="color[@name='tab-unselected']"> 
+#tabs li      { background: <xsl:value-of select="@value"/> url('images/tab-right.gif') no-repeat right top;} 
+#tabs li a:link {  color: <xsl:value-of select="@link"/>;  }
+#tabs li a:visited { color: <xsl:value-of select="@vlink"/>; }
+#tabs li a:hover { color: <xsl:value-of select="@hlink"/>; }
 </xsl:template> 
 
-<xsl:template match="color[@name='subtab-selected']">
+<!--xsl:template match="color[@name='subtab-selected']">
 .level2tabstrip a:link {  color: <xsl:value-of select="@link"/>;  }
 .level2tabstrip a:visited { color: <xsl:value-of select="@vlink"/>; }
 .level2tabstrip a:hover { color: <xsl:value-of select="@hlink"/>; }
@@ -67,18 +68,14 @@
 
 <xsl:template match="color[@name='published']">
 .published { color: <xsl:value-of select="@value"/>;}
-</xsl:template> 
+</xsl:template--> 
 
 <xsl:template match="color[@name='navstrip']">
-.subborder      { color: <xsl:value-of select="@font"/>;
-                  background-color: <xsl:value-of select="@value"/>;}
-.subborder a:link {  color: <xsl:value-of select="@link"/>;  }
-.subborder a:visited { color: <xsl:value-of select="@vlink"/>; }
-.subborder a:hover { color: <xsl:value-of select="@hlink"/>; }
-.menu .menupagetitle  { background-color: <xsl:value-of select="@value"/>;}
+#main .breadtrail {background: <xsl:value-of select="@value"/>; }
+#top .breadtrail {background: <xsl:value-of select="@value"/>; }
 </xsl:template> 
 
-<xsl:template match="color[@name='toolbox']">
+<!--xsl:template match="color[@name='toolbox']">
 .menu .menupagetitle  { background-color: <xsl:value-of select="@value"/>}
 </xsl:template> 
 

Modified: forrest/trunk/src/core/context/skins/css-style-dev/css/screen.css
==============================================================================
--- forrest/trunk/src/core/context/skins/css-style-dev/css/screen.css	(original)
+++ forrest/trunk/src/core/context/skins/css-style-dev/css/screen.css	Mon Jul  5 18:24:30 2004
@@ -113,16 +113,25 @@
 	background: white url("images/sidebar_bg.gif") repeat-y left;
 	border-top: solid #4C6C8F 15px;
 }
-
+#main .breadtrail {
+	position: relative;
+	background: #CFDCED;
+	color: black;
+	border-bottom: solid 1px white;
+	padding: 0px 180px;
+	font-size: 75%;
+	z-index:2;
+}
 
 /**
  * Side menu
  */
+ /* padding-top: 15px; padding-right: 15px; top:-15px; left:10px; z-index: 10; */
  
 #menu {
 	position: relative;
 	float: left;
-	width: 160px;
+	width: 150px;
 }
 #menu h1 {
 	display: block;

Added: forrest/trunk/src/core/context/skins/css-style-dev/note.txt
==============================================================================
--- (empty file)
+++ forrest/trunk/src/core/context/skins/css-style-dev/note.txt	Mon Jul  5 18:24:30 2004
@@ -0,0 +1,3 @@
+Notes:
+
+- the corner images should be rendered through svg with the header color.
\ No newline at end of file

Modified: forrest/trunk/src/core/context/skins/css-style-dev/xslt/html/site2xhtml.xsl
==============================================================================
--- forrest/trunk/src/core/context/skins/css-style-dev/xslt/html/site2xhtml.xsl	(original)
+++ forrest/trunk/src/core/context/skins/css-style-dev/xslt/html/site2xhtml.xsl	Mon Jul  5 18:24:30 2004
@@ -102,12 +102,15 @@
    	|topstrip with logo's and search box 
    	+-->
     <div id="top">
+<!--breadcrumbs org location-->
+<xsl:if test="not ($config/trail/@location='alt')">
 <xsl:comment>+
     |breadtrail
     +</xsl:comment>
       <div class="breadtrail">
           <xsl:call-template name="breadcrumbs"/>
       </div>
+</xsl:if>
 <xsl:comment>+
     |header
     +</xsl:comment>
@@ -190,6 +193,15 @@
    	|centerstrip with menu and mainarea
    	+-->
     <div id="main">
+<!--breadtrail location='alt'-->
+        <xsl:if test="$config/trail/@location='alt'">
+<xsl:comment>+
+    |breadtrail
+    +</xsl:comment>
+      <div class="breadtrail">
+          <xsl:call-template name="breadcrumbs"/>
+      </div>
+        </xsl:if>
 <xsl:comment>+
     |start Menu, mainarea
     +</xsl:comment>

svn usage habits (Was: svn commit: rev 22605)

Posted by David Crossley <cr...@apache.org>.
Thorsten Scherler wrote:
> David Crossley wrote:
> >It seems that your 'svn properties' are still not correct.
> >... note.txt was missed.
> >
> Ok, I will install linux in my home soon as.

No matter what the OS, still needs to be configured
or get into the habit of explicitly setting them
whenever 'svn add' a new file.

> I just copied all props from FOR-124. Dunno what happend.
> 
> ...but the note.txt I have created on my windows box.

Ah, same problem there.

> >Also your commit seemed to add some strange "svn:ignore" props
> >
> >>  forrest/trunk/   (props changed)
> >>  forrest/trunk/src/core/context/skins/   (props changed)
> >>
> >[context]$ svn propget svn:ignore skins
> >whs
> >skins-1.xml
> >whs
> >
> Oh, man! _sorry_ -> how can I add them only local?
> I thought I just added them locally.

For most of my local things, i just ignore the 'svn status'
messages. Actually they are good to see because they remind
me of the cruft that i need to clean up. It is dangerous to
hide stuff because it gets accidently committed.

The best thing is to get into the habit of reviewing the list
of files to be committed and their flags before sending it.

> How can I undo that?

Not sure. Probably something to do with 'propset'.

> ...I have to find the time to read the svn-online-book!

Yep, all of us. It is a great reference to have handy.
I learn a lot just by glancing at it when i have an issue.

-- 
David Crossley


Re: svn commit: rev 22605

Posted by Thorsten Scherler <th...@juntadeandalucia.es>.
David Crossley wrote:

>thorsten wrote:
>  
>
>>Author: thorsten
>>Date: Mon Jul  5 18:24:30 2004
>>New Revision: 22605
>>
>>Added:
>>   forrest/trunk/src/core/context/skins/css-style-dev/note.txt
>>Modified:
>>   forrest/trunk/   (props changed)
>>   forrest/trunk/src/core/context/skins/   (props changed)
>>   forrest/trunk/src/core/context/skins/css-style-dev/css/profile.css.xslt
>>   forrest/trunk/src/core/context/skins/css-style-dev/css/screen.css
>>   forrest/trunk/src/core/context/skins/css-style-dev/xslt/html/site2xhtml.xsl
>>Log:
>>    
>>
>
>It seems that your 'svn properties' are still not correct.
>... note.txt was missed.
>
>  
>
Ok, I will install linux in my home soon as.
I just copied all props from FOR-124. Dunno what happend.

...but the note.txt I have created on my windows box.

>Also your commit seemed to add some strange "svn:ignore" props
>  
>
>>  forrest/trunk/   (props changed)
>>  forrest/trunk/src/core/context/skins/   (props changed)
>>    
>>
>[context]$ svn propget svn:ignore skins
>whs
>skins-1.xml
>whs
>
>  
>
Oh, man! _sorry_ -> how can I add them only local?
I thought I just added them locally .
How can I undo that?

...I have to find the time to read the svn-online-book!

King regards
thorsten

-- 
Thorsten Scherler

Departamento de Desarrollo de Proyectos
Sociedad Andaluza para el Desarrollo de la Sociedad de la InformaciĆ³n S.A.U.



Re: svn commit: rev 22605

Posted by David Crossley <cr...@apache.org>.
thorsten wrote:
> Author: thorsten
> Date: Mon Jul  5 18:24:30 2004
> New Revision: 22605
> 
> Added:
>    forrest/trunk/src/core/context/skins/css-style-dev/note.txt
> Modified:
>    forrest/trunk/   (props changed)
>    forrest/trunk/src/core/context/skins/   (props changed)
>    forrest/trunk/src/core/context/skins/css-style-dev/css/profile.css.xslt
>    forrest/trunk/src/core/context/skins/css-style-dev/css/screen.css
>    forrest/trunk/src/core/context/skins/css-style-dev/xslt/html/site2xhtml.xsl
> Log:

It seems that your 'svn properties' are still not correct.
... note.txt was missed.

Also your commit seemed to add some strange "svn:ignore" props
>   forrest/trunk/   (props changed)
>   forrest/trunk/src/core/context/skins/   (props changed)
[context]$ svn propget svn:ignore skins
whs
skins-1.xml
whs

-- 
David Crossley