JBoss Rich Faces SVN: r12885 - trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable.
by richfaces-svn-commits@lists.jboss.org
Author: pkawiak
Date: 2009-03-08 08:02:57 -0400 (Sun, 08 Mar 2009)
New Revision: 12885
Modified:
trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js
Log:
RF-5086: fixing handling events with enableContextMenu='false'
Modified: trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js
===================================================================
--- trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js 2009-03-06 20:28:39 UTC (rev 12884)
+++ trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js 2009-03-08 12:02:57 UTC (rev 12885)
@@ -6,6 +6,7 @@
initialize: function($super, elementId, extDt) {
this.extDt = extDt;
this.extDtId = this.extDt.id;
+ this.enableContextMenu = this.extDt.options.enableContextMenu;
$super(elementId,extDt,true);
//register events
@@ -13,33 +14,35 @@
this.eventSepMouseDown = this.OnSepMouseDown.bindAsEventListener(this);
this.eventSepMouseMove = this.OnSepMouseMove.bindAsEventListener(this);
this.eventSepMouseUp = this.OnSepMouseUp.bindAsEventListener(this);
- if (this.extDt.options.enableContextMenu) {
- this.eventHeaderCellMouseOver = this.OnHeaderCellMouseOver.bindAsEventListener(this);
- this.eventHeaderCellMouseOut = this.OnHeaderCellMouseOut.bindAsEventListener(this);
+ this.eventHeaderCellMouseOver = this.OnHeaderCellMouseOver.bindAsEventListener(this);
+ this.eventHeaderCellMouseOut = this.OnHeaderCellMouseOut.bindAsEventListener(this);
+ if (this.enableContextMenu) {
+ var showMenuFct = this.extDt.options.showMenuFunction;
+ if (showMenuFct) {
+ this.showMenuFct = showMenuFct;
+ this.menuImageMouseDown = this.OnMenuImageMouseDown.bindAsEventListener(this);
+ };
}
if (this.extDt.sortFct) {
this.eventHeaderCellClicked = this.OnHeaderCellMouseClicked.bindAsEventListener(this);
}
-
- var showMenuFct = this.extDt.options.showMenuFunction;
- if (showMenuFct) {
- this.showMenuFct = showMenuFct;
- this.menuImageMouseDown = this.OnMenuImageMouseDown.bindAsEventListener(this);
- };
-
this.createControl(elementId);
},
OnHeaderCellMouseOver: function(event) {
- var el = this.extDt._findParentElement(event, "th");
- var menuDiv = $(el.id+"header:menuDiv");
- menuDiv.className = "extdt-menu-div-on";
+ if (this.enableContextMenu) {
+ var el = this.extDt._findParentElement(event, "th");
+ var menuDiv = $(el.id+"header:menuDiv");
+ menuDiv.className = "extdt-menu-div-on";
+ }
},
OnHeaderCellMouseOut: function(event) {
- var el = this.extDt._findParentElement(event, "th");
- var menuDiv = $(el.id+"header:menuDiv");
- menuDiv.className = "extdt-menu-div-out";
+ if (this.enableContextMenu) {
+ var el = this.extDt._findParentElement(event, "th");
+ var menuDiv = $(el.id+"header:menuDiv");
+ menuDiv.className = "extdt-menu-div-out";
+ }
},
OnHeaderCellMouseClicked: function(event) {
@@ -88,13 +91,13 @@
if (headerChildChildren == null || headerChildChildren.size() == 0){
continue;
}
+ if (this.enableContextMenu) {
+ var menuImage = headerChildChildren[7];
+ Utils.DOM.Event.removeListeners(menuImage);
+ Utils.DOM.Event.observe(menuImage,'click',this.menuImageMouseDown);
+ };
var sepSpan = headerChildChildren[2];
- var menuImage = headerChildChildren[7];
- //remove listeners
- Utils.DOM.Event.removeListeners(menuImage);
Utils.DOM.Event.removeListeners(sepSpan);
- //add listeners
- Utils.DOM.Event.observe(menuImage,'click',this.menuImageMouseDown);
Utils.DOM.Event.observe(sepSpan, 'click', this.eventSepClick);
Utils.DOM.Event.observe(sepSpan, 'mousedown', this.eventSepMouseDown);
Utils.DOM.Event.observe(sepSpan, 'mousemove', this.eventSepMouseMove);
@@ -118,10 +121,11 @@
if (headerChildChildren == null || headerChildChildren.size() == 0){
continue;
}
+ if (this.enableContextMenu) {
+ var menuImage = headerChildChildren[7];
+ Utils.DOM.Event.removeListeners(menuImage);
+ }
var sepSpan = headerChildChildren[2];
- var menuImage = headerChildChildren[7];
-
- Utils.DOM.Event.removeListeners(menuImage);
Utils.DOM.Event.removeListeners(sepSpan);
};
},
15 years, 10 months
JBoss Rich Faces SVN: r12884 - in trunk/test-applications/realworld2/web/src/main/webapp: WEB-INF and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-06 15:28:39 -0500 (Fri, 06 Mar 2009)
New Revision: 12884
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/web.xml
trunk/test-applications/realworld2/web/src/main/webapp/index.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/main.xhtml
Log:
Latest changes for real-world demo
Modified: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/web.xml 2009-03-06 20:27:05 UTC (rev 12883)
+++ trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/web.xml 2009-03-06 20:28:39 UTC (rev 12884)
@@ -43,6 +43,11 @@
</filter-mapping>
<context-param>
+ <param-name>org.richfaces.queue.global.enabled</param-name>
+ <param-value>true</param-value>
+ </context-param>
+
+ <context-param>
<param-name>org.richfaces.SKIN</param-name>
<param-value>realworld</param-value>
</context-param>
@@ -84,6 +89,10 @@
<param-value>/WEB-INF/tags/realWorld-taglib.xml</param-value>
</context-param>
+ <context-param>
+ <param-name>facelets.REFRESH_PERIOD</param-name>
+ <param-value>-1</param-value>
+ </context-param>
<servlet>
Modified: trunk/test-applications/realworld2/web/src/main/webapp/index.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/main.xhtml
===================================================================
(Binary files differ)
15 years, 10 months
JBoss Rich Faces SVN: r12883 - in trunk/test-applications/realworld2/web/src/main: webapp/WEB-INF and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-03-06 15:27:05 -0500 (Fri, 06 Mar 2009)
New Revision: 12883
Modified:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml
Log:
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java 2009-03-06 19:44:50 UTC (rev 12882)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java 2009-03-06 20:27:05 UTC (rev 12883)
@@ -175,11 +175,7 @@
}
public String start(){
- if(!identity.isLoggedIn() || startConversation != null){
- if(startConversation != null){
- identity.logout();
- identity.unAuthenticate();
- }
+ if(!identity.isLoggedIn()){
credentials.clear();
try {
identity.authenticate();
@@ -191,6 +187,13 @@
return "";
}
+ public String startConversation(){
+ identity.logout();
+ identity.unAuthenticate();
+ credentials.clear();
+ return "";
+ }
+
private boolean wantLoginAnonymous() {
return null == credentials.getUsername() || credentials.getUsername().equals("");
}
Modified: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml 2009-03-06 19:44:50 UTC (rev 12882)
+++ trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml 2009-03-06 20:27:05 UTC (rev 12883)
@@ -18,8 +18,9 @@
</page>
<page view-id="/index.xhtml">
- <begin-conversation join="true" if="#{!identity.isLoggedIn() or authenticator.startConversation!=null}"/>
- <action if="#{!identity.isLoggedIn() or authenticator.startConversation!=null}" execute="#{authenticator.start}"/>
+ <begin-conversation if="#{!identity.isLoggedIn()}"/>
+ <action if="#{authenticator.startConversation!=null}" execute="#{authenticator.startConversation}"/>
+ <action if="#{!identity.isLoggedIn()}" execute="#{authenticator.start}"/>
<navigation from-action="#{authenticator.logout}">
<rule if-outcome="logout">
<end-conversation />
15 years, 10 months
JBoss Rich Faces SVN: r12882 - in trunk/test-applications/realworld2/web/src/main: java/org/richfaces/realworld/util and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-03-06 14:44:50 -0500 (Fri, 06 Mar 2009)
New Revision: 12882
Modified:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/ConversationState.java
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml
trunk/test-applications/realworld2/web/src/main/webapp/index.html
Log:
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java 2009-03-06 19:36:15 UTC (rev 12881)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java 2009-03-06 19:44:50 UTC (rev 12882)
@@ -34,6 +34,7 @@
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Out;
import org.jboss.seam.annotations.Scope;
+import org.jboss.seam.annotations.web.RequestParameter;
import org.jboss.seam.core.Conversation;
import org.jboss.seam.core.Events;
import org.jboss.seam.faces.FacesMessages;
@@ -64,6 +65,8 @@
@In("#{messages['user.confirm.error']}") private String CONFIRM_PASSWORD_NOT_EQUALS_PASSWORD;
+ @RequestParameter protected Long startConversation;
+
private static final long serialVersionUID = -4585673256547342140L;
@Logger Log log;
@@ -172,7 +175,11 @@
}
public String start(){
- if(!identity.isLoggedIn()){
+ if(!identity.isLoggedIn() || startConversation != null){
+ if(startConversation != null){
+ identity.logout();
+ identity.unAuthenticate();
+ }
credentials.clear();
try {
identity.authenticate();
@@ -209,4 +216,12 @@
}
return false;
}
+
+ public Long getStartConversation() {
+ return startConversation;
+ }
+
+ public void setStartConversation(Long startConversation) {
+ this.startConversation = startConversation;
+ }
}
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/ConversationState.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/ConversationState.java 2009-03-06 19:36:15 UTC (rev 12881)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/ConversationState.java 2009-03-06 19:44:50 UTC (rev 12882)
@@ -74,9 +74,8 @@
private NavigationEnum mainArea;
- @In
+ @In(create=true)
private User user;
- //@In(required=false, create=false) private TreeMyAlbumsItem treeMyAlbumsItem;
public Integer getSelectedImageIndex() {
return selectedImageIndex;
Modified: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml 2009-03-06 19:36:15 UTC (rev 12881)
+++ trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml 2009-03-06 19:44:50 UTC (rev 12882)
@@ -18,8 +18,8 @@
</page>
<page view-id="/index.xhtml">
- <begin-conversation if="#{!conversation.longRunning}"/>
- <action if="#{!identity.isLoggedIn()}" execute="#{authenticator.start}"/>
+ <begin-conversation join="true" if="#{!identity.isLoggedIn() or authenticator.startConversation!=null}"/>
+ <action if="#{!identity.isLoggedIn() or authenticator.startConversation!=null}" execute="#{authenticator.start}"/>
<navigation from-action="#{authenticator.logout}">
<rule if-outcome="logout">
<end-conversation />
Modified: trunk/test-applications/realworld2/web/src/main/webapp/index.html
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/index.html 2009-03-06 19:36:15 UTC (rev 12881)
+++ trunk/test-applications/realworld2/web/src/main/webapp/index.html 2009-03-06 19:44:50 UTC (rev 12882)
@@ -1,5 +1,5 @@
<html>
<head>
- <meta http-equiv="Refresh" content="0; URL=index.seam">
+ <meta http-equiv="Refresh" content="0; URL=index.seam?startConversation=1">
</head>
</html>
\ No newline at end of file
15 years, 10 months
JBoss Rich Faces SVN: r12881 - in trunk/sandbox: ui/layout/src/main/java/org/richfaces/renderkit and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2009-03-06 14:36:15 -0500 (Fri, 06 Mar 2009)
New Revision: 12881
Added:
trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/fonts-context.css
trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/grids-context.css
trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/reset-context.css
Modified:
trunk/sandbox/samples/layout-sample/src/main/webapp/pages/index.xhtml
trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/AbstractPageRenderer.java
trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/html/images/PageBackgroundGradient.java
trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/html/images/PageContentGradient.java
trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/fonts.css
trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/grids.css
trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/reset.css
trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/simple.xcss
Log:
simple skin improvements
Modified: trunk/sandbox/samples/layout-sample/src/main/webapp/pages/index.xhtml
===================================================================
(Binary files differ)
Modified: trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/AbstractPageRenderer.java
===================================================================
--- trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/AbstractPageRenderer.java 2009-03-06 18:51:47 UTC (rev 12880)
+++ trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/AbstractPageRenderer.java 2009-03-06 19:36:15 UTC (rev 12881)
@@ -208,7 +208,7 @@
.append("em;");
;
format.append("*margin").append(position).append(":").append(
- ieWidth + 1.05f).append("em;}\n");
+ ieWidth + .975f).append("em;}\n");
writer.write(format.toString());
}
Modified: trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/html/images/PageBackgroundGradient.java
===================================================================
--- trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/html/images/PageBackgroundGradient.java 2009-03-06 18:51:47 UTC (rev 12880)
+++ trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/html/images/PageBackgroundGradient.java 2009-03-06 19:36:15 UTC (rev 12881)
@@ -12,6 +12,6 @@
public class PageBackgroundGradient extends BaseGradient {
public PageBackgroundGradient() {
- super(1, 250, 130, false);
+ super(1, 350, 300,"shadowBackgroundColor","additionalBackgroundColor", false);
}
}
Modified: trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/html/images/PageContentGradient.java
===================================================================
--- trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/html/images/PageContentGradient.java 2009-03-06 18:51:47 UTC (rev 12880)
+++ trunk/sandbox/ui/layout/src/main/java/org/richfaces/renderkit/html/images/PageContentGradient.java 2009-03-06 19:36:15 UTC (rev 12881)
@@ -12,6 +12,6 @@
public class PageContentGradient extends BaseGradient {
public PageContentGradient() {
- super(1, 250, 130, false);
+ super(1, 250, 230,"headerGradientColor","generalBackgroundColor", false);
}
}
Added: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/fonts-context.css
===================================================================
--- trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/fonts-context.css (rev 0)
+++ trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/fonts-context.css 2009-03-06 19:36:15 UTC (rev 12881)
@@ -0,0 +1,46 @@
+/*
+Copyright (c) 2008, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 3.0.0pr2
+*/
+/**
+ * Percents could work for IE, but for backCompat purposes, we are using keywords.
+ * x-small is for IE6/7 quirks mode.
+ */
+.yui-cssfonts body, .yui-cssfonts {
+ font:13px/1.231 arial,helvetica,clean,sans-serif;
+ *font-size:small; /* for IE */
+ *font:x-small; /* for IE in quirks mode */
+}
+
+/**
+ * Nudge down to get to 13px equivalent for these form elements
+ */
+.yui-cssfonts select,
+.yui-cssfonts input,
+.yui-cssfonts button,
+.yui-cssfonts textarea {
+ font:99% arial,helvetica,clean,sans-serif;
+}
+
+/**
+ * To help tables remember to inherit
+ */
+.yui-cssfonts table {
+ font-size:inherit;
+ font:100%;
+}
+
+/**
+ * Bump up IE to get to 13px equivalent for these fixed-width elements
+ */
+.yui-cssfonts pre,
+.yui-cssfonts code,
+.yui-cssfonts kbd,
+.yui-cssfonts samp,
+.yui-cssfonts tt {
+ font-family:monospace;
+ *font-size:108%;
+ line-height:100%;
+}
\ No newline at end of file
Property changes on: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/fonts-context.css
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/fonts.css
===================================================================
--- trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/fonts.css 2009-03-06 18:51:47 UTC (rev 12880)
+++ trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/fonts.css 2009-03-06 19:36:15 UTC (rev 12881)
@@ -2,27 +2,45 @@
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
-version: 2.5.2
-*/ /**
+version: 3.0.0pr2
+*/
+/**
* Percents could work for IE, but for backCompat purposes, we are using keywords.
* x-small is for IE6/7 quirks mode.
*/
body {
- font: 13px/ 1.231 arial, helvetica, clean, sans-serif; *
- font-size: small; *
- font: x-small;
+ font:13px/1.231 arial,helvetica,clean,sans-serif;
+ *font-size:small; /* for IE */
+ *font:x-small; /* for IE in quirks mode */
}
+/**
+ * Nudge down to get to 13px equivalent for these form elements
+ */
+select,
+input,
+button,
+textarea {
+ font:99% arial,helvetica,clean,sans-serif;
+}
+
+/**
+ * To help tables remember to inherit
+ */
table {
- font-size: inherit;
- font: 100%;
+ font-size:inherit;
+ font:100%;
}
/**
- * Bump up IE to get to 13px equivalent
+ * Bump up IE to get to 13px equivalent for these fixed-width elements
*/
-pre,code,kbd,samp,tt {
- font-family: monospace; *
- font-size: 108%;
- line-height: 100%;
+pre,
+code,
+kbd,
+samp,
+tt {
+ font-family:monospace;
+ *font-size:108%;
+ line-height:100%;
}
\ No newline at end of file
Added: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/grids-context.css
===================================================================
--- trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/grids-context.css (rev 0)
+++ trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/grids-context.css 2009-03-06 19:36:15 UTC (rev 12881)
@@ -0,0 +1,490 @@
+/*
+Copyright (c) 2008, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 3.0.0pr2
+*/
+/*
+*
+* The YUI CSS Foundation uses the *property and _property CSS filter
+* techniques to shield a value from A-grade browsers [1] other than
+* IE6 & IE7 (*property) and IE6 (_property)
+*
+/
+Section: General Rules
+*/
+.yui-cssgrids body {
+ /* center the page */
+ text-align: center;
+ margin-left: auto;
+ margin-right: auto;
+}
+/*
+Section: Page Width Rules (#doc, #doc2, #doc3, #doc4)
+*/
+/*
+Subsection: General
+*/
+.yui-cssgrids .yui-d0, /* 100% */
+.yui-cssgrids .yui-d1, /* 750px */
+.yui-cssgrids .yui-d1f, /* 750px fixed */
+.yui-cssgrids .yui-d2, /* 950px */
+.yui-cssgrids .yui-d2f, /* 950px fixed */
+.yui-cssgrids .yui-d3, /* 974px */
+.yui-cssgrids .yui-d3f { /* 974px fixed */
+ margin: auto;
+ text-align: left;
+ width: 57.69em;
+ *width: 56.25em; /* doc1*/
+}
+
+.yui-cssgrids .yui-t1,
+.yui-cssgrids .yui-t2,
+.yui-cssgrids .yui-t3,
+.yui-cssgrids .yui-t4,
+.yui-cssgrids .yui-t5,
+.yui-cssgrids .yui-t6 {
+ margin: auto;
+ text-align: left;
+ width: 100%;
+}
+
+/*
+Subsection: 100% (doc)
+*/
+.yui-cssgrids .yui-d0 {
+ /* Left and Right margins are not a structural part of Grids. Without them Grids
+ works fine, but content bleeds to the very edge of the document, which often
+ impairs readability and usability. They are
+ provided because they prevent the content from "bleeding" into the browser's chrome.*/
+ margin: auto 10px;
+ width: auto;
+}
+.yui-cssgrids .yui-d0f {
+ width: 100%;
+}
+
+/*
+Subsection: 950 Centered (doc2)
+*/
+.yui-cssgrids .yui-d2 {
+ width: 73.076em;
+ *width: 71.25em;
+}
+.yui-cssgrids .yui-d2f {
+ width: 950px;
+}
+/*
+Subsection: 974 Centered (doc3)
+*/
+.yui-cssgrids .yui-d3 {
+ width: 74.923em;
+ *width: 73.05em;
+}
+.yui-cssgrids .yui-d3f {
+ width: 974px;
+}
+/*
+Section: Preset Template Rules (.yui-t[1-6])
+*/
+/*
+Subsection: General
+*/
+
+/* to preserve source-order independence for Gecko without breaking IE */
+.yui-cssgrids .yui-b {
+ position: relative;
+}
+.yui-cssgrids .yui-b {
+ _position: static;
+}
+.yui-cssgrids .yui-main .yui-b {
+ position: static;
+}
+.yui-cssgrids .yui-main {
+ width: 100%;
+}
+.yui-cssgrids .yui-t1 .yui-main,
+.yui-cssgrids .yui-t2 .yui-main,
+.yui-cssgrids .yui-t3 .yui-main {
+ float: right;
+ /* IE: preserve layout at narrow widths */
+ margin-left: -25em;
+}
+.yui-cssgrids .yui-t4 .yui-main,
+.yui-cssgrids .yui-t5 .yui-main,
+.yui-cssgrids .yui-t6 .yui-main {
+ float: left;
+ /* IE: preserve layout at narrow widths */
+ margin-right: -25em;
+}
+
+/* Subsection: For Specific Template Presets */
+
+/**
+* Nudge down to get to 13px equivalent for these form elements
+*/
+
+/*
+TODO Create t1-6's that are based on fixed widths
+*/
+/* t1 narrow block = left, equivalent of 160px */
+.yui-cssgrids .yui-t1 .yui-b {
+ float: left;
+ width: 12.30769em;
+ *width: 12.00em;
+}
+.yui-cssgrids .yui-t1 .yui-main .yui-b {
+ margin-left: 13.30769em;
+ *margin-left:12.975em;
+}
+/* t2 narrow block = left, equivalent of 180px */
+.yui-cssgrids .yui-t2 .yui-b {
+ float: left;
+ width: 13.84615em;
+ *width: 13.50em;
+}
+.yui-cssgrids .yui-t2 .yui-main .yui-b {
+ margin-left: 14.84615em;
+ *margin-left: 14.475em;
+}
+/* t3 narrow block = left, equivalent of 300px */
+.yui-cssgrids .yui-t3 .yui-b {
+ float: left;
+ width: 23.0769em;
+ *width: 22.50em;
+}
+.yui-cssgrids .yui-t3 .yui-main .yui-b {
+ margin-left: 24.0769em;
+ *margin-left: 23.475em;
+}
+/* t4 narrow block = right, equivalent of 180px */
+.yui-cssgrids .yui-t4 .yui-b {
+ float: right;
+ width: 13.8456em;
+ *width: 13.50em;
+}
+.yui-cssgrids .yui-t4 .yui-main .yui-b {
+ margin-right: 14.8456em;
+ *margin-right: 14.475em;
+}
+/* t5 narrow block = right, equivalent of 240px */
+.yui-cssgrids .yui-t5 .yui-b {
+ float: right;
+ width: 18.4615em;
+ *width: 18.00em;
+}
+.yui-cssgrids .yui-t5 .yui-main .yui-b {
+ margin-right: 19.4615em;
+ *margin-right: 18.975em;
+}
+/* t6 narrow block = equivalent of 300px */
+.yui-cssgrids .yui-t6 .yui-b {
+ float: right;
+ width: 23.0769em;
+ *width: 22.50em;
+}
+.yui-cssgrids .yui-t6 .yui-main .yui-b {
+ margin-right: 24.0769em;
+ *margin-right: 23.475em;
+}
+
+.yui-cssgrids .yui-main .yui-b {
+ float: none;
+ width: auto;
+}
+
+/*
+Section: Grids and Nesting Grids
+*/
+
+/*
+Subsection: Children generally take half the available space
+*/
+
+.yui-cssgrids .yui-gb .yui-u,
+.yui-cssgrids .yui-g .yui-gb .yui-u,
+.yui-cssgrids .yui-gb .yui-g,
+.yui-cssgrids .yui-gb .yui-gb,
+.yui-cssgrids .yui-gb .yui-gc,
+.yui-cssgrids .yui-gb .yui-gd,
+.yui-cssgrids .yui-gb .yui-ge,
+.yui-cssgrids .yui-gb .yui-gf,
+.yui-cssgrids .yui-gc .yui-u,
+.yui-cssgrids .yui-gc .yui-g,
+.yui-cssgrids .yui-gd .yui-u {
+ float: left;
+}
+
+/*Float units (and sub grids) to the right */
+.yui-cssgrids .yui-g .yui-u,
+.yui-cssgrids .yui-g .yui-g,
+.yui-cssgrids .yui-g .yui-gb,
+.yui-cssgrids .yui-g .yui-gc,
+.yui-cssgrids .yui-g .yui-gd,
+.yui-cssgrids .yui-g .yui-ge,
+.yui-cssgrids .yui-g .yui-gf,
+.yui-cssgrids .yui-gc .yui-u,
+.yui-cssgrids .yui-gd .yui-g,
+.yui-cssgrids .yui-g .yui-gc .yui-u,
+.yui-cssgrids .yui-ge .yui-u,
+.yui-cssgrids .yui-ge .yui-g,
+.yui-cssgrids .yui-gf .yui-g,
+.yui-cssgrids .yui-gf .yui-u {
+ float: right;
+}
+
+/*Float units (and sub grids) to the left */
+.yui-cssgrids .yui-g div.first,
+.yui-cssgrids .yui-gb div.first,
+.yui-cssgrids .yui-gc div.first,
+.yui-cssgrids .yui-gd div.first,
+.yui-cssgrids .yui-ge div.first,
+.yui-cssgrids .yui-gf div.first,
+.yui-cssgrids .yui-g .yui-gc div.first,
+.yui-cssgrids .yui-g .yui-ge div.first,
+.yui-cssgrids .yui-gc div.first div.first {
+ float: left;
+}
+
+.yui-cssgrids .yui-g .yui-u,
+.yui-cssgrids .yui-g .yui-g,
+.yui-cssgrids .yui-g .yui-gb,
+.yui-cssgrids .yui-g .yui-gc,
+.yui-cssgrids .yui-g .yui-gd,
+.yui-cssgrids .yui-g .yui-ge,
+.yui-cssgrids .yui-g .yui-gf {
+ width: 49.1%;
+}
+
+.yui-cssgrids .yui-gb .yui-u,
+.yui-cssgrids .yui-g .yui-gb .yui-u,
+.yui-cssgrids .yui-gb .yui-g,
+.yui-cssgrids .yui-gb .yui-gb,
+.yui-cssgrids .yui-gb .yui-gc,
+.yui-cssgrids .yui-gb .yui-gd,
+.yui-cssgrids .yui-gb .yui-ge,
+.yui-cssgrids .yui-gb .yui-gf,
+.yui-cssgrids .yui-gc .yui-u,
+.yui-cssgrids .yui-gc .yui-g,
+.yui-cssgrids .yui-gd .yui-u {
+ width: 32%;
+ margin-left: 2.0%;
+}
+
+/* Give IE some extra breathing room for 1/3-based rounding issues */
+.yui-cssgrids .yui-gb .yui-u {
+ *width: 31.8%;
+ *margin-left: 1.9%;
+}
+
+.yui-cssgrids .yui-gc div.first,
+.yui-cssgrids .yui-gd .yui-u {
+ width: 66%;
+ _width: 65.7%;
+}
+.yui-cssgrids .yui-gd div.first {
+ width: 32%;
+ _width: 31.5%;
+}
+
+.yui-cssgrids .yui-ge div.first,
+.yui-cssgrids .yui-gf .yui-u {
+ width: 74.2%;
+ _width: 74%;
+}
+
+.yui-cssgrids .yui-ge .yui-u,
+.yui-cssgrids .yui-gf div.first {
+ width: 24%;
+ _width: 23.8%;
+}
+
+.yui-cssgrids .yui-g .yui-gb div.first,
+.yui-cssgrids .yui-gb div.first,
+.yui-cssgrids .yui-gc div.first,
+.yui-cssgrids .yui-gd div.first {
+ margin-left: 0;
+}
+
+/*
+Section: Deep Nesting
+*/
+.yui-cssgrids .yui-g .yui-g .yui-u,
+.yui-cssgrids .yui-gb .yui-g .yui-u,
+.yui-cssgrids .yui-gc .yui-g .yui-u,
+.yui-cssgrids .yui-gd .yui-g .yui-u,
+.yui-cssgrids .yui-ge .yui-g .yui-u,
+.yui-cssgrids .yui-gf .yui-g .yui-u {
+ width: 49%;
+ *width: 48.1%;
+ *margin-left: 0;
+}
+
+.yui-cssgrids .yui-g .yui-gb div.first,
+.yui-cssgrids .yui-gb .yui-gb div.first {
+ *margin-right: 0;
+ *width: 32%;
+ _width: 31.7%;
+}
+
+.yui-cssgrids .yui-g .yui-gc div.first,
+.yui-cssgrids .yui-gd .yui-g {
+ width: 66%;
+}
+
+.yui-cssgrids .yui-gb .yui-g div.first {
+ *margin-right: 4%;
+ _margin-right: 1.3%;
+}
+
+.yui-cssgrids .yui-gb .yui-gc div.first,
+.yui-cssgrids .yui-gb .yui-gd div.first {
+ *margin-right: 0;
+}
+
+.yui-cssgrids .yui-gb .yui-gb .yui-u,
+.yui-cssgrids .yui-gb .yui-gc .yui-u {
+ *margin-left: 1.8%;
+ _margin-left: 4%;
+}
+
+.yui-cssgrids .yui-g .yui-gb .yui-u {
+ _margin-left: 1.0%;
+}
+
+.yui-cssgrids .yui-gb .yui-gd .yui-u {
+ *width: 66%;
+ _width: 61.2%;
+}
+.yui-cssgrids .yui-gb .yui-gd div.first {
+ *width: 31%;
+ _width: 29.5%;
+}
+
+.yui-cssgrids .yui-g .yui-gc .yui-u,
+.yui-cssgrids .yui-gb .yui-gc .yui-u {
+ width: 32%;
+ _float: right;
+ margin-right: 0;
+ _margin-left: 0;
+}
+.yui-cssgrids .yui-gb .yui-gc div.first {
+ width: 66%;
+ *float: left;
+ *margin-left: 0;
+}
+
+.yui-cssgrids .yui-gb .yui-ge .yui-u,
+.yui-cssgrids .yui-gb .yui-gf .yui-u {
+ margin: 0;
+}
+
+.yui-cssgrids .yui-gb .yui-gb .yui-u {
+ _margin-left: .7%;
+}
+
+.yui-cssgrids .yui-gb .yui-g div.first,
+.yui-cssgrids .yui-gb .yui-gb div.first {
+ *margin-left:0;
+}
+
+.yui-cssgrids .yui-gc .yui-g .yui-u,
+.yui-cssgrids .yui-gd .yui-g .yui-u {
+ *width: 48.1%;
+ *margin-left: 0;
+}
+
+.yui-cssgrids .yui-gb .yui-gd div.first {
+ width: 32%;
+}
+.yui-cssgrids .yui-g .yui-gd div.first {
+ _width: 29.9%;
+}
+
+.yui-cssgrids .yui-ge .yui-g {
+ width: 24%;
+}
+.yui-cssgrids .yui-gf .yui-g {
+ width: 74.2%;
+}
+
+.yui-cssgrids .yui-gb .yui-ge div.yui-u,
+.yui-cssgrids .yui-gb .yui-gf div.yui-u {
+ float: right;
+}
+.yui-cssgrids .yui-gb .yui-ge div.first,
+.yui-cssgrids .yui-gb .yui-gf div.first {
+ float: left;
+}
+
+/* Width Accommodation for Nested Contexts */
+.yui-cssgrids .yui-gb .yui-ge .yui-u,
+.yui-cssgrids .yui-gb .yui-gf div.first {
+ *width: 24%;
+ _width: 20%;
+}
+
+/* Width Accommodation for Nested Contexts */
+
+.yui-cssgrids .yui-gc .yui-gf .yui-u {
+ width: 74%;
+ _width: 73%;
+}
+
+.yui-cssgrids .yui-gc .yui-gf div.first {
+ width: 24%;
+}
+
+.yui-cssgrids .yui-gb .yui-ge div.first,
+.yui-cssgrids .yui-gb .yui-gf .yui-u {
+ *width: 73.5%;
+ _width: 65.5%;
+}
+
+/* Patch for GD within GE */
+.yui-cssgrids .yui-ge div.first .yui-gd .yui-u {
+ width: 65%;
+}
+.yui-cssgrids .yui-ge div.first .yui-gd div.first {
+ width: 32%;
+}
+
+/*
+Section: Clearing. zoom for IE, :after for others
+*/
+
+.yui-cssgrids #bd:after,
+.yui-cssgrids .yui-g:after,
+.yui-cssgrids .yui-gb:after,
+.yui-cssgrids .yui-gc:after,
+.yui-cssgrids .yui-gd:after,
+.yui-cssgrids .yui-ge:after,
+.yui-cssgrids .yui-gf:after,
+.yui-cssgrids .yui-t1:after,
+.yui-cssgrids .yui-t2:after,
+.yui-cssgrids .yui-t3:after,
+.yui-cssgrids .yui-t4:after,
+.yui-cssgrids .yui-t5:after,
+.yui-cssgrids .yui-t6:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+.yui-cssgrids #bd,
+.yui-cssgrids .yui-g,
+.yui-cssgrids .yui-gb,
+.yui-cssgrids .yui-gc,
+.yui-cssgrids .yui-gd,
+.yui-cssgrids .yui-ge,
+.yui-cssgrids .yui-gf,
+.yui-cssgrids .yui-t1,
+.yui-cssgrids .yui-t2,
+.yui-cssgrids .yui-t3,
+.yui-cssgrids .yui-t4,
+.yui-cssgrids .yui-t5,
+.yui-cssgrids .yui-t6 {
+ zoom: 1;
+}
\ No newline at end of file
Property changes on: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/grids-context.css
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/grids.css
===================================================================
--- trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/grids.css 2009-03-06 18:51:47 UTC (rev 12880)
+++ trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/grids.css 2009-03-06 19:36:15 UTC (rev 12881)
@@ -2,282 +2,479 @@
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
-version: 2.5.2
+version: 3.0.0pr2
*/
/*
- Note: Throughout this file, the *property filter is used to
- give a value to IE that other browsers do not see.
+*
+* The YUI CSS Foundation uses the *property and _property CSS filter
+* techniques to shield a value from A-grade browsers [1] other than
+* IE6 & IE7 (*property) and IE6 (_property)
+*
+/
+Section: General Rules
*/
-
+body {
+ /* center the page */
+ text-align: center;
+ margin-left: auto;
+ margin-right: auto;
+}
/*
- Section: General Rules
+Section: Page Width Rules (#doc, #doc2, #doc3, #doc4)
*/
+/*
+Subsection: General
+*/
+.yui-d0, /* 100% */
+.yui-d1, /* 750px */
+.yui-d1f, /* 750px fixed */
+.yui-d2, /* 950px */
+.yui-d2f, /* 950px fixed */
+.yui-d3, /* 974px */
+.yui-d3f { /* 974px fixed */
+ margin: auto;
+ text-align: left;
+ width: 57.69em;
+ *width: 56.25em; /* doc1*/
+}
- body {
- text-align:center;
- }
-
- #ft {
- clear:both;
- }
+.yui-t1,
+.yui-t2,
+.yui-t3,
+.yui-t4,
+.yui-t5,
+.yui-t6 {
+ margin: auto;
+ text-align: left;
+ width: 100%;
+}
/*
- Section: Page Width Rules (#doc, #doc2, #doc3, #doc4)
+Subsection: 100% (doc)
*/
+.yui-d0 {
+ /* Left and Right margins are not a structural part of Grids. Without them Grids
+ works fine, but content bleeds to the very edge of the document, which often
+ impairs readability and usability. They are
+ provided because they prevent the content from "bleeding" into the browser's chrome.*/
+ margin: auto 10px;
+ width: auto;
+}
+.yui-d0f {
+ width: 100%;
+}
- /*
- Subsection: General
- */
-
- #doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7 {
- margin:auto;
- text-align:left;
- width:57.69em;*width:56.25em;
- min-width:750px;
- }
- /*
- Subsection: 950 Centered (doc2)
- */
- #doc2 {
- width:73.076em;*width:71.25em;
- }
-
- /*
- Subsection: 100% (doc3)
- */
- #doc3 {
- /* Left and Right margins are not a structural part of Grids. Without them Grids
- works fine, but content bleeds to the very edge of the document, which often
- impairs readability and usability. They are
- provided because they prevent the content from "bleeding" into the browser's chrome.*/
- margin:auto 10px;
- width:auto;
- }
-
- /*
- Subsection: 974 Centered (doc4)
- */
- #doc4 {
- width:74.923em;*width:73.05em;
- }
-
/*
- Section: Preset Template Rules (.yui-t[1-6])
+Subsection: 950 Centered (doc2)
*/
-
- /*
- Subsection: General
- */
+.yui-d2 {
+ width: 73.076em;
+ *width: 71.25em;
+}
+.yui-d2f {
+ width: 950px;
+}
+/*
+Subsection: 974 Centered (doc3)
+*/
+.yui-d3 {
+ width: 74.923em;
+ *width: 73.05em;
+}
+.yui-d3f {
+ width: 974px;
+}
+/*
+Section: Preset Template Rules (.yui-t[1-6])
+*/
+/*
+Subsection: General
+*/
- /* to preserve source-order independence for Gecko */
- .yui-b{position:relative;}
- .yui-b{_position:static;}
- .yui-main .yui-b{position:static;}
+/* to preserve source-order independence for Gecko without breaking IE */
+.yui-b {
+ position: relative;
+}
+.yui-b {
+ _position: static;
+}
+.yui-main .yui-b {
+ position: static;
+}
+.yui-main {
+ width: 100%;
+}
+.yui-t1 .yui-main,
+.yui-t2 .yui-main,
+.yui-t3 .yui-main {
+ float: right;
+ /* IE: preserve layout at narrow widths */
+ margin-left: -25em;
+}
+.yui-t4 .yui-main,
+.yui-t5 .yui-main,
+.yui-t6 .yui-main {
+ float: left;
+ /* IE: preserve layout at narrow widths */
+ margin-right: -25em;
+}
- .yui-main {width:100%;}
-
- .yui-t1 .yui-main,
- .yui-t2 .yui-main,
- .yui-t3 .yui-main{float:right;margin-left:-25em;/* IE: preserve layout at narrow widths */}
+/* Subsection: For Specific Template Presets */
- .yui-t4 .yui-main,
- .yui-t5 .yui-main,
- .yui-t6 .yui-main{float:left;margin-right:-25em;/* IE: preserve layout at narrow widths */}
+/**
+* Nudge down to get to 13px equivalent for these form elements
+*/
- /*
- Subsection: For Specific Template Presets
- */
+/*
+TODO Create t1-6's that are based on fixed widths
+*/
+/* t1 narrow block = left, equivalent of 160px */
+.yui-t1 .yui-b {
+ float: left;
+ width: 12.30769em;
+ *width: 12.00em;
+}
+.yui-t1 .yui-main .yui-b {
+ margin-left: 13.30769em;
+ *margin-left:12.975em;
+}
+/* t2 narrow block = left, equivalent of 180px */
+.yui-t2 .yui-b {
+ float: left;
+ width: 13.84615em;
+ *width: 13.50em;
+}
+.yui-t2 .yui-main .yui-b {
+ margin-left: 14.84615em;
+ *margin-left: 14.475em;
+}
+/* t3 narrow block = left, equivalent of 300px */
+.yui-t3 .yui-b {
+ float: left;
+ width: 23.0769em;
+ *width: 22.50em;
+}
+.yui-t3 .yui-main .yui-b {
+ margin-left: 24.0769em;
+ *margin-left: 23.475em;
+}
+/* t4 narrow block = right, equivalent of 180px */
+.yui-t4 .yui-b {
+ float: right;
+ width: 13.8456em;
+ *width: 13.50em;
+}
+.yui-t4 .yui-main .yui-b {
+ margin-right: 14.8456em;
+ *margin-right: 14.475em;
+}
+/* t5 narrow block = right, equivalent of 240px */
+.yui-t5 .yui-b {
+ float: right;
+ width: 18.4615em;
+ *width: 18.00em;
+}
+.yui-t5 .yui-main .yui-b {
+ margin-right: 19.4615em;
+ *margin-right: 18.975em;
+}
+/* t6 narrow block = equivalent of 300px */
+.yui-t6 .yui-b {
+ float: right;
+ width: 23.0769em;
+ *width: 22.50em;
+}
+.yui-t6 .yui-main .yui-b {
+ margin-right: 24.0769em;
+ *margin-right: 23.475em;
+}
- .yui-t1 .yui-b {float:left;width:12.30769em;*width:12.00em;}
- .yui-t1 .yui-main .yui-b{margin-left:13.30769em;*margin-left:13.05em;}
+.yui-main .yui-b {
+ float: none;
+ width: auto;
+}
- .yui-t2 .yui-b {float:left;width:13.8461em;*width:13.50em;}
- .yui-t2 .yui-main .yui-b {margin-left:14.8461em;*margin-left:14.55em;}
+/*
+Section: Grids and Nesting Grids
+*/
- .yui-t3 .yui-b {float:left;width:23.0769em;*width:22.50em;}
- .yui-t3 .yui-main .yui-b {margin-left:24.0769em;*margin-left:23.62em;}
-
- .yui-t4 .yui-b {float:right;width:13.8456em;*width:13.50em;}
- .yui-t4 .yui-main .yui-b {margin-right:14.8456em;*margin-right:14.55em;}
-
- .yui-t5 .yui-b {float:right;width:18.4615em;*width:18.00em;}
- .yui-t5 .yui-main .yui-b {margin-right:19.4615em;*margin-right:19.125em;}
-
- .yui-t6 .yui-b {float:right;width:23.0769em;*width:22.50em;}
- .yui-t6 .yui-main .yui-b {margin-right:24.0769em;*margin-right:23.62em;}
-
- .yui-t7 .yui-main .yui-b {
- display:block;margin:0 0 1em 0;
- }
- .yui-main .yui-b {float:none;width:auto;}
-
/*
- Section: Grids and Nesting Grids
+Subsection: Children generally take half the available space
*/
- /*
- Subsection: Children generally take half the available space
- */
+.yui-gb .yui-u,
+.yui-g .yui-gb .yui-u,
+.yui-gb .yui-g,
+.yui-gb .yui-gb,
+.yui-gb .yui-gc,
+.yui-gb .yui-gd,
+.yui-gb .yui-ge,
+.yui-gb .yui-gf,
+.yui-gc .yui-u,
+.yui-gc .yui-g,
+.yui-gd .yui-u {
+ float: left;
+}
- .yui-gb .yui-u,
- .yui-g .yui-gb .yui-u,
- .yui-gb .yui-g,
- .yui-gb .yui-gb,
- .yui-gb .yui-gc,
- .yui-gb .yui-gd,
- .yui-gb .yui-ge,
- .yui-gb .yui-gf,
- .yui-gc .yui-u,
- .yui-gc .yui-g,
- .yui-gd .yui-u {float:left;}
+/*Float units (and sub grids) to the right */
+.yui-g .yui-u,
+.yui-g .yui-g,
+.yui-g .yui-gb,
+.yui-g .yui-gc,
+.yui-g .yui-gd,
+.yui-g .yui-ge,
+.yui-g .yui-gf,
+.yui-gc .yui-u,
+.yui-gd .yui-g,
+.yui-g .yui-gc .yui-u,
+.yui-ge .yui-u,
+.yui-ge .yui-g,
+.yui-gf .yui-g,
+.yui-gf .yui-u {
+ float: right;
+}
- /*Float units (and sub grids) to the right */
- .yui-g .yui-u,
- .yui-g .yui-g,
- .yui-g .yui-gb,
- .yui-g .yui-gc,
- .yui-g .yui-gd,
- .yui-g .yui-ge,
- .yui-g .yui-gf,
- .yui-gc .yui-u,
- .yui-gd .yui-g,
- .yui-g .yui-gc .yui-u,
- .yui-ge .yui-u,
- .yui-ge .yui-g,
- .yui-gf .yui-g,
- .yui-gf .yui-u{float:right;}
+/*Float units (and sub grids) to the left */
+.yui-g div.first,
+.yui-gb div.first,
+.yui-gc div.first,
+.yui-gd div.first,
+.yui-ge div.first,
+.yui-gf div.first,
+.yui-g .yui-gc div.first,
+.yui-g .yui-ge div.first,
+.yui-gc div.first div.first {
+ float: left;
+}
- /*Float units (and sub grids) to the left */
- .yui-g div.first,
- .yui-gb div.first,
- .yui-gc div.first,
- .yui-gd div.first,
- .yui-ge div.first,
- .yui-gf div.first,
- .yui-g .yui-gc div.first,
- .yui-g .yui-ge div.first,
- .yui-gc div.first div.first {float:left;}
+.yui-g .yui-u,
+.yui-g .yui-g,
+.yui-g .yui-gb,
+.yui-g .yui-gc,
+.yui-g .yui-gd,
+.yui-g .yui-ge,
+.yui-g .yui-gf {
+ width: 49.1%;
+}
- .yui-g .yui-u,
- .yui-g .yui-g,
- .yui-g .yui-gb,
- .yui-g .yui-gc,
- .yui-g .yui-gd,
- .yui-g .yui-ge,
- .yui-g .yui-gf {width:49.1%;}
+.yui-gb .yui-u,
+.yui-g .yui-gb .yui-u,
+.yui-gb .yui-g,
+.yui-gb .yui-gb,
+.yui-gb .yui-gc,
+.yui-gb .yui-gd,
+.yui-gb .yui-ge,
+.yui-gb .yui-gf,
+.yui-gc .yui-u,
+.yui-gc .yui-g,
+.yui-gd .yui-u {
+ width: 32%;
+ margin-left: 2.0%;
+}
- .yui-gb .yui-u,
- .yui-g .yui-gb .yui-u,
- .yui-gb .yui-g,
- .yui-gb .yui-gb,
- .yui-gb .yui-gc,
- .yui-gb .yui-gd,
- .yui-gb .yui-ge,
- .yui-gb .yui-gf,
- .yui-gc .yui-u,
- .yui-gc .yui-g,
- .yui-gd .yui-u {width:32%;margin-left:1.99%;}
+/* Give IE some extra breathing room for 1/3-based rounding issues */
+.yui-gb .yui-u {
+ *width: 31.8%;
+ *margin-left: 1.9%;
+}
- /* Give IE some extra breathing room for 1/3-based rounding issues */
- .yui-gb .yui-u {*margin-left:1.9%;*width:31.9%;}
+.yui-gc div.first,
+.yui-gd .yui-u {
+ width: 66%;
+ _width: 65.7%;
+}
+.yui-gd div.first {
+ width: 32%;
+ _width: 31.5%;
+}
- .yui-gc div.first,
- .yui-gd .yui-u {width:66%;}
- .yui-gd div.first {width:32%;}
+.yui-ge div.first,
+.yui-gf .yui-u {
+ width: 74.2%;
+ _width: 74%;
+}
- .yui-ge div.first,
- .yui-gf .yui-u{width:74.2%;}
+.yui-ge .yui-u,
+.yui-gf div.first {
+ width: 24%;
+ _width: 23.8%;
+}
- .yui-ge .yui-u,
- .yui-gf div.first {width:24%;}
+.yui-g .yui-gb div.first,
+.yui-gb div.first,
+.yui-gc div.first,
+.yui-gd div.first {
+ margin-left: 0;
+}
- .yui-g .yui-gb div.first,
- .yui-gb div.first,
- .yui-gc div.first,
- .yui-gd div.first {margin-left:0;}
-
- /*
- Section: Deep Nesting
- */
- .yui-g .yui-g .yui-u,
- .yui-gb .yui-g .yui-u,
- .yui-gc .yui-g .yui-u,
- .yui-gd .yui-g .yui-u,
- .yui-ge .yui-g .yui-u,
- .yui-gf .yui-g .yui-u {width:49%;*width:48.1%;*margin-left:0;}
+/*
+Section: Deep Nesting
+*/
+.yui-g .yui-g .yui-u,
+.yui-gb .yui-g .yui-u,
+.yui-gc .yui-g .yui-u,
+.yui-gd .yui-g .yui-u,
+.yui-ge .yui-g .yui-u,
+.yui-gf .yui-g .yui-u {
+ width: 49%;
+ *width: 48.1%;
+ *margin-left: 0;
+}
- .yui-g .yui-gb div.first,
- .yui-gb .yui-gb div.first {*margin-right:0;*width:32%;_width:31.7%;}
+.yui-g .yui-gb div.first,
+.yui-gb .yui-gb div.first {
+ *margin-right: 0;
+ *width: 32%;
+ _width: 31.7%;
+}
- .yui-g .yui-gc div.first,
- .yui-gd .yui-g {width:66%;}
+.yui-g .yui-gc div.first,
+.yui-gd .yui-g {
+ width: 66%;
+}
- .yui-gb .yui-g div.first {*margin-right:4%;_margin-right:1.3%;}
+.yui-gb .yui-g div.first {
+ *margin-right: 4%;
+ _margin-right: 1.3%;
+}
- .yui-gb .yui-gc div.first,
- .yui-gb .yui-gd div.first {*margin-right:0;}
+.yui-gb .yui-gc div.first,
+.yui-gb .yui-gd div.first {
+ *margin-right: 0;
+}
- .yui-gb .yui-gb .yui-u,
- .yui-gb .yui-gc .yui-u {*margin-left:1.8%;_margin-left:4%;}
+.yui-gb .yui-gb .yui-u,
+.yui-gb .yui-gc .yui-u {
+ *margin-left: 1.8%;
+ _margin-left: 4%;
+}
- .yui-g .yui-gb .yui-u {_margin-left:1.0%;}
+.yui-g .yui-gb .yui-u {
+ _margin-left: 1.0%;
+}
- .yui-gb .yui-gd .yui-u {*width:66%;_width:61.2%;}
- .yui-gb .yui-gd div.first {*width:31%;_width:29.5%;}
+.yui-gb .yui-gd .yui-u {
+ *width: 66%;
+ _width: 61.2%;
+}
+.yui-gb .yui-gd div.first {
+ *width: 31%;
+ _width: 29.5%;
+}
- .yui-g .yui-gc .yui-u,
- .yui-gb .yui-gc .yui-u {width:32%;_float:right;margin-right:0;_margin-left:0;}
- .yui-gb .yui-gc div.first {width:66%;*float:left;*margin-left:0;}
+.yui-g .yui-gc .yui-u,
+.yui-gb .yui-gc .yui-u {
+ width: 32%;
+ _float: right;
+ margin-right: 0;
+ _margin-left: 0;
+}
+.yui-gb .yui-gc div.first {
+ width: 66%;
+ *float: left;
+ *margin-left: 0;
+}
- .yui-gb .yui-ge .yui-u,
- .yui-gb .yui-gf .yui-u {margin:0;}
+.yui-gb .yui-ge .yui-u,
+.yui-gb .yui-gf .yui-u {
+ margin: 0;
+}
- .yui-gb .yui-gb .yui-u {_margin-left:.7%;}
+.yui-gb .yui-gb .yui-u {
+ _margin-left: .7%;
+}
- .yui-gb .yui-g div.first,
- .yui-gb .yui-gb div.first {*margin-left:0;}
+.yui-gb .yui-g div.first,
+.yui-gb .yui-gb div.first {
+ *margin-left:0;
+}
- .yui-gc .yui-g .yui-u,
- .yui-gd .yui-g .yui-u {*width:48.1%;*margin-left:0;}s
+.yui-gc .yui-g .yui-u,
+.yui-gd .yui-g .yui-u {
+ *width: 48.1%;
+ *margin-left: 0;
+}
- .yui-gb .yui-gd div.first {width:32%;}
- .yui-g .yui-gd div.first {_width:29.9%;}
+.yui-gb .yui-gd div.first {
+ width: 32%;
+}
+.yui-g .yui-gd div.first {
+ _width: 29.9%;
+}
- .yui-ge .yui-g {width:24%;}
- .yui-gf .yui-g {width:74.2%;}
+.yui-ge .yui-g {
+ width: 24%;
+}
+.yui-gf .yui-g {
+ width: 74.2%;
+}
- .yui-gb .yui-ge div.yui-u,
- .yui-gb .yui-gf div.yui-u {float:right;}
- .yui-gb .yui-ge div.first,
- .yui-gb .yui-gf div.first {float:left;}
+.yui-gb .yui-ge div.yui-u,
+.yui-gb .yui-gf div.yui-u {
+ float: right;
+}
+.yui-gb .yui-ge div.first,
+.yui-gb .yui-gf div.first {
+ float: left;
+}
- /* Width Accommodation for Nested Contexts */
- .yui-gb .yui-ge .yui-u,
- .yui-gb .yui-gf div.first {*width:24%;_width:20%;}
+/* Width Accommodation for Nested Contexts */
+.yui-gb .yui-ge .yui-u,
+.yui-gb .yui-gf div.first {
+ *width: 24%;
+ _width: 20%;
+}
- /* Width Accommodation for Nested Contexts */
- .yui-gb .yui-ge div.first,
- .yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}
+/* Width Accommodation for Nested Contexts */
+.yui-gb .yui-ge div.first,
+.yui-gb .yui-gf .yui-u {
+ *width: 73.5%;
+ _width: 65.5%;
+}
- /* Patch for GD within GE */
- .yui-ge div.first .yui-gd .yui-u {width:65%;}
- .yui-ge div.first .yui-gd div.first {width:32%;}
+/* Patch for GD within GE */
+.yui-ge div.first .yui-gd .yui-u {
+ width: 65%;
+}
+.yui-ge div.first .yui-gd div.first {
+ width: 32%;
+}
/*
- Section: Clearing
+Section: Clearing. zoom for IE, :after for others
*/
#bd:after,
-.yui-g:after,
-.yui-gb:after,
-.yui-gc:after,
-.yui-gd:after,
-.yui-ge:after,
-.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
+.yui-g:after,
+.yui-gb:after,
+.yui-gc:after,
+.yui-gd:after,
+.yui-ge:after,
+.yui-gf:after,
+.yui-t1:after,
+.yui-t2:after,
+.yui-t3:after,
+.yui-t4:after,
+.yui-t5:after,
+.yui-t6:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
#bd,
-.yui-g,
-.yui-gb,
-.yui-gc,
-.yui-gd,
-.yui-ge,
-.yui-gf{zoom:1;}
+.yui-g,
+.yui-gb,
+.yui-gc,
+.yui-gd,
+.yui-ge,
+.yui-gf,
+.yui-t1,
+.yui-t2,
+.yui-t3,
+.yui-t4,
+.yui-t5,
+.yui-t6 {
+ zoom: 1;
+}
\ No newline at end of file
Added: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/reset-context.css
===================================================================
--- trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/reset-context.css (rev 0)
+++ trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/reset-context.css 2009-03-06 19:36:15 UTC (rev 12881)
@@ -0,0 +1,125 @@
+/*
+Copyright (c) 2008, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 3.0.0pr2
+*/
+/*e
+ TODO will need to remove settings on HTML since we can't namespace it.
+ TODO with the prefix, should I group by selector or property for weight savings?
+*/
+.yui-cssreset html{
+ color:#000;
+ background:#FFF;
+}
+/*
+ TODO remove settings on BODY since we can't namespace it.
+*/
+/*
+ TODO test putting a class on HEAD.
+ - Fails on FF.
+*/
+.yui-cssreset body,
+.yui-cssreset div,
+.yui-cssreset dl,
+.yui-cssreset dt,
+.yui-cssreset dd,
+.yui-cssreset ul,
+.yui-cssreset ol,
+.yui-cssreset li,
+.yui-cssreset h1,
+.yui-cssreset h2,
+.yui-cssreset h3,
+.yui-cssreset h4,
+.yui-cssreset h5,
+.yui-cssreset h6,
+.yui-cssreset pre,
+.yui-cssreset code,
+.yui-cssreset form,
+.yui-cssreset fieldset,
+.yui-cssreset legend,
+.yui-cssreset input,
+.yui-cssreset textarea,
+.yui-cssreset p,
+.yui-cssreset blockquote,
+.yui-cssreset th,
+.yui-cssreset td {
+ margin:0;
+ padding:0;
+}
+.yui-cssreset table {
+ border-collapse:collapse;
+ border-spacing:0;
+}
+.yui-cssreset fieldset,
+.yui-cssreset img {
+ border:0;
+}
+/*
+ TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
+*/
+.yui-cssreset address,
+.yui-cssreset caption,
+.yui-cssreset cite,
+.yui-cssreset code,
+.yui-cssreset dfn,
+.yui-cssreset em,
+.yui-cssreset strong,
+.yui-cssreset th,
+.yui-cssreset var {
+ font-style:normal;
+ font-weight:normal;
+}
+/*
+ TODO Figure out where this list-style rule is best set. Hedger has a request to investigate.
+*/
+.yui-cssreset li {
+ list-style:none;
+}
+
+.yui-cssreset caption,
+.yui-cssreset th {
+ text-align:left;
+}
+.yui-cssreset h1,
+.yui-cssreset h2,
+.yui-cssreset h3,
+.yui-cssreset h4,
+.yui-cssreset h5,
+.yui-cssreset h6 {
+ font-size:100%;
+ font-weight:normal;
+}
+.yui-cssreset q:before,
+.yui-cssreset q:after {
+ content:'';
+}
+.yui-cssreset abbr,
+.yui-cssreset acronym {
+ border:0;
+ font-variant:normal;
+}
+/* to preserve line-height and selector appearance */
+.yui-cssreset sup {
+ vertical-align:text-top;
+}
+.yui-cssreset sub {
+ vertical-align:text-bottom;
+}
+.yui-cssreset input,
+.yui-cssreset textarea,
+.yui-cssreset select {
+ font-family:inherit;
+ font-size:inherit;
+ font-weight:inherit;
+}
+/*to enable resizing for IE*/
+.yui-cssreset input,
+.yui-cssreset textarea,
+.yui-cssreset select {
+ *font-size:100%;
+}
+/*because legend doesn't inherit in IE */
+.yui-cssreset legend {
+ color:#000;
+}
\ No newline at end of file
Property changes on: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/reset-context.css
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/reset.css
===================================================================
--- trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/reset.css 2009-03-06 18:51:47 UTC (rev 12880)
+++ trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/reset.css 2009-03-06 19:36:15 UTC (rev 12881)
@@ -2,76 +2,124 @@
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
-version: 2.5.2
+version: 3.0.0pr2
*/
-html {
- color: #000;
- background: #FFF;
+/*
+ TODO will need to remove settings on HTML since we can't namespace it.
+ TODO with the prefix, should I group by selector or property for weight savings?
+*/
+html{
+ color:#000;
+ background:#FFF;
}
-
-body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td
- {
- margin: 0;
- padding: 0;
+/*
+ TODO remove settings on BODY since we can't namespace it.
+*/
+/*
+ TODO test putting a class on HEAD.
+ - Fails on FF.
+*/
+body,
+div,
+dl,
+dt,
+dd,
+ul,
+ol,
+li,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+pre,
+code,
+form,
+fieldset,
+legend,
+input,
+textarea,
+p,
+blockquote,
+th,
+td {
+ margin:0;
+ padding:0;
}
-
table {
- border-collapse: collapse;
- border-spacing: 0;
+ border-collapse:collapse;
+ border-spacing:0;
}
-
-fieldset,img {
- border: 0;
+fieldset,
+img {
+ border:0;
}
-
-address,caption,cite,code,dfn,em,strong,th,var {
- font-style: normal;
- font-weight: normal;
+/*
+ TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
+*/
+address,
+caption,
+cite,
+code,
+dfn,
+em,
+strong,
+th,
+var {
+ font-style:normal;
+ font-weight:normal;
}
-
+/*
+ TODO Figure out where this list-style rule is best set. Hedger has a request to investigate.
+*/
li {
- list-style: none;
+ list-style:none;
}
-caption,th {
- text-align: left;
+caption,
+th {
+ text-align:left;
}
-
-h1,h2,h3,h4,h5,h6 {
- font-size: 100%;
- font-weight: normal;
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ font-size:100%;
+ font-weight:normal;
}
-
-q:before,q:after {
- content: '';
+q:before,
+q:after {
+ content:'';
}
-
-abbr,acronym {
- border: 0;
- font-variant: normal;
+abbr,
+acronym {
+ border:0;
+ font-variant:normal;
}
-
/* to preserve line-height and selector appearance */
sup {
- vertical-align: text-top;
+ vertical-align:text-top;
}
-
sub {
- vertical-align: text-bottom;
+ vertical-align:text-bottom;
}
-
-input,textarea,select {
- font-family: inherit;
- font-size: inherit;
- font-weight: inherit;
+input,
+textarea,
+select {
+ font-family:inherit;
+ font-size:inherit;
+ font-weight:inherit;
}
-
/*to enable resizing for IE*/
-input,textarea,select { *
- font-size: 100%;
+input,
+textarea,
+select {
+ *font-size:100%;
}
-
/*because legend doesn't inherit in IE */
legend {
- color: #000;
+ color:#000;
}
\ No newline at end of file
Modified: trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/simple.xcss
===================================================================
--- trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/simple.xcss 2009-03-06 18:51:47 UTC (rev 12880)
+++ trunk/sandbox/ui/layout/src/main/resources/org/richfaces/renderkit/html/css/simple.xcss 2009-03-06 19:36:15 UTC (rev 12881)
@@ -7,11 +7,12 @@
<u:selector name="body">
<u:style name="font-family" skin="generalFamilyFont" />
<u:style name="margin" value="0" />
+ <u:style name="padding" value="0" />
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.html.images.PageBackgroundGradient"/>
</u:style>
- <u:style name="background-color" value="#FFFFFF"/>
- <u:style name="background-repeat" value="repeat-x"/>
+ <u:style name="background-color" skin="additionalBackgroundColor"/>
+ <u:style name="background-repeat" value="repeat-x"/>
</u:selector>
<u:selector name=".rich-page">
@@ -35,7 +36,7 @@
<f:resource f:key="org.richfaces.renderkit.html.images.PageContentGradient"/>
</u:style>
<u:style name="min-height" value="200px" />
- <u:style name="background-color" value="#FFFFFF"/>
+ <u:style name="background-color" skin="generalBackgroundColor"/>
<u:style name="background-repeat" value="repeat-x"/>
</u:selector>
@@ -49,15 +50,33 @@
<u:selector name=".rich-page-footer">
<u:style name="text-align" value="center" />
<u:style name="padding" value="20px 0" />
- <u:style name="background-color" value="#333"/>
+ <u:style name="background-color" skin="tableFooterBackgroundColor"/>
<u:style name="color" skin="trimColor" />
- <u:style name="font-size" value="0.8em" />
+ <u:style name="font-size" skin="headerSizeFont" />
</u:selector>
<u:selector name=".rich-page-sidebar">
- <u:style name="padding" value="0 20px 0 20px" />
+ <!--u:style name="padding" value="0 20px 0 20px" /-->
</u:selector>
+ <u:selector name="h1,h2,h3">
+ <u:style name="font-family" skin="headerFamilyFont" />
+ <u:style name="margin" value="0" />
+ <u:style name="color" skin="headTextColor" />
+ </u:selector>
+ <u:selector name="h1">
+ <u:style name="font-size" value="333.4%" />
+ </u:selector>
+ <u:selector name="h2">
+ <u:style name="font-size" value="197%" />
+ </u:selector>
+ <u:selector name="p,ul,ol">
+ <u:style name="font-family" skin="generalFamilyFont" />
+ <u:style name="margin-top" value="0" />
+ <u:style name="line-height" value="240%"/>
+ <u:style name="color" skin="controlTextColor" />
+ </u:selector>
+
<u:selector name="a:hover">
<u:style name="color" skin="hoverLinkColor" />
</u:selector>
15 years, 10 months
JBoss Rich Faces SVN: r12880 - in trunk/test-applications/realworld2/web/src/main: webapp/includes/misc and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-06 13:51:47 -0500 (Fri, 06 Mar 2009)
New Revision: 12880
Modified:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageSizeHelper.java
trunk/test-applications/realworld2/web/src/main/webapp/includes/misc/inputNumberSlider.xhtml
Log:
Image resizer commented for demo
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageSizeHelper.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageSizeHelper.java 2009-03-06 18:23:45 UTC (rev 12879)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageSizeHelper.java 2009-03-06 18:51:47 UTC (rev 12880)
@@ -15,7 +15,7 @@
@Scope(ScopeType.CONVERSATION)
public class ImageSizeHelper {
- int value;
+ int value = 1;
final static String CSS_CLASS = "preview_box_album_";
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/misc/inputNumberSlider.xhtml
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/includes/misc/inputNumberSlider.xhtml 2009-03-06 18:23:45 UTC (rev 12879)
+++ trunk/test-applications/realworld2/web/src/main/webapp/includes/misc/inputNumberSlider.xhtml 2009-03-06 18:51:47 UTC (rev 12880)
@@ -18,7 +18,8 @@
height: 4px;
}
</style>
- <div>
+ <div>Input number slider will be here
+ <ui:remove>
<table border="0" cellpadding="0" cellspacing="0">
<tr style="height: 20px; padding-botton: 3px">
<td>
@@ -62,5 +63,6 @@
<a4j:support event="onchange" reRender="userAlbumImages"></a4j:support>
</rich:inputNumberSlider>
</td><td></td></tr></table>
- </div>
+ </ui:remove>
+ </div>
</ui:composition>
\ No newline at end of file
15 years, 10 months
JBoss Rich Faces SVN: r12879 - in trunk/test-applications/realworld2/web/src/main/webapp: includes and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-06 13:23:45 -0500 (Fri, 06 Mar 2009)
New Revision: 12879
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/includes/album/userAlbumsPreview.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/userImagesPreview.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/tag.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/index.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/main.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/stylesheet/realworld2.css
Log:
Latest changes for real-world demo
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/album/userAlbumsPreview.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/image/userImagesPreview.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/tag.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/index.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/main.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/stylesheet/realworld2.css
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/stylesheet/realworld2.css 2009-03-06 18:07:35 UTC (rev 12878)
+++ trunk/test-applications/realworld2/web/src/main/webapp/stylesheet/realworld2.css 2009-03-06 18:23:45 UTC (rev 12879)
@@ -294,37 +294,49 @@
.content_box {padding : 15px 35px 15px 35px;}
.content_box p {margin : 0px 0px 5px 0px; FONT-SIZE : 12PX}
-.preview_box_album_80 {width : 100px; height : 100px; position : relative; float : left; margin : 0px 10px 20px 0px;}
+.preview_box_album_80 {width : 100px; position : relative; float : left; margin : 0px 10px 10px 0px;}
.preview_box_album_80 img.pr_album_bg {width : 100px; height : 100px; position : absolute;}
.preview_box_album_80 table{position : relative; width : 100px; height : 100px; text-align : center; vertical-align : middle; border-collapse : collapse;}
.preview_box_album_80 table img{margin: 0px 0px 2px 0px; border : 1px solid #FFFFFF;}
+.preview_box_album_80 div.album_name {text-align : center; overflow : hidden; width : 100px; white-space : nowrap; margin-top : 3px; text-overflow: ellipsis; height : 14px;}
+.preview_box_album_80 div.album_data {text-align : center; overflow : hidden; width : 100px; white-space : nowrap; text-overflow: ellipsis; color : #666666; font-size : 10px; height : 14px}
-.preview_box_album_120 {width : 140px; height : 140px; position : relative; float : left; margin : 0px 10px 20px 0px;}
+.preview_box_album_120 {width : 140px; position : relative; float : left; margin : 0px 10px 10px 0px;}
.preview_box_album_120 img.pr_album_bg {width : 140px; height : 140px; position : absolute;}
.preview_box_album_120 table{position : relative; width : 140px; height : 140px; text-align : center; vertical-align : middle; border-collapse : collapse;}
.preview_box_album_120 table img{margin: 0px 0px 2px 0px; border : 1px solid #FFFFFF;}
+.preview_box_album_120 div.album_name {text-align : center; overflow : hidden; width : 140px; white-space : nowrap; margin-top : 3px; text-overflow: ellipsis; height : 14px;}
+.preview_box_album_120 div.album_data {text-align : center; overflow : hidden; width : 140px; white-space : nowrap; text-overflow: ellipsis; color : #666666; font-size : 10px; height : 14px}
-.preview_box_album_160 {width : 180px; height : 180px; position : relative; float : left; margin : 0px 10px 20px 0px;}
+.preview_box_album_160 {width : 180px; position : relative; float : left; margin : 0px 10px 10px 0px;}
.preview_box_album_160 img.pr_album_bg {width : 180px; height : 180px; position : absolute;}
.preview_box_album_160 table{position : relative; width : 180px; height : 180px; text-align : center; vertical-align : middle; border-collapse : collapse;}
.preview_box_album_160 table img{margin: 0px 0px 1px 1px; border : 1px solid #FFFFFF;}
+.preview_box_album_160 div.album_name {text-align : center; overflow : hidden; width : 180px; white-space : nowrap; margin-top : 3px; text-overflow: ellipsis; height : 14px;}
+.preview_box_album_160 div.album_data {text-align : center; overflow : hidden; width : 180px; white-space : nowrap; text-overflow: ellipsis; color : #666666; font-size : 10px; height : 14px}
-.preview_box_photo_80 {width : 100px; height : 100px; position : relative; float : left; margin : 0px 10px 20px 0px;}
+.preview_box_photo_80 {width : 100px; position : relative; float : left; margin : 0px 10px 10px 0px;}
.preview_box_photo_80 img.pr_photo_bg {width : 100px; height : 100px; position : absolute;}
.preview_box_photo_80 table{position : relative; width : 100px; height : 100px; text-align : center; vertical-align : middle; border-collapse : collapse;}
.preview_box_photo_80 table img{margin: 0px 0px 0px 0px; border : 1px solid #FFFFFF;}
+.preview_box_photo_80 div.photo_name {text-align : center; overflow : hidden; width : 100px; white-space : nowrap; margin-top : 3px; text-overflow: ellipsis; height : 14px;}
+.preview_box_photo_80 div.photo_data {text-align : center; overflow : hidden; width : 100px; white-space : nowrap; text-overflow: ellipsis; color : #666666; font-size : 10px; height : 14px}
-.preview_box_photo_120 {width : 140px; height : 140px; position : relative; float : left; margin : 0px 10px 20px 0px;}
+.preview_box_photo_120 {width : 140px; position : relative; float : left; margin : 0px 10px 10px 0px;}
.preview_box_photo_120 img.pr_photo_bg {width : 140px; height : 140px; position : absolute;}
.preview_box_photo_120 table{position : relative; width : 140px; height : 140px; text-align : center; vertical-align : middle; border-collapse : collapse;}
.preview_box_photo_120 table img{margin: 0px 0px 0px 0px; border : 1px solid #FFFFFF;}
+.preview_box_photo_120 div.photo_name {text-align : center; overflow : hidden; width : 140px; white-space : nowrap; margin-top : 3px; text-overflow: ellipsis; height : 14px;}
+.preview_box_photo_120 div.photo_data {text-align : center; overflow : hidden; width : 140px; white-space : nowrap; text-overflow: ellipsis; color : #666666; font-size : 10px; height : 14px}
-.preview_box_photo_160 {width : 180px; height : 180px; position : relative; float : left; margin : 0px 10px 20px 0px;}
+.preview_box_photo_160 {width : 180px; position : relative; float : left; margin : 0px 10px 10px 0px;}
.preview_box_photo_160 img.pr_photo_bg {width : 180px; height : 180px; position : absolute;}
.preview_box_photo_160 table{position : relative; width : 180px; height : 180px; text-align : center; vertical-align : middle; border-collapse : collapse;}
.preview_box_photo_160 table img{margin: 0px 0px 0px 0px; border : 1px solid #FFFFFF;}
+.preview_box_photo_160 div.photo_name {text-align : center; overflow : hidden; width : 180px; white-space : nowrap; margin-top : 3px; text-overflow: ellipsis; height : 14px;}
+.preview_box_photo_160 div.photo_data {text-align : center; overflow : hidden; width : 180px; white-space : nowrap; text-overflow: ellipsis; color : #666666; font-size : 10px; height : 14px}
.preview_box_photo_nav {width : 50px; height : 50px; position : relative; float : left; margin : 0px 2px 0px 0px;}
.preview_box_photo_nav img.pr_photo_bg {width : 50px; height : 50px; position : absolute;}
15 years, 10 months
JBoss Rich Faces SVN: r12878 - in management/design/realWorldDemo/html: images/shell and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: admitriev
Date: 2009-03-06 13:07:35 -0500 (Fri, 06 Mar 2009)
New Revision: 12878
Added:
management/design/realWorldDemo/html/images/shell/arr_left_dis.png
management/design/realWorldDemo/html/images/shell/arr_right_dis.png
management/design/realWorldDemo/html/images/shell/avatar_default.png
management/design/realWorldDemo/html/images/shell/button_press.png
management/design/realWorldDemo/html/images/shell/button_search_press.png
management/design/realWorldDemo/html/images/shell/informer_album.png
management/design/realWorldDemo/html/images/shell/informer_bg.png
management/design/realWorldDemo/html/images/shell/informer_photo.png
management/design/realWorldDemo/html/images/shell/informer_shelf.png
Modified:
management/design/realWorldDemo/html/album.html
management/design/realWorldDemo/html/images/shell/icon_add_album.png
management/design/realWorldDemo/html/images/shell/icon_add_photo.png
management/design/realWorldDemo/html/images/shell/icon_add_shelf.png
management/design/realWorldDemo/html/photo.html
management/design/realWorldDemo/html/photo_edit.html
management/design/realWorldDemo/html/shelf.html
Log:
Modified: management/design/realWorldDemo/html/album.html
===================================================================
--- management/design/realWorldDemo/html/album.html 2009-03-06 17:49:49 UTC (rev 12877)
+++ management/design/realWorldDemo/html/album.html 2009-03-06 18:07:35 UTC (rev 12878)
@@ -140,18 +140,93 @@
</div>
</div>
<div style="height : 37px; position : relative; background : url(images/shell/general_panelbar_bg.gif) repeat-x #A84807; padding-left : 15px; ">
- <table height="37px" cellpadding="0" cellspacing="0" border="0">
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
<tr>
<td valign="middle">
<img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0"><br>
</td>
- <td style="vertical-align : top; padding : 11px 25px 0px 8px">
- <a href="#" style="font-size : 11px; font-weight : bold; color : #ffffff; text-decoration : none;">My Album</a>
+ <td style="vertical-align : top; padding : 7px 5px 0px 14px">
+ <div>
+ <div style="height : 23px; float : left; width : 8px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_photo.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 3px; white-space : nowrap;">
+ <a href="#" style="font-size : 11px; font-weight : bold; color : #ffffff; text-decoration : none;">My Album:</a>
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+
</td>
</tr>
</table>
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
+ <tr>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_shelf.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_album.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_photo.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+ </td>
+
+ </tr>
+ </table>
+ <img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0" style="float:left; margin : 11px 15px 0px 15px;">
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
+ <tr>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_shelf.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_album.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_photo.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ </tr>
+ </table>
+ <img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0" style="float:left; margin : 11px 15px 0px 15px;">
</div>
</div>
</td>
@@ -211,7 +286,7 @@
<td valign="top">
<img src="images/shell/tree_icon_album.png" width="25" height="16" alt="" border="0"><br>
</td>
- <td valign="top" style="padding-left : 4px">
+ <td valign="top" style="padding-left : 4px; background : #f1f1f1; border : 1px solid #FFFFFF">
<strong>Album name'll be here. Maximal lenght is no limits</strong>
</td>
</tr>
Added: management/design/realWorldDemo/html/images/shell/arr_left_dis.png
===================================================================
(Binary files differ)
Property changes on: management/design/realWorldDemo/html/images/shell/arr_left_dis.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: management/design/realWorldDemo/html/images/shell/arr_right_dis.png
===================================================================
(Binary files differ)
Property changes on: management/design/realWorldDemo/html/images/shell/arr_right_dis.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: management/design/realWorldDemo/html/images/shell/avatar_default.png
===================================================================
(Binary files differ)
Property changes on: management/design/realWorldDemo/html/images/shell/avatar_default.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: management/design/realWorldDemo/html/images/shell/button_press.png
===================================================================
(Binary files differ)
Property changes on: management/design/realWorldDemo/html/images/shell/button_press.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: management/design/realWorldDemo/html/images/shell/button_search_press.png
===================================================================
(Binary files differ)
Property changes on: management/design/realWorldDemo/html/images/shell/button_search_press.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: management/design/realWorldDemo/html/images/shell/icon_add_album.png
===================================================================
(Binary files differ)
Modified: management/design/realWorldDemo/html/images/shell/icon_add_photo.png
===================================================================
(Binary files differ)
Modified: management/design/realWorldDemo/html/images/shell/icon_add_shelf.png
===================================================================
(Binary files differ)
Added: management/design/realWorldDemo/html/images/shell/informer_album.png
===================================================================
(Binary files differ)
Property changes on: management/design/realWorldDemo/html/images/shell/informer_album.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: management/design/realWorldDemo/html/images/shell/informer_bg.png
===================================================================
(Binary files differ)
Property changes on: management/design/realWorldDemo/html/images/shell/informer_bg.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: management/design/realWorldDemo/html/images/shell/informer_photo.png
===================================================================
(Binary files differ)
Property changes on: management/design/realWorldDemo/html/images/shell/informer_photo.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: management/design/realWorldDemo/html/images/shell/informer_shelf.png
===================================================================
(Binary files differ)
Property changes on: management/design/realWorldDemo/html/images/shell/informer_shelf.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: management/design/realWorldDemo/html/photo.html
===================================================================
--- management/design/realWorldDemo/html/photo.html 2009-03-06 17:49:49 UTC (rev 12877)
+++ management/design/realWorldDemo/html/photo.html 2009-03-06 18:07:35 UTC (rev 12878)
@@ -139,30 +139,93 @@
</div>
</div>
<div style="height : 37px; position : relative; background : url(images/shell/general_panelbar_bg.gif) repeat-x #A84807; padding-left : 15px; ">
- <table height="37px" cellpadding="0" cellspacing="0" border="0">
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
<tr>
<td valign="middle">
<img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0"><br>
</td>
- <td style="vertical-align : top; padding : 11px 25px 0px 8px">
- <a href="#" style="font-size : 11px; font-weight : bold; color : #ffffff; text-decoration : none;">My Album</a>
+ <td style="vertical-align : top; padding : 7px 5px 0px 14px">
+ <div>
+ <div style="height : 23px; float : left; width : 8px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_photo.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 3px; white-space : nowrap;">
+ <a href="#" style="font-size : 11px; font-weight : bold; color : #ffffff; text-decoration : none;">My Album:</a>
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+
</td>
- <td style="vertical-align : top; padding : 8px 1px 0px 0px">
- <img src="images/shell/icon_add_shelf.png" width="33" height="22" alt="" border="0"><br>
+ </tr>
+ </table>
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
+ <tr>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_shelf.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
</td>
- <td style="vertical-align : top; padding : 8px 1px 0px 0px">
- <img src="images/shell/icon_add_album.png" width="33" height="22" alt="" border="0"><br>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_album.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
</td>
- <td style="vertical-align : top; padding : 8px 1px 0px 0px">
- <img src="images/shell/icon_add_photo.png" width="33" height="22" alt="" border="0"><br>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_photo.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
</td>
</tr>
</table>
+ <img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0" style="float:left; margin : 11px 15px 0px 15px;">
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
+ <tr>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_shelf.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_album.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_photo.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ </tr>
+ </table>
+ <img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0" style="float:left; margin : 11px 15px 0px 15px;">
</div>
</div>
</td>
@@ -222,7 +285,7 @@
<td valign="top">
<img src="images/shell/tree_icon_album.png" width="25" height="16" alt="" border="0"><br>
</td>
- <td valign="top" style="padding-left : 4px">
+ <td valign="top" style="padding-left : 4px; background : #f1f1f1; border : 1px solid #FFFFFF">
<strong>Album name'll be here. Maximal lenght is no limits</strong>
</td>
</tr>
@@ -397,7 +460,7 @@
</tr>
</table>
</div>
- <a href="#"><img src="images/shell/arr_left.png" width="56" height="34" alt="" border="0" style="position : absolute; top:81px; left : -33px"></a>
+ <a href="#"><img src="images/shell/arr_left_dis.png" width="56" height="34" alt="" border="0" style="position : absolute; top:81px; left : -33px"></a>
<a href="#"><img src="images/shell/arr_right.png" width="56" height="34" alt="" border="0" style="position : absolute; top:81px; right : -31px"></a>
</div>
@@ -468,7 +531,7 @@
<table cellpadding="0">
<tr>
<td>
- <a href="#"><img src="images/examples/photo_200.jpg" width="60" height="60" alt="" border="0"></a><br>
+ <a href="#"><img src="images/shell/avatar_default.png" width="80" height="80" alt="" border="0"></a><br>
</td>
</tr>
</table>
@@ -500,7 +563,7 @@
<table cellpadding="0">
<tr>
<td>
- <a href="#"><img src="images/examples/photo_200.jpg" width="60" height="60" alt="" border="0"></a><br>
+ <a href="#"><img src="images/shell/avatar_default.png" width="80" height="80" alt="" border="0"></a><br>
</td>
</tr>
</table>
@@ -532,7 +595,7 @@
<table cellpadding="0">
<tr>
<td>
- <a href="#"><img src="images/examples/photo_200.jpg" width="60" height="60" alt="" border="0"></a><br>
+ <a href="#"><img src="images/shell/avatar_default.png" width="80" height="80" alt="" border="0"></a><br>
</td>
</tr>
</table>
@@ -564,7 +627,7 @@
<table cellpadding="0">
<tr>
<td>
- <a href="#"><img src="images/examples/photo_200.jpg" width="60" height="60" alt="" border="0"></a><br>
+ <a href="#"><img src="images/shell/avatar_default.png" width="80" height="80" alt="" border="0"></a><br>
</td>
</tr>
</table>
@@ -638,6 +701,7 @@
<div style="position : absolute; color : #FFFFFF; font-weight : bold; top : 22px; left : 20px">
Search
</div>
+ <input type="Image" src="images/shell/button_search_press.png" border="0" style="width : 61px; height : 18px; position : absolute; top : 19px; left : 260px; display : none;">
<div style="position : absolute; color : #FFFFFF; font-weight : bold; top : 21px; left : 277px">
Find
</div>
Modified: management/design/realWorldDemo/html/photo_edit.html
===================================================================
--- management/design/realWorldDemo/html/photo_edit.html 2009-03-06 17:49:49 UTC (rev 12877)
+++ management/design/realWorldDemo/html/photo_edit.html 2009-03-06 18:07:35 UTC (rev 12878)
@@ -141,30 +141,93 @@
</div>
</div>
<div style="height : 37px; position : relative; background : url(images/shell/general_panelbar_bg.gif) repeat-x #A84807; padding-left : 15px; ">
- <table height="37px" cellpadding="0" cellspacing="0" border="0">
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
<tr>
<td valign="middle">
<img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0"><br>
</td>
- <td style="vertical-align : top; padding : 11px 25px 0px 8px">
- <a href="#" style="font-size : 11px; font-weight : bold; color : #ffffff; text-decoration : none;">My Album</a>
+ <td style="vertical-align : top; padding : 7px 5px 0px 14px">
+ <div>
+ <div style="height : 23px; float : left; width : 8px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_photo.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 3px; white-space : nowrap;">
+ <a href="#" style="font-size : 11px; font-weight : bold; color : #ffffff; text-decoration : none;">My Album:</a>
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+
</td>
- <td style="vertical-align : top; padding : 8px 1px 0px 0px">
- <img src="images/shell/icon_add_shelf.png" width="33" height="22" alt="" border="0"><br>
+ </tr>
+ </table>
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
+ <tr>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_shelf.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
</td>
- <td style="vertical-align : top; padding : 8px 1px 0px 0px">
- <img src="images/shell/icon_add_album.png" width="33" height="22" alt="" border="0"><br>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_album.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
</td>
- <td style="vertical-align : top; padding : 8px 1px 0px 0px">
- <img src="images/shell/icon_add_photo.png" width="33" height="22" alt="" border="0"><br>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_photo.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
</td>
</tr>
</table>
+ <img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0" style="float:left; margin : 11px 15px 0px 15px;">
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
+ <tr>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_shelf.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_album.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_photo.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ </tr>
+ </table>
+ <img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0" style="float:left; margin : 11px 15px 0px 15px;">
</div>
</div>
</td>
@@ -224,7 +287,7 @@
<td valign="top">
<img src="images/shell/tree_icon_album.png" width="25" height="16" alt="" border="0"><br>
</td>
- <td valign="top" style="padding-left : 4px">
+ <td valign="top" style="padding-left : 4px; background : #f1f1f1; border : 1px solid #FFFFFF">
<strong>Album name'll be here. Maximal lenght is no limits</strong>
</td>
</tr>
@@ -532,7 +595,7 @@
</div>
<input type="Image" src="images/shell/spacer.gif" width="103" height="28" alt="" border="0" style="position : absolute; top : 0px; left : 0px;">
</div>
- <div style="margin : 0px 0px 0px 0px; position : relative; width : 103px; height : 28px;">
+ <div style="margin : 0px 0px 0px 0px; position : relative; width : 103px; height : 28px; float : right"">
<img src="images/shell/button.png" width="103" height="28" alt="" border="0" style="position : absolute; top : 0px; left : 0px;">
<div style="position : absolute; color : #ffffff; top : 7px; left : 11px; font-weight : bold;">
Save
Modified: management/design/realWorldDemo/html/shelf.html
===================================================================
--- management/design/realWorldDemo/html/shelf.html 2009-03-06 17:49:49 UTC (rev 12877)
+++ management/design/realWorldDemo/html/shelf.html 2009-03-06 18:07:35 UTC (rev 12878)
@@ -141,18 +141,93 @@
</div>
</div>
<div style="height : 37px; position : relative; background : url(images/shell/general_panelbar_bg.gif) repeat-x #A84807; padding-left : 15px; ">
- <table height="37px" cellpadding="0" cellspacing="0" border="0">
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
<tr>
<td valign="middle">
<img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0"><br>
</td>
- <td style="vertical-align : top; padding : 11px 25px 0px 8px">
- <a href="#" style="font-size : 11px; font-weight : bold; color : #ffffff; text-decoration : none;">My Album</a>
+ <td style="vertical-align : top; padding : 7px 5px 0px 14px">
+ <div>
+ <div style="height : 23px; float : left; width : 8px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_photo.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 3px; white-space : nowrap;">
+ <a href="#" style="font-size : 11px; font-weight : bold; color : #ffffff; text-decoration : none;">My Album:</a>
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+
</td>
</tr>
</table>
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
+ <tr>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_shelf.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_album.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <div style="cursor : pointer;">
+ <div style="height : 23px; float : left;">
+ <img src="images/shell/informer_photo.png" width="31" height="23" alt="" border="0">
+ </div>
+ <div style="height : 23px; float : left; background : url(images/shell/informer_bg.png) top left no-repeat; color : #FFFFFF; padding : 4px 0px 0px 0px;">
+ 234
+ </div>
+ <div style="height : 23px; float : left; width : 10px; overflow : hidden; position : relative;">
+ <img src="images/shell/informer_bg.png" width="163" height="23" alt="" border="0" style="position : absolute; top : 0px; right : 0px">
+ </div>
+ </div>
+ </td>
+
+ </tr>
+ </table>
+ <img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0" style="float:left; margin : 11px 15px 0px 15px;">
+ <table height="37px" cellpadding="0" cellspacing="0" border="0" style="float:left">
+ <tr>
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_shelf.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_album.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ <td style="vertical-align : top; padding : 7px 2px 0px 0px">
+ <a href="#"><img src="images/shell/icon_add_photo.png" width="37" height="23" alt="" border="0"></a><br>
+ </td>
+
+ </tr>
+ </table>
+ <img src="images/shell/general_panelbar_bullet.gif" width="11" height="15" alt="" border="0" style="float:left; margin : 11px 15px 0px 15px;">
</div>
</div>
</td>
@@ -212,8 +287,8 @@
<td valign="top">
<img src="images/shell/tree_icon_album.png" width="25" height="16" alt="" border="0"><br>
</td>
- <td valign="top" style="padding-left : 4px">
- Album name'll be here. Maximal lenght is no limits
+ <td valign="top" style="padding-left : 4px; background : #f1f1f1; border : 1px solid #FFFFFF">
+ <strong>Album name'll be here. Maximal lenght is no limits</strong>
</td>
</tr>
</table>
@@ -278,7 +353,7 @@
<img src="images/shell/tree_icon_shelf.png" width="25" height="16" alt="" border="0"><br>
</td>
<td valign="top" style="padding-left : 4px">
- <strong>Shelf name'll be here. Maximal lenght is no limits </strong>:: <a href="#"><strong>7</strong> new</a>
+ Shelf name'll be here. Maximal lenght is no limits :: <a href="#"><strong>7</strong> new</a>
</td>
</tr>
</table>
15 years, 10 months
JBoss Rich Faces SVN: r12877 - in trunk/docs: userguide/en/src/main/docbook/included and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: cluts
Date: 2009-03-06 12:49:49 -0500 (Fri, 06 Mar 2009)
New Revision: 12877
Modified:
trunk/docs/faq/en/src/main/docbook/module/RFCfaq.xml
trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml
trunk/docs/userguide/en/src/main/docbook/included/dataList.xml
trunk/docs/userguide/en/src/main/docbook/included/form.xml
trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
trunk/docs/userguide/en/src/main/resources/images/datascroller_init.png
Log:
RF-5118 - all names of components had been checked and some names had been corrected. Also a screen was updated.
Modified: trunk/docs/faq/en/src/main/docbook/module/RFCfaq.xml
===================================================================
--- trunk/docs/faq/en/src/main/docbook/module/RFCfaq.xml 2009-03-06 17:11:54 UTC (rev 12876)
+++ trunk/docs/faq/en/src/main/docbook/module/RFCfaq.xml 2009-03-06 17:49:49 UTC (rev 12877)
@@ -23,24 +23,24 @@
What you see in the richfaces-ui-3.1.0-src.zip is a truly source, i.e. a source for CDK.
To the debug purpose, you need the source code that is generated by CDK before it is compiled into the binary.
-->
- There are two places where you can find binary/source distribution:
- </para>
+ There are two places where you can find binary/source distribution:
+ </para>
<itemizedlist>
- <listitem>
- <para>
- JBoss RichFaces Downloads area which can be found
- <ulink url="http://labs.jboss.com/jbossrichfaces/downloads/">here</ulink>.
+ <listitem>
+ <para>
+ JBoss RichFaces Downloads area which can be found
+ <ulink url="http://labs.jboss.com/jbossrichfaces/downloads/">here</ulink>.
Source distribution you can see in the
<code>richfaces-ui-3.3.0-src.zip</code>. Binary
- stored in <code>richfaces-ui-3.3.0-bin.zip</code>
+ stored in <code>richfaces-ui-3.3.0-bin.zip</code>
</para>
</listitem>
- <listitem>
- <para>
+ <listitem>
+ <para>
If you use Maven, Maven knows the place where all
distributions are stored. Actual links to the
- Maven repository can be found
- <ulink url="http://jboss.com/index.html?module=bb&op=viewtopic&t=104575">here</ulink>
+ Maven repository can be found
+ <ulink url="http://jboss.com/index.html?module=bb&op=viewtopic&t=104575">here</ulink>
</para>
</listitem>
</itemizedlist>
@@ -303,7 +303,7 @@
<section>
<?dbhtml filename="HowtousesuggestionBox.html"?>
- <title>Why when I use suggestionBox inside the modalPanel content the popup
+ <title>Why when I use suggestionbox inside the modalPanel content the popup
suggestion list doesn't show since it is behind the
modalPanel.</title>
<para>To solve this problem you should use the latest versions of RichFaces.</para>
@@ -637,7 +637,7 @@
<para>How to use <emphasis role="bold">
<property><rich:dataTable></property>
</emphasis> and <emphasis role="bold">
- <property><rich:dataScroller></property>
+ <property><rich:datascroller></property>
</emphasis> in a context of Extended Data Model see <ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&t=115636"
>here</ulink>.</para>
@@ -795,7 +795,7 @@
<section>
<?dbhtml filename="Howtosetrich:dataTableborder.html"?>
- <title>How to create <rich:suggestionBox> dynamically?</title>
+ <title>How to create <rich:suggestionbox> dynamically?</title>
<para>This is a working example:</para>
<programlisting role="JAVA"><![CDATA[...
org.apache.myfaces.component.html.ext.HtmlInputText searchBox = new org.apache.myfaces.component.html.ext.HtmlInputText();
Modified: trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2009-03-06 17:11:54 UTC (rev 12876)
+++ trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2009-03-06 17:49:49 UTC (rev 12877)
@@ -96,7 +96,7 @@
<itemizedlist>
<listitem>
<para>
- <ulink url="http://www.jboss.org/community/docs/DOC-11850">How to use "window.confirm" JavaScript with <rich:commandLink> "onclick" attribute</ulink>
+ <ulink url="http://www.jboss.org/community/docs/DOC-11850">How to use "window.confirm" JavaScript with <a4j:commandLink> "onclick" attribute</ulink>
in RichFaces cookbook at JBoss portal.
</para>
</listitem>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataList.xml 2009-03-06 17:11:54 UTC (rev 12876)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataList.xml 2009-03-06 17:49:49 UTC (rev 12877)
@@ -260,7 +260,7 @@
<para>In the example the font style for list item text was changed.</para>
<para>Also it's possible to change styles of particular <emphasis role="bold"
- ><property><rich:dataLIst></property></emphasis> component. In this case you should create own style classes and use them in corresponding <emphasis role="bold"
+ ><property><rich:dataList></property></emphasis> component. In this case you should create own style classes and use them in corresponding <emphasis role="bold"
><property><rich:dataList></property></emphasis> <emphasis><property>styleClass</property></emphasis> attributes. An example is placed below:</para>
<para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/form.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/form.xml 2009-03-06 17:11:54 UTC (rev 12876)
+++ trunk/docs/userguide/en/src/main/docbook/included/form.xml 2009-03-06 17:49:49 UTC (rev 12877)
@@ -95,7 +95,7 @@
...
</t:datascroller>
...
-</a4j:form
+</a4j:form>
]]></programlisting>
<para>This example shows that in order to make <emphasis role="bold">
<property><t:datascroller></property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml 2009-03-06 17:11:54 UTC (rev 12876)
+++ trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml 2009-03-06 17:49:49 UTC (rev 12877)
@@ -85,7 +85,7 @@
<title>Relevant resources links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/htmlCommandLink.jsf?c...">Here</ulink> you can found some additional information for <emphasis role="bold"
- ><property><a4j:htmlCommandLinks></property></emphasis> component usage.
+ ><property><a4j:htmlCommandLink></property></emphasis> component usage.
</para>
<para>
<ulink url="http://java.sun.com/javaee/javaserverfaces/1.1_01/docs/tlddocs/f/param.html">Here</ulink> you can found some additional information about <emphasis role="bold"><property><f:param></property></emphasis> component.
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml 2009-03-06 17:11:54 UTC (rev 12876)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml 2009-03-06 17:49:49 UTC (rev 12877)
@@ -13,7 +13,7 @@
list of possible values, it pop ups them inside the
<emphasis role="bold"><property><div></property></emphasis> element bellow the input.</para>
<figure>
- <title><emphasis role="bold"><property><rich:suggestionBox></property></emphasis> component</title>
+ <title><emphasis role="bold"><property><rich:suggestionbox></property></emphasis> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/suggestionbox_init.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2009-03-06 17:11:54 UTC (rev 12876)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2009-03-06 17:49:49 UTC (rev 12877)
@@ -387,7 +387,7 @@
It depends on <emphasis role="bold"><property><rich:toolTip></property></emphasis> layout what a wrapper element <emphasis role="bold"><property><span></property></emphasis> or <emphasis role="bold"><property><div></property></emphasis>to choose.
</para>
<para>In order to redefine styles for all <emphasis role="bold">
- <property><rich:toolTipl></property>
+ <property><rich:toolTip></property>
</emphasis> components on a page using CSS, it's enough to create classes with the
same names (possible classes could be found in the table <link linkend="tab_cn6">above</link>) and define necessary properties in them. An example is placed below:</para>
@@ -415,7 +415,7 @@
<para>In the example a tool tip background color, border color and font style were changed.</para>
<para>Also it's possible to change styles of particular <emphasis role="bold"
- ><property><rich:toolTipl></property></emphasis> component. In this case you should create own style classes and use them in corresponding <emphasis role="bold"
+ ><property><rich:toolTip></property></emphasis> component. In this case you should create own style classes and use them in corresponding <emphasis role="bold"
><property><rich:toolTip></property></emphasis> <emphasis><property>styleClass</property></emphasis> attributes. An example is placed below:</para>
<para>
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-03-06 17:11:54 UTC (rev 12876)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-03-06 17:49:49 UTC (rev 12877)
@@ -736,8 +736,8 @@
of the current component (along with <emphasis role="bold">
<property><f:param></property>
</emphasis> or <emphasis role="bold">
- <property><a4j:action></property>
- </emphasis> param values if any) to the request map. In case of <emphasis
+ <property><a4j:actionparam></property>
+ </emphasis> values if any) to the request map. In case of <emphasis
role="bold">
<property><a4j:support></property>
</emphasis> , it is a value of the parent component. An example is placed below: </para>
@@ -2072,7 +2072,7 @@
<f:selectItem itemLabel="blueSky Modified" itemValue="blueSkyModify" />
</h:selectOneRadio>
</div>
- <div style="display: block; float: left">
+ <div style="display: block; float: left">
<rich:panelBar height="100" width="200">
<rich:panelBarItem label="Item 1" style="font-family: monospace; font-size: 12;">
Changing skin in runtime
@@ -2081,7 +2081,7 @@
style="font-family: monospace; font-size: 12;">
This is a result of the modification "blueSky" skin
</rich:panelBarItem>
- </rich:panelBar>
+ </rich:panelBar>
</div>
</h:form>]]>
</programlisting>
Modified: trunk/docs/userguide/en/src/main/resources/images/datascroller_init.png
===================================================================
(Binary files differ)
15 years, 10 months
JBoss Rich Faces SVN: r12876 - trunk/test-applications/realworld2/web/src/main/webapp/includes.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2009-03-06 12:11:54 -0500 (Fri, 06 Mar 2009)
New Revision: 12876
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/includes/anonimShelfs.xhtml
Log:
Fix 404 error
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/anonimShelfs.xhtml
===================================================================
(Binary files differ)
15 years, 10 months