You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2005/02/26 14:02:33 UTC

svn commit: r155416 [3/4] - in jakarta/commons/proper/feedparser/trunk: ./ src/java/org/apache/commons/feedparser/ src/java/org/apache/commons/feedparser/example/ src/java/org/apache/commons/feedparser/impl/ src/java/org/apache/commons/feedparser/locate/ src/java/org/apache/commons/feedparser/locate/blogservice/ src/java/org/apache/commons/feedparser/network/ src/java/org/apache/commons/feedparser/output/ src/java/org/apache/commons/feedparser/post/ src/java/org/apache/commons/feedparser/sax/ src/java/org/apache/commons/feedparser/test/ src/java/org/apache/commons/feedparser/tools/ tests/anchor/ tests/directory/ tests/feeds/ tests/filter/ tests/locale/ tests/locate/ xdocs/

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Typepad.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Typepad.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Typepad.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Typepad.java Sat Feb 26 05:00:10 2005
@@ -1,82 +1,82 @@
-/*
- * Copyright 1999,2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.commons.feedparser.locate.blogservice;
-
-import org.apache.commons.feedparser.FeedParserException;
-import org.apache.commons.feedparser.locate.*;
-
-/**
- * Models the TypePad blog service, encapsulating whether a given weblog
- * is this type of service and where it usually keeps its feeds.
- * 
- * @author Brad Neuberg, bkn3@columbia.edu
- */
-public class Typepad extends BlogService {
-    
-    /** Returns whether we can trust the results of this blog service's 
-     *  autodiscovery links.  For example, TextAmerica returns invalid 
-     *  autodiscovery results.
-     */
-    public boolean hasValidAutoDiscovery() {
-        return true;
-    }
-    
-    /** Determines if the weblog at the given resource and with the given
-     *  content is this blog service.
-     * @param resource A full URI to this resource, such as 
-     * "http://www.codinginparadise.org".
-     * @param content The full HTML content at the resource's URL.
-     * @throws FeedParserException Thrown if an error occurs while 
-     * determining the type of this weblog.
-     */
-    public boolean isThisService(String resource, String content)
-                                                throws FeedParserException {
-        boolean results = false;
-        
-        results = containsDomain(resource, "typepad.com");
-        
-        if (results == false) {
-            results = hasGenerator(content, "typepad");
-        }
-        
-        return results;
-    }
-
-    /**
-     * Returns an array of FeedReferences that contains information on the
-     * usual locations this blog service contains its feed.  The feeds should
-     * be ordered by quality, so that higher quality feeds come before lower
-     * quality ones (i.e. you would want to have an Atom FeedReference
-     * object come before an RSS 0.91 FeedReference object in this list).
-     * @param resource A URL to the given weblog that might be used to build
-     * up where feeds are usually located.
-     * @param content The full content of the resource URL, which might
-     * be useful to determine where feeds are usually located.  This can be
-     * null.
-     * @throws FeedParserException Thrown if an error occurs while trying
-     * to determine the usual locations of feeds for this service.
-     */
-    public FeedReference[] getFeedLocations(String resource,
-                                            String content)
-                                                throws FeedParserException {
-        FeedReference typepadLocations[] =
-            { new FeedReference("atom.xml", FeedReference.ATOM_MEDIA_TYPE),
-              new FeedReference("index.rdf", FeedReference.RSS_MEDIA_TYPE) };
-        
-        return typepadLocations;
-    }
-}
+/*
+ * Copyright 1999,2004 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.commons.feedparser.locate.blogservice;
+
+import org.apache.commons.feedparser.FeedParserException;
+import org.apache.commons.feedparser.locate.*;
+
+/**
+ * Models the TypePad blog service, encapsulating whether a given weblog
+ * is this type of service and where it usually keeps its feeds.
+ * 
+ * @author Brad Neuberg, bkn3@columbia.edu
+ */
+public class Typepad extends BlogService {
+    
+    /** Returns whether we can trust the results of this blog service's 
+     *  autodiscovery links.  For example, TextAmerica returns invalid 
+     *  autodiscovery results.
+     */
+    public boolean hasValidAutoDiscovery() {
+        return true;
+    }
+    
+    /** Determines if the weblog at the given resource and with the given
+     *  content is this blog service.
+     * @param resource A full URI to this resource, such as 
+     * "http://www.codinginparadise.org".
+     * @param content The full HTML content at the resource's URL.
+     * @throws FeedParserException Thrown if an error occurs while 
+     * determining the type of this weblog.
+     */
+    public boolean isThisService(String resource, String content)
+                                                throws FeedParserException {
+        boolean results = false;
+        
+        results = containsDomain(resource, "typepad.com");
+        
+        if (results == false) {
+            results = hasGenerator(content, "typepad");
+        }
+        
+        return results;
+    }
+
+    /**
+     * Returns an array of FeedReferences that contains information on the
+     * usual locations this blog service contains its feed.  The feeds should
+     * be ordered by quality, so that higher quality feeds come before lower
+     * quality ones (i.e. you would want to have an Atom FeedReference
+     * object come before an RSS 0.91 FeedReference object in this list).
+     * @param resource A URL to the given weblog that might be used to build
+     * up where feeds are usually located.
+     * @param content The full content of the resource URL, which might
+     * be useful to determine where feeds are usually located.  This can be
+     * null.
+     * @throws FeedParserException Thrown if an error occurs while trying
+     * to determine the usual locations of feeds for this service.
+     */
+    public FeedReference[] getFeedLocations(String resource,
+                                            String content)
+                                                throws FeedParserException {
+        FeedReference typepadLocations[] =
+            { new FeedReference("atom.xml", FeedReference.ATOM_MEDIA_TYPE),
+              new FeedReference("index.rdf", FeedReference.RSS_MEDIA_TYPE) };
+        
+        return typepadLocations;
+    }
+}

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Typepad.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Unknown.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Unknown.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Unknown.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Unknown.java Sat Feb 26 05:00:10 2005
@@ -1,78 +1,78 @@
-/*
- * Copyright 1999,2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.commons.feedparser.locate.blogservice;
-
-import org.apache.commons.feedparser.FeedParserException;
-import org.apache.commons.feedparser.locate.*;
-
-/**
- * Models an unknown blog service, encapsulating whether a given weblog
- * is this type of service and where it usually keeps its feeds.
- * 
- * @author Brad Neuberg, bkn3@columbia.edu
- */
-public class Unknown extends BlogService {
-    
-    /** Returns whether we can trust the results of this blog service's 
-     *  autodiscovery links.  For example, TextAmerica returns invalid 
-     *  autodiscovery results.
-     */
-    public boolean hasValidAutoDiscovery() {
-        return true;
-    }
-    
-    /** Determines if the weblog at the given resource and with the given
-     *  content is this blog service.
-     * @param resource A full URI to this resource, such as 
-     * "http://www.codinginparadise.org".
-     * @param content The full HTML content at the resource's URL.
-     * @throws FeedParserException Thrown if an error occurs while 
-     * determining the type of this weblog.
-     */
-    public boolean isThisService(String resource, String content)
-                                                throws FeedParserException {
-        return false;
-    }
-
-    /**
-     * Returns an array of FeedReferences that contains information on the
-     * usual locations this blog service contains its feed.  The feeds should
-     * be ordered by quality, so that higher quality feeds come before lower
-     * quality ones (i.e. you would want to have an Atom FeedReference
-     * object come before an RSS 0.91 FeedReference object in this list).
-     * @param resource A URL to the given weblog that might be used to build
-     * up where feeds are usually located.
-     * @param content The full content of the resource URL, which might
-     * be useful to determine where feeds are usually located.  This can be
-     * null.
-     * @throws FeedParserException Thrown if an error occurs while trying
-     * to determine the usual locations of feeds for this service.
-     */
-    public FeedReference[] getFeedLocations(String resource,
-                                            String content)
-                                                throws FeedParserException {
-        FeedReference unknownLocations[] =
-            { new FeedReference("atom.xml",FeedReference.ATOM_MEDIA_TYPE),
-              new FeedReference("index.rss", FeedReference.RSS_MEDIA_TYPE),
-              new FeedReference("rss.xml", FeedReference.RSS_MEDIA_TYPE),
-              new FeedReference("index.rdf", FeedReference.RSS_MEDIA_TYPE), 
-              new FeedReference("index.xml", FeedReference.RSS_MEDIA_TYPE),
-              new FeedReference("xml/rss.xml", FeedReference.RSS_MEDIA_TYPE) };
-        
-        return unknownLocations;
-    }
-}
+/*
+ * Copyright 1999,2004 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.commons.feedparser.locate.blogservice;
+
+import org.apache.commons.feedparser.FeedParserException;
+import org.apache.commons.feedparser.locate.*;
+
+/**
+ * Models an unknown blog service, encapsulating whether a given weblog
+ * is this type of service and where it usually keeps its feeds.
+ * 
+ * @author Brad Neuberg, bkn3@columbia.edu
+ */
+public class Unknown extends BlogService {
+    
+    /** Returns whether we can trust the results of this blog service's 
+     *  autodiscovery links.  For example, TextAmerica returns invalid 
+     *  autodiscovery results.
+     */
+    public boolean hasValidAutoDiscovery() {
+        return true;
+    }
+    
+    /** Determines if the weblog at the given resource and with the given
+     *  content is this blog service.
+     * @param resource A full URI to this resource, such as 
+     * "http://www.codinginparadise.org".
+     * @param content The full HTML content at the resource's URL.
+     * @throws FeedParserException Thrown if an error occurs while 
+     * determining the type of this weblog.
+     */
+    public boolean isThisService(String resource, String content)
+                                                throws FeedParserException {
+        return false;
+    }
+
+    /**
+     * Returns an array of FeedReferences that contains information on the
+     * usual locations this blog service contains its feed.  The feeds should
+     * be ordered by quality, so that higher quality feeds come before lower
+     * quality ones (i.e. you would want to have an Atom FeedReference
+     * object come before an RSS 0.91 FeedReference object in this list).
+     * @param resource A URL to the given weblog that might be used to build
+     * up where feeds are usually located.
+     * @param content The full content of the resource URL, which might
+     * be useful to determine where feeds are usually located.  This can be
+     * null.
+     * @throws FeedParserException Thrown if an error occurs while trying
+     * to determine the usual locations of feeds for this service.
+     */
+    public FeedReference[] getFeedLocations(String resource,
+                                            String content)
+                                                throws FeedParserException {
+        FeedReference unknownLocations[] =
+            { new FeedReference("atom.xml",FeedReference.ATOM_MEDIA_TYPE),
+              new FeedReference("index.rss", FeedReference.RSS_MEDIA_TYPE),
+              new FeedReference("rss.xml", FeedReference.RSS_MEDIA_TYPE),
+              new FeedReference("index.rdf", FeedReference.RSS_MEDIA_TYPE), 
+              new FeedReference("index.xml", FeedReference.RSS_MEDIA_TYPE),
+              new FeedReference("xml/rss.xml", FeedReference.RSS_MEDIA_TYPE) };
+        
+        return unknownLocations;
+    }
+}

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Unknown.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/WordPress.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/WordPress.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/WordPress.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/WordPress.java Sat Feb 26 05:00:10 2005
@@ -1,79 +1,79 @@
-/*
- * Copyright 1999,2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.commons.feedparser.locate.blogservice;
-
-import org.apache.commons.feedparser.FeedParserException;
-import org.apache.commons.feedparser.locate.*;
-
-/**
- * Models the WordPress blog service, encapsulating whether a given weblog
- * is this type of service and where it usually keeps its feeds.
- * 
- * @author Brad Neuberg, bkn3@columbia.edu
- */
-public class WordPress extends BlogService {
-    
-    /** Returns whether we can trust the results of this blog service's 
-     *  autodiscovery links.  For example, TextAmerica returns invalid 
-     *  autodiscovery results.
-     */
-    public boolean hasValidAutoDiscovery() {
-        return true;
-    }
-    
-    /** Determines if the weblog at the given resource and with the given
-     *  content is this blog service.
-     * @param resource A full URI to this resource, such as 
-     * "http://www.codinginparadise.org".
-     * @param content The full HTML content at the resource's URL.
-     * @throws FeedParserException Thrown if an error occurs while 
-     * determining the type of this weblog.
-     */
-    public boolean isThisService(String resource, String content)
-                                                throws FeedParserException {
-        boolean results = false;
-
-        results = hasGenerator(content, "wordpress");
-        
-        return results;
-    }
-
-    /**
-     * Returns an array of FeedReferences that contains information on the
-     * usual locations this blog service contains its feed.  The feeds should
-     * be ordered by quality, so that higher quality feeds come before lower
-     * quality ones (i.e. you would want to have an Atom FeedReference
-     * object come before an RSS 0.91 FeedReference object in this list).
-     * @param resource A URL to the given weblog that might be used to build
-     * up where feeds are usually located.
-     * @param content The full content of the resource URL, which might
-     * be useful to determine where feeds are usually located.  This can be
-     * null.
-     * @throws FeedParserException Thrown if an error occurs while trying
-     * to determine the usual locations of feeds for this service.
-     */
-    public FeedReference[] getFeedLocations(String resource,
-                                            String content)
-                                                throws FeedParserException {
-        FeedReference wordPressLocations[] =
-            { new FeedReference("wp-atom.php", FeedReference.ATOM_MEDIA_TYPE),
-              new FeedReference("wp-rss2.php", FeedReference.RSS_MEDIA_TYPE),
-              new FeedReference("wp-rss.php", FeedReference.RSS_MEDIA_TYPE) };
-        
-        return wordPressLocations;
-    }
-}
+/*
+ * Copyright 1999,2004 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.commons.feedparser.locate.blogservice;
+
+import org.apache.commons.feedparser.FeedParserException;
+import org.apache.commons.feedparser.locate.*;
+
+/**
+ * Models the WordPress blog service, encapsulating whether a given weblog
+ * is this type of service and where it usually keeps its feeds.
+ * 
+ * @author Brad Neuberg, bkn3@columbia.edu
+ */
+public class WordPress extends BlogService {
+    
+    /** Returns whether we can trust the results of this blog service's 
+     *  autodiscovery links.  For example, TextAmerica returns invalid 
+     *  autodiscovery results.
+     */
+    public boolean hasValidAutoDiscovery() {
+        return true;
+    }
+    
+    /** Determines if the weblog at the given resource and with the given
+     *  content is this blog service.
+     * @param resource A full URI to this resource, such as 
+     * "http://www.codinginparadise.org".
+     * @param content The full HTML content at the resource's URL.
+     * @throws FeedParserException Thrown if an error occurs while 
+     * determining the type of this weblog.
+     */
+    public boolean isThisService(String resource, String content)
+                                                throws FeedParserException {
+        boolean results = false;
+
+        results = hasGenerator(content, "wordpress");
+        
+        return results;
+    }
+
+    /**
+     * Returns an array of FeedReferences that contains information on the
+     * usual locations this blog service contains its feed.  The feeds should
+     * be ordered by quality, so that higher quality feeds come before lower
+     * quality ones (i.e. you would want to have an Atom FeedReference
+     * object come before an RSS 0.91 FeedReference object in this list).
+     * @param resource A URL to the given weblog that might be used to build
+     * up where feeds are usually located.
+     * @param content The full content of the resource URL, which might
+     * be useful to determine where feeds are usually located.  This can be
+     * null.
+     * @throws FeedParserException Thrown if an error occurs while trying
+     * to determine the usual locations of feeds for this service.
+     */
+    public FeedReference[] getFeedLocations(String resource,
+                                            String content)
+                                                throws FeedParserException {
+        FeedReference wordPressLocations[] =
+            { new FeedReference("wp-atom.php", FeedReference.ATOM_MEDIA_TYPE),
+              new FeedReference("wp-rss2.php", FeedReference.RSS_MEDIA_TYPE),
+              new FeedReference("wp-rss.php", FeedReference.RSS_MEDIA_TYPE) };
+        
+        return wordPressLocations;
+    }
+}

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/WordPress.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Xanga.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Xanga.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Xanga.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Xanga.java Sat Feb 26 05:00:10 2005
@@ -1,101 +1,101 @@
-/*
- * Copyright 1999,2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.commons.feedparser.locate.blogservice;
-
-import java.net.*;
-import java.util.regex.Matcher;
-import java.util.regex.Pattern;
-
-import org.apache.commons.feedparser.FeedParserException;
-import org.apache.commons.feedparser.locate.*;
-
-/**
- * Models the Xanga blog service, encapsulating whether a given weblog
- * is this type of service and where it usually keeps its feeds.
- * 
- * @author Brad Neuberg, bkn3@columbia.edu
- */
-public class Xanga extends BlogService {
-    
-    /**
-     * A regex to extract the user from a Xanga URL
-     */
-    private static Pattern xangaURLPattern = Pattern.compile(".*user=(\\w*)");
-        
-    /** Returns whether we can trust the results of this blog service's 
-     *  autodiscovery links.  For example, TextAmerica returns invalid 
-     *  autodiscovery results.
-     */
-    public boolean hasValidAutoDiscovery() {
-        return true;
-    }
-    
-    /** Determines if the weblog at the given resource and with the given
-     *  content is this blog service.
-     * @param resource A full URI to this resource, such as 
-     * "http://www.codinginparadise.org".
-     * @param content The full HTML content at the resource's URL.
-     * @throws FeedParserException Thrown if an error occurs while 
-     * determining the type of this weblog.
-     */
-    public boolean isThisService(String resource, String content)
-                                                throws FeedParserException {
-        boolean results = false;
-        
-        results = containsDomain(resource, "xanga.com");
-        
-        return results;
-    }
-
-    /**
-     * Returns an array of FeedReferences that contains information on the
-     * usual locations this blog service contains its feed.  The feeds should
-     * be ordered by quality, so that higher quality feeds come before lower
-     * quality ones (i.e. you would want to have an Atom FeedReference
-     * object come before an RSS 0.91 FeedReference object in this list).
-     * @param resource A URL to the given weblog that might be used to build
-     * up where feeds are usually located.
-     * @param content The full content of the resource URL, which might
-     * be useful to determine where feeds are usually located.  This can be
-     * null.
-     * @throws FeedParserException Thrown if an error occurs while trying
-     * to determine the usual locations of feeds for this service.
-     */
-    public FeedReference[] getFeedLocations(String resource,
-                                            String content)
-                                                throws FeedParserException {
-        // Xanga feeds have to be handled specially since they put their
-        // feeds at the location: http://www.xanga.com/rss.aspx?user=username
-        String user = getXangaUser(resource);
-        FeedReference xangaLocations[] =
-            { new FeedReference("rss.aspx?user=" + user, 
-                                FeedReference.RSS_MEDIA_TYPE) };
-        
-        return xangaLocations;
-    }
-    
-    /** Xanga's feed locations are dependent on the 'user' attribute in a
-     *  Xanga URI.  This method helps extract the user element from an 
-     *  existing URI, such as http://www.xanga.com/home.aspx?user=wdfphillz.
-     */
-    protected String getXangaUser(String resource) {
-        Matcher xangaMatcher = xangaURLPattern.matcher(resource);
-        xangaMatcher.matches();
-        
-        return xangaMatcher.group(1);
-    }
-}
+/*
+ * Copyright 1999,2004 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.commons.feedparser.locate.blogservice;
+
+import java.net.*;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+import org.apache.commons.feedparser.FeedParserException;
+import org.apache.commons.feedparser.locate.*;
+
+/**
+ * Models the Xanga blog service, encapsulating whether a given weblog
+ * is this type of service and where it usually keeps its feeds.
+ * 
+ * @author Brad Neuberg, bkn3@columbia.edu
+ */
+public class Xanga extends BlogService {
+    
+    /**
+     * A regex to extract the user from a Xanga URL
+     */
+    private static Pattern xangaURLPattern = Pattern.compile(".*user=(\\w*)");
+        
+    /** Returns whether we can trust the results of this blog service's 
+     *  autodiscovery links.  For example, TextAmerica returns invalid 
+     *  autodiscovery results.
+     */
+    public boolean hasValidAutoDiscovery() {
+        return true;
+    }
+    
+    /** Determines if the weblog at the given resource and with the given
+     *  content is this blog service.
+     * @param resource A full URI to this resource, such as 
+     * "http://www.codinginparadise.org".
+     * @param content The full HTML content at the resource's URL.
+     * @throws FeedParserException Thrown if an error occurs while 
+     * determining the type of this weblog.
+     */
+    public boolean isThisService(String resource, String content)
+                                                throws FeedParserException {
+        boolean results = false;
+        
+        results = containsDomain(resource, "xanga.com");
+        
+        return results;
+    }
+
+    /**
+     * Returns an array of FeedReferences that contains information on the
+     * usual locations this blog service contains its feed.  The feeds should
+     * be ordered by quality, so that higher quality feeds come before lower
+     * quality ones (i.e. you would want to have an Atom FeedReference
+     * object come before an RSS 0.91 FeedReference object in this list).
+     * @param resource A URL to the given weblog that might be used to build
+     * up where feeds are usually located.
+     * @param content The full content of the resource URL, which might
+     * be useful to determine where feeds are usually located.  This can be
+     * null.
+     * @throws FeedParserException Thrown if an error occurs while trying
+     * to determine the usual locations of feeds for this service.
+     */
+    public FeedReference[] getFeedLocations(String resource,
+                                            String content)
+                                                throws FeedParserException {
+        // Xanga feeds have to be handled specially since they put their
+        // feeds at the location: http://www.xanga.com/rss.aspx?user=username
+        String user = getXangaUser(resource);
+        FeedReference xangaLocations[] =
+            { new FeedReference("rss.aspx?user=" + user, 
+                                FeedReference.RSS_MEDIA_TYPE) };
+        
+        return xangaLocations;
+    }
+    
+    /** Xanga's feed locations are dependent on the 'user' attribute in a
+     *  Xanga URI.  This method helps extract the user element from an 
+     *  existing URI, such as http://www.xanga.com/home.aspx?user=wdfphillz.
+     */
+    protected String getXangaUser(String resource) {
+        Matcher xangaMatcher = xangaURLPattern.matcher(resource);
+        xangaMatcher.matches();
+        
+        return xangaMatcher.group(1);
+    }
+}

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/Xanga.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/YahooGroups.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/YahooGroups.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/YahooGroups.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/YahooGroups.java Sat Feb 26 05:00:10 2005
@@ -1,100 +1,100 @@
-/*
- * Copyright 1999,2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.commons.feedparser.locate.blogservice;
-
-import org.apache.commons.feedparser.FeedParserException;
-import org.apache.commons.feedparser.locate.*;
-
-/**
- * Models the Yahoo Groups service, encapsulating whether a given weblog
- * is this type of service and where it usually keeps its feeds.
- * 
- * @author Brad Neuberg, bkn3@columbia.edu
- */
-public class YahooGroups extends BlogService {
-        
-    /** Returns whether we can trust the results of this blog service's 
-     *  autodiscovery links.  For example, TextAmerica returns invalid 
-     *  autodiscovery results.
-     */
-    public boolean hasValidAutoDiscovery() {
-        return false;
-    }
-    
-    /** Determines if the weblog at the given resource and with the given
-     *  content is this blog service.
-     * @param resource A full URI to this resource, such as 
-     * "http://www.codinginparadise.org".
-     * @param content The full HTML content at the resource's URL.
-     * @throws FeedParserException Thrown if an error occurs while 
-     * determining the type of this weblog.
-     */
-    public boolean isThisService(String resource, String content)
-                                                throws FeedParserException {
-        boolean results = false;
-        
-        results = containsDomain( resource, "groups.yahoo.com" );
-        
-        return results;
-    }
-
-    /**
-     * Returns an array of FeedReferences that contains information on the
-     * usual locations this blog service contains its feed.  The feeds should
-     * be ordered by quality, so that higher quality feeds come before lower
-     * quality ones (i.e. you would want to have an Atom FeedReference
-     * object come before an RSS 0.91 FeedReference object in this list).
-     * @param resource A URL to the given weblog that might be used to build
-     * up where feeds are usually located.
-     * @param content The full content of the resource URL, which might
-     * be useful to determine where feeds are usually located.  This can be
-     * null.
-     * @throws FeedParserException Thrown if an error occurs while trying
-     * to determine the usual locations of feeds for this service.
-     */
-    public FeedReference[] getFeedLocations(String resource,
-                                            String content)
-                                                throws FeedParserException {
-        //  * Input: http://groups.yahoo.com/group/aggregators/
-        //  *
-        //  * Output: http://rss.groups.yahoo.com/group/aggregators/rss
-        String location;
-        
-        if ( resource == null )
-            return new FeedReference[0];
-
-        if ( resource.indexOf( "/group/" ) == -1  ||
-             resource.indexOf( "groups.yahoo.com" ) == -1 )
-            return new FeedReference[0];
-        
-        location = "http://rss." +
-            resource.substring( "http://".length(), resource.length() )
-            ;
-
-        if ( location.endsWith( "/" ) ) {
-            location += "rss";
-        } else {
-            location += "/rss";
-        }
-        
-        FeedReference yahooGroupsLocations[] =
-                { new FeedReference(location, 
-                                    FeedReference.RSS_MEDIA_TYPE) };
-        
-        return yahooGroupsLocations;
-    }
-}
+/*
+ * Copyright 1999,2004 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.commons.feedparser.locate.blogservice;
+
+import org.apache.commons.feedparser.FeedParserException;
+import org.apache.commons.feedparser.locate.*;
+
+/**
+ * Models the Yahoo Groups service, encapsulating whether a given weblog
+ * is this type of service and where it usually keeps its feeds.
+ * 
+ * @author Brad Neuberg, bkn3@columbia.edu
+ */
+public class YahooGroups extends BlogService {
+        
+    /** Returns whether we can trust the results of this blog service's 
+     *  autodiscovery links.  For example, TextAmerica returns invalid 
+     *  autodiscovery results.
+     */
+    public boolean hasValidAutoDiscovery() {
+        return false;
+    }
+    
+    /** Determines if the weblog at the given resource and with the given
+     *  content is this blog service.
+     * @param resource A full URI to this resource, such as 
+     * "http://www.codinginparadise.org".
+     * @param content The full HTML content at the resource's URL.
+     * @throws FeedParserException Thrown if an error occurs while 
+     * determining the type of this weblog.
+     */
+    public boolean isThisService(String resource, String content)
+                                                throws FeedParserException {
+        boolean results = false;
+        
+        results = containsDomain( resource, "groups.yahoo.com" );
+        
+        return results;
+    }
+
+    /**
+     * Returns an array of FeedReferences that contains information on the
+     * usual locations this blog service contains its feed.  The feeds should
+     * be ordered by quality, so that higher quality feeds come before lower
+     * quality ones (i.e. you would want to have an Atom FeedReference
+     * object come before an RSS 0.91 FeedReference object in this list).
+     * @param resource A URL to the given weblog that might be used to build
+     * up where feeds are usually located.
+     * @param content The full content of the resource URL, which might
+     * be useful to determine where feeds are usually located.  This can be
+     * null.
+     * @throws FeedParserException Thrown if an error occurs while trying
+     * to determine the usual locations of feeds for this service.
+     */
+    public FeedReference[] getFeedLocations(String resource,
+                                            String content)
+                                                throws FeedParserException {
+        //  * Input: http://groups.yahoo.com/group/aggregators/
+        //  *
+        //  * Output: http://rss.groups.yahoo.com/group/aggregators/rss
+        String location;
+        
+        if ( resource == null )
+            return new FeedReference[0];
+
+        if ( resource.indexOf( "/group/" ) == -1  ||
+             resource.indexOf( "groups.yahoo.com" ) == -1 )
+            return new FeedReference[0];
+        
+        location = "http://rss." +
+            resource.substring( "http://".length(), resource.length() )
+            ;
+
+        if ( location.endsWith( "/" ) ) {
+            location += "rss";
+        } else {
+            location += "/rss";
+        }
+        
+        FeedReference yahooGroupsLocations[] =
+                { new FeedReference(location, 
+                                    FeedReference.RSS_MEDIA_TYPE) };
+        
+        return yahooGroupsLocations;
+    }
+}

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/YahooGroups.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/iBlog.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/iBlog.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/iBlog.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/iBlog.java Sat Feb 26 05:00:10 2005
@@ -1,74 +1,74 @@
-/*
- * Copyright 1999,2004 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.commons.feedparser.locate.blogservice;
-
-import org.apache.commons.feedparser.FeedParserException;
-import org.apache.commons.feedparser.locate.*;
-
-/**
- * Models the iBlog blog service, encapsulating whether a given weblog
- * is this type of service and where it usually keeps its feeds.
- * 
- * @author Brad Neuberg, bkn3@columbia.edu
- */
-public class iBlog extends BlogService {
-    
-    /** Returns whether we can trust the results of this blog service's 
-     *  autodiscovery links.  For example, TextAmerica returns invalid 
-     *  autodiscovery results.
-     */
-    public boolean hasValidAutoDiscovery() {
-        return true;
-    }
-    
-    /** Determines if the weblog at the given resource and with the given
-     *  content is this blog service.
-     * @param resource A full URI to this resource, such as 
-     * "http://www.codinginparadise.org".
-     * @param content The full HTML content at the resource's URL.
-     * @throws FeedParserException Thrown if an error occurs while 
-     * determining the type of this weblog.
-     */
-    public boolean isThisService(String resource, String content)
-                                                throws FeedParserException {
-        // FIXME: No way to detect this type of weblog right now
-        return false;
-    }
-
-    /**
-     * Returns an array of FeedReferences that contains information on the
-     * usual locations this blog service contains its feed.  The feeds should
-     * be ordered by quality, so that higher quality feeds come before lower
-     * quality ones (i.e. you would want to have an Atom FeedReference
-     * object come before an RSS 0.91 FeedReference object in this list).
-     * @param resource A URL to the given weblog that might be used to build
-     * up where feeds are usually located.
-     * @param content The full content of the resource URL, which might
-     * be useful to determine where feeds are usually located.  This can be
-     * null.
-     * @throws FeedParserException Thrown if an error occurs while trying
-     * to determine the usual locations of feeds for this service.
-     */
-    public FeedReference[] getFeedLocations(String resource,
-                                            String content)
-                                                throws FeedParserException {
-        FeedReference iBlogLocations[] =
-            { new FeedReference("rss.xml", FeedReference.RSS_MEDIA_TYPE) };
-        
-        return iBlogLocations;
-    }
-}
+/*
+ * Copyright 1999,2004 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.commons.feedparser.locate.blogservice;
+
+import org.apache.commons.feedparser.FeedParserException;
+import org.apache.commons.feedparser.locate.*;
+
+/**
+ * Models the iBlog blog service, encapsulating whether a given weblog
+ * is this type of service and where it usually keeps its feeds.
+ * 
+ * @author Brad Neuberg, bkn3@columbia.edu
+ */
+public class iBlog extends BlogService {
+    
+    /** Returns whether we can trust the results of this blog service's 
+     *  autodiscovery links.  For example, TextAmerica returns invalid 
+     *  autodiscovery results.
+     */
+    public boolean hasValidAutoDiscovery() {
+        return true;
+    }
+    
+    /** Determines if the weblog at the given resource and with the given
+     *  content is this blog service.
+     * @param resource A full URI to this resource, such as 
+     * "http://www.codinginparadise.org".
+     * @param content The full HTML content at the resource's URL.
+     * @throws FeedParserException Thrown if an error occurs while 
+     * determining the type of this weblog.
+     */
+    public boolean isThisService(String resource, String content)
+                                                throws FeedParserException {
+        // FIXME: No way to detect this type of weblog right now
+        return false;
+    }
+
+    /**
+     * Returns an array of FeedReferences that contains information on the
+     * usual locations this blog service contains its feed.  The feeds should
+     * be ordered by quality, so that higher quality feeds come before lower
+     * quality ones (i.e. you would want to have an Atom FeedReference
+     * object come before an RSS 0.91 FeedReference object in this list).
+     * @param resource A URL to the given weblog that might be used to build
+     * up where feeds are usually located.
+     * @param content The full content of the resource URL, which might
+     * be useful to determine where feeds are usually located.  This can be
+     * null.
+     * @throws FeedParserException Thrown if an error occurs while trying
+     * to determine the usual locations of feeds for this service.
+     */
+    public FeedReference[] getFeedLocations(String resource,
+                                            String content)
+                                                throws FeedParserException {
+        FeedReference iBlogLocations[] =
+            { new FeedReference("rss.xml", FeedReference.RSS_MEDIA_TYPE) };
+        
+        return iBlogLocations;
+    }
+}

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/blogservice/iBlog.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/locate/package.html
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/AdvancedInputStream.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/AdvancedInputStream.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/AdvancedInputStream.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/AdvancedInputStream.java Sat Feb 26 05:00:10 2005
@@ -24,7 +24,7 @@
  * 
  *
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: AdvancedInputStream.java,v 1.1 2005/01/25 07:55:19 burton Exp $
+ * @version $Id$
  */
 public class AdvancedInputStream extends InputStream {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/AdvancedInputStream.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/Authenticator.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/Authenticator.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/Authenticator.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/Authenticator.java Sat Feb 26 05:00:10 2005
@@ -23,7 +23,7 @@
  * 
  *
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: Authenticator.java,v 1.1 2005/01/25 07:55:19 burton Exp $
+ * @version $Id$
  */
 public class Authenticator extends java.net.Authenticator {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/Authenticator.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BaseResourceRequest.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BaseResourceRequest.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BaseResourceRequest.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BaseResourceRequest.java Sat Feb 26 05:00:10 2005
@@ -23,7 +23,7 @@
 /**
  * 
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: BaseResourceRequest.java,v 1.1 2005/01/25 07:55:19 burton Exp $
+ * @version $Id$
  */
 public abstract class BaseResourceRequest implements ResourceRequest {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BaseResourceRequest.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BlockingResourceRequest.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BlockingResourceRequest.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BlockingResourceRequest.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BlockingResourceRequest.java Sat Feb 26 05:00:10 2005
@@ -24,7 +24,7 @@
  * SCHEME - block://localhost/?duration=100
  * 
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: BlockingResourceRequest.java,v 1.1 2005/01/25 07:55:19 burton Exp $
+ * @version $Id$
  */
 public class BlockingResourceRequest extends BaseResourceRequest implements ResourceRequest {
     

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/BlockingResourceRequest.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/DataEvent.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/DataEvent.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/DataEvent.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/DataEvent.java Sat Feb 26 05:00:10 2005
@@ -26,7 +26,7 @@
  * Represents a data request
  *
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: DataEvent.java,v 1.1 2005/01/25 07:55:19 burton Exp $
+ * @version $Id$
  */
 public class DataEvent {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/DataEvent.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/HTTPClientNetworkResource.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/HTTPClientNetworkResource.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/HTTPClientNetworkResource.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/HTTPClientNetworkResource.java Sat Feb 26 05:00:10 2005
@@ -33,7 +33,7 @@
  * correct timeout behavior, redirect limits, header and etag support, etc.
  * 
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: HTTPClientNetworkResource.java,v 1.3 2005/01/27 07:36:24 burton Exp $
+ * @version $Id$
  */
 public class HTTPClientNetworkResource extends BaseResourceRequest implements ResourceRequest {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/HTTPClientNetworkResource.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/MalformedResourceException.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/MalformedResourceException.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/MalformedResourceException.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/MalformedResourceException.java Sat Feb 26 05:00:10 2005
@@ -22,7 +22,7 @@
 /**
  * 
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: MalformedResourceException.java,v 1.1 2005/01/25 07:55:19 burton Exp $
+ * @version $Id$
  */
 public class MalformedResourceException extends NetworkException {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/MalformedResourceException.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/NetworkEventListener.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/NetworkEventListener.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/NetworkEventListener.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/NetworkEventListener.java Sat Feb 26 05:00:10 2005
@@ -29,7 +29,7 @@
  * Note that all NetworkEventListeners should be threadsafe.
  *
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: NetworkEventListener.java,v 1.1 2005/01/25 07:55:19 burton Exp $
+ * @version $Id$
  */
 public interface NetworkEventListener extends EventListener {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/NetworkEventListener.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/NetworkException.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/ResourceRequest.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/ResourceRequest.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/ResourceRequest.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/ResourceRequest.java Sat Feb 26 05:00:10 2005
@@ -25,7 +25,7 @@
  * HTTP URL.
  * 
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: ResourceRequest.java,v 1.1 2005/01/25 07:55:19 burton Exp $
+ * @version $Id$
  */
 public interface ResourceRequest {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/ResourceRequest.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/ResourceRequestFactory.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/URLCookieManager.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/URLResolver.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/URLResolver.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/URLResolver.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/URLResolver.java Sat Feb 26 05:00:10 2005
@@ -26,7 +26,7 @@
  * fully qualified.
  * 
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
- * @version $Id: URLResolver.java,v 1.1 2005/01/25 07:55:19 burton Exp $
+ * @version $Id$
  */
 public class URLResolver {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/URLResolver.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/network/URLResourceRequest.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/output/RSS10_OutputFeedParserListener.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/output/RSS10_OutputFeedParserListener.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/output/RSS10_OutputFeedParserListener.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/output/RSS10_OutputFeedParserListener.java Sat Feb 26 05:00:10 2005
@@ -25,7 +25,7 @@
 /**
  *
  * @author <a href="mailto:burton@apache.org">Kevin A. Burton (burtonator)</a>
- * @version $Id: RSS10_OutputFeedParserListener.java,v 1.2 2004/02/28 03:35:22 bayard Exp $
+ * @version $Id$
  */
 public class RSS10_OutputFeedParserListener extends DefaultFeedParserListener
     implements FeedParserListener {

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/output/RSS10_OutputFeedParserListener.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/MetaWeblogPostAgent.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/MetaWeblogPostAgent.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/MetaWeblogPostAgent.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/MetaWeblogPostAgent.java Sat Feb 26 05:00:10 2005
@@ -28,7 +28,7 @@
  * A PostAgent allows a developer to post to a given weblog.
  *
  * @author <a href="mailto:burton@apache.org">Kevin A. Burton (burtonator)</a>
- * @version $Id: MetaWeblogPostAgent.java,v 1.2 2005/01/12 06:54:43 burton Exp $
+ * @version $Id$
  */
 public class MetaWeblogPostAgent {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/MetaWeblogPostAgent.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostAgent.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostAgent.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostAgent.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostAgent.java Sat Feb 26 05:00:10 2005
@@ -26,7 +26,7 @@
  * A PostAgent allows a developer to post to a given weblog.
  *
  * @author <a href="mailto:burton@apache.org">Kevin A. Burton (burtonator)</a>
- * @version $Id: PostAgent.java,v 1.2 2005/01/12 06:54:43 burton Exp $
+ * @version $Id$
  */
 public interface PostAgent {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostAgent.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostEntry.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostEntry.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostEntry.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostEntry.java Sat Feb 26 05:00:10 2005
@@ -26,7 +26,7 @@
  * A PostAgent allows a developer to post to a given weblog.
  *
  * @author <a href="mailto:burton@apache.org">Kevin A. Burton (burtonator)</a>
- * @version $Id: PostEntry.java,v 1.2 2005/01/12 06:54:43 burton Exp $
+ * @version $Id$
  */
 public class PostEntry {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/post/PostEntry.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/sax/RSSFeedParser.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/BaseTestCase.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/BaseTestCase.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/BaseTestCase.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/BaseTestCase.java Sat Feb 26 05:00:10 2005
@@ -31,7 +31,7 @@
 /**
  *
  * @author <a href="mailto:burton@peerfear.org">Kevin A. Burton</a>
- * @version $Id: TestAtom.java 149187 2005-01-30 23:54:29Z burton $
+ * @version $Id$
  */
 public class BaseTestCase extends TestCase {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/BaseTestCase.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/DebugPerformance.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/DebugPerformance.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/DebugPerformance.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/DebugPerformance.java Sat Feb 26 05:00:10 2005
@@ -36,7 +36,7 @@
 /**
  *
  * @author <a href="mailto:burton@peerfear.org">Kevin A. Burton</a>
- * @version $Id: TestAtom.java 149187 2005-01-30 23:54:29Z burton $
+ * @version $Id$
  */
 public class DebugPerformance {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/DebugPerformance.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestAtom.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestAtom.xml
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestComments.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestComments.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestComments.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestComments.java Sat Feb 26 05:00:10 2005
@@ -31,7 +31,7 @@
 /**
  *
  * @author <a href="mailto:burton@peerfear.org">Kevin A. Burton</a>
- * @version $Id: TestAtom.java 149187 2005-01-30 23:54:29Z burton $
+ * @version $Id$
  */
 public class TestComments extends BaseTestCase {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestComments.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestFeedFilter.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestFeedLocator.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestFeedParser.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestFeedParserUTF8.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestGuid.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestGuid.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestGuid.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestGuid.java Sat Feb 26 05:00:10 2005
@@ -31,7 +31,7 @@
 /**
  *
  * @author <a href="mailto:burton@peerfear.org">Kevin A. Burton</a>
- * @version $Id: TestAtom.java 149187 2005-01-30 23:54:29Z burton $
+ * @version $Id$
  */
 public class TestGuid extends BaseTestCase {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestGuid.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestPerformance.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestPerformance.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestPerformance.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestPerformance.java Sat Feb 26 05:00:10 2005
@@ -36,7 +36,7 @@
 /**
  *
  * @author <a href="mailto:burton@peerfear.org">Kevin A. Burton</a>
- * @version $Id: TestAtom.java 149187 2005-01-30 23:54:29Z burton $
+ * @version $Id$
  */
 public class TestPerformance {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestPerformance.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestProbeLocator.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestProbeLocator.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestProbeLocator.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestProbeLocator.java Sat Feb 26 05:00:10 2005
@@ -28,7 +28,7 @@
 /**
  *
  * @author <a href="mailto:bkn3@columbia.edu">Brad Neuberg</a>
- * @version $Id: TestProbeLocator.java,v 1.6 2004/10/22 00:37:08 burton Exp $
+ * @version $Id$
  */
 public class TestProbeLocator extends TestCase {
     public static boolean NO_ATOM_FEED = false;

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/TestProbeLocator.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/test/broken-Invalid-byte-2-of-3-byte-UTF-8-sequence.xml
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/ISO8601DateParser.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/ISO8601DateParser.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/ISO8601DateParser.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/ISO8601DateParser.java Sat Feb 26 05:00:10 2005
@@ -26,7 +26,7 @@
  * Dublin Core, RSS 1.0, and Atom.
  * 
  * @author <a href="mailto:burton@apache.org">Kevin A. Burton (burtonator)</a>
- * @version $Id: ISO8601DateParser.java,v 1.5 2004/10/18 20:21:00 burton Exp $
+ * @version $Id$
  */
 public class ISO8601DateParser {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/ISO8601DateParser.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/RFC3066LocaleParser.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Modified: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/RFC822DateParser.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/RFC822DateParser.java?view=diff&r1=155415&r2=155416
==============================================================================
--- jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/RFC822DateParser.java (original)
+++ jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/RFC822DateParser.java Sat Feb 26 05:00:10 2005
@@ -78,7 +78,7 @@
  * 
  * 
  * @author <a href="mailto:burton@apache.org">Kevin A. Burton (burtonator)</a>
- * @version $Id: RFC822DateParser.java,v 1.2 2004/03/02 08:32:07 burton Exp $
+ * @version $Id$
  */
 public class RFC822DateParser {
 

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/RFC822DateParser.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/XMLCleanser.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/src/java/org/apache/commons/feedparser/tools/XMLEncodingParser.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/anchor/anchor1.html
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/anchor/anchor2.html
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/anchor/anchor3.html
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/anchor/anchor4.html
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/directory/xfn1.html
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/feeds/README
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/feeds/atom-1.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/feeds/blink.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/feeds/tag-atom.xml
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/filter/entity-atom-1.xml
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/filter/nbsp-1.xml
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/filter/prolog-atom-1.xml
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL

Propchange: jakarta/commons/proper/feedparser/trunk/tests/filter/prolog-atom-2.xml
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Sat Feb 26 05:00:10 2005
@@ -1 +1 @@
-author date id revision
+Date Author Id Revision HeadURL



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org