diff --git a/google-taglib/CHANGES.txt b/google-taglib/CHANGES.txt
index 916b71f..34e1fab 100644
--- a/google-taglib/CHANGES.txt
+++ b/google-taglib/CHANGES.txt
@@ -1,4 +1,4 @@
-Version 1.0.1 (not yet released)
+Version 1.0.1 (released 20-Oct-2003)
* Added a "type" attribute to the Search tag.
- It can be used to specify the type of documents (e.g.: pdf) to be
searched.
@@ -9,4 +9,7 @@ Version 1.0.1 (not yet released)
Version 1.0 (released 10-Oct-2003)
* This is the first public release.
- * Added support for various HTTP Proxy configuration context parameters.
\ No newline at end of file
+ * Added support for various HTTP Proxy configuration context parameters.
+
+===========================================================================
+$Id$
\ No newline at end of file
diff --git a/google-taglib/GoogleTagLib.iws b/google-taglib/GoogleTagLib.iws
index 508402a..9123839 100644
--- a/google-taglib/GoogleTagLib.iws
+++ b/google-taglib/GoogleTagLib.iws
@@ -29,7 +29,7 @@
-
+
@@ -37,7 +37,7 @@
-
+
@@ -64,7 +64,7 @@
-
+
@@ -95,10 +95,17 @@
-
-
+
+
-
+
+
+
+
+
+
+
+
@@ -193,6 +200,13 @@
+
+
+
+
+
+
+
@@ -202,14 +216,7 @@
-
-
-
-
-
-
-
-
+
diff --git a/google-taglib/build.properties b/google-taglib/build.properties
index 902d8a6..42ebc67 100644
--- a/google-taglib/build.properties
+++ b/google-taglib/build.properties
@@ -1,5 +1,5 @@
# Version
-version=1.0
+version=1.0.1
# Project
project.name=google
diff --git a/google-taglib/htdocs/about.html b/google-taglib/htdocs/about.html
index 06a876b..faaae68 100644
--- a/google-taglib/htdocs/about.html
+++ b/google-taglib/htdocs/about.html
@@ -42,7 +42,7 @@ body,td,font,p,a{font-family:arial,sans-serif}
Find on this site:
-
+
diff --git a/google-taglib/htdocs/docs.html b/google-taglib/htdocs/docs.html
index e048419..30b3cc4 100644
--- a/google-taglib/htdocs/docs.html
+++ b/google-taglib/htdocs/docs.html
@@ -46,7 +46,7 @@ code {font-size:10pt}
Find on this site:
-
+
diff --git a/google-taglib/htdocs/howto.html b/google-taglib/htdocs/howto.html
index 710a0e3..d68ab72 100644
--- a/google-taglib/htdocs/howto.html
+++ b/google-taglib/htdocs/howto.html
@@ -45,7 +45,7 @@ body,td,font,.p,a{font-family:arial,sans-serif}
Find on this site:
-
+
diff --git a/google-taglib/htdocs/index.html b/google-taglib/htdocs/index.html
index 3fadce4..46fb03e 100644
--- a/google-taglib/htdocs/index.html
+++ b/google-taglib/htdocs/index.html
@@ -41,7 +41,7 @@ body,td,font,p,a{font-family:arial,sans-serif}
Find on this site:
-
+
diff --git a/google-taglib/htdocs/license.html b/google-taglib/htdocs/license.html
index ef5ffa1..4fe7ee4 100644
--- a/google-taglib/htdocs/license.html
+++ b/google-taglib/htdocs/license.html
@@ -41,7 +41,7 @@ body,td,font,p,a{font-family:arial,sans-serif}
Find on this site:
-
+
diff --git a/google-taglib/src/net/thauvin/google/GoogleSearchBean.java b/google-taglib/src/net/thauvin/google/GoogleSearchBean.java
index f961ded..9178600 100644
--- a/google-taglib/src/net/thauvin/google/GoogleSearchBean.java
+++ b/google-taglib/src/net/thauvin/google/GoogleSearchBean.java
@@ -97,6 +97,8 @@ public class GoogleSearchBean
/**
* The default filetype.
+ *
+ * @since 1.0.1
*/
public static final String DEFAULT_TYPE = "";
@@ -173,7 +175,8 @@ public class GoogleSearchBean
* Sets the search keywords.
*
* @param keywords The keywords
- * @see #getKeywords()
+ * @see #getKeywords()
+ * @since 1.0.1
*/
public final void setKeywords(String keywords)
{
@@ -184,7 +187,8 @@ public class GoogleSearchBean
* Returns the keywords.
*
* @return The keywords value.
- * @see #setKeywords(String)
+ * @see #setKeywords(String)
+ * @since 1.0.1
*/
public final String getKeywords()
{
@@ -601,10 +605,10 @@ public class GoogleSearchBean
{
return String.valueOf(result.getDocumentFiltering());
}
- else if (property.equalsIgnoreCase("searchKeywords"))
- {
- return getKeywords();
- }
+ else if (property.equalsIgnoreCase("searchKeywords"))
+ {
+ return getKeywords();
+ }
else if (property.equalsIgnoreCase("searchQuery"))
{
return result.getSearchQuery();