Author: smukhina
Date: 2007-07-05 04:35:27 -0400 (Thu, 05 Jul 2007)
New Revision: 300
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/AUGWADParams.xml
trunk/docs/userguide/en/src/main/docbook/modules/a4jUGfaq.xml
trunk/docs/userguide/en/src/main/docbook/modules/a4jUGintro.xml
trunk/docs/userguide/en/src/main/docbook/modules/a4jUGstart.xml
Log:
http://jira.jboss.org/jira/browse/EXIN-373
italic font style is added
Modified: trunk/docs/userguide/en/src/main/docbook/modules/AUGWADParams.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/AUGWADParams.xml 2007-07-05 08:31:09
UTC (rev 299)
+++ trunk/docs/userguide/en/src/main/docbook/modules/AUGWADParams.xml 2007-07-05 08:35:27
UTC (rev 300)
@@ -30,14 +30,14 @@
<entry>org.ajax4jsf.LOGFILE</entry>
<entry>none</entry>
<entry>
- The is an URL to an application or a container log file (if
possible). If this parameter is set, a content from the given URL will be shown on a
<emphasis
role="italic"><property>Debug</property></emphasis> error
page in the <emphasis
role="italic"><property>iframe</property></emphasis> window
+ The is an URL to an application or a container log file (if
possible). If this parameter is set, a content from the given URL will be shown on a
<emphasis ><property>Debug</property></emphasis> error page in the
<emphasis ><property>iframe</property></emphasis> window
</entry>
</row>
<row>
<entry>org.ajax4jsf.VIEW_HANDLERS</entry>
<entry>none</entry>
<entry>
- Is a comma-separated list of custom <emphasis
role="italic"><property>"ViewHandler"</property></emphasis>
instances
+ Is a comma-separated list of custom <emphasis
><property>"ViewHandler"</property></emphasis> instances
for inserting in chain. Handlers are inserted in the given
order. So must be used if the order of them is important.
No need to define ajax4jsf handler there, as it will be
always the first.
</entry>
@@ -46,14 +46,14 @@
<entry> org.ajax4jsf.CONTROL_COMPONENTS</entry>
<entry>none</entry>
<entry>
- Is a comma-separated list of names for a component as a
special control case, such as messages bundle loader, alias bean components, etc. Is a
type of component got by a reflection from the static field <emphasis
role="italic"><property>COMPONENT_TYPE</property></emphasis>.
For components with such types encode methods always are called in rendering AJAX
responses, even if a component isn't in an updated part
+ Is a comma-separated list of names for a component as a
special control case, such as messages bundle loader, alias bean components, etc. Is a
type of component got by a reflection from the static field <emphasis
><property>COMPONENT_TYPE</property></emphasis>. For components with
such types encode methods always are called in rendering AJAX responses, even if a
component isn't in an updated part
</entry>
</row>
<row>
<entry>org.ajax4jsf.ENCRYPT_RESOURCE_DATA</entry>
<entry>false</entry>
<entry>
- For generated resources, such as encrypt generation data,
it's encoded in the resource URL. For example, URL for an image generated from
the <emphasis
role="italic"><property>mediaOutput</property></emphasis>
component contains a name of a generation method, since for a hacker attack, it is
possible to create a request for any JSF baked beans or other attributes. To prevent such
attacks, set this parameter to true in critical applications (works with JRE > 1.4)
+ For generated resources, such as encrypt generation data,
it's encoded in the resource URL. For example, URL for an image generated from
the <emphasis ><property>mediaOutput</property></emphasis>
component contains a name of a generation method, since for a hacker attack, it is
possible to create a request for any JSF baked beans or other attributes. To prevent such
attacks, set this parameter to true in critical applications (works with JRE > 1.4)
</entry>
</row>
<row>
@@ -66,7 +66,7 @@
<row>
<entry>org.ajax4jsf.SKIN</entry>
<entry>DEFAULT</entry>
- <entry>Is a name of a skin used in an application. It can
be a literal string with a skin name, or the <emphasis
role="italic"><property>EL</property></emphasis> expression
(#{...}) pointed to a <emphasis
role="italic"><property>String</property></emphasis>
property (skin name) or a property with the type org.ajax4jsf.framework.skin. Skin in last
case, this instance will be used as a current skin
+ <entry>Is a name of a skin used in an application. It can
be a literal string with a skin name, or the <emphasis
><property>EL</property></emphasis> expression (#{...}) pointed to a
<emphasis ><property>String</property></emphasis> property (skin
name) or a property with the type org.ajax4jsf.framework.skin. Skin in last case, this
instance will be used as a current skin
</entry>
</row>
<row>
@@ -107,7 +107,7 @@
<entry>forceparser</entry>
<entry>true</entry>
<entry>
- Forces parsing by a filter <emphasis
role="italic"><property>HTML</property></emphasis> syntax
checker on any JSF page. If false, only AJAX responses are parsed to syntax check and
conversion to well-formed XML. Setting to false improve performance, but can provide
visual effects on AJAX updates
+ Forces parsing by a filter <emphasis
><property>HTML</property></emphasis> syntax checker on any JSF page.
If false, only AJAX responses are parsed to syntax check and conversion to well-formed
XML. Setting to false improve performance, but can provide visual effects on AJAX updates
</entry>
</row>
</tbody>
Modified: trunk/docs/userguide/en/src/main/docbook/modules/a4jUGfaq.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/a4jUGfaq.xml 2007-07-05 08:31:09 UTC
(rev 299)
+++ trunk/docs/userguide/en/src/main/docbook/modules/a4jUGfaq.xml 2007-07-05 08:35:27 UTC
(rev 300)
@@ -28,7 +28,7 @@
<title>How to check sending request conditions? Custom JavaScript before
request
"OnSubmit" attribute.</title>
- <para> To check on the client some terms of request sending, the
<emphasis role="italic">
+ <para> To check on the client some terms of request sending, the
<emphasis >
<property>"onSubmit</property>
</emphasis>" attribute is added to all components, which may
cause the request. </para>
<para>
@@ -37,17 +37,17 @@
<programlisting role="XML"><![CDATA[<h:inputText
id="i" value="#{beanText.kennung}">
<a4j:support event="onfocus" onsubmit="doSomething();"
reRender="panelToReRender"/>
</h:inputText>]]></programlisting>
- <para> So in this case "<emphasis role="italic"
+ <para> So in this case "<emphasis
<property>doSomething()</property>"</emphasis>
function is executed before
the AJAX request. </para>
<para> Besides, if this function returns "false", AJAX
request
isn't fired. </para>
<note>
<title>Note:</title>
- <para>Behavior of our <emphasis role="italic">
+ <para>Behavior of our <emphasis >
<property>"onsubmit"</property>
</emphasis>slightly differs from the standard one. Do not return
<emphasis
- role="italic">
+ >
<property>"true"</property>
</emphasis> if you want to fire the request - because <emphasis
role="bold">
<property><xxx><a4j:support
@@ -56,7 +56,7 @@
</emphasis> is transformed into <xxx
onclick="return true;
A4J.Submit(.... );" > and the request isn't
fired also in
this case (but the standard event processing fired). You must only return
<emphasis
- role="italic">
+ >
<property>"false"</property>
</emphasis> if your conditions weren't completed or
perform some actions
(if needed) without any returns in case you need to fire it.
</para>
@@ -70,15 +70,15 @@
(..oncomplete :anotherFunction(this)..), it places (oncomplete:
function(){anotherFunction(this);}..) in anonymous function, to allow put
"chain" of statements in attribute. </para>
- <para> Since, <emphasis role="italic">
+ <para> Since, <emphasis >
<property>"this"</property>
</emphasis> keyword will point to a parameters map instead of a control
element as it
- was before. You may use <emphasis role="italic">
+ was before. You may use <emphasis >
<property>document.findElementById()</property>
</emphasis>to get references to this object after a request is
processed as when a page
is updated in AJAX you will have reference to a control, removed from a DOM
tree. </para>
<para> Or, if you are sure that your element is not updated, you can add
<emphasis
- role="italic">
+ >
<property>"onsubmit"</property>
</emphasis> in <emphasis role="bold">
<property><a4j:support></property>
@@ -103,13 +103,13 @@
<section id="InvokeOnComponentUsingWithJSF1.2">
<?dbhtml filename="InvokeOnComponentUsingWithJSF1.2.html"?>
<title>Is it possible to use InvokeOnComponent with JSF 1.2?</title>
- <para> Ajax4jsf currently does not use <emphasis
role="italic">invokeOnComponent</emphasis>
+ <para> Ajax4jsf currently does not use <emphasis
>invokeOnComponent</emphasis>
because of the 2 reasons: </para>
<itemizedlist>
<listitem> Compatibility with JSF 1.1 and MyFaces applications is kept,
due to a big
amount of code used in corporate applications. </listitem>
<listitem>
- <emphasis role="italic">
InvokeOnComponent</emphasis> works with already known
+ <emphasis > InvokeOnComponent</emphasis> works with already
known
clientId, and works fine for communication between widget and backed
component, or
updates content of already rendered component. But there are some
troubles to use
this method for more complex use-cases implemented in Ajax4jsf, as there
is a choice
@@ -216,14 +216,14 @@
<?dbhtml filename="IgnoreDupResponsesAndRequestDelay.html"?>
<title>How to use IgnoreDupResponses and requestDelay?</title>
- <para>The <emphasis role="italic">
+ <para>The <emphasis >
<property>"IgnoreDupResponses"</property>
</emphasis> attribute appeared from 1.0.4 RC1 version and is used on
the client for
response ignoring after an AJAX request if a newer request has been already
sent. <para>
The additional information could be found <ulink
url="http://jboss.com/index.html?module=bb&op=viewtopic&...
here</ulink>. </para>
- <emphasis
role="italic">
+ <emphasis >
<property>"RequestDelay"</property>
</emphasis> attribute also defines the client behavior. It sets the
time delay, after
which another request could be sent, all other requests are taken away from a
queue
@@ -245,7 +245,7 @@
<section id="EventQueueUsage">
<?dbhtml filename="EventQueueUsage.html"?>
<title>How to use "EventQueue" attribute?</title>
- <para>The <emphasis role="italic">
+ <para>The <emphasis >
<property>"EventQueue"</property>
</emphasis> attribute defines the query name where the requests are
saved before their
sending to the server. The queue is created for redundant requests deleting
during
Modified: trunk/docs/userguide/en/src/main/docbook/modules/a4jUGintro.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/a4jUGintro.xml 2007-07-05 08:31:09
UTC (rev 299)
+++ trunk/docs/userguide/en/src/main/docbook/modules/a4jUGintro.xml 2007-07-05 08:35:27
UTC (rev 300)
@@ -52,7 +52,7 @@
<title>Easily generate images on-the-fly</title>
<para>Resource framework can generate images on-the-fly so that it becomes
possible to
create images using the familiar approach of the
- <emphasis role="italic"><property>"Java
Graphics2D"</property></emphasis> library.</para>
+ <emphasis ><property>"Java
Graphics2D"</property></emphasis> library.</para>
</formalpara>
<formalpara>
<title>Create a modern rich user interface look-and-feel with skins-based
technology</title>
Modified: trunk/docs/userguide/en/src/main/docbook/modules/a4jUGstart.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/a4jUGstart.xml 2007-07-05 08:31:09
UTC (rev 299)
+++ trunk/docs/userguide/en/src/main/docbook/modules/a4jUGstart.xml 2007-07-05 08:35:27
UTC (rev 300)
@@ -35,14 +35,14 @@
<itemizedlist>
<listitem>
- Unzip <emphasis role="italic">
+ Unzip <emphasis >
<property>"ajax4jsf.zip"</property>
</emphasis> file to the chosen folder.
</listitem>
<listitem>
- Copy <emphasis
role="italic"><property>"ajax4jsf.jar"</property></emphasis>
and <emphasis
role="italic"><property>"oscache-2.3.2.jar"</property></emphasis>
files into the <emphasis role="italic">
+ Copy <emphasis
><property>"ajax4jsf.jar"</property></emphasis> and
<emphasis
><property>"oscache-2.3.2.jar"</property></emphasis>
files into the <emphasis >
<property>"WEB-INF/lib"</property>
</emphasis> folder of your application.
@@ -53,7 +53,7 @@
</para>
</note>
<listitem>
- Add the following content into the <emphasis role="italic">
+ Add the following content into the <emphasis >
<property>"WEB-INF/web.xml"</property>
</emphasis> file of your application:
@@ -71,7 +71,7 @@
</filter-mapping>]]></programlisting>
<note>
<title>Note:</title>
- <para>You can copy and paste the above text from the <emphasis
role="italic">
+ <para>You can copy and paste the above text from the <emphasis >
<property>"README.txt"</property>
</emphasis> file.</para>
</note>
@@ -135,15 +135,15 @@
text field pointed to our managed bean property contains up-to-date value of our
input.
</para>
<para>
- The value of <emphasis
role="italic"><property>"reRender"</property></emphasis>
attribute of the <emphasis role="bold">
+ The value of <emphasis
><property>"reRender"</property></emphasis>
attribute of the <emphasis role="bold">
<property><a4j:support></property>
</emphasis> tag defines which part(s) of our
page is (are) to be updated. In this case, the only part of the page to
update is the <emphasis role="bold">
<property><h:outputText></property>
- </emphasis> tag because its ID value matches to the value of <emphasis
role="italic"><property>"reRender"</property></emphasis>
+ </emphasis> tag because its ID value matches to the value of <emphasis
><property>"reRender"</property></emphasis>
attribute. As you see, it's not difficult to update multiple elements
on the page, only list their IDs
- as the value of <emphasis
role="italic"><property>"reRender"</property></emphasis>.
+ as the value of <emphasis
><property>"reRender"</property></emphasis>.
</para>
</section>
<section id="DataBean">