Author: chathura
Date: Sun Feb 10 06:58:32 2008
New Revision: 13522

Log:


Fixed the REGISTRY 222.
Added images to the bin distribution of the user guide.
Minor modifications to the user guide.



Modified:
   branches/registry/1_0/modules/distribution/src/main/assembly/bin-assembly.xml
   branches/registry/1_0/modules/documentation/xdocs/userguide.xml
   
branches/registry/1_0/modules/webapps/src/main/java/org/wso2/registry/web/actions/utils/AdvancedResourceQuery.java

Modified: 
branches/registry/1_0/modules/distribution/src/main/assembly/bin-assembly.xml
==============================================================================
--- 
branches/registry/1_0/modules/distribution/src/main/assembly/bin-assembly.xml   
    (original)
+++ 
branches/registry/1_0/modules/distribution/src/main/assembly/bin-assembly.xml   
    Sun Feb 10 06:58:32 2008
@@ -40,6 +40,7 @@
             <outputDirectory>docs</outputDirectory>
             <includes>
                 <include>userguide.html</include>
+                <include>images/*.*</include>
             </includes>
         </fileSet>
         <fileSet>

Modified: branches/registry/1_0/modules/documentation/xdocs/userguide.xml
==============================================================================
--- branches/registry/1_0/modules/documentation/xdocs/userguide.xml     
(original)
+++ branches/registry/1_0/modules/documentation/xdocs/userguide.xml     Sun Feb 
10 06:58:32 2008
@@ -42,7 +42,7 @@
 
 <p></p>
 
-<p>This document applies to version 0.1 of the WSO2 Registry.</p>
+<p>This document applies to version 1.0 of the WSO2 Registry.</p>
 
 <p></p>
 
@@ -58,14 +58,12 @@
 
 <p></p>
 
-<p>This initial release of WSO2 Registry only supports an unpacked (exploded)
-method of WAR deployment. Data you store in the registry will be saved in a
+<p>By default, data you store in the registry will be saved in a
 database embedded in the WAR file and the files themselves will be located
-within the exploded WAR directory. Clearly, this is only used for reference -
-for if you want to add data, then you must configure an external data source
-or a JDBC connection as explained in the section below. If your application
-server does not automatically unpack the WAR file (e.g., JBossAS), then you
-must configure a data source to persist the data.</p>
+within the exploded WAR directory. It is recommended to configure an external 
data source
+or a JDBC connection as explained in the section below using Apache Derby or 
MySQL databases.
+If your application server does not automatically unpack the WAR file (e.g., 
JBossAS), then the
+built in database may not work. In such cases, you must always use a external 
database.</p>
 
 <p></p>
 

Modified: 
branches/registry/1_0/modules/webapps/src/main/java/org/wso2/registry/web/actions/utils/AdvancedResourceQuery.java
==============================================================================
--- 
branches/registry/1_0/modules/webapps/src/main/java/org/wso2/registry/web/actions/utils/AdvancedResourceQuery.java
  (original)
+++ 
branches/registry/1_0/modules/webapps/src/main/java/org/wso2/registry/web/actions/utils/AdvancedResourceQuery.java
  Sun Feb 10 06:58:32 2008
@@ -178,7 +178,7 @@
     public void setTags(String tags) {
         this.tags = tags;
 
-        String[] tagParts = tags.trim().split(" ");
+        String[] tagParts = tags.trim().split(",");
         if (tagParts.length > 0) {
             tag1 = tagParts[0];
         }
@@ -423,7 +423,7 @@
         String fromTags = "";
         String tagsQuery = "";
         if (tag1 != null && tag1.length() > 0) {
-            String[] tag = tags.trim().split(" ");
+            String[] tag = tags.trim().split(",");
             if (tag.length > 0) {
                 fromTags = ", TAGS T";
 

_______________________________________________
Registry-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/registry-dev

Reply via email to