JBoss Rich Faces SVN: r7508 - trunk/docs/highlight.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2008-03-31 19:30:04 -0400 (Mon, 31 Mar 2008)
New Revision: 7508
Modified:
trunk/docs/highlight/pom.xml
Log:
set exact dependencies version for release
Modified: trunk/docs/highlight/pom.xml
===================================================================
--- trunk/docs/highlight/pom.xml 2008-03-31 21:40:28 UTC (rev 7507)
+++ trunk/docs/highlight/pom.xml 2008-03-31 23:30:04 UTC (rev 7508)
@@ -18,7 +18,7 @@
<dependency>
<groupId>org.eclipse.wst.sse</groupId>
<artifactId>core</artifactId>
- <version>(1.1.0,2.0)</version>
+ <version>1.1.202-v200709061102</version>
<exclusions>
<exclusion>
<artifactId>xerces</artifactId>
@@ -65,7 +65,7 @@
<dependency>
<groupId>org.eclipse.wst.css</groupId>
<artifactId>core</artifactId>
- <version>(1.1, 2.0)</version>
+ <version>1.1.101-v200705302225</version>
<exclusions>
<exclusion>
<artifactId>xerces</artifactId>
16 years, 8 months
JBoss Rich Faces SVN: r7507 - trunk/framework/api/src/main/java/org/ajax4jsf/context.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2008-03-31 17:40:28 -0400 (Mon, 31 Mar 2008)
New Revision: 7507
Modified:
trunk/framework/api/src/main/java/org/ajax4jsf/context/AjaxContext.java
Log:
create hook for a old isAjaxRequest method call
Modified: trunk/framework/api/src/main/java/org/ajax4jsf/context/AjaxContext.java
===================================================================
--- trunk/framework/api/src/main/java/org/ajax4jsf/context/AjaxContext.java 2008-03-31 21:39:40 UTC (rev 7506)
+++ trunk/framework/api/src/main/java/org/ajax4jsf/context/AjaxContext.java 2008-03-31 21:40:28 UTC (rev 7507)
@@ -60,6 +60,10 @@
public abstract Set<String> getAjaxAreasToRender();
public abstract Set<String> getAjaxAreasToProcess();
+
+ public boolean isAjaxRequest(FacesContext facesContext) {
+ return isAjaxRequest();
+ }
public abstract boolean isAjaxRequest();
16 years, 8 months
JBoss Rich Faces SVN: r7506 - trunk/ui/core/src/main/java/org/ajax4jsf/taglib/html/facelets.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2008-03-31 17:39:40 -0400 (Mon, 31 Mar 2008)
New Revision: 7506
Modified:
trunk/ui/core/src/main/java/org/ajax4jsf/taglib/html/facelets/AjaxListenerHandler.java
Log:
allow binding without 'type' attribute
Modified: trunk/ui/core/src/main/java/org/ajax4jsf/taglib/html/facelets/AjaxListenerHandler.java
===================================================================
--- trunk/ui/core/src/main/java/org/ajax4jsf/taglib/html/facelets/AjaxListenerHandler.java 2008-03-31 20:24:08 UTC (rev 7505)
+++ trunk/ui/core/src/main/java/org/ajax4jsf/taglib/html/facelets/AjaxListenerHandler.java 2008-03-31 21:39:40 UTC (rev 7506)
@@ -67,8 +67,11 @@
public AjaxListenerHandler(TagConfig config) {
super(config);
this.binding = this.getAttribute("binding");
- this.type = this.getRequiredAttribute("type");
- if (type != null) {
+ this.type = this.getAttribute("type");
+ if(binding == null && type == null){
+ throw new TagException(this.tag, "One of the attribute 'binding' or type' is required");
+ }
+ if (binding == null && type != null) {
if (!type.isLiteral()) {
throw new TagAttributeException(this.tag, this.type, Messages.getMessage(Messages.MUST_BE_LITERAL_ERROR));
}
16 years, 8 months
JBoss Rich Faces SVN: r7505 - trunk/samples/richfaces-demo/src/main/webapp/richfaces/include/examples.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-03-31 16:24:08 -0400 (Mon, 31 Mar 2008)
New Revision: 7505
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/include/examples/wstep1.xhtml
Log:
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/include/examples/wstep1.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/include/examples/wstep1.xhtml 2008-03-31 19:09:03 UTC (rev 7504)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/include/examples/wstep1.xhtml 2008-03-31 20:24:08 UTC (rev 7505)
@@ -20,7 +20,7 @@
<rich:message for="comp"/>
</h:panelGrid>
<div>
- <a4j:commandButton style="float:right" action="next" value="Next »"/>
+ <a4j:commandButton style="float:right" action="next" value="Next >>"/>
</div>
</div>
</ui:composition>
\ No newline at end of file
16 years, 8 months
JBoss Rich Faces SVN: r7504 - trunk/framework/impl/src/main/javascript/ajaxjsf.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2008-03-31 15:09:03 -0400 (Mon, 31 Mar 2008)
New Revision: 7504
Modified:
trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js
Log:
Fix http://jira.jboss.com/jira/browse/RF-2532 & http://jira.jboss.com/jira/browse/RF-2850
Modified: trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js
===================================================================
--- trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js 2008-03-31 18:49:56 UTC (rev 7503)
+++ trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js 2008-03-31 19:09:03 UTC (rev 7504)
@@ -847,11 +847,19 @@
LOG.debug("Namespace for hidden view-state input fields is "+namespace);
var anchor = namespace?window.document.getElementById(namespace):window.document;
var inputs = anchor.getElementsByTagName("input");
- var newinputs = req.getElementsByTagName("input",idsSpan);
- A4J.AJAX.replaceViewState(inputs,newinputs);
+ try {
+ var newinputs = req.getElementsByTagName("input",idsSpan);
+ A4J.AJAX.replaceViewState(inputs,newinputs);
+ } catch(e){
+ LOG.warn("No elements 'input' in response");
+ }
// For any cases, new state can be in uppercase element
- newinputs = req.getElementsByTagName("INPUT",idsSpan);
- A4J.AJAX.replaceViewState(inputs,newinputs);
+ try {
+ var newinputs = req.getElementsByTagName("INPUT",idsSpan);
+ A4J.AJAX.replaceViewState(inputs,newinputs);
+ } catch(e){
+ LOG.warn("No elements 'INPUT' in response");
+ }
}
// Process listeners.
16 years, 8 months
JBoss Rich Faces SVN: r7503 - trunk/docs/userguide/en/src/main/resources/images.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2008-03-31 14:49:56 -0400 (Mon, 31 Mar 2008)
New Revision: 7503
Removed:
trunk/docs/userguide/en/src/main/resources/images/comboBoxClass.png
trunk/docs/userguide/en/src/main/resources/images/comboBoxStyle.png
Log:
deleted unusable images
Deleted: trunk/docs/userguide/en/src/main/resources/images/comboBoxClass.png
===================================================================
(Binary files differ)
Deleted: trunk/docs/userguide/en/src/main/resources/images/comboBoxStyle.png
===================================================================
(Binary files differ)
16 years, 8 months
JBoss Rich Faces SVN: r7502 - trunk/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2008-03-31 14:48:49 -0400 (Mon, 31 Mar 2008)
New Revision: 7502
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
Log:
fixing errors in xml-code
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-03-31 18:48:29 UTC (rev 7501)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-03-31 18:48:49 UTC (rev 7502)
@@ -1591,7 +1591,7 @@
<listitem>
<para>
<property>
- <emphasis><property>Advanced</property></emphasis></property>extends basic level introducing broader
+ <emphasis><property>Advanced</property></emphasis></property> extends basic level introducing broader
number of style properties and is applied to browsers with rich visual styling capability of controls
</para>
<para>
16 years, 8 months
JBoss Rich Faces SVN: r7501 - trunk/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2008-03-31 14:48:29 -0400 (Mon, 31 Mar 2008)
New Revision: 7501
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/AUGWADParams.xml
Log:
http://jira.jboss.com/jira/browse/RF-2134 - Info about org.ajax4jsf.RESOURCE_URI_PREFIX into "Web Application Descriptor Parameters" added
Modified: trunk/docs/userguide/en/src/main/docbook/modules/AUGWADParams.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/AUGWADParams.xml 2008-03-31 18:44:59 UTC (rev 7500)
+++ trunk/docs/userguide/en/src/main/docbook/modules/AUGWADParams.xml 2008-03-31 18:48:29 UTC (rev 7501)
@@ -130,7 +130,14 @@
<entry>It doesn't allow framework to reformat JavaScript files (makes it
impossible to debug) </entry>
</row>
-
+ <row>
+ <entry>org.ajax4jsf.RESOURCE_URI_PREFIX</entry>
+ <entry>none</entry>
+ <entry>
+ This variable just defines prefix which is added to URIs of generated resources.
+ This prefix designed to handle Rich Faces generated resources requests.
+ </entry>
+ </row>
</tbody>
</tgroup>
</table>
16 years, 8 months
JBoss Rich Faces SVN: r7500 - trunk/docs/userguide/en/src/main/resources/images.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2008-03-31 14:44:59 -0400 (Mon, 31 Mar 2008)
New Revision: 7500
Added:
trunk/docs/userguide/en/src/main/resources/images/comboboxClass.png
trunk/docs/userguide/en/src/main/resources/images/comboboxStyle.png
Log:
http://jira.jboss.com/jira/browse/RF-1116 - images added
Added: trunk/docs/userguide/en/src/main/resources/images/comboboxClass.png
===================================================================
--- trunk/docs/userguide/en/src/main/resources/images/comboboxClass.png (rev 0)
+++ trunk/docs/userguide/en/src/main/resources/images/comboboxClass.png 2008-03-31 18:44:59 UTC (rev 7500)
@@ -0,0 +1,14 @@
+�PNG
+
+
+IHDR
+tEXtCopyright
+Q�F'c��ZEv6.at��px�ơ��Fv;1َ{���v��oH����� �c�^
+���ih�^��@�N3�b�]?����ei�Z�]��|vu~�U��9�(M^�^�]f>����
+)���J�5�
+ȲLV�́H����W���#�˻�-���N:�e �txxx�N:H)�����!��/���ze���˓�b��������Ʊ)�������
+� �wT쩵��W:Ʈ3��Q���߰+D
+�$t�:I�����v���#�ۗ
+v;Sж]�7�og�ՙY��:4=ݘ�O�;*����������g�%n����:]����dbng�~�p�7;#�8�30$��3��q�Ki�/�b��74���R�2 jO�>
+�K���9ٙ�Cg�:��6v��ǼH
+�$t�:I���NR@')P�@��jlō��j��e�� ,U�ЭH+KX�[
\ No newline at end of file
Added: trunk/docs/userguide/en/src/main/resources/images/comboboxStyle.png
===================================================================
--- trunk/docs/userguide/en/src/main/resources/images/comboboxStyle.png (rev 0)
+++ trunk/docs/userguide/en/src/main/resources/images/comboboxStyle.png 2008-03-31 18:44:59 UTC (rev 7500)
@@ -0,0 +1,20 @@
+�PNG
+
+
+IHDR
+tEXtCopyright
+bVI&��U]�\Z��V�.(v�MM�V�-x%�NV������V�*q�]��?t��c���V���k8�kf�9w��뜹;�h.��"���
+��V](�E��^KQ !8Ѯ?��E*Su]kI��^���
+�t���w��N�{w���6)��s�rg@Q7�����N
+BQKC�u�a�V�(���BEA(jiPb�n-0R%E�����8�R�q��j�\vI�<�iB|>���[[�$�lN�j�E��|�\Q��4�!���~Ut]��|�`�4M�Q���w�Z��i��8(�$X����`۶��(�$ܾ}�4M��XԾS�M������;�c#�[�g<�=�J,˺s�mۖe D-ޜ?�8�����[�k��q7
+
+M�4M�,�R����k����[>W�ȋ�72Ã��68r����hߩN
+���@p�ζ�T��<��W�|�x
+�ѵ�0�z�
+�x<�ڳ��B7J)��ԦE �+W
+�����6��KOh��H$��E
+��륾B3DH-+�L�
+�V2��x�tuJ�a
+
+
+�h����e��P��q�����o����;��A*��p `�JB8�B��BPTIPU5EQPTIضm��(~�_U�Ž ��`[UU���EQU��ݯeY����Ū��k�f�F_6�%��`0�(J]]����Ë�:�c۶a��h�f�6�����?w���B�J�~��(�pXQ�P(D�Z�e9��-+�
\ No newline at end of file
16 years, 8 months
JBoss Rich Faces SVN: r7499 - trunk/ui/core/src/main/config/taglib.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-03-31 14:44:51 -0400 (Mon, 31 Mar 2008)
New Revision: 7499
Modified:
trunk/ui/core/src/main/config/taglib/ajax.tld.include
Log:
http://jira.jboss.com/jira/browse/RF-2891
Modified: trunk/ui/core/src/main/config/taglib/ajax.tld.include
===================================================================
--- trunk/ui/core/src/main/config/taglib/ajax.tld.include 2008-03-31 18:43:26 UTC (rev 7498)
+++ trunk/ui/core/src/main/config/taglib/ajax.tld.include 2008-03-31 18:44:51 UTC (rev 7499)
@@ -37,9 +37,6 @@
<description> name of bean for EL-expressions.</description>
<name>beanName</name>
<required>true</required>
- <deferred-value>
- <type>java.lang.String</type>
- </deferred-value>
</attribute>
<attribute>
16 years, 8 months