You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2009/03/21 20:37:03 UTC

svn commit: r756998 - /incubator/click/trunk/click/documentation/xdocs/src/docbook/click/chapter-best-practices.xml

Author: sabob
Date: Sat Mar 21 19:37:02 2009
New Revision: 756998

URL: http://svn.apache.org/viewvc?rev=756998&view=rev
Log:
docs update

Modified:
    incubator/click/trunk/click/documentation/xdocs/src/docbook/click/chapter-best-practices.xml

Modified: incubator/click/trunk/click/documentation/xdocs/src/docbook/click/chapter-best-practices.xml
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/documentation/xdocs/src/docbook/click/chapter-best-practices.xml?rev=756998&r1=756997&r2=756998&view=diff
==============================================================================
--- incubator/click/trunk/click/documentation/xdocs/src/docbook/click/chapter-best-practices.xml (original)
+++ incubator/click/trunk/click/documentation/xdocs/src/docbook/click/chapter-best-practices.xml Sat Mar 21 19:37:02 2009
@@ -822,25 +822,27 @@
     which caters for some of these rules. However not all rules can be easily automated.
     </para>
 
-    <para>This section will outline ways to apply rules which are not covered by the
-    PerformanceFilter namely,
-    <ulink url="http://developer.yahoo.com/performance/rules.html#num_http">#1 - Minimize HTTP Requests (by combining files)</ulink>
-    and <ulink url="http://developer.yahoo.com/performance/rules.html#minify">#10 - Minify Javascript and CSS</ulink>.
+    <para>This section outlines how to apply some important rules which are not
+    covered by the PerformanceFilter namely,
+    <ulink url="http://developer.yahoo.com/performance/rules.html#num_http">Minimize HTTP Requests (by combining files)</ulink>
+    and <ulink url="http://developer.yahoo.com/performance/rules.html#minify">Minify JavaScript and CSS</ulink>.
     </para>
 
-    <para>Rule #1 also mentions
-    <ulink url="http://alistapart.com/articles/sprites">CSS Sprites</ulink>,
+    <para>The Rule, <ulink url="http://developer.yahoo.com/performance/rules.html#num_http">Minimize HTTP Requests</ulink>,
+    also mentions <ulink url="http://alistapart.com/articles/sprites">CSS Sprites</ulink>,
     a method for combining multiple images into a single master image. CSS Sprites
-    are not covered here.
+    can boost performance when your application has many images, however it is
+    harder to create and maintain. Note that CSS Sprites is not covered here.
     </para>
 
-    <para>It is worth pointing out that its not necessary to blindly optimize
+    <para>It is worth pointing out that its not necessary to optimize
     every page in your application. Instead concentrate on popular pages, for
     example a web site's <emphasis>Home Page</emphasis> would be a good
     candidate.
     </para>
 
-    <para>There are a couple of tools that are useful in applying Rule #1 and #10:
+    <para>There are a couple of tools that are useful in applying the rules
+    "Minimize HTTP Requests" and "Minify JavaScript and CSS":
     </para>
 
     <itemizedlist>