[Bedework-commit] r345 - in trunk/calendar3/deployment/webuser/webapp/resources/demoskins: default/default resources

svnadmin at bedework.org svnadmin at bedework.org
Fri Apr 7 17:14:36 EDT 2006


Author: johnsa
Date: 2006-04-07 17:14:35 -0400 (Fri, 07 Apr 2006)
New Revision: 345

Added:
   trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/addEvent-forList-icon.gif
   trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/glassFill-button-menu.gif
Modified:
   trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css
   trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
   trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/messages.xsl
Log:
more graphics updates to the personal web client

Modified: trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css
===================================================================
--- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css	2006-04-07 19:49:36 UTC (rev 344)
+++ trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.css	2006-04-07 21:14:35 UTC (rev 345)
@@ -176,6 +176,18 @@
   margin: 0;
   padding: 2px 4px;
 }
+#bodyBlock td#sideBar h3 a:link,
+#bodyBlock td#sideBar h3 a:active,
+#bodyBlock td#sideBar h3 a:visited {
+  color: #eee;
+  background: inherit;
+  text-decoration: none;
+}
+#bodyBlock td#sideBar h3 a:hover {
+  color: #ff9;
+  background: inherit;
+  text-decoration: none;
+}
 #bodyBlock td#sideBarClosed {
   width: 1px;
   border-left: 2px solid #333;
@@ -636,8 +648,6 @@
 a.gridAdd {
   display: block;
   float: right;
-  font-size: 0.8em;
-  text-decoration: none;
   margin: 0;
   padding: 0;
 }
@@ -795,19 +805,35 @@
   /*background-color: #2B4795;*/
   color: #eee;
   font-size: 0.8em;
+  margin: 0;
   padding: 0.2em 0.5em 0.2em 0.5em;
-  margin: 0em;
 }
 #listTable td.dateRow a {
-  display: block;
   color: #fff;
   background-color: transparent;
   font-weight: bold;
   text-decoration : none;
 }
+#listTable td.dateRow a.listAdd {
+  float:right;
+  text-decoration : none;
+  font-size: 0.9em;
+  font-weight: normal;
+  padding-left: 1em;
+}
+#listTable td.dateRow a.listAdd:link,
+#listTable td.dateRow a.listAdd:active,
+#listTable td.dateRow a.listAdd:visited {
+  color: #eee;
+  background-color: transparent;
+}
+#listTable td.dateRow a.listAdd:hover {
+  color: #ffa;
+  background-color: transparent;
+}
 #listTable td.eventLinks {
   color: black;
-  background-color: #f0eee5;
+  background-color: #ddd;
   white-space : nowrap;
   font-size : 0.7em;
 }
@@ -821,7 +847,7 @@
 }
 #listTable td.smallIcon {
   color: black;
-  background-color: #ddd;
+  background-color: #ccc;
 }
 .noEventsCell {
   padding: 1em;

Modified: trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
===================================================================
--- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl	2006-04-07 19:49:36 UTC (rev 344)
+++ trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl	2006-04-07 21:14:35 UTC (rev 345)
@@ -262,17 +262,24 @@
   </xsl:template>
 
   <xsl:template name="sideBar">
-    <h3>views</h3>
+    <h3>
+      <img alt="manage views" src="{$resourcesRoot}/resources/glassFill-button-menu.gif" width="12" height="11" border="0"/> views
+    </h3>
     <ul id="myViews">
       <li><a href="{$setSelection}">default view</a></li>
     </ul>
 
-    <h3>calendars</h3>
+    <h3><img alt="manage calendars" src="{$resourcesRoot}/resources/glassFill-button-menu.gif" width="12" height="11" border="0"/> calendars</h3>
     <ul class="calendarTree">
       <xsl:apply-templates select="/bedework/myCalendars/calendars/calendar" mode="myCalendars"/>
     </ul>
 
-    <h3>subscriptions</h3>
+    <h3>
+      <a href="{$subscriptions-fetch}" title="manage subscriptions">
+        <img alt="manage subscriptions" src="{$resourcesRoot}/resources/glassFill-button-menu.gif" width="12" height="11" border="0"/>
+        subscriptions
+      </a>
+    </h3>
     <ul class="calendarTree">
       <xsl:variable name="userPath">user/<xsl:value-of select="/bedework/userid"/></xsl:variable>
       <xsl:choose>
@@ -287,10 +294,7 @@
 
     <h3>options</h3>
     <ul id="sideBarMenu">
-      <li><a href="{$initEvent}">Add Event</a></li>
-      <li><a href="{$initUpload}">Upload Events (iCal)</a></li>
       <li><a href="{$manageLocations}">Manage Locations</a></li>
-      <li><a href="{$subscriptions-fetch}">Manage Subscriptions</a></li>
       <li>Preferences</li>
     </ul>
   </xsl:template>
@@ -604,10 +608,13 @@
               <tr>
                 <td colspan="6" class="dateRow">
                    <xsl:variable name="date" select="date"/>
+                   <a href="{$initEvent}?date={$date}" class="listAdd">
+                     add event
+                   </a>
                    <a href="{$setViewPeriod}?viewType=dayView&amp;date={$date}">
                      <xsl:value-of select="name"/>, <xsl:value-of select="longdate"/>
                    </a>
-                </td>
+                 </td>
               </tr>
             </xsl:if>
             <xsl:for-each select="event">
@@ -780,7 +787,7 @@
             <td>
               <xsl:variable name="dayDate" select="date"/>
               <a href="{$initEvent}?date={$dayDate}" class="gridAdd">
-                <img src="{$resourcesRoot}/resources/addEvent-forGrid-icon.gif" width="10" height="10" border="0" alt="add event to this day"/>
+                <img src="{$resourcesRoot}/resources/addEvent-forGrid-icon.gif" width="10" height="10" border="0" alt="add event"/>
               </a>
               <a href="{$setViewPeriod}?viewType=dayView&amp;date={$dayDate}" class="dayLink">
                 <xsl:value-of select="value"/>
@@ -817,7 +824,7 @@
                 <td>
                   <xsl:variable name="dayDate" select="date"/>
                   <a href="{$initEvent}?date={$dayDate}" class="gridAdd">
-                    <img src="{$resourcesRoot}/resources/addEvent-forGrid-icon.gif" width="10" height="10" border="0" alt="add event to this day"/>
+                    <img src="{$resourcesRoot}/resources/addEvent-forGrid-icon.gif" width="10" height="10" border="0" alt="add event"/>
                   </a>
                   <a href="{$setViewPeriod}?viewType=dayView&amp;date={$dayDate}" class="dayLink">
                     <xsl:value-of select="value"/>

Modified: trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/messages.xsl
===================================================================
--- trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/messages.xsl	2006-04-07 19:49:36 UTC (rev 344)
+++ trunk/calendar3/deployment/webuser/webapp/resources/demoskins/default/default/messages.xsl	2006-04-07 21:14:35 UTC (rev 345)
@@ -5,7 +5,7 @@
       <xsl:when test="id='org.bedework.client.message.cancelled'">
           <p>Action cancelled.</p>
       </xsl:when>
-      <xsl:when test="id='org.bedework.client.message.locations.added'">
+      <xsl:when test="id='org.bedework.client.message.added.locations'">
         <xsl:choose>
           <xsl:when test="param='1'">
             <p>1 location added.</p>

Added: trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/addEvent-forList-icon.gif
===================================================================
(Binary files differ)


Property changes on: trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/addEvent-forList-icon.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/glassFill-button-menu.gif
===================================================================
(Binary files differ)


Property changes on: trunk/calendar3/deployment/webuser/webapp/resources/demoskins/resources/glassFill-button-menu.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream



More information about the Bedework-commit mailing list