diff --git a/CHANGES.md b/CHANGES.md index 4e40a674..452ae2d5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -26,6 +26,8 @@ * Change don't create a backup from an initial zero byte main database file, PEP8 and code tidy up * Fix show list view when no shows exist and "Group show lists shows into" is set to anything other than "One Show List" * Add coverage testing and coveralls support +* Update feedparser library 5.1.3 to 5.2.0 (8c62940) +* Remove feedcache implementation and library [develop changelog] * Update Requests library 2.7.0 (ab1f493) to 2.7.0 (8b5e457) diff --git a/lib/feedcache/__init__.py b/lib/feedcache/__init__.py deleted file mode 100644 index 96ebc102..00000000 --- a/lib/feedcache/__init__.py +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Doug Hellmann. -# -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and -# its documentation for any purpose and without fee is hereby -# granted, provided that the above copyright notice appear in all -# copies and that both that copyright notice and this permission -# notice appear in supporting documentation, and that the name of Doug -# Hellmann not be used in advertising or publicity pertaining to -# distribution of the software without specific, written prior -# permission. -# -# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR -# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# - -""" - -""" - -__module_id__ = "$Id$" - -# -# Import system modules -# - - -# -# Import local modules -# -from cache import Cache - -# -# Module -# diff --git a/lib/feedcache/cache.py b/lib/feedcache/cache.py deleted file mode 100644 index 6ec0a39a..00000000 --- a/lib/feedcache/cache.py +++ /dev/null @@ -1,204 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Doug Hellmann. -# -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and -# its documentation for any purpose and without fee is hereby -# granted, provided that the above copyright notice appear in all -# copies and that both that copyright notice and this permission -# notice appear in supporting documentation, and that the name of Doug -# Hellmann not be used in advertising or publicity pertaining to -# distribution of the software without specific, written prior -# permission. -# -# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR -# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# - -""" - -""" - -__module_id__ = "$Id$" - -# -# Import system modules -# -from feedparser import feedparser - -import logging -import time - -# -# Import local modules -# - - -# -# Module -# - -logger = logging.getLogger('feedcache.cache') - - -class Cache: - """A class to wrap Mark Pilgrim's Universal Feed Parser module - (http://www.feedparser.org) so that parameters can be used to - cache the feed results locally instead of fetching the feed every - time it is requested. Uses both etag and modified times for - caching. - """ - - def __init__(self, storage, timeToLiveSeconds=300, userAgent='feedcache'): - """ - Arguments: - - storage -- Backing store for the cache. It should follow - the dictionary API, with URLs used as keys. It should - persist data. - - timeToLiveSeconds=300 -- The length of time content should - live in the cache before an update is attempted. - - userAgent='feedcache' -- User agent string to be used when - fetching feed contents. - - """ - self.storage = storage - self.time_to_live = timeToLiveSeconds - self.user_agent = userAgent - return - - def purge(self, olderThanSeconds): - """Remove cached data from the storage if the data is older than the - date given. If olderThanSeconds is None, the entire cache is purged. - """ - if olderThanSeconds is None: - logger.debug('purging the entire cache') - for key in self.storage.keys(): - del self.storage[key] - else: - now = time.time() - # Iterate over the keys and load each item one at a time - # to avoid having the entire cache loaded into memory - # at one time. - for url in self.storage.keys(): - (cached_time, cached_data) = self.storage[url] - age = now - cached_time - if age >= olderThanSeconds: - logger.debug('removing %s with age %d', url, age) - del self.storage[url] - return - - def fetch(self, url, force_update=False, offline=False, request_headers=None): - """Return the feed at url. - - url - The URL of the feed. - - force_update=False - When True, update the cache whether the - current contents have - exceeded their time-to-live - or not. - - offline=False - When True, only return data from the local - cache and never access the remote - URL. - - If there is data for that feed in the cache already, check - the expiration date before accessing the server. If the - cached data has not expired, return it without accessing the - server. - - In cases where the server is accessed, check for updates - before deciding what to return. If the server reports a - status of 304, the previously cached content is returned. - - The cache is only updated if the server returns a status of - 200, to avoid holding redirected data in the cache. - """ - logger.debug('url="%s"' % url) - - # Convert the URL to a value we can use - # as a key for the storage backend. - key = url - if isinstance(key, unicode): - key = key.encode('utf-8') - - modified = None - etag = None - now = time.time() - - cached_time, cached_content = self.storage.get(key, (None, None)) - - # Offline mode support (no networked requests) - # so return whatever we found in the storage. - # If there is nothing in the storage, we'll be returning None. - if offline: - logger.debug('offline mode') - return cached_content - - # Does the storage contain a version of the data - # which is older than the time-to-live? - logger.debug('cache modified time: %s' % str(cached_time)) - if cached_time is not None and not force_update: - if self.time_to_live: - age = now - cached_time - if age <= self.time_to_live: - logger.debug('cache contents still valid') - return cached_content - else: - logger.debug('cache contents older than TTL') - else: - logger.debug('no TTL value') - - # The cache is out of date, but we have - # something. Try to use the etag and modified_time - # values from the cached content. - etag = cached_content.get('etag') - modified = cached_content.get('modified') - logger.debug('cached etag=%s' % etag) - logger.debug('cached modified=%s' % str(modified)) - else: - logger.debug('nothing in the cache, or forcing update') - - # We know we need to fetch, so go ahead and do it. - logger.debug('fetching...') - parsed_result = feedparser.parse(url, - agent=self.user_agent, - modified=modified, - etag=etag, - request_headers=request_headers) - - status = parsed_result.get('status', None) - logger.debug('HTTP status=%s' % status) - if status == 304: - # No new data, based on the etag or modified values. - # We need to update the modified time in the - # storage, though, so we know that what we have - # stored is up to date. - self.storage[key] = (now, cached_content) - - # Return the data from the cache, since - # the parsed data will be empty. - parsed_result = cached_content - elif status == 200: - # There is new content, so store it unless there was an error. - error = parsed_result.get('bozo_exception') - if not error: - logger.debug('Updating stored data for %s' % url) - self.storage[key] = (now, parsed_result) - else: - logger.warning('Not storing data with exception: %s', - error) - else: - logger.warning('Not updating cache with HTTP status %s', status) - - return parsed_result diff --git a/lib/feedcache/cachestoragelock.py b/lib/feedcache/cachestoragelock.py deleted file mode 100644 index 05babde6..00000000 --- a/lib/feedcache/cachestoragelock.py +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Doug Hellmann. -# -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and -# its documentation for any purpose and without fee is hereby -# granted, provided that the above copyright notice appear in all -# copies and that both that copyright notice and this permission -# notice appear in supporting documentation, and that the name of Doug -# Hellmann not be used in advertising or publicity pertaining to -# distribution of the software without specific, written prior -# permission. -# -# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR -# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# -from __future__ import with_statement - -"""Lock wrapper for cache storage which do not permit multi-threaded access. - -""" - -__module_id__ = "$Id$" - -# -# Import system modules -# -import threading - -# -# Import local modules -# - - -# -# Module -# - -class CacheStorageLock: - """Lock wrapper for cache storage which do not permit multi-threaded access. - """ - - def __init__(self, shelf): - self.lock = threading.Lock() - self.shelf = shelf - return - - def __getitem__(self, key): - with self.lock: - return self.shelf[key] - - def get(self, key, default=None): - with self.lock: - try: - return self.shelf[key] - except KeyError: - return default - - def __setitem__(self, key, value): - with self.lock: - self.shelf[key] = value diff --git a/lib/feedcache/example.py b/lib/feedcache/example.py deleted file mode 100644 index 4df7ab68..00000000 --- a/lib/feedcache/example.py +++ /dev/null @@ -1,63 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Doug Hellmann. -# -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and -# its documentation for any purpose and without fee is hereby -# granted, provided that the above copyright notice appear in all -# copies and that both that copyright notice and this permission -# notice appear in supporting documentation, and that the name of Doug -# Hellmann not be used in advertising or publicity pertaining to -# distribution of the software without specific, written prior -# permission. -# -# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR -# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# - -"""Example use of feedcache.Cache. - -""" - -__module_id__ = "$Id$" - -# -# Import system modules -# -import sys -import shelve - -# -# Import local modules -# -import cache - -# -# Module -# - -def main(urls=[]): - print 'Saving feed data to ./.feedcache' - storage = shelve.open('.feedcache') - try: - fc = cache.Cache(storage) - for url in urls: - parsed_data = fc.fetch(url) - print parsed_data.feed.title - for entry in parsed_data.entries: - print '\t', entry.title - finally: - storage.close() - return - -if __name__ == '__main__': - main(sys.argv[1:]) - diff --git a/lib/feedcache/example_threads.py b/lib/feedcache/example_threads.py deleted file mode 100644 index 2eb56d30..00000000 --- a/lib/feedcache/example_threads.py +++ /dev/null @@ -1,144 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Doug Hellmann. -# -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and -# its documentation for any purpose and without fee is hereby -# granted, provided that the above copyright notice appear in all -# copies and that both that copyright notice and this permission -# notice appear in supporting documentation, and that the name of Doug -# Hellmann not be used in advertising or publicity pertaining to -# distribution of the software without specific, written prior -# permission. -# -# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR -# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# - -"""Example use of feedcache.Cache combined with threads. - -""" - -__module_id__ = "$Id$" - -# -# Import system modules -# -import Queue -import sys -import shove -import threading - -# -# Import local modules -# -import cache - -# -# Module -# - -MAX_THREADS=5 -OUTPUT_DIR='/tmp/feedcache_example' - - -def main(urls=[]): - - if not urls: - print 'Specify the URLs to a few RSS or Atom feeds on the command line.' - return - - # Decide how many threads to start - num_threads = min(len(urls), MAX_THREADS) - - # Add the URLs to a queue - url_queue = Queue.Queue() - for url in urls: - url_queue.put(url) - - # Add poison pills to the url queue to cause - # the worker threads to break out of their loops - for i in range(num_threads): - url_queue.put(None) - - # Track the entries in the feeds being fetched - entry_queue = Queue.Queue() - - print 'Saving feed data to', OUTPUT_DIR - storage = shove.Shove('file://' + OUTPUT_DIR) - try: - - # Start a few worker threads - worker_threads = [] - for i in range(num_threads): - t = threading.Thread(target=fetch_urls, - args=(storage, url_queue, entry_queue,)) - worker_threads.append(t) - t.setDaemon(True) - t.start() - - # Start a thread to print the results - printer_thread = threading.Thread(target=print_entries, args=(entry_queue,)) - printer_thread.setDaemon(True) - printer_thread.start() - - # Wait for all of the URLs to be processed - url_queue.join() - - # Wait for the worker threads to finish - for t in worker_threads: - t.join() - - # Poison the print thread and wait for it to exit - entry_queue.put((None,None)) - entry_queue.join() - printer_thread.join() - - finally: - storage.close() - return - - -def fetch_urls(storage, input_queue, output_queue): - """Thread target for fetching feed data. - """ - c = cache.Cache(storage) - - while True: - next_url = input_queue.get() - if next_url is None: # None causes thread to exit - input_queue.task_done() - break - - feed_data = c.fetch(next_url) - for entry in feed_data.entries: - output_queue.put( (feed_data.feed, entry) ) - input_queue.task_done() - return - - -def print_entries(input_queue): - """Thread target for printing the contents of the feeds. - """ - while True: - feed, entry = input_queue.get() - if feed is None: # None causes thread to exist - input_queue.task_done() - break - - print '%s: %s' % (feed.title, entry.title) - input_queue.task_done() - return - - -if __name__ == '__main__': - main(sys.argv[1:]) - diff --git a/lib/feedcache/test_cache.py b/lib/feedcache/test_cache.py deleted file mode 100644 index 2c1ac096..00000000 --- a/lib/feedcache/test_cache.py +++ /dev/null @@ -1,323 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Doug Hellmann. -# -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and -# its documentation for any purpose and without fee is hereby -# granted, provided that the above copyright notice appear in all -# copies and that both that copyright notice and this permission -# notice appear in supporting documentation, and that the name of Doug -# Hellmann not be used in advertising or publicity pertaining to -# distribution of the software without specific, written prior -# permission. -# -# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR -# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# - -"""Unittests for feedcache.cache - -""" - -__module_id__ = "$Id$" - -import logging -logging.basicConfig(level=logging.DEBUG, - format='%(asctime)s %(levelname)-8s %(name)s %(message)s', - ) -logger = logging.getLogger('feedcache.test_cache') - -# -# Import system modules -# -import copy -import time -import unittest -import UserDict - -# -# Import local modules -# -import cache -from test_server import HTTPTestBase, TestHTTPServer - -# -# Module -# - - -class CacheTestBase(HTTPTestBase): - - CACHE_TTL = 30 - - def setUp(self): - HTTPTestBase.setUp(self) - - self.storage = self.getStorage() - self.cache = cache.Cache(self.storage, - timeToLiveSeconds=self.CACHE_TTL, - userAgent='feedcache.test', - ) - return - - def getStorage(self): - "Return a cache storage for the test." - return {} - - -class CacheTest(CacheTestBase): - - CACHE_TTL = 30 - - def getServer(self): - "These tests do not want to use the ETag or If-Modified-Since headers" - return TestHTTPServer(applyModifiedHeaders=False) - - def testRetrieveNotInCache(self): - # Retrieve data not already in the cache. - feed_data = self.cache.fetch(self.TEST_URL) - self.failUnless(feed_data) - self.failUnlessEqual(feed_data.feed.title, 'CacheTest test data') - return - - def testRetrieveIsInCache(self): - # Retrieve data which is alread in the cache, - # and verify that the second copy is identitical - # to the first. - - # First fetch - feed_data = self.cache.fetch(self.TEST_URL) - - # Second fetch - feed_data2 = self.cache.fetch(self.TEST_URL) - - # Since it is the in-memory storage, we should have the - # exact same object. - self.failUnless(feed_data is feed_data2) - return - - def testExpireDataInCache(self): - # Retrieve data which is in the cache but which - # has expired and verify that the second copy - # is different from the first. - - # First fetch - feed_data = self.cache.fetch(self.TEST_URL) - - # Change the timeout and sleep to move the clock - self.cache.time_to_live = 0 - time.sleep(1) - - # Second fetch - feed_data2 = self.cache.fetch(self.TEST_URL) - - # Since we reparsed, the cache response should be different. - self.failIf(feed_data is feed_data2) - return - - def testForceUpdate(self): - # Force cache to retrieve data which is alread in the cache, - # and verify that the new data is different. - - # Pre-populate the storage with bad data - self.cache.storage[self.TEST_URL] = (time.time() + 100, self.id()) - - # Fetch the data - feed_data = self.cache.fetch(self.TEST_URL, force_update=True) - - self.failIfEqual(feed_data, self.id()) - return - - def testOfflineMode(self): - # Retrieve data which is alread in the cache, - # whether it is expired or not. - - # Pre-populate the storage with data - self.cache.storage[self.TEST_URL] = (0, self.id()) - - # Fetch it - feed_data = self.cache.fetch(self.TEST_URL, offline=True) - - self.failUnlessEqual(feed_data, self.id()) - return - - def testUnicodeURL(self): - # Pass in a URL which is unicode - - url = unicode(self.TEST_URL) - feed_data = self.cache.fetch(url) - - storage = self.cache.storage - key = unicode(self.TEST_URL).encode('UTF-8') - - # Verify that the storage has a key - self.failUnless(key in storage) - - # Now pull the data from the storage directly - storage_timeout, storage_data = self.cache.storage.get(key) - self.failUnlessEqual(feed_data, storage_data) - return - - -class SingleWriteMemoryStorage(UserDict.UserDict): - """Cache storage which only allows the cache value - for a URL to be updated one time. - """ - - def __setitem__(self, url, data): - if url in self.keys(): - modified, existing = self[url] - # Allow the modified time to change, - # but not the feed content. - if data[1] != existing: - raise AssertionError('Trying to update cache for %s to %s' \ - % (url, data)) - UserDict.UserDict.__setitem__(self, url, data) - return - - -class CacheConditionalGETTest(CacheTestBase): - - CACHE_TTL = 0 - - def getStorage(self): - return SingleWriteMemoryStorage() - - def testFetchOnceForEtag(self): - # Fetch data which has a valid ETag value, and verify - # that while we hit the server twice the response - # codes cause us to use the same data. - - # First fetch populates the cache - response1 = self.cache.fetch(self.TEST_URL) - self.failUnlessEqual(response1.feed.title, 'CacheTest test data') - - # Remove the modified setting from the cache so we know - # the next time we check the etag will be used - # to check for updates. Since we are using an in-memory - # cache, modifying response1 updates the cache storage - # directly. - response1['modified'] = None - - # This should result in a 304 status, and no data from - # the server. That means the cache won't try to - # update the storage, so our SingleWriteMemoryStorage - # should not raise and we should have the same - # response object. - response2 = self.cache.fetch(self.TEST_URL) - self.failUnless(response1 is response2) - - # Should have hit the server twice - self.failUnlessEqual(self.server.getNumRequests(), 2) - return - - def testFetchOnceForModifiedTime(self): - # Fetch data which has a valid Last-Modified value, and verify - # that while we hit the server twice the response - # codes cause us to use the same data. - - # First fetch populates the cache - response1 = self.cache.fetch(self.TEST_URL) - self.failUnlessEqual(response1.feed.title, 'CacheTest test data') - - # Remove the etag setting from the cache so we know - # the next time we check the modified time will be used - # to check for updates. Since we are using an in-memory - # cache, modifying response1 updates the cache storage - # directly. - response1['etag'] = None - - # This should result in a 304 status, and no data from - # the server. That means the cache won't try to - # update the storage, so our SingleWriteMemoryStorage - # should not raise and we should have the same - # response object. - response2 = self.cache.fetch(self.TEST_URL) - self.failUnless(response1 is response2) - - # Should have hit the server twice - self.failUnlessEqual(self.server.getNumRequests(), 2) - return - - -class CacheRedirectHandlingTest(CacheTestBase): - - def _test(self, response): - # Set up the server to redirect requests, - # then verify that the cache is not updated - # for the original or new URL and that the - # redirect status is fed back to us with - # the fetched data. - - self.server.setResponse(response, '/redirected') - - response1 = self.cache.fetch(self.TEST_URL) - - # The response should include the status code we set - self.failUnlessEqual(response1.get('status'), response) - - # The response should include the new URL, too - self.failUnlessEqual(response1.href, self.TEST_URL + 'redirected') - - # The response should not have been cached under either URL - self.failIf(self.TEST_URL in self.storage) - self.failIf(self.TEST_URL + 'redirected' in self.storage) - return - - def test301(self): - self._test(301) - - def test302(self): - self._test(302) - - def test303(self): - self._test(303) - - def test307(self): - self._test(307) - - -class CachePurgeTest(CacheTestBase): - - def testPurgeAll(self): - # Remove everything from the cache - - self.cache.fetch(self.TEST_URL) - self.failUnless(self.storage.keys(), - 'Have no data in the cache storage') - - self.cache.purge(None) - - self.failIf(self.storage.keys(), - 'Still have data in the cache storage') - return - - def testPurgeByAge(self): - # Remove old content from the cache - - self.cache.fetch(self.TEST_URL) - self.failUnless(self.storage.keys(), - 'have no data in the cache storage') - - time.sleep(1) - - remains = (time.time(), copy.deepcopy(self.storage[self.TEST_URL][1])) - self.storage['http://this.should.remain/'] = remains - - self.cache.purge(1) - - self.failUnlessEqual(self.storage.keys(), - ['http://this.should.remain/']) - return - - -if __name__ == '__main__': - unittest.main() diff --git a/lib/feedcache/test_cachestoragelock.py b/lib/feedcache/test_cachestoragelock.py deleted file mode 100644 index 741a39ab..00000000 --- a/lib/feedcache/test_cachestoragelock.py +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Doug Hellmann. -# -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and -# its documentation for any purpose and without fee is hereby -# granted, provided that the above copyright notice appear in all -# copies and that both that copyright notice and this permission -# notice appear in supporting documentation, and that the name of Doug -# Hellmann not be used in advertising or publicity pertaining to -# distribution of the software without specific, written prior -# permission. -# -# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR -# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# - -"""Tests for shelflock. - -""" - -__module_id__ = "$Id$" - -# -# Import system modules -# -import os -import shelve -import tempfile -import threading -import unittest - -# -# Import local modules -# -from cache import Cache -from cachestoragelock import CacheStorageLock -from test_server import HTTPTestBase - -# -# Module -# - -class CacheShelveTest(HTTPTestBase): - - def setUp(self): - HTTPTestBase.setUp(self) - handle, self.shelve_filename = tempfile.mkstemp('.shelve') - os.close(handle) # we just want the file name, so close the open handle - os.unlink(self.shelve_filename) # remove the empty file - return - - def tearDown(self): - try: - os.unlink(self.shelve_filename) - except AttributeError: - pass - HTTPTestBase.tearDown(self) - return - - def test(self): - storage = shelve.open(self.shelve_filename) - locking_storage = CacheStorageLock(storage) - try: - fc = Cache(locking_storage) - - # First fetch the data through the cache - parsed_data = fc.fetch(self.TEST_URL) - self.failUnlessEqual(parsed_data.feed.title, 'CacheTest test data') - - # Now retrieve the same data directly from the shelf - modified, shelved_data = storage[self.TEST_URL] - - # The data should be the same - self.failUnlessEqual(parsed_data, shelved_data) - finally: - storage.close() - return - - -if __name__ == '__main__': - unittest.main() diff --git a/lib/feedcache/test_server.py b/lib/feedcache/test_server.py deleted file mode 100644 index f48be105..00000000 --- a/lib/feedcache/test_server.py +++ /dev/null @@ -1,241 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Doug Hellmann. -# -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and -# its documentation for any purpose and without fee is hereby -# granted, provided that the above copyright notice appear in all -# copies and that both that copyright notice and this permission -# notice appear in supporting documentation, and that the name of Doug -# Hellmann not be used in advertising or publicity pertaining to -# distribution of the software without specific, written prior -# permission. -# -# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR -# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# - -"""Simple HTTP server for testing the feed cache. - -""" - -__module_id__ = "$Id$" - -# -# Import system modules -# -import BaseHTTPServer -import logging -import md5 -import threading -import time -import unittest -import urllib - -# -# Import local modules -# - - -# -# Module -# -logger = logging.getLogger('feedcache.test_server') - - -def make_etag(data): - """Given a string containing data to be returned to the client, - compute an ETag value for the data. - """ - _md5 = md5.new() - _md5.update(data) - return _md5.hexdigest() - - -class TestHTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler): - "HTTP request handler which serves the same feed data every time." - - FEED_DATA = """ - - - CacheTest test data - - - http://localhost/feedcache/ - 2006-10-14T11:00:36Z - - single test entry - - 2006-10-14T11:00:36Z - - author goes here - authoremail@example.com - - http://www.example.com/ - description goes here - - - -""" - - # The data does not change, so save the ETag and modified times - # as class attributes. - ETAG = make_etag(FEED_DATA) - # Calculated using email.utils.formatdate(usegmt=True) - MODIFIED_TIME = 'Sun, 08 Apr 2012 20:16:48 GMT' - - def do_GET(self): - "Handle GET requests." - logger.debug('GET %s', self.path) - - if self.path == '/shutdown': - # Shortcut to handle stopping the server - logger.debug('Stopping server') - self.server.stop() - self.send_response(200) - - else: - # Record the request for tests that count them - self.server.requests.append(self.path) - # Process the request - logger.debug('pre-defined response code: %d', self.server.response) - handler_method_name = 'do_GET_%d' % self.server.response - handler_method = getattr(self, handler_method_name) - handler_method() - return - - def do_GET_3xx(self): - "Handle redirects" - if self.path.endswith('/redirected'): - logger.debug('already redirected') - # We have already redirected, so return the data. - return self.do_GET_200() - new_path = self.server.new_path - logger.debug('redirecting to %s', new_path) - self.send_response(self.server.response) - self.send_header('Location', new_path) - return - - do_GET_301 = do_GET_3xx - do_GET_302 = do_GET_3xx - do_GET_303 = do_GET_3xx - do_GET_307 = do_GET_3xx - - def do_GET_200(self): - logger.debug('Etag: %s' % self.ETAG) - logger.debug('Last-Modified: %s' % self.MODIFIED_TIME) - - incoming_etag = self.headers.get('If-None-Match', None) - logger.debug('Incoming ETag: "%s"' % incoming_etag) - - incoming_modified = self.headers.get('If-Modified-Since', None) - logger.debug('Incoming If-Modified-Since: %s' % incoming_modified) - - send_data = True - - # Does the client have the same version of the data we have? - if self.server.apply_modified_headers: - if incoming_etag == self.ETAG: - logger.debug('Response 304, etag') - self.send_response(304) - send_data = False - - elif incoming_modified == self.MODIFIED_TIME: - logger.debug('Response 304, modified time') - self.send_response(304) - send_data = False - - # Now optionally send the data, if the client needs it - if send_data: - logger.debug('Response 200') - self.send_response(200) - - self.send_header('Content-Type', 'application/atom+xml') - - logger.debug('Outgoing Etag: %s' % self.ETAG) - self.send_header('ETag', self.ETAG) - - logger.debug('Outgoing modified time: %s' % self.MODIFIED_TIME) - self.send_header('Last-Modified', self.MODIFIED_TIME) - - self.end_headers() - - logger.debug('Sending data') - self.wfile.write(self.FEED_DATA) - return - - -class TestHTTPServer(BaseHTTPServer.HTTPServer): - """HTTP Server which counts the number of requests made - and can stop based on client instructions. - """ - - def __init__(self, applyModifiedHeaders=True, handler=TestHTTPHandler): - self.apply_modified_headers = applyModifiedHeaders - self.keep_serving = True - self.requests = [] - self.setResponse(200) - BaseHTTPServer.HTTPServer.__init__(self, ('', 9999), handler) - return - - def setResponse(self, newResponse, newPath=None): - """Sets the response code to use for future requests, and a new - path to be used as a redirect target, if necessary. - """ - self.response = newResponse - self.new_path = newPath - return - - def getNumRequests(self): - "Return the number of requests which have been made on the server." - return len(self.requests) - - def stop(self): - "Stop serving requests, after the next request." - self.keep_serving = False - return - - def serve_forever(self): - "Main loop for server" - while self.keep_serving: - self.handle_request() - logger.debug('exiting') - return - - -class HTTPTestBase(unittest.TestCase): - "Base class for tests that use a TestHTTPServer" - - TEST_URL = 'http://localhost:9999/' - - CACHE_TTL = 0 - - def setUp(self): - self.server = self.getServer() - self.server_thread = threading.Thread(target=self.server.serve_forever) - # set daemon flag so the tests don't hang if cleanup fails - self.server_thread.setDaemon(True) - self.server_thread.start() - return - - def getServer(self): - "Return a web server for the test." - s = TestHTTPServer() - s.setResponse(200) - return s - - def tearDown(self): - # Stop the server thread - urllib.urlretrieve(self.TEST_URL + 'shutdown') - time.sleep(1) - self.server.server_close() - self.server_thread.join() - return diff --git a/lib/feedcache/test_shovefilesystem.py b/lib/feedcache/test_shovefilesystem.py deleted file mode 100644 index 1a48dead..00000000 --- a/lib/feedcache/test_shovefilesystem.py +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Doug Hellmann. -# -# -# All Rights Reserved -# -# Permission to use, copy, modify, and distribute this software and -# its documentation for any purpose and without fee is hereby -# granted, provided that the above copyright notice appear in all -# copies and that both that copyright notice and this permission -# notice appear in supporting documentation, and that the name of Doug -# Hellmann not be used in advertising or publicity pertaining to -# distribution of the software without specific, written prior -# permission. -# -# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN -# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR -# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS -# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, -# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -# - -"""Tests with shove filesystem storage. - -""" - -__module_id__ = "$Id$" - -# -# Import system modules -# -import os -import shove -import tempfile -import threading -import unittest - -# -# Import local modules -# -from cache import Cache -from test_server import HTTPTestBase - -# -# Module -# - -class CacheShoveTest(HTTPTestBase): - - def setUp(self): - HTTPTestBase.setUp(self) - self.shove_dirname = tempfile.mkdtemp('shove') - return - - def tearDown(self): - try: - os.system('rm -rf %s' % self.storage_dirname) - except AttributeError: - pass - HTTPTestBase.tearDown(self) - return - - def test(self): - # First fetch the data through the cache - storage = shove.Shove('file://' + self.shove_dirname) - try: - fc = Cache(storage) - parsed_data = fc.fetch(self.TEST_URL) - self.failUnlessEqual(parsed_data.feed.title, 'CacheTest test data') - finally: - storage.close() - - # Now retrieve the same data directly from the shelf - storage = shove.Shove('file://' + self.shove_dirname) - try: - modified, shelved_data = storage[self.TEST_URL] - finally: - storage.close() - - # The data should be the same - self.failUnlessEqual(parsed_data, shelved_data) - return - - -if __name__ == '__main__': - unittest.main() diff --git a/lib/feedparser/feedparser.egg-info/PKG-INFO b/lib/feedparser/feedparser.egg-info/PKG-INFO deleted file mode 100644 index 1765e869..00000000 --- a/lib/feedparser/feedparser.egg-info/PKG-INFO +++ /dev/null @@ -1,30 +0,0 @@ -Metadata-Version: 1.1 -Name: feedparser -Version: 5.1.3 -Summary: Universal feed parser, handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds -Home-page: http://code.google.com/p/feedparser/ -Author: Kurt McKee -Author-email: contactme@kurtmckee.org -License: UNKNOWN -Download-URL: http://code.google.com/p/feedparser/ -Description: UNKNOWN -Keywords: atom,cdf,feed,parser,rdf,rss -Platform: POSIX -Platform: Windows -Classifier: Development Status :: 5 - Production/Stable -Classifier: Intended Audience :: Developers -Classifier: License :: OSI Approved -Classifier: Operating System :: OS Independent -Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 2 -Classifier: Programming Language :: Python :: 2.4 -Classifier: Programming Language :: Python :: 2.5 -Classifier: Programming Language :: Python :: 2.6 -Classifier: Programming Language :: Python :: 2.7 -Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.0 -Classifier: Programming Language :: Python :: 3.1 -Classifier: Programming Language :: Python :: 3.2 -Classifier: Programming Language :: Python :: 3.3 -Classifier: Topic :: Software Development :: Libraries :: Python Modules -Classifier: Topic :: Text Processing :: Markup :: XML diff --git a/lib/feedparser/feedparser.egg-info/SOURCES.txt b/lib/feedparser/feedparser.egg-info/SOURCES.txt deleted file mode 100644 index 29533362..00000000 --- a/lib/feedparser/feedparser.egg-info/SOURCES.txt +++ /dev/null @@ -1,2480 +0,0 @@ -LICENSE -MANIFEST.in -NEWS -README -setup.py -docs/add_custom_css.py -docs/advanced.rst -docs/annotated-atom03.rst -docs/annotated-atom10.rst -docs/annotated-examples.rst -docs/annotated-rss10.rst -docs/annotated-rss20-dc.rst -docs/annotated-rss20.rst -docs/atom-detail.rst -docs/basic-existence.rst -docs/basic.rst -docs/bozo.rst -docs/changes-26.rst -docs/changes-27.rst -docs/changes-30.rst -docs/changes-301.rst -docs/changes-31.rst -docs/changes-32.rst -docs/changes-33.rst -docs/changes-40.rst -docs/changes-401.rst -docs/changes-402.rst -docs/changes-41.rst -docs/changes-42.rst -docs/changes-early.rst -docs/character-encoding.rst -docs/common-atom-elements.rst -docs/common-rss-elements.rst -docs/conf.py -docs/content-normalization.rst -docs/date-parsing.rst -docs/history.rst -docs/html-sanitization.rst -docs/http-authentication.rst -docs/http-etag.rst -docs/http-other.rst -docs/http-redirect.rst -docs/http-useragent.rst -docs/http.rst -docs/index.rst -docs/introduction.rst -docs/license.rst -docs/microformats.rst -docs/namespace-handling.rst -docs/reference-bozo.rst -docs/reference-bozo_exception.rst -docs/reference-encoding.rst -docs/reference-entry-author.rst -docs/reference-entry-author_detail.rst -docs/reference-entry-comments.rst -docs/reference-entry-content.rst -docs/reference-entry-contributors.rst -docs/reference-entry-created.rst -docs/reference-entry-created_parsed.rst -docs/reference-entry-enclosures.rst -docs/reference-entry-expired.rst -docs/reference-entry-expired_parsed.rst -docs/reference-entry-id.rst -docs/reference-entry-license.rst -docs/reference-entry-link.rst -docs/reference-entry-links.rst -docs/reference-entry-published.rst -docs/reference-entry-published_parsed.rst -docs/reference-entry-publisher.rst -docs/reference-entry-publisher_detail.rst -docs/reference-entry-source.rst -docs/reference-entry-summary.rst -docs/reference-entry-summary_detail.rst -docs/reference-entry-tags.rst -docs/reference-entry-title.rst -docs/reference-entry-title_detail.rst -docs/reference-entry-updated.rst -docs/reference-entry-updated_parsed.rst -docs/reference-entry-vcard.rst -docs/reference-entry-xfn.rst -docs/reference-entry.rst -docs/reference-etag.rst -docs/reference-feed-author.rst -docs/reference-feed-author_detail.rst -docs/reference-feed-cloud.rst -docs/reference-feed-contributors.rst -docs/reference-feed-docs.rst -docs/reference-feed-errorreportsto.rst -docs/reference-feed-generator.rst -docs/reference-feed-generator_detail.rst -docs/reference-feed-icon.rst -docs/reference-feed-id.rst -docs/reference-feed-image.rst -docs/reference-feed-info-detail.rst -docs/reference-feed-info.rst -docs/reference-feed-language.rst -docs/reference-feed-license.rst -docs/reference-feed-link.rst -docs/reference-feed-links.rst -docs/reference-feed-logo.rst -docs/reference-feed-published.rst -docs/reference-feed-published_parsed.rst -docs/reference-feed-publisher.rst -docs/reference-feed-publisher_detail.rst -docs/reference-feed-rights.rst -docs/reference-feed-rights_detail.rst -docs/reference-feed-subtitle.rst -docs/reference-feed-subtitle_detail.rst -docs/reference-feed-tags.rst -docs/reference-feed-textinput.rst -docs/reference-feed-title.rst -docs/reference-feed-title_detail.rst -docs/reference-feed-ttl.rst -docs/reference-feed-updated.rst -docs/reference-feed-updated_parsed.rst -docs/reference-feed.rst -docs/reference-headers.rst -docs/reference-href.rst -docs/reference-modified.rst -docs/reference-namespaces.rst -docs/reference-status.rst -docs/reference-version.rst -docs/reference.rst -docs/resolving-relative-links.rst -docs/uncommon-atom.rst -docs/uncommon-rss.rst -docs/version-detection.rst -docs/_static/feedparser.css -feedparser/feedparser.py -feedparser/feedparsertest.py -feedparser/sgmllib3.py -feedparser/feedparser.egg-info/PKG-INFO -feedparser/feedparser.egg-info/SOURCES.txt -feedparser/feedparser.egg-info/dependency_links.txt -feedparser/feedparser.egg-info/top_level.txt -feedparser/tests/compression/deflate-no-headers.z -feedparser/tests/compression/deflate-not-compressed.z -feedparser/tests/compression/deflate.z -feedparser/tests/compression/gzip-not-compressed.gz -feedparser/tests/compression/gzip-struct-error.gz -feedparser/tests/compression/gzip.gz -feedparser/tests/compression/sample.xml -feedparser/tests/encoding/big5.xml -feedparser/tests/encoding/bozo_bogus_encoding.xml -feedparser/tests/encoding/bozo_double-encoded-html.xml -feedparser/tests/encoding/bozo_encoding_mismatch_crash.xml -feedparser/tests/encoding/bozo_http_i18n.xml -feedparser/tests/encoding/bozo_http_text_plain.xml -feedparser/tests/encoding/bozo_http_text_plain_charset.xml -feedparser/tests/encoding/bozo_invalid-bytes-with-bom.xml -feedparser/tests/encoding/bozo_linenoise.xml -feedparser/tests/encoding/csucs4.xml -feedparser/tests/encoding/csunicode.xml -feedparser/tests/encoding/demoronize-1.xml -feedparser/tests/encoding/demoronize-2.xml -feedparser/tests/encoding/demoronize-3.xml -feedparser/tests/encoding/double-encoded-html.xml -feedparser/tests/encoding/encoding_attribute_crash.xml -feedparser/tests/encoding/encoding_attribute_crash_2.xml -feedparser/tests/encoding/euc-kr-attribute.xml -feedparser/tests/encoding/euc-kr-item.xml -feedparser/tests/encoding/euc-kr.xml -feedparser/tests/encoding/http_application_atom_xml_charset.xml -feedparser/tests/encoding/http_application_atom_xml_charset_overrides_encoding.xml -feedparser/tests/encoding/http_application_atom_xml_default.xml -feedparser/tests/encoding/http_application_atom_xml_encoding.xml -feedparser/tests/encoding/http_application_atom_xml_gb2312_charset.xml -feedparser/tests/encoding/http_application_atom_xml_gb2312_charset_overrides_encoding.xml -feedparser/tests/encoding/http_application_atom_xml_gb2312_encoding.xml -feedparser/tests/encoding/http_application_rss_xml_charset.xml -feedparser/tests/encoding/http_application_rss_xml_charset_overrides_encoding.xml -feedparser/tests/encoding/http_application_rss_xml_default.xml -feedparser/tests/encoding/http_application_rss_xml_encoding.xml -feedparser/tests/encoding/http_application_xml_charset.xml -feedparser/tests/encoding/http_application_xml_charset_overrides_encoding.xml -feedparser/tests/encoding/http_application_xml_default.xml -feedparser/tests/encoding/http_application_xml_dtd_charset.xml -feedparser/tests/encoding/http_application_xml_dtd_charset_overrides_encoding.xml -feedparser/tests/encoding/http_application_xml_dtd_default.xml -feedparser/tests/encoding/http_application_xml_dtd_encoding.xml -feedparser/tests/encoding/http_application_xml_encoding.xml -feedparser/tests/encoding/http_application_xml_epe_charset.xml -feedparser/tests/encoding/http_application_xml_epe_charset_overrides_encoding.xml -feedparser/tests/encoding/http_application_xml_epe_default.xml -feedparser/tests/encoding/http_application_xml_epe_encoding.xml -feedparser/tests/encoding/http_encoding_attribute_crash.xml -feedparser/tests/encoding/http_i18n.xml -feedparser/tests/encoding/http_text_atom_xml_charset.xml -feedparser/tests/encoding/http_text_atom_xml_charset_overrides_encoding.xml -feedparser/tests/encoding/http_text_atom_xml_default.xml -feedparser/tests/encoding/http_text_atom_xml_encoding.xml -feedparser/tests/encoding/http_text_rss_xml_charset.xml -feedparser/tests/encoding/http_text_rss_xml_charset_overrides_encoding.xml -feedparser/tests/encoding/http_text_rss_xml_default.xml -feedparser/tests/encoding/http_text_rss_xml_encoding.xml -feedparser/tests/encoding/http_text_xml_bogus_charset.xml -feedparser/tests/encoding/http_text_xml_bogus_param.xml -feedparser/tests/encoding/http_text_xml_charset.xml -feedparser/tests/encoding/http_text_xml_charset_2.xml -feedparser/tests/encoding/http_text_xml_charset_overrides_encoding.xml -feedparser/tests/encoding/http_text_xml_charset_overrides_encoding_2.xml -feedparser/tests/encoding/http_text_xml_default.xml -feedparser/tests/encoding/http_text_xml_epe_charset.xml -feedparser/tests/encoding/http_text_xml_epe_charset_overrides_encoding.xml -feedparser/tests/encoding/http_text_xml_epe_default.xml -feedparser/tests/encoding/http_text_xml_epe_encoding.xml -feedparser/tests/encoding/http_text_xml_qs.xml -feedparser/tests/encoding/iso-10646-ucs-2.xml -feedparser/tests/encoding/iso-10646-ucs-4.xml -feedparser/tests/encoding/no_content_type_default.xml -feedparser/tests/encoding/no_content_type_encoding.xml -feedparser/tests/encoding/u16.xml -feedparser/tests/encoding/ucs-2.xml -feedparser/tests/encoding/ucs-4.xml -feedparser/tests/encoding/utf-16be-autodetect.xml -feedparser/tests/encoding/utf-16be-bom.xml -feedparser/tests/encoding/utf-16be.xml -feedparser/tests/encoding/utf-16le-autodetect.xml -feedparser/tests/encoding/utf-16le-bom.xml -feedparser/tests/encoding/utf-16le.xml -feedparser/tests/encoding/utf-32be-autodetect.xml -feedparser/tests/encoding/utf-32be-bom.xml -feedparser/tests/encoding/utf-32be.xml -feedparser/tests/encoding/utf-32le-autodetect.xml -feedparser/tests/encoding/utf-32le-bom.xml -feedparser/tests/encoding/utf-32le.xml -feedparser/tests/encoding/utf-8-bom.xml -feedparser/tests/encoding/utf16.xml -feedparser/tests/encoding/utf_16.xml -feedparser/tests/encoding/utf_32.xml -feedparser/tests/encoding/x80_437.xml -feedparser/tests/encoding/x80_850.xml -feedparser/tests/encoding/x80_852.xml -feedparser/tests/encoding/x80_855.xml -feedparser/tests/encoding/x80_857.xml -feedparser/tests/encoding/x80_860.xml -feedparser/tests/encoding/x80_861.xml -feedparser/tests/encoding/x80_862.xml -feedparser/tests/encoding/x80_863.xml -feedparser/tests/encoding/x80_865.xml -feedparser/tests/encoding/x80_866.xml -feedparser/tests/encoding/x80_cp037.xml -feedparser/tests/encoding/x80_cp1125.xml -feedparser/tests/encoding/x80_cp1250.xml -feedparser/tests/encoding/x80_cp1251.xml -feedparser/tests/encoding/x80_cp1252.xml -feedparser/tests/encoding/x80_cp1253.xml -feedparser/tests/encoding/x80_cp1254.xml -feedparser/tests/encoding/x80_cp1255.xml -feedparser/tests/encoding/x80_cp1256.xml -feedparser/tests/encoding/x80_cp1257.xml -feedparser/tests/encoding/x80_cp1258.xml -feedparser/tests/encoding/x80_cp437.xml -feedparser/tests/encoding/x80_cp500.xml -feedparser/tests/encoding/x80_cp737.xml -feedparser/tests/encoding/x80_cp775.xml -feedparser/tests/encoding/x80_cp850.xml -feedparser/tests/encoding/x80_cp852.xml -feedparser/tests/encoding/x80_cp855.xml -feedparser/tests/encoding/x80_cp856.xml -feedparser/tests/encoding/x80_cp857.xml -feedparser/tests/encoding/x80_cp860.xml -feedparser/tests/encoding/x80_cp861.xml -feedparser/tests/encoding/x80_cp862.xml -feedparser/tests/encoding/x80_cp863.xml -feedparser/tests/encoding/x80_cp864.xml -feedparser/tests/encoding/x80_cp865.xml -feedparser/tests/encoding/x80_cp866.xml -feedparser/tests/encoding/x80_cp874.xml -feedparser/tests/encoding/x80_cp875.xml -feedparser/tests/encoding/x80_cp_is.xml -feedparser/tests/encoding/x80_csibm037.xml -feedparser/tests/encoding/x80_csibm500.xml -feedparser/tests/encoding/x80_csibm855.xml -feedparser/tests/encoding/x80_csibm857.xml -feedparser/tests/encoding/x80_csibm860.xml -feedparser/tests/encoding/x80_csibm861.xml -feedparser/tests/encoding/x80_csibm863.xml -feedparser/tests/encoding/x80_csibm864.xml -feedparser/tests/encoding/x80_csibm865.xml -feedparser/tests/encoding/x80_csibm866.xml -feedparser/tests/encoding/x80_cskoi8r.xml -feedparser/tests/encoding/x80_csmacintosh.xml -feedparser/tests/encoding/x80_cspc775baltic.xml -feedparser/tests/encoding/x80_cspc850multilingual.xml -feedparser/tests/encoding/x80_cspc862latinhebrew.xml -feedparser/tests/encoding/x80_cspc8codepage437.xml -feedparser/tests/encoding/x80_cspcp852.xml -feedparser/tests/encoding/x80_dbcs.xml -feedparser/tests/encoding/x80_ebcdic-cp-be.xml -feedparser/tests/encoding/x80_ebcdic-cp-ca.xml -feedparser/tests/encoding/x80_ebcdic-cp-ch.xml -feedparser/tests/encoding/x80_ebcdic-cp-nl.xml -feedparser/tests/encoding/x80_ebcdic-cp-us.xml -feedparser/tests/encoding/x80_ebcdic-cp-wt.xml -feedparser/tests/encoding/x80_ebcdic_cp_be.xml -feedparser/tests/encoding/x80_ebcdic_cp_ca.xml -feedparser/tests/encoding/x80_ebcdic_cp_ch.xml -feedparser/tests/encoding/x80_ebcdic_cp_nl.xml -feedparser/tests/encoding/x80_ebcdic_cp_us.xml -feedparser/tests/encoding/x80_ebcdic_cp_wt.xml -feedparser/tests/encoding/x80_ibm037.xml -feedparser/tests/encoding/x80_ibm039.xml -feedparser/tests/encoding/x80_ibm1140.xml -feedparser/tests/encoding/x80_ibm437.xml -feedparser/tests/encoding/x80_ibm500.xml -feedparser/tests/encoding/x80_ibm775.xml -feedparser/tests/encoding/x80_ibm850.xml -feedparser/tests/encoding/x80_ibm852.xml -feedparser/tests/encoding/x80_ibm855.xml -feedparser/tests/encoding/x80_ibm857.xml -feedparser/tests/encoding/x80_ibm860.xml -feedparser/tests/encoding/x80_ibm861.xml -feedparser/tests/encoding/x80_ibm862.xml -feedparser/tests/encoding/x80_ibm863.xml -feedparser/tests/encoding/x80_ibm864.xml -feedparser/tests/encoding/x80_ibm865.xml -feedparser/tests/encoding/x80_ibm866.xml -feedparser/tests/encoding/x80_koi8-r.xml -feedparser/tests/encoding/x80_koi8-t.xml -feedparser/tests/encoding/x80_koi8-u.xml -feedparser/tests/encoding/x80_mac-cyrillic.xml -feedparser/tests/encoding/x80_mac.xml -feedparser/tests/encoding/x80_maccentraleurope.xml -feedparser/tests/encoding/x80_maccyrillic.xml -feedparser/tests/encoding/x80_macgreek.xml -feedparser/tests/encoding/x80_maciceland.xml -feedparser/tests/encoding/x80_macintosh.xml -feedparser/tests/encoding/x80_maclatin2.xml -feedparser/tests/encoding/x80_macroman.xml -feedparser/tests/encoding/x80_macturkish.xml -feedparser/tests/encoding/x80_ms-ansi.xml -feedparser/tests/encoding/x80_ms-arab.xml -feedparser/tests/encoding/x80_ms-cyrl.xml -feedparser/tests/encoding/x80_ms-ee.xml -feedparser/tests/encoding/x80_ms-greek.xml -feedparser/tests/encoding/x80_ms-hebr.xml -feedparser/tests/encoding/x80_ms-turk.xml -feedparser/tests/encoding/x80_tcvn-5712.xml -feedparser/tests/encoding/x80_tcvn.xml -feedparser/tests/encoding/x80_tcvn5712-1.xml -feedparser/tests/encoding/x80_viscii.xml -feedparser/tests/encoding/x80_winbaltrim.xml -feedparser/tests/encoding/x80_windows-1250.xml -feedparser/tests/encoding/x80_windows-1251.xml -feedparser/tests/encoding/x80_windows-1252.xml -feedparser/tests/encoding/x80_windows-1253.xml -feedparser/tests/encoding/x80_windows-1254.xml -feedparser/tests/encoding/x80_windows-1255.xml -feedparser/tests/encoding/x80_windows-1256.xml -feedparser/tests/encoding/x80_windows-1257.xml -feedparser/tests/encoding/x80_windows-1258.xml -feedparser/tests/encoding/x80_windows_1250.xml -feedparser/tests/encoding/x80_windows_1251.xml -feedparser/tests/encoding/x80_windows_1252.xml -feedparser/tests/encoding/x80_windows_1253.xml -feedparser/tests/encoding/x80_windows_1254.xml -feedparser/tests/encoding/x80_windows_1255.xml -feedparser/tests/encoding/x80_windows_1256.xml -feedparser/tests/encoding/x80_windows_1257.xml -feedparser/tests/encoding/x80_windows_1258.xml -feedparser/tests/entities/160.xml -feedparser/tests/entities/732.xml -feedparser/tests/entities/8216.xml -feedparser/tests/entities/8217.xml -feedparser/tests/entities/8220.xml -feedparser/tests/entities/8221.xml -feedparser/tests/entities/9830.xml -feedparser/tests/entities/aacute.xml -feedparser/tests/entities/acirc.xml -feedparser/tests/entities/acute.xml -feedparser/tests/entities/aelig.xml -feedparser/tests/entities/agrave.xml -feedparser/tests/entities/alefsym.xml -feedparser/tests/entities/alpha.xml -feedparser/tests/entities/and.xml -feedparser/tests/entities/ang.xml -feedparser/tests/entities/aring.xml -feedparser/tests/entities/asymp.xml -feedparser/tests/entities/atilde.xml -feedparser/tests/entities/attr_amp.xml -feedparser/tests/entities/auml.xml -feedparser/tests/entities/bdquo.xml -feedparser/tests/entities/beta.xml -feedparser/tests/entities/brvbar.xml -feedparser/tests/entities/bull.xml -feedparser/tests/entities/cap.xml -feedparser/tests/entities/ccedil.xml -feedparser/tests/entities/cedil.xml -feedparser/tests/entities/cent.xml -feedparser/tests/entities/chi.xml -feedparser/tests/entities/circ.xml -feedparser/tests/entities/clubs.xml -feedparser/tests/entities/cong.xml -feedparser/tests/entities/copy.xml -feedparser/tests/entities/crarr.xml -feedparser/tests/entities/cup.xml -feedparser/tests/entities/curren.xml -feedparser/tests/entities/dagger.xml -feedparser/tests/entities/darr.xml -feedparser/tests/entities/deg.xml -feedparser/tests/entities/delta.xml -feedparser/tests/entities/diams.xml -feedparser/tests/entities/divide.xml -feedparser/tests/entities/doesnotexist.xml -feedparser/tests/entities/eacute.xml -feedparser/tests/entities/ecirc.xml -feedparser/tests/entities/egrave.xml -feedparser/tests/entities/empty.xml -feedparser/tests/entities/emsp.xml -feedparser/tests/entities/ensp.xml -feedparser/tests/entities/epsilon.xml -feedparser/tests/entities/equiv.xml -feedparser/tests/entities/eta.xml -feedparser/tests/entities/eth.xml -feedparser/tests/entities/euml.xml -feedparser/tests/entities/euro.xml -feedparser/tests/entities/exist.xml -feedparser/tests/entities/fnof.xml -feedparser/tests/entities/forall.xml -feedparser/tests/entities/frac12.xml -feedparser/tests/entities/frac14.xml -feedparser/tests/entities/frac34.xml -feedparser/tests/entities/frasl.xml -feedparser/tests/entities/gamma.xml -feedparser/tests/entities/ge.xml -feedparser/tests/entities/hArr.xml -feedparser/tests/entities/hearts.xml -feedparser/tests/entities/hellip.xml -feedparser/tests/entities/hex_entity_x_lowercase.xml -feedparser/tests/entities/hex_entity_x_uppercase.xml -feedparser/tests/entities/iacute.xml -feedparser/tests/entities/icirc.xml -feedparser/tests/entities/iexcl.xml -feedparser/tests/entities/igrave.xml -feedparser/tests/entities/image.xml -feedparser/tests/entities/infin.xml -feedparser/tests/entities/int.xml -feedparser/tests/entities/iota.xml -feedparser/tests/entities/iquest.xml -feedparser/tests/entities/isin.xml -feedparser/tests/entities/iuml.xml -feedparser/tests/entities/kappa.xml -feedparser/tests/entities/lArr.xml -feedparser/tests/entities/lambda.xml -feedparser/tests/entities/lang.xml -feedparser/tests/entities/laquo.xml -feedparser/tests/entities/lceil.xml -feedparser/tests/entities/ldquo.xml -feedparser/tests/entities/le.xml -feedparser/tests/entities/lfloor.xml -feedparser/tests/entities/lowast.xml -feedparser/tests/entities/loz.xml -feedparser/tests/entities/lrm.xml -feedparser/tests/entities/lsaquo.xml -feedparser/tests/entities/lsquo.xml -feedparser/tests/entities/macr.xml -feedparser/tests/entities/mdash.xml -feedparser/tests/entities/micro.xml -feedparser/tests/entities/middot.xml -feedparser/tests/entities/minus.xml -feedparser/tests/entities/mu.xml -feedparser/tests/entities/nabla.xml -feedparser/tests/entities/nbsp.xml -feedparser/tests/entities/ndash.xml -feedparser/tests/entities/ne.xml -feedparser/tests/entities/ni.xml -feedparser/tests/entities/not.xml -feedparser/tests/entities/notin.xml -feedparser/tests/entities/nsub.xml -feedparser/tests/entities/ntilde.xml -feedparser/tests/entities/nu.xml -feedparser/tests/entities/oacute.xml -feedparser/tests/entities/ocirc.xml -feedparser/tests/entities/oelig.xml -feedparser/tests/entities/ograve.xml -feedparser/tests/entities/oline.xml -feedparser/tests/entities/omega.xml -feedparser/tests/entities/omicron.xml -feedparser/tests/entities/oplus.xml -feedparser/tests/entities/or.xml -feedparser/tests/entities/ordf.xml -feedparser/tests/entities/ordm.xml -feedparser/tests/entities/oslash.xml -feedparser/tests/entities/otilde.xml -feedparser/tests/entities/otimes.xml -feedparser/tests/entities/ouml.xml -feedparser/tests/entities/para.xml -feedparser/tests/entities/part.xml -feedparser/tests/entities/permil.xml -feedparser/tests/entities/perp.xml -feedparser/tests/entities/phi.xml -feedparser/tests/entities/pi.xml -feedparser/tests/entities/piv.xml -feedparser/tests/entities/plusmn.xml -feedparser/tests/entities/pound.xml -feedparser/tests/entities/prime.xml -feedparser/tests/entities/prod.xml -feedparser/tests/entities/prop.xml -feedparser/tests/entities/psi.xml -feedparser/tests/entities/query_variable_entry.xml -feedparser/tests/entities/query_variable_feed.xml -feedparser/tests/entities/radic.xml -feedparser/tests/entities/rang.xml -feedparser/tests/entities/raquo.xml -feedparser/tests/entities/rarr.xml -feedparser/tests/entities/rceil.xml -feedparser/tests/entities/rdquo.xml -feedparser/tests/entities/real.xml -feedparser/tests/entities/reg.xml -feedparser/tests/entities/rfloor.xml -feedparser/tests/entities/rho.xml -feedparser/tests/entities/rlm.xml -feedparser/tests/entities/rsaquo.xml -feedparser/tests/entities/rsquo.xml -feedparser/tests/entities/sbquo.xml -feedparser/tests/entities/scaron.xml -feedparser/tests/entities/sdot.xml -feedparser/tests/entities/sect.xml -feedparser/tests/entities/shy.xml -feedparser/tests/entities/sigma.xml -feedparser/tests/entities/sigmaf.xml -feedparser/tests/entities/sim.xml -feedparser/tests/entities/spades.xml -feedparser/tests/entities/sub.xml -feedparser/tests/entities/sube.xml -feedparser/tests/entities/sum.xml -feedparser/tests/entities/sup.xml -feedparser/tests/entities/sup1.xml -feedparser/tests/entities/sup2.xml -feedparser/tests/entities/sup3.xml -feedparser/tests/entities/supe.xml -feedparser/tests/entities/szlig.xml -feedparser/tests/entities/tau.xml -feedparser/tests/entities/there4.xml -feedparser/tests/entities/theta.xml -feedparser/tests/entities/thetasym.xml -feedparser/tests/entities/thinsp.xml -feedparser/tests/entities/thorn.xml -feedparser/tests/entities/tilde.xml -feedparser/tests/entities/times.xml -feedparser/tests/entities/trade.xml -feedparser/tests/entities/uacute.xml -feedparser/tests/entities/uarr.xml -feedparser/tests/entities/ucirc.xml -feedparser/tests/entities/ugrave.xml -feedparser/tests/entities/uml.xml -feedparser/tests/entities/upper_AElig.xml -feedparser/tests/entities/upper_Aacute.xml -feedparser/tests/entities/upper_Acirc.xml -feedparser/tests/entities/upper_Agrave.xml -feedparser/tests/entities/upper_Alpha.xml -feedparser/tests/entities/upper_Aring.xml -feedparser/tests/entities/upper_Atilde.xml -feedparser/tests/entities/upper_Auml.xml -feedparser/tests/entities/upper_Beta.xml -feedparser/tests/entities/upper_Ccedil.xml -feedparser/tests/entities/upper_Chi.xml -feedparser/tests/entities/upper_Dagger.xml -feedparser/tests/entities/upper_Delta.xml -feedparser/tests/entities/upper_ETH.xml -feedparser/tests/entities/upper_Eacute.xml -feedparser/tests/entities/upper_Ecirc.xml -feedparser/tests/entities/upper_Egrave.xml -feedparser/tests/entities/upper_Epsilon.xml -feedparser/tests/entities/upper_Eta.xml -feedparser/tests/entities/upper_Euml.xml -feedparser/tests/entities/upper_Gamma.xml -feedparser/tests/entities/upper_Iacute.xml -feedparser/tests/entities/upper_Icirc.xml -feedparser/tests/entities/upper_Igrave.xml -feedparser/tests/entities/upper_Iota.xml -feedparser/tests/entities/upper_Iuml.xml -feedparser/tests/entities/upper_Kappa.xml -feedparser/tests/entities/upper_Lambda.xml -feedparser/tests/entities/upper_Mu.xml -feedparser/tests/entities/upper_Ntilde.xml -feedparser/tests/entities/upper_Nu.xml -feedparser/tests/entities/upper_OElig.xml -feedparser/tests/entities/upper_Oacute.xml -feedparser/tests/entities/upper_Ocirc.xml -feedparser/tests/entities/upper_Ograve.xml -feedparser/tests/entities/upper_Omega.xml -feedparser/tests/entities/upper_Omicron.xml -feedparser/tests/entities/upper_Oslash.xml -feedparser/tests/entities/upper_Otilde.xml -feedparser/tests/entities/upper_Ouml.xml -feedparser/tests/entities/upper_Phi.xml -feedparser/tests/entities/upper_Pi.xml -feedparser/tests/entities/upper_Prime.xml -feedparser/tests/entities/upper_Psi.xml -feedparser/tests/entities/upper_Rho.xml -feedparser/tests/entities/upper_Scaron.xml -feedparser/tests/entities/upper_Sigma.xml -feedparser/tests/entities/upper_THORN.xml -feedparser/tests/entities/upper_Tau.xml -feedparser/tests/entities/upper_Theta.xml -feedparser/tests/entities/upper_Uacute.xml -feedparser/tests/entities/upper_Ucirc.xml -feedparser/tests/entities/upper_Ugrave.xml -feedparser/tests/entities/upper_Upsilon.xml -feedparser/tests/entities/upper_Uuml.xml -feedparser/tests/entities/upper_Xi.xml -feedparser/tests/entities/upper_Yacute.xml -feedparser/tests/entities/upper_Yuml.xml -feedparser/tests/entities/upper_Zeta.xml -feedparser/tests/entities/upsih.xml -feedparser/tests/entities/upsilon.xml -feedparser/tests/entities/uuml.xml -feedparser/tests/entities/weierp.xml -feedparser/tests/entities/xi.xml -feedparser/tests/entities/yacute.xml -feedparser/tests/entities/yen.xml -feedparser/tests/entities/yuml.xml -feedparser/tests/entities/zeta.xml -feedparser/tests/entities/zwj.xml -feedparser/tests/entities/zwnj.xml -feedparser/tests/http/http_redirect_to_304.xml -feedparser/tests/http/http_status_301.xml -feedparser/tests/http/http_status_302.xml -feedparser/tests/http/http_status_303.xml -feedparser/tests/http/http_status_304.xml -feedparser/tests/http/http_status_307.xml -feedparser/tests/http/http_status_404.xml -feedparser/tests/http/http_status_9001.xml -feedparser/tests/http/target.xml -feedparser/tests/illformed/aaa_illformed.xml -feedparser/tests/illformed/always_strip_doctype.xml -feedparser/tests/illformed/http_high_bit_date.xml -feedparser/tests/illformed/non-ascii-tag.xml -feedparser/tests/illformed/rdf_channel_empty_textinput.xml -feedparser/tests/illformed/rss_empty_document.xml -feedparser/tests/illformed/rss_incomplete_cdata.xml -feedparser/tests/illformed/undeclared_namespace.xml -feedparser/tests/illformed/chardet/big5.xml -feedparser/tests/illformed/chardet/eucjp.xml -feedparser/tests/illformed/chardet/euckr.xml -feedparser/tests/illformed/chardet/gb2312.xml -feedparser/tests/illformed/chardet/koi8r.xml -feedparser/tests/illformed/chardet/shiftjis.xml -feedparser/tests/illformed/chardet/tis620.xml -feedparser/tests/illformed/chardet/windows1255.xml -feedparser/tests/microformats/hcard/2-4-2-vcard.xml -feedparser/tests/microformats/hcard/3-1-1-fn-unicode-char.xml -feedparser/tests/microformats/hcard/3-1-1-fn.xml -feedparser/tests/microformats/hcard/3-1-2-n-2-plural.xml -feedparser/tests/microformats/hcard/3-1-2-n-2-singular.xml -feedparser/tests/microformats/hcard/3-1-2-n-plural.xml -feedparser/tests/microformats/hcard/3-1-2-n-singular.xml -feedparser/tests/microformats/hcard/3-1-3-nickname-2-plural.xml -feedparser/tests/microformats/hcard/3-1-3-nickname-2-singular.xml -feedparser/tests/microformats/hcard/3-1-3-nickname.xml -feedparser/tests/microformats/hcard/3-1-4-photo-inline.xml -feedparser/tests/microformats/hcard/3-1-4-photo.xml -feedparser/tests/microformats/hcard/3-1-5-bday-2.xml -feedparser/tests/microformats/hcard/3-1-5-bday-3.xml -feedparser/tests/microformats/hcard/3-1-5-bday.xml -feedparser/tests/microformats/hcard/3-2-1-adr.xml -feedparser/tests/microformats/hcard/3-2-2-label.xml -feedparser/tests/microformats/hcard/3-3-1-tel.xml -feedparser/tests/microformats/hcard/3-3-2-email-2.xml -feedparser/tests/microformats/hcard/3-3-2-email-3.xml -feedparser/tests/microformats/hcard/3-3-2-email.xml -feedparser/tests/microformats/hcard/3-3-3-mailer.xml -feedparser/tests/microformats/hcard/3-4-1-tz-2.xml -feedparser/tests/microformats/hcard/3-4-1-tz.xml -feedparser/tests/microformats/hcard/3-4-2-geo.xml -feedparser/tests/microformats/hcard/3-5-1-title.xml -feedparser/tests/microformats/hcard/3-5-2-role.xml -feedparser/tests/microformats/hcard/3-5-3-logo-2.xml -feedparser/tests/microformats/hcard/3-5-3-logo.xml -feedparser/tests/microformats/hcard/3-5-4-agent-2.xml -feedparser/tests/microformats/hcard/3-5-4-agent.xml -feedparser/tests/microformats/hcard/3-5-5-org.xml -feedparser/tests/microformats/hcard/3-6-1-categories-2-plural.xml -feedparser/tests/microformats/hcard/3-6-1-categories-2-singular.xml -feedparser/tests/microformats/hcard/3-6-1-categories.xml -feedparser/tests/microformats/hcard/3-6-2-note.xml -feedparser/tests/microformats/hcard/3-6-4-rev-2.xml -feedparser/tests/microformats/hcard/3-6-4-rev.xml -feedparser/tests/microformats/hcard/3-6-5-sort-string-2.xml -feedparser/tests/microformats/hcard/3-6-5-sort-string-3.xml -feedparser/tests/microformats/hcard/3-6-5-sort-string-4.xml -feedparser/tests/microformats/hcard/3-6-5-sort-string-5.xml -feedparser/tests/microformats/hcard/3-6-5-sort-string.xml -feedparser/tests/microformats/hcard/3-6-6-sound-2.xml -feedparser/tests/microformats/hcard/3-6-6-sound.xml -feedparser/tests/microformats/hcard/3-6-7-uid.xml -feedparser/tests/microformats/hcard/3-6-8-url.xml -feedparser/tests/microformats/hcard/3-7-1-class-2.xml -feedparser/tests/microformats/hcard/3-7-1-class-3.xml -feedparser/tests/microformats/hcard/3-7-1-class.xml -feedparser/tests/microformats/hcard/3-7-2-key.xml -feedparser/tests/microformats/hcard/7-authors.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_avi.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_bin.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_bz2.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_deb.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_dmg.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_exe.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_gz.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_hqx.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_img.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_iso.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_jar.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_m4a.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_m4v.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp2.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp3.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp4.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_msi.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_ogg.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_rar.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_rpm.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_sit.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_sitx.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tar.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tbz2.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tgz.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_wma.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_wmv.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_z.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_zip.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_application_ogg.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_audio.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_video.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_invalid.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_no_autodetect.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_no_autodetect_xml.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_title.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_title_from_link_text.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_title_overrides_link_text.xml -feedparser/tests/microformats/rel_enclosure/rel_enclosure_type.xml -feedparser/tests/microformats/rel_tag/rel_tag_duplicate.xml -feedparser/tests/microformats/rel_tag/rel_tag_label.xml -feedparser/tests/microformats/rel_tag/rel_tag_scheme.xml -feedparser/tests/microformats/rel_tag/rel_tag_term.xml -feedparser/tests/microformats/rel_tag/rel_tag_term_trailing_slash.xml -feedparser/tests/microformats/xfn/xfn_acquaintance.xml -feedparser/tests/microformats/xfn/xfn_brother.xml -feedparser/tests/microformats/xfn/xfn_child.xml -feedparser/tests/microformats/xfn/xfn_co-resident.xml -feedparser/tests/microformats/xfn/xfn_co-worker.xml -feedparser/tests/microformats/xfn/xfn_colleague.xml -feedparser/tests/microformats/xfn/xfn_contact.xml -feedparser/tests/microformats/xfn/xfn_coresident.xml -feedparser/tests/microformats/xfn/xfn_coworker.xml -feedparser/tests/microformats/xfn/xfn_crush.xml -feedparser/tests/microformats/xfn/xfn_date.xml -feedparser/tests/microformats/xfn/xfn_friend.xml -feedparser/tests/microformats/xfn/xfn_href.xml -feedparser/tests/microformats/xfn/xfn_husband.xml -feedparser/tests/microformats/xfn/xfn_kin.xml -feedparser/tests/microformats/xfn/xfn_me.xml -feedparser/tests/microformats/xfn/xfn_met.xml -feedparser/tests/microformats/xfn/xfn_multiple.xml -feedparser/tests/microformats/xfn/xfn_muse.xml -feedparser/tests/microformats/xfn/xfn_name.xml -feedparser/tests/microformats/xfn/xfn_neighbor.xml -feedparser/tests/microformats/xfn/xfn_parent.xml -feedparser/tests/microformats/xfn/xfn_relative.xml -feedparser/tests/microformats/xfn/xfn_sibling.xml -feedparser/tests/microformats/xfn/xfn_sister.xml -feedparser/tests/microformats/xfn/xfn_spouse.xml -feedparser/tests/microformats/xfn/xfn_sweetheart.xml -feedparser/tests/microformats/xfn/xfn_wife.xml -feedparser/tests/wellformed/amp/amp01.xml -feedparser/tests/wellformed/amp/amp02.xml -feedparser/tests/wellformed/amp/amp03.xml -feedparser/tests/wellformed/amp/amp04.xml -feedparser/tests/wellformed/amp/amp05.xml -feedparser/tests/wellformed/amp/amp06.xml -feedparser/tests/wellformed/amp/amp07.xml -feedparser/tests/wellformed/amp/amp08.xml -feedparser/tests/wellformed/amp/amp09.xml -feedparser/tests/wellformed/amp/amp10.xml -feedparser/tests/wellformed/amp/amp11.xml -feedparser/tests/wellformed/amp/amp12.xml -feedparser/tests/wellformed/amp/amp13.xml -feedparser/tests/wellformed/amp/amp14.xml -feedparser/tests/wellformed/amp/amp15.xml -feedparser/tests/wellformed/amp/amp16.xml -feedparser/tests/wellformed/amp/amp17.xml -feedparser/tests/wellformed/amp/amp18.xml -feedparser/tests/wellformed/amp/amp19.xml -feedparser/tests/wellformed/amp/amp20.xml -feedparser/tests/wellformed/amp/amp21.xml -feedparser/tests/wellformed/amp/amp22.xml -feedparser/tests/wellformed/amp/amp23.xml -feedparser/tests/wellformed/amp/amp24.xml -feedparser/tests/wellformed/amp/amp25.xml -feedparser/tests/wellformed/amp/amp26.xml -feedparser/tests/wellformed/amp/amp27.xml -feedparser/tests/wellformed/amp/amp28.xml -feedparser/tests/wellformed/amp/amp29.xml -feedparser/tests/wellformed/amp/amp30.xml -feedparser/tests/wellformed/amp/amp31.xml -feedparser/tests/wellformed/amp/amp32.xml -feedparser/tests/wellformed/amp/amp33.xml -feedparser/tests/wellformed/amp/amp34.xml -feedparser/tests/wellformed/amp/amp35.xml -feedparser/tests/wellformed/amp/amp36.xml -feedparser/tests/wellformed/amp/amp37.xml -feedparser/tests/wellformed/amp/amp38.xml -feedparser/tests/wellformed/amp/amp39.xml -feedparser/tests/wellformed/amp/amp40.xml -feedparser/tests/wellformed/amp/amp41.xml -feedparser/tests/wellformed/amp/amp42.xml -feedparser/tests/wellformed/amp/amp43.xml -feedparser/tests/wellformed/amp/amp44.xml -feedparser/tests/wellformed/amp/amp45.xml -feedparser/tests/wellformed/amp/amp46.xml -feedparser/tests/wellformed/amp/amp47.xml -feedparser/tests/wellformed/amp/amp48.xml -feedparser/tests/wellformed/amp/amp49.xml -feedparser/tests/wellformed/amp/amp50.xml -feedparser/tests/wellformed/amp/amp51.xml -feedparser/tests/wellformed/amp/amp52.xml -feedparser/tests/wellformed/amp/amp53.xml -feedparser/tests/wellformed/amp/amp54.xml -feedparser/tests/wellformed/amp/amp55.xml -feedparser/tests/wellformed/amp/amp56.xml -feedparser/tests/wellformed/amp/amp57.xml -feedparser/tests/wellformed/amp/amp58.xml -feedparser/tests/wellformed/amp/amp59.xml -feedparser/tests/wellformed/amp/amp60.xml -feedparser/tests/wellformed/amp/amp61.xml -feedparser/tests/wellformed/amp/amp62.xml -feedparser/tests/wellformed/amp/amp63.xml -feedparser/tests/wellformed/amp/amp64.xml -feedparser/tests/wellformed/amp/attr01.xml -feedparser/tests/wellformed/amp/attr02.xml -feedparser/tests/wellformed/amp/attr03.xml -feedparser/tests/wellformed/amp/attr04.xml -feedparser/tests/wellformed/amp/attr05.xml -feedparser/tests/wellformed/amp/attr06.xml -feedparser/tests/wellformed/atom/atom_namespace_1.xml -feedparser/tests/wellformed/atom/atom_namespace_2.xml -feedparser/tests/wellformed/atom/atom_namespace_3.xml -feedparser/tests/wellformed/atom/atom_namespace_4.xml -feedparser/tests/wellformed/atom/atom_namespace_5.xml -feedparser/tests/wellformed/atom/entry_author_email.xml -feedparser/tests/wellformed/atom/entry_author_homepage.xml -feedparser/tests/wellformed/atom/entry_author_map_author.xml -feedparser/tests/wellformed/atom/entry_author_map_author_2.xml -feedparser/tests/wellformed/atom/entry_author_name.xml -feedparser/tests/wellformed/atom/entry_author_uri.xml -feedparser/tests/wellformed/atom/entry_author_url.xml -feedparser/tests/wellformed/atom/entry_content_mode_base64.xml -feedparser/tests/wellformed/atom/entry_content_mode_escaped.xml -feedparser/tests/wellformed/atom/entry_content_type.xml -feedparser/tests/wellformed/atom/entry_content_type_text_plain.xml -feedparser/tests/wellformed/atom/entry_content_value.xml -feedparser/tests/wellformed/atom/entry_contributor_email.xml -feedparser/tests/wellformed/atom/entry_contributor_homepage.xml -feedparser/tests/wellformed/atom/entry_contributor_multiple.xml -feedparser/tests/wellformed/atom/entry_contributor_name.xml -feedparser/tests/wellformed/atom/entry_contributor_uri.xml -feedparser/tests/wellformed/atom/entry_contributor_url.xml -feedparser/tests/wellformed/atom/entry_created.xml -feedparser/tests/wellformed/atom/entry_created_multiple_values.xml -feedparser/tests/wellformed/atom/entry_created_parsed.xml -feedparser/tests/wellformed/atom/entry_id.xml -feedparser/tests/wellformed/atom/entry_id_map_guid.xml -feedparser/tests/wellformed/atom/entry_issued.xml -feedparser/tests/wellformed/atom/entry_issued_parsed.xml -feedparser/tests/wellformed/atom/entry_link_alternate_map_link.xml -feedparser/tests/wellformed/atom/entry_link_alternate_map_link_2.xml -feedparser/tests/wellformed/atom/entry_link_href.xml -feedparser/tests/wellformed/atom/entry_link_multiple.xml -feedparser/tests/wellformed/atom/entry_link_rel.xml -feedparser/tests/wellformed/atom/entry_link_title.xml -feedparser/tests/wellformed/atom/entry_link_type.xml -feedparser/tests/wellformed/atom/entry_modified.xml -feedparser/tests/wellformed/atom/entry_modified_map_updated_parsed.xml -feedparser/tests/wellformed/atom/entry_published_parsed.xml -feedparser/tests/wellformed/atom/entry_published_parsed_date_overwriting.xml -feedparser/tests/wellformed/atom/entry_source_updated_parsed.xml -feedparser/tests/wellformed/atom/entry_summary.xml -feedparser/tests/wellformed/atom/entry_summary_base64.xml -feedparser/tests/wellformed/atom/entry_summary_base64_2.xml -feedparser/tests/wellformed/atom/entry_summary_content_mode_base64.xml -feedparser/tests/wellformed/atom/entry_summary_content_mode_escaped.xml -feedparser/tests/wellformed/atom/entry_summary_content_type.xml -feedparser/tests/wellformed/atom/entry_summary_content_type_text_plain.xml -feedparser/tests/wellformed/atom/entry_summary_content_value.xml -feedparser/tests/wellformed/atom/entry_summary_escaped_markup.xml -feedparser/tests/wellformed/atom/entry_summary_inline_markup.xml -feedparser/tests/wellformed/atom/entry_summary_inline_markup_2.xml -feedparser/tests/wellformed/atom/entry_summary_naked_markup.xml -feedparser/tests/wellformed/atom/entry_summary_text_plain.xml -feedparser/tests/wellformed/atom/entry_title.xml -feedparser/tests/wellformed/atom/entry_title_base64.xml -feedparser/tests/wellformed/atom/entry_title_base64_2.xml -feedparser/tests/wellformed/atom/entry_title_content_mode_base64.xml -feedparser/tests/wellformed/atom/entry_title_content_mode_escaped.xml -feedparser/tests/wellformed/atom/entry_title_content_type.xml -feedparser/tests/wellformed/atom/entry_title_content_type_text_plain.xml -feedparser/tests/wellformed/atom/entry_title_content_value.xml -feedparser/tests/wellformed/atom/entry_title_escaped_markup.xml -feedparser/tests/wellformed/atom/entry_title_inline_markup.xml -feedparser/tests/wellformed/atom/entry_title_inline_markup_2.xml -feedparser/tests/wellformed/atom/entry_title_naked_markup.xml -feedparser/tests/wellformed/atom/entry_title_text_plain.xml -feedparser/tests/wellformed/atom/entry_title_text_plain_brackets.xml -feedparser/tests/wellformed/atom/entry_updated_multiple_values.xml -feedparser/tests/wellformed/atom/entry_updated_parsed.xml -feedparser/tests/wellformed/atom/feed_author_email.xml -feedparser/tests/wellformed/atom/feed_author_homepage.xml -feedparser/tests/wellformed/atom/feed_author_map_author.xml -feedparser/tests/wellformed/atom/feed_author_map_author_2.xml -feedparser/tests/wellformed/atom/feed_author_name.xml -feedparser/tests/wellformed/atom/feed_author_uri.xml -feedparser/tests/wellformed/atom/feed_author_url.xml -feedparser/tests/wellformed/atom/feed_contributor_email.xml -feedparser/tests/wellformed/atom/feed_contributor_homepage.xml -feedparser/tests/wellformed/atom/feed_contributor_multiple.xml -feedparser/tests/wellformed/atom/feed_contributor_name.xml -feedparser/tests/wellformed/atom/feed_contributor_uri.xml -feedparser/tests/wellformed/atom/feed_contributor_url.xml -feedparser/tests/wellformed/atom/feed_copyright.xml -feedparser/tests/wellformed/atom/feed_copyright_base64.xml -feedparser/tests/wellformed/atom/feed_copyright_base64_2.xml -feedparser/tests/wellformed/atom/feed_copyright_content_mode_base64.xml -feedparser/tests/wellformed/atom/feed_copyright_content_mode_escaped.xml -feedparser/tests/wellformed/atom/feed_copyright_content_type.xml -feedparser/tests/wellformed/atom/feed_copyright_content_type_text_plain.xml -feedparser/tests/wellformed/atom/feed_copyright_content_value.xml -feedparser/tests/wellformed/atom/feed_copyright_escaped_markup.xml -feedparser/tests/wellformed/atom/feed_copyright_inline_markup.xml -feedparser/tests/wellformed/atom/feed_copyright_inline_markup_2.xml -feedparser/tests/wellformed/atom/feed_copyright_naked_markup.xml -feedparser/tests/wellformed/atom/feed_copyright_text_plain.xml -feedparser/tests/wellformed/atom/feed_generator.xml -feedparser/tests/wellformed/atom/feed_generator_name.xml -feedparser/tests/wellformed/atom/feed_generator_url.xml -feedparser/tests/wellformed/atom/feed_generator_version.xml -feedparser/tests/wellformed/atom/feed_id.xml -feedparser/tests/wellformed/atom/feed_id_map_guid.xml -feedparser/tests/wellformed/atom/feed_info.xml -feedparser/tests/wellformed/atom/feed_info_base64.xml -feedparser/tests/wellformed/atom/feed_info_base64_2.xml -feedparser/tests/wellformed/atom/feed_info_content_mode_base64.xml -feedparser/tests/wellformed/atom/feed_info_content_mode_escaped.xml -feedparser/tests/wellformed/atom/feed_info_content_type.xml -feedparser/tests/wellformed/atom/feed_info_content_type_text_plain.xml -feedparser/tests/wellformed/atom/feed_info_content_value.xml -feedparser/tests/wellformed/atom/feed_info_escaped_markup.xml -feedparser/tests/wellformed/atom/feed_info_inline_markup.xml -feedparser/tests/wellformed/atom/feed_info_inline_markup_2.xml -feedparser/tests/wellformed/atom/feed_info_naked_markup.xml -feedparser/tests/wellformed/atom/feed_info_text_plain.xml -feedparser/tests/wellformed/atom/feed_link_alternate_map_link.xml -feedparser/tests/wellformed/atom/feed_link_alternate_map_link_2.xml -feedparser/tests/wellformed/atom/feed_link_href.xml -feedparser/tests/wellformed/atom/feed_link_multiple.xml -feedparser/tests/wellformed/atom/feed_link_rel.xml -feedparser/tests/wellformed/atom/feed_link_title.xml -feedparser/tests/wellformed/atom/feed_link_type.xml -feedparser/tests/wellformed/atom/feed_modified.xml -feedparser/tests/wellformed/atom/feed_modified_map_updated_parsed.xml -feedparser/tests/wellformed/atom/feed_tagline.xml -feedparser/tests/wellformed/atom/feed_tagline_base64.xml -feedparser/tests/wellformed/atom/feed_tagline_base64_2.xml -feedparser/tests/wellformed/atom/feed_tagline_content_mode_base64.xml -feedparser/tests/wellformed/atom/feed_tagline_content_mode_escaped.xml -feedparser/tests/wellformed/atom/feed_tagline_content_type.xml -feedparser/tests/wellformed/atom/feed_tagline_content_type_text_plain.xml -feedparser/tests/wellformed/atom/feed_tagline_content_value.xml -feedparser/tests/wellformed/atom/feed_tagline_escaped_markup.xml -feedparser/tests/wellformed/atom/feed_tagline_inline_markup.xml -feedparser/tests/wellformed/atom/feed_tagline_inline_markup_2.xml -feedparser/tests/wellformed/atom/feed_tagline_naked_markup.xml -feedparser/tests/wellformed/atom/feed_tagline_text_plain.xml -feedparser/tests/wellformed/atom/feed_title.xml -feedparser/tests/wellformed/atom/feed_title_base64.xml -feedparser/tests/wellformed/atom/feed_title_base64_2.xml -feedparser/tests/wellformed/atom/feed_title_content_mode_base64.xml -feedparser/tests/wellformed/atom/feed_title_content_mode_escaped.xml -feedparser/tests/wellformed/atom/feed_title_content_type.xml -feedparser/tests/wellformed/atom/feed_title_content_type_text_plain.xml -feedparser/tests/wellformed/atom/feed_title_content_value.xml -feedparser/tests/wellformed/atom/feed_title_escaped_markup.xml -feedparser/tests/wellformed/atom/feed_title_inline_markup.xml -feedparser/tests/wellformed/atom/feed_title_inline_markup_2.xml -feedparser/tests/wellformed/atom/feed_title_naked_markup.xml -feedparser/tests/wellformed/atom/feed_title_text_plain.xml -feedparser/tests/wellformed/atom/feed_updated_parsed.xml -feedparser/tests/wellformed/atom/media_player1.xml -feedparser/tests/wellformed/atom/media_thumbnail.xml -feedparser/tests/wellformed/atom/relative_uri.xml -feedparser/tests/wellformed/atom/relative_uri_inherit.xml -feedparser/tests/wellformed/atom/relative_uri_inherit_2.xml -feedparser/tests/wellformed/atom10/ampersand_in_attr.xml -feedparser/tests/wellformed/atom10/atom10_namespace.xml -feedparser/tests/wellformed/atom10/atom10_version.xml -feedparser/tests/wellformed/atom10/entry_author_email.xml -feedparser/tests/wellformed/atom10/entry_author_map_author.xml -feedparser/tests/wellformed/atom10/entry_author_map_author_2.xml -feedparser/tests/wellformed/atom10/entry_author_name.xml -feedparser/tests/wellformed/atom10/entry_author_uri.xml -feedparser/tests/wellformed/atom10/entry_author_url.xml -feedparser/tests/wellformed/atom10/entry_authors_email.xml -feedparser/tests/wellformed/atom10/entry_authors_name.xml -feedparser/tests/wellformed/atom10/entry_authors_uri.xml -feedparser/tests/wellformed/atom10/entry_authors_url.xml -feedparser/tests/wellformed/atom10/entry_category_label.xml -feedparser/tests/wellformed/atom10/entry_category_scheme.xml -feedparser/tests/wellformed/atom10/entry_category_term.xml -feedparser/tests/wellformed/atom10/entry_category_term_non_ascii.xml -feedparser/tests/wellformed/atom10/entry_content_application_xml.xml -feedparser/tests/wellformed/atom10/entry_content_base64.xml -feedparser/tests/wellformed/atom10/entry_content_base64_2.xml -feedparser/tests/wellformed/atom10/entry_content_div_escaped_markup.xml -feedparser/tests/wellformed/atom10/entry_content_escaped_markup.xml -feedparser/tests/wellformed/atom10/entry_content_inline_markup.xml -feedparser/tests/wellformed/atom10/entry_content_inline_markup_2.xml -feedparser/tests/wellformed/atom10/entry_content_src.xml -feedparser/tests/wellformed/atom10/entry_content_text_plain.xml -feedparser/tests/wellformed/atom10/entry_content_text_plain_brackets.xml -feedparser/tests/wellformed/atom10/entry_content_type.xml -feedparser/tests/wellformed/atom10/entry_content_type_text.xml -feedparser/tests/wellformed/atom10/entry_content_value.xml -feedparser/tests/wellformed/atom10/entry_contributor_email.xml -feedparser/tests/wellformed/atom10/entry_contributor_multiple.xml -feedparser/tests/wellformed/atom10/entry_contributor_name.xml -feedparser/tests/wellformed/atom10/entry_contributor_uri.xml -feedparser/tests/wellformed/atom10/entry_contributor_url.xml -feedparser/tests/wellformed/atom10/entry_id.xml -feedparser/tests/wellformed/atom10/entry_id_map_guid.xml -feedparser/tests/wellformed/atom10/entry_id_no_normalization_1.xml -feedparser/tests/wellformed/atom10/entry_id_no_normalization_2.xml -feedparser/tests/wellformed/atom10/entry_id_no_normalization_3.xml -feedparser/tests/wellformed/atom10/entry_id_no_normalization_4.xml -feedparser/tests/wellformed/atom10/entry_id_no_normalization_5.xml -feedparser/tests/wellformed/atom10/entry_id_no_normalization_6.xml -feedparser/tests/wellformed/atom10/entry_id_no_normalization_7.xml -feedparser/tests/wellformed/atom10/entry_id_with_attributes.xml -feedparser/tests/wellformed/atom10/entry_link_alternate_map_link.xml -feedparser/tests/wellformed/atom10/entry_link_alternate_map_link_2.xml -feedparser/tests/wellformed/atom10/entry_link_alternate_map_link_3.xml -feedparser/tests/wellformed/atom10/entry_link_href.xml -feedparser/tests/wellformed/atom10/entry_link_hreflang.xml -feedparser/tests/wellformed/atom10/entry_link_length.xml -feedparser/tests/wellformed/atom10/entry_link_multiple.xml -feedparser/tests/wellformed/atom10/entry_link_no_rel.xml -feedparser/tests/wellformed/atom10/entry_link_rel.xml -feedparser/tests/wellformed/atom10/entry_link_rel_enclosure.xml -feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_length.xml -feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_type.xml -feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_url.xml -feedparser/tests/wellformed/atom10/entry_link_rel_license.xml -feedparser/tests/wellformed/atom10/entry_link_rel_other.xml -feedparser/tests/wellformed/atom10/entry_link_rel_related.xml -feedparser/tests/wellformed/atom10/entry_link_rel_self.xml -feedparser/tests/wellformed/atom10/entry_link_rel_via.xml -feedparser/tests/wellformed/atom10/entry_link_title.xml -feedparser/tests/wellformed/atom10/entry_link_type.xml -feedparser/tests/wellformed/atom10/entry_rights.xml -feedparser/tests/wellformed/atom10/entry_rights_content_value.xml -feedparser/tests/wellformed/atom10/entry_rights_escaped_markup.xml -feedparser/tests/wellformed/atom10/entry_rights_inline_markup.xml -feedparser/tests/wellformed/atom10/entry_rights_inline_markup_2.xml -feedparser/tests/wellformed/atom10/entry_rights_text_plain.xml -feedparser/tests/wellformed/atom10/entry_rights_text_plain_brackets.xml -feedparser/tests/wellformed/atom10/entry_rights_type_default.xml -feedparser/tests/wellformed/atom10/entry_rights_type_text.xml -feedparser/tests/wellformed/atom10/entry_source_author_email.xml -feedparser/tests/wellformed/atom10/entry_source_author_map_author.xml -feedparser/tests/wellformed/atom10/entry_source_author_map_author_2.xml -feedparser/tests/wellformed/atom10/entry_source_author_name.xml -feedparser/tests/wellformed/atom10/entry_source_author_uri.xml -feedparser/tests/wellformed/atom10/entry_source_authors_email.xml -feedparser/tests/wellformed/atom10/entry_source_authors_name.xml -feedparser/tests/wellformed/atom10/entry_source_authors_uri.xml -feedparser/tests/wellformed/atom10/entry_source_authors_url.xml -feedparser/tests/wellformed/atom10/entry_source_category_label.xml -feedparser/tests/wellformed/atom10/entry_source_category_scheme.xml -feedparser/tests/wellformed/atom10/entry_source_category_term.xml -feedparser/tests/wellformed/atom10/entry_source_category_term_non_ascii.xml -feedparser/tests/wellformed/atom10/entry_source_contributor_email.xml -feedparser/tests/wellformed/atom10/entry_source_contributor_multiple.xml -feedparser/tests/wellformed/atom10/entry_source_contributor_name.xml -feedparser/tests/wellformed/atom10/entry_source_contributor_uri.xml -feedparser/tests/wellformed/atom10/entry_source_generator.xml -feedparser/tests/wellformed/atom10/entry_source_generator_name.xml -feedparser/tests/wellformed/atom10/entry_source_generator_uri.xml -feedparser/tests/wellformed/atom10/entry_source_generator_version.xml -feedparser/tests/wellformed/atom10/entry_source_icon.xml -feedparser/tests/wellformed/atom10/entry_source_id.xml -feedparser/tests/wellformed/atom10/entry_source_link_alternate_map_link.xml -feedparser/tests/wellformed/atom10/entry_source_link_alternate_map_link_2.xml -feedparser/tests/wellformed/atom10/entry_source_link_href.xml -feedparser/tests/wellformed/atom10/entry_source_link_hreflang.xml -feedparser/tests/wellformed/atom10/entry_source_link_length.xml -feedparser/tests/wellformed/atom10/entry_source_link_multiple.xml -feedparser/tests/wellformed/atom10/entry_source_link_no_rel.xml -feedparser/tests/wellformed/atom10/entry_source_link_rel.xml -feedparser/tests/wellformed/atom10/entry_source_link_rel_other.xml -feedparser/tests/wellformed/atom10/entry_source_link_rel_related.xml -feedparser/tests/wellformed/atom10/entry_source_link_rel_self.xml -feedparser/tests/wellformed/atom10/entry_source_link_rel_via.xml -feedparser/tests/wellformed/atom10/entry_source_link_title.xml -feedparser/tests/wellformed/atom10/entry_source_link_type.xml -feedparser/tests/wellformed/atom10/entry_source_logo.xml -feedparser/tests/wellformed/atom10/entry_source_rights.xml -feedparser/tests/wellformed/atom10/entry_source_rights_base64.xml -feedparser/tests/wellformed/atom10/entry_source_rights_base64_2.xml -feedparser/tests/wellformed/atom10/entry_source_rights_content_type.xml -feedparser/tests/wellformed/atom10/entry_source_rights_content_type_text.xml -feedparser/tests/wellformed/atom10/entry_source_rights_content_value.xml -feedparser/tests/wellformed/atom10/entry_source_rights_escaped_markup.xml -feedparser/tests/wellformed/atom10/entry_source_rights_inline_markup.xml -feedparser/tests/wellformed/atom10/entry_source_rights_inline_markup_2.xml -feedparser/tests/wellformed/atom10/entry_source_rights_text_plain.xml -feedparser/tests/wellformed/atom10/entry_source_subittle_content_type_text.xml -feedparser/tests/wellformed/atom10/entry_source_subtitle.xml -feedparser/tests/wellformed/atom10/entry_source_subtitle_base64.xml -feedparser/tests/wellformed/atom10/entry_source_subtitle_base64_2.xml -feedparser/tests/wellformed/atom10/entry_source_subtitle_content_type.xml -feedparser/tests/wellformed/atom10/entry_source_subtitle_content_value.xml -feedparser/tests/wellformed/atom10/entry_source_subtitle_escaped_markup.xml -feedparser/tests/wellformed/atom10/entry_source_subtitle_inline_markup.xml -feedparser/tests/wellformed/atom10/entry_source_subtitle_inline_markup_2.xml -feedparser/tests/wellformed/atom10/entry_source_subtitle_text_plain.xml -feedparser/tests/wellformed/atom10/entry_source_title.xml -feedparser/tests/wellformed/atom10/entry_source_title_base64.xml -feedparser/tests/wellformed/atom10/entry_source_title_base64_2.xml -feedparser/tests/wellformed/atom10/entry_source_title_content_type.xml -feedparser/tests/wellformed/atom10/entry_source_title_content_type_text.xml -feedparser/tests/wellformed/atom10/entry_source_title_content_value.xml -feedparser/tests/wellformed/atom10/entry_source_title_escaped_markup.xml -feedparser/tests/wellformed/atom10/entry_source_title_inline_markup.xml -feedparser/tests/wellformed/atom10/entry_source_title_inline_markup_2.xml -feedparser/tests/wellformed/atom10/entry_source_title_text_plain.xml -feedparser/tests/wellformed/atom10/entry_summary.xml -feedparser/tests/wellformed/atom10/entry_summary_base64.xml -feedparser/tests/wellformed/atom10/entry_summary_base64_2.xml -feedparser/tests/wellformed/atom10/entry_summary_content_value.xml -feedparser/tests/wellformed/atom10/entry_summary_escaped_markup.xml -feedparser/tests/wellformed/atom10/entry_summary_inline_markup.xml -feedparser/tests/wellformed/atom10/entry_summary_inline_markup_2.xml -feedparser/tests/wellformed/atom10/entry_summary_text_plain.xml -feedparser/tests/wellformed/atom10/entry_summary_type_default.xml -feedparser/tests/wellformed/atom10/entry_summary_type_text.xml -feedparser/tests/wellformed/atom10/entry_title.xml -feedparser/tests/wellformed/atom10/entry_title_base64.xml -feedparser/tests/wellformed/atom10/entry_title_base64_2.xml -feedparser/tests/wellformed/atom10/entry_title_content_value.xml -feedparser/tests/wellformed/atom10/entry_title_escaped_markup.xml -feedparser/tests/wellformed/atom10/entry_title_inline_markup.xml -feedparser/tests/wellformed/atom10/entry_title_inline_markup_2.xml -feedparser/tests/wellformed/atom10/entry_title_text_plain.xml -feedparser/tests/wellformed/atom10/entry_title_text_plain_brackets.xml -feedparser/tests/wellformed/atom10/entry_title_type_default.xml -feedparser/tests/wellformed/atom10/entry_title_type_text.xml -feedparser/tests/wellformed/atom10/feed_author_email.xml -feedparser/tests/wellformed/atom10/feed_author_map_author.xml -feedparser/tests/wellformed/atom10/feed_author_map_author_2.xml -feedparser/tests/wellformed/atom10/feed_author_name.xml -feedparser/tests/wellformed/atom10/feed_author_uri.xml -feedparser/tests/wellformed/atom10/feed_author_url.xml -feedparser/tests/wellformed/atom10/feed_authors_email.xml -feedparser/tests/wellformed/atom10/feed_authors_name.xml -feedparser/tests/wellformed/atom10/feed_authors_uri.xml -feedparser/tests/wellformed/atom10/feed_authors_url.xml -feedparser/tests/wellformed/atom10/feed_contributor_email.xml -feedparser/tests/wellformed/atom10/feed_contributor_multiple.xml -feedparser/tests/wellformed/atom10/feed_contributor_name.xml -feedparser/tests/wellformed/atom10/feed_contributor_uri.xml -feedparser/tests/wellformed/atom10/feed_contributor_url.xml -feedparser/tests/wellformed/atom10/feed_generator.xml -feedparser/tests/wellformed/atom10/feed_generator_name.xml -feedparser/tests/wellformed/atom10/feed_generator_url.xml -feedparser/tests/wellformed/atom10/feed_generator_version.xml -feedparser/tests/wellformed/atom10/feed_icon.xml -feedparser/tests/wellformed/atom10/feed_id.xml -feedparser/tests/wellformed/atom10/feed_id_map_guid.xml -feedparser/tests/wellformed/atom10/feed_link_alternate_map_link.xml -feedparser/tests/wellformed/atom10/feed_link_alternate_map_link_2.xml -feedparser/tests/wellformed/atom10/feed_link_href.xml -feedparser/tests/wellformed/atom10/feed_link_hreflang.xml -feedparser/tests/wellformed/atom10/feed_link_length.xml -feedparser/tests/wellformed/atom10/feed_link_multiple.xml -feedparser/tests/wellformed/atom10/feed_link_no_rel.xml -feedparser/tests/wellformed/atom10/feed_link_rel.xml -feedparser/tests/wellformed/atom10/feed_link_rel_other.xml -feedparser/tests/wellformed/atom10/feed_link_rel_related.xml -feedparser/tests/wellformed/atom10/feed_link_rel_self.xml -feedparser/tests/wellformed/atom10/feed_link_rel_self_default_type.xml -feedparser/tests/wellformed/atom10/feed_link_rel_via.xml -feedparser/tests/wellformed/atom10/feed_link_title.xml -feedparser/tests/wellformed/atom10/feed_link_type.xml -feedparser/tests/wellformed/atom10/feed_logo.xml -feedparser/tests/wellformed/atom10/feed_rights.xml -feedparser/tests/wellformed/atom10/feed_rights_base64.xml -feedparser/tests/wellformed/atom10/feed_rights_base64_2.xml -feedparser/tests/wellformed/atom10/feed_rights_content_type.xml -feedparser/tests/wellformed/atom10/feed_rights_content_type_text.xml -feedparser/tests/wellformed/atom10/feed_rights_content_value.xml -feedparser/tests/wellformed/atom10/feed_rights_escaped_markup.xml -feedparser/tests/wellformed/atom10/feed_rights_inline_markup.xml -feedparser/tests/wellformed/atom10/feed_rights_inline_markup_2.xml -feedparser/tests/wellformed/atom10/feed_rights_text_plain.xml -feedparser/tests/wellformed/atom10/feed_subtitle.xml -feedparser/tests/wellformed/atom10/feed_subtitle_base64.xml -feedparser/tests/wellformed/atom10/feed_subtitle_base64_2.xml -feedparser/tests/wellformed/atom10/feed_subtitle_content_type.xml -feedparser/tests/wellformed/atom10/feed_subtitle_content_type_text.xml -feedparser/tests/wellformed/atom10/feed_subtitle_content_value.xml -feedparser/tests/wellformed/atom10/feed_subtitle_escaped_markup.xml -feedparser/tests/wellformed/atom10/feed_subtitle_inline_markup.xml -feedparser/tests/wellformed/atom10/feed_subtitle_inline_markup_2.xml -feedparser/tests/wellformed/atom10/feed_subtitle_text_plain.xml -feedparser/tests/wellformed/atom10/feed_title.xml -feedparser/tests/wellformed/atom10/feed_title_base64.xml -feedparser/tests/wellformed/atom10/feed_title_base64_2.xml -feedparser/tests/wellformed/atom10/feed_title_content_type.xml -feedparser/tests/wellformed/atom10/feed_title_content_type_text.xml -feedparser/tests/wellformed/atom10/feed_title_content_value.xml -feedparser/tests/wellformed/atom10/feed_title_escaped_markup.xml -feedparser/tests/wellformed/atom10/feed_title_inline_markup.xml -feedparser/tests/wellformed/atom10/feed_title_inline_markup_2.xml -feedparser/tests/wellformed/atom10/feed_title_text_plain.xml -feedparser/tests/wellformed/atom10/item_media_category_label.xml -feedparser/tests/wellformed/atom10/item_media_category_multiple.xml -feedparser/tests/wellformed/atom10/item_media_category_scheme1.xml -feedparser/tests/wellformed/atom10/item_media_category_scheme2.xml -feedparser/tests/wellformed/atom10/item_media_category_term.xml -feedparser/tests/wellformed/atom10/item_media_title_type_plain.xml -feedparser/tests/wellformed/atom10/missing_quote_in_attr.xml -feedparser/tests/wellformed/atom10/qna.xml -feedparser/tests/wellformed/atom10/quote_in_attr.xml -feedparser/tests/wellformed/atom10/relative_uri.xml -feedparser/tests/wellformed/atom10/relative_uri_inherit.xml -feedparser/tests/wellformed/atom10/relative_uri_inherit_2.xml -feedparser/tests/wellformed/atom10/tag_in_attr.xml -feedparser/tests/wellformed/base/cdf_item_abstract_xml_base.xml -feedparser/tests/wellformed/base/entry_content_xml_base.xml -feedparser/tests/wellformed/base/entry_content_xml_base_inherit.xml -feedparser/tests/wellformed/base/entry_content_xml_base_inherit_2.xml -feedparser/tests/wellformed/base/entry_content_xml_base_inherit_3.xml -feedparser/tests/wellformed/base/entry_content_xml_base_inherit_4.xml -feedparser/tests/wellformed/base/entry_summary_xml_base.xml -feedparser/tests/wellformed/base/entry_summary_xml_base_inherit.xml -feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_2.xml -feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_3.xml -feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_4.xml -feedparser/tests/wellformed/base/entry_title_xml_base.xml -feedparser/tests/wellformed/base/entry_title_xml_base_inherit.xml -feedparser/tests/wellformed/base/entry_title_xml_base_inherit_2.xml -feedparser/tests/wellformed/base/entry_title_xml_base_inherit_3.xml -feedparser/tests/wellformed/base/entry_title_xml_base_inherit_4.xml -feedparser/tests/wellformed/base/feed_copyright_xml_base.xml -feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit.xml -feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_2.xml -feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_3.xml -feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_4.xml -feedparser/tests/wellformed/base/feed_info_xml_base.xml -feedparser/tests/wellformed/base/feed_info_xml_base_inherit.xml -feedparser/tests/wellformed/base/feed_info_xml_base_inherit_2.xml -feedparser/tests/wellformed/base/feed_info_xml_base_inherit_3.xml -feedparser/tests/wellformed/base/feed_info_xml_base_inherit_4.xml -feedparser/tests/wellformed/base/feed_link_xml_base_iri.xml -feedparser/tests/wellformed/base/feed_tagline_xml_base.xml -feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit.xml -feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_2.xml -feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_3.xml -feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_4.xml -feedparser/tests/wellformed/base/feed_title_xml_base.xml -feedparser/tests/wellformed/base/feed_title_xml_base_inherit.xml -feedparser/tests/wellformed/base/feed_title_xml_base_inherit_2.xml -feedparser/tests/wellformed/base/feed_title_xml_base_inherit_3.xml -feedparser/tests/wellformed/base/feed_title_xml_base_inherit_4.xml -feedparser/tests/wellformed/base/http_channel_docs_base_content_location.xml -feedparser/tests/wellformed/base/http_channel_docs_base_docuri.xml -feedparser/tests/wellformed/base/http_channel_link_base_content_location.xml -feedparser/tests/wellformed/base/http_channel_link_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_author_url_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_author_url_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_content_base64_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_content_base64_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_content_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_content_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_content_inline_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_content_inline_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_contributor_url_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_contributor_url_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_id_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_id_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_link_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_link_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_summary_base64_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_summary_base64_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_summary_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_summary_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_summary_inline_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_summary_inline_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_title_base64_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_title_base64_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_title_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_title_base_docuri.xml -feedparser/tests/wellformed/base/http_entry_title_inline_base_content_location.xml -feedparser/tests/wellformed/base/http_entry_title_inline_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_author_url_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_author_url_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_contributor_url_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_contributor_url_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_copyright_base64_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_copyright_base64_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_copyright_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_copyright_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_copyright_inline_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_copyright_inline_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_generator_url_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_generator_url_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_id_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_id_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_info_base64_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_info_base64_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_info_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_info_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_info_inline_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_info_inline_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_link_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_link_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_tagline_base64_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_tagline_base64_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_tagline_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_tagline_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_tagline_inline_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_tagline_inline_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_title_base64_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_title_base64_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_title_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_title_base_docuri.xml -feedparser/tests/wellformed/base/http_feed_title_inline_base_content_location.xml -feedparser/tests/wellformed/base/http_feed_title_inline_base_docuri.xml -feedparser/tests/wellformed/base/http_item_body_base_content_location.xml -feedparser/tests/wellformed/base/http_item_body_base_docuri.xml -feedparser/tests/wellformed/base/http_item_comments_base_content_location.xml -feedparser/tests/wellformed/base/http_item_comments_base_docuri.xml -feedparser/tests/wellformed/base/http_item_content_encoded_base_content_location.xml -feedparser/tests/wellformed/base/http_item_content_encoded_base_docuri.xml -feedparser/tests/wellformed/base/http_item_description_base_content_location.xml -feedparser/tests/wellformed/base/http_item_description_base_docuri.xml -feedparser/tests/wellformed/base/http_item_description_spaces.xml -feedparser/tests/wellformed/base/http_item_fullitem_base_content_location.xml -feedparser/tests/wellformed/base/http_item_fullitem_base_docuri.xml -feedparser/tests/wellformed/base/http_item_link_base_content_location.xml -feedparser/tests/wellformed/base/http_item_link_base_docuri.xml -feedparser/tests/wellformed/base/http_item_wfw_commentRSS_base_content_location.xml -feedparser/tests/wellformed/base/http_item_wfw_commentRSS_base_docuri.xml -feedparser/tests/wellformed/base/http_item_wfw_comment_base_content_location.xml -feedparser/tests/wellformed/base/http_item_wfw_comment_base_docuri.xml -feedparser/tests/wellformed/base/http_item_xhtml_body_base_content_location.xml -feedparser/tests/wellformed/base/http_item_xhtml_body_base_docuri.xml -feedparser/tests/wellformed/base/http_relative_xml_base.xml -feedparser/tests/wellformed/base/http_relative_xml_base_2.xml -feedparser/tests/wellformed/base/item_media_title1.xml -feedparser/tests/wellformed/base/item_media_title2.xml -feedparser/tests/wellformed/base/item_media_title3.xml -feedparser/tests/wellformed/base/malformed_base.xml -feedparser/tests/wellformed/base/rel_uri_with_unicode_character.xml -feedparser/tests/wellformed/base/relative_xml_base.xml -feedparser/tests/wellformed/base/relative_xml_base_2.xml -feedparser/tests/wellformed/base/unsafe_base.xml -feedparser/tests/wellformed/cdf/channel_abstract_map_description.xml -feedparser/tests/wellformed/cdf/channel_abstract_map_tagline.xml -feedparser/tests/wellformed/cdf/channel_href_map_link.xml -feedparser/tests/wellformed/cdf/channel_href_map_links.xml -feedparser/tests/wellformed/cdf/channel_lastmod.xml -feedparser/tests/wellformed/cdf/channel_lastmod_parsed.xml -feedparser/tests/wellformed/cdf/channel_title.xml -feedparser/tests/wellformed/cdf/item_abstract_map_description.xml -feedparser/tests/wellformed/cdf/item_abstract_map_summary.xml -feedparser/tests/wellformed/cdf/item_href_map_link.xml -feedparser/tests/wellformed/cdf/item_href_map_links.xml -feedparser/tests/wellformed/cdf/item_lastmod.xml -feedparser/tests/wellformed/cdf/item_lastmod_parsed.xml -feedparser/tests/wellformed/cdf/item_title.xml -feedparser/tests/wellformed/feedburner/feedburner_browserfriendly.xml -feedparser/tests/wellformed/http/headers_content_location-relative.xml -feedparser/tests/wellformed/http/headers_content_location-unsafe.xml -feedparser/tests/wellformed/http/headers_etag.xml -feedparser/tests/wellformed/http/headers_foo.xml -feedparser/tests/wellformed/http/headers_no_etag.xml -feedparser/tests/wellformed/itunes/itunes_channel_block.xml -feedparser/tests/wellformed/itunes/itunes_channel_block_false.xml -feedparser/tests/wellformed/itunes/itunes_channel_block_no.xml -feedparser/tests/wellformed/itunes/itunes_channel_block_true.xml -feedparser/tests/wellformed/itunes/itunes_channel_block_uppercase.xml -feedparser/tests/wellformed/itunes/itunes_channel_block_whitespace.xml -feedparser/tests/wellformed/itunes/itunes_channel_category.xml -feedparser/tests/wellformed/itunes/itunes_channel_category_nested.xml -feedparser/tests/wellformed/itunes/itunes_channel_category_scheme.xml -feedparser/tests/wellformed/itunes/itunes_channel_explicit.xml -feedparser/tests/wellformed/itunes/itunes_channel_explicit_clean.xml -feedparser/tests/wellformed/itunes/itunes_channel_explicit_false.xml -feedparser/tests/wellformed/itunes/itunes_channel_explicit_no.xml -feedparser/tests/wellformed/itunes/itunes_channel_explicit_true.xml -feedparser/tests/wellformed/itunes/itunes_channel_explicit_uppercase.xml -feedparser/tests/wellformed/itunes/itunes_channel_explicit_whitespace.xml -feedparser/tests/wellformed/itunes/itunes_channel_image.xml -feedparser/tests/wellformed/itunes/itunes_channel_image_no_href.xml -feedparser/tests/wellformed/itunes/itunes_channel_image_url.xml -feedparser/tests/wellformed/itunes/itunes_channel_keywords.xml -feedparser/tests/wellformed/itunes/itunes_channel_keywords_duplicate.xml -feedparser/tests/wellformed/itunes/itunes_channel_keywords_duplicate_2.xml -feedparser/tests/wellformed/itunes/itunes_channel_keywords_multiple.xml -feedparser/tests/wellformed/itunes/itunes_channel_link_image.xml -feedparser/tests/wellformed/itunes/itunes_channel_owner_email.xml -feedparser/tests/wellformed/itunes/itunes_channel_owner_name.xml -feedparser/tests/wellformed/itunes/itunes_channel_subtitle.xml -feedparser/tests/wellformed/itunes/itunes_channel_summary.xml -feedparser/tests/wellformed/itunes/itunes_core_element_uppercase.xml -feedparser/tests/wellformed/itunes/itunes_item_author_map_author.xml -feedparser/tests/wellformed/itunes/itunes_item_block.xml -feedparser/tests/wellformed/itunes/itunes_item_block_false.xml -feedparser/tests/wellformed/itunes/itunes_item_block_no.xml -feedparser/tests/wellformed/itunes/itunes_item_block_true.xml -feedparser/tests/wellformed/itunes/itunes_item_block_uppercase.xml -feedparser/tests/wellformed/itunes/itunes_item_block_whitespace.xml -feedparser/tests/wellformed/itunes/itunes_item_category.xml -feedparser/tests/wellformed/itunes/itunes_item_category_nested.xml -feedparser/tests/wellformed/itunes/itunes_item_category_scheme.xml -feedparser/tests/wellformed/itunes/itunes_item_duration.xml -feedparser/tests/wellformed/itunes/itunes_item_explicit.xml -feedparser/tests/wellformed/itunes/itunes_item_explicit_clean.xml -feedparser/tests/wellformed/itunes/itunes_item_explicit_false.xml -feedparser/tests/wellformed/itunes/itunes_item_explicit_no.xml -feedparser/tests/wellformed/itunes/itunes_item_explicit_true.xml -feedparser/tests/wellformed/itunes/itunes_item_explicit_uppercase.xml -feedparser/tests/wellformed/itunes/itunes_item_explicit_whitespace.xml -feedparser/tests/wellformed/itunes/itunes_item_image.xml -feedparser/tests/wellformed/itunes/itunes_item_image_url.xml -feedparser/tests/wellformed/itunes/itunes_item_link_image.xml -feedparser/tests/wellformed/itunes/itunes_item_subtitle.xml -feedparser/tests/wellformed/itunes/itunes_item_summary.xml -feedparser/tests/wellformed/itunes/itunes_namespace.xml -feedparser/tests/wellformed/itunes/itunes_namespace_example.xml -feedparser/tests/wellformed/itunes/itunes_namespace_lowercase.xml -feedparser/tests/wellformed/itunes/itunes_namespace_uppercase.xml -feedparser/tests/wellformed/lang/channel_dc_language.xml -feedparser/tests/wellformed/lang/channel_language.xml -feedparser/tests/wellformed/lang/entry_content_xml_lang.xml -feedparser/tests/wellformed/lang/entry_content_xml_lang_blank.xml -feedparser/tests/wellformed/lang/entry_content_xml_lang_blank_2.xml -feedparser/tests/wellformed/lang/entry_content_xml_lang_blank_3.xml -feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit.xml -feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_2.xml -feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_3.xml -feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_4.xml -feedparser/tests/wellformed/lang/entry_content_xml_lang_underscore.xml -feedparser/tests/wellformed/lang/entry_summary_xml_lang.xml -feedparser/tests/wellformed/lang/entry_summary_xml_lang_blank.xml -feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit.xml -feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_2.xml -feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_3.xml -feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_4.xml -feedparser/tests/wellformed/lang/entry_title_xml_lang.xml -feedparser/tests/wellformed/lang/entry_title_xml_lang_blank.xml -feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit.xml -feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_2.xml -feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_3.xml -feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_4.xml -feedparser/tests/wellformed/lang/feed_copyright_xml_lang.xml -feedparser/tests/wellformed/lang/feed_copyright_xml_lang_blank.xml -feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit.xml -feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_2.xml -feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_3.xml -feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_4.xml -feedparser/tests/wellformed/lang/feed_info_xml_lang.xml -feedparser/tests/wellformed/lang/feed_info_xml_lang_blank.xml -feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit.xml -feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_2.xml -feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_3.xml -feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_4.xml -feedparser/tests/wellformed/lang/feed_language.xml -feedparser/tests/wellformed/lang/feed_language_override.xml -feedparser/tests/wellformed/lang/feed_not_xml_lang.xml -feedparser/tests/wellformed/lang/feed_not_xml_lang_2.xml -feedparser/tests/wellformed/lang/feed_tagline_xml_lang.xml -feedparser/tests/wellformed/lang/feed_tagline_xml_lang_blank.xml -feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit.xml -feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_2.xml -feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_3.xml -feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_4.xml -feedparser/tests/wellformed/lang/feed_title_xml_lang.xml -feedparser/tests/wellformed/lang/feed_title_xml_lang_blank.xml -feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit.xml -feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_2.xml -feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_3.xml -feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_4.xml -feedparser/tests/wellformed/lang/feed_xml_lang.xml -feedparser/tests/wellformed/lang/feed_xml_lang_underscore.xml -feedparser/tests/wellformed/lang/http_content_language.xml -feedparser/tests/wellformed/lang/http_content_language_entry_title_inherit.xml -feedparser/tests/wellformed/lang/http_content_language_entry_title_inherit_2.xml -feedparser/tests/wellformed/lang/http_content_language_feed_language.xml -feedparser/tests/wellformed/lang/http_content_language_feed_xml_lang.xml -feedparser/tests/wellformed/lang/item_content_encoded_xml_lang.xml -feedparser/tests/wellformed/lang/item_content_encoded_xml_lang_inherit.xml -feedparser/tests/wellformed/lang/item_dc_language.xml -feedparser/tests/wellformed/lang/item_fullitem_xml_lang.xml -feedparser/tests/wellformed/lang/item_fullitem_xml_lang_inherit.xml -feedparser/tests/wellformed/lang/item_xhtml_body_xml_lang.xml -feedparser/tests/wellformed/lang/item_xhtml_body_xml_lang_inherit.xml -feedparser/tests/wellformed/mf_hcard/3-5-5-org-unicode.xml -feedparser/tests/wellformed/mf_rel_tag/rel_tag_term_no_term.xml -feedparser/tests/wellformed/namespace/atommathml.xml -feedparser/tests/wellformed/namespace/atomsvg.xml -feedparser/tests/wellformed/namespace/atomsvgdctitle.xml -feedparser/tests/wellformed/namespace/atomsvgdesc.xml -feedparser/tests/wellformed/namespace/atomsvgtitle.xml -feedparser/tests/wellformed/namespace/atomthreading.xml -feedparser/tests/wellformed/namespace/atomthreadingwithentry.xml -feedparser/tests/wellformed/namespace/atomxlink.xml -feedparser/tests/wellformed/namespace/rss1.0withModules.xml -feedparser/tests/wellformed/namespace/rss1.0withModulesNoDefNS.xml -feedparser/tests/wellformed/namespace/rss1.0withModulesNoDefNSLocalNameClash.xml -feedparser/tests/wellformed/namespace/rss2.0NSwithModules.xml -feedparser/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNS.xml -feedparser/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNSLocalNameClash.xml -feedparser/tests/wellformed/namespace/rss2.0mathml.xml -feedparser/tests/wellformed/namespace/rss2.0noNSwithModules.xml -feedparser/tests/wellformed/namespace/rss2.0noNSwithModulesLocalNameClash.xml -feedparser/tests/wellformed/namespace/rss2.0svg.xml -feedparser/tests/wellformed/namespace/rss2.0svg5.xml -feedparser/tests/wellformed/namespace/rss2.0svgtitle.xml -feedparser/tests/wellformed/namespace/rss2.0withAtomNS.xml -feedparser/tests/wellformed/namespace/rss2.0xlink.xml -feedparser/tests/wellformed/node_precedence/atom10_arbitrary_element.xml -feedparser/tests/wellformed/node_precedence/atom10_id.xml -feedparser/tests/wellformed/node_precedence/atom10_title.xml -feedparser/tests/wellformed/rdf/doctype_contains_entity_decl.xml -feedparser/tests/wellformed/rdf/rdf_channel_description.xml -feedparser/tests/wellformed/rdf/rdf_channel_link.xml -feedparser/tests/wellformed/rdf/rdf_channel_title.xml -feedparser/tests/wellformed/rdf/rdf_item_description.xml -feedparser/tests/wellformed/rdf/rdf_item_link.xml -feedparser/tests/wellformed/rdf/rdf_item_rdf_about.xml -feedparser/tests/wellformed/rdf/rdf_item_title.xml -feedparser/tests/wellformed/rdf/rss090_channel_title.xml -feedparser/tests/wellformed/rdf/rss090_item_title.xml -feedparser/tests/wellformed/rdf/rss_version_10.xml -feedparser/tests/wellformed/rdf/rss_version_10_not_default_ns.xml -feedparser/tests/wellformed/rss/aaa_wellformed.xml -feedparser/tests/wellformed/rss/channel_author.xml -feedparser/tests/wellformed/rss/channel_author_map_author_detail_email.xml -feedparser/tests/wellformed/rss/channel_author_map_author_detail_email_2.xml -feedparser/tests/wellformed/rss/channel_author_map_author_detail_email_3.xml -feedparser/tests/wellformed/rss/channel_author_map_author_detail_name.xml -feedparser/tests/wellformed/rss/channel_author_map_author_detail_name_2.xml -feedparser/tests/wellformed/rss/channel_category.xml -feedparser/tests/wellformed/rss/channel_category_domain.xml -feedparser/tests/wellformed/rss/channel_category_multiple.xml -feedparser/tests/wellformed/rss/channel_category_multiple_2.xml -feedparser/tests/wellformed/rss/channel_cloud_domain.xml -feedparser/tests/wellformed/rss/channel_cloud_path.xml -feedparser/tests/wellformed/rss/channel_cloud_port.xml -feedparser/tests/wellformed/rss/channel_cloud_protocol.xml -feedparser/tests/wellformed/rss/channel_cloud_registerProcedure.xml -feedparser/tests/wellformed/rss/channel_copyright.xml -feedparser/tests/wellformed/rss/channel_dc_author.xml -feedparser/tests/wellformed/rss/channel_dc_author_map_author_detail_email.xml -feedparser/tests/wellformed/rss/channel_dc_author_map_author_detail_name.xml -feedparser/tests/wellformed/rss/channel_dc_contributor.xml -feedparser/tests/wellformed/rss/channel_dc_creator.xml -feedparser/tests/wellformed/rss/channel_dc_creator_map_author_detail_email.xml -feedparser/tests/wellformed/rss/channel_dc_creator_map_author_detail_name.xml -feedparser/tests/wellformed/rss/channel_dc_date.xml -feedparser/tests/wellformed/rss/channel_dc_date_parsed.xml -feedparser/tests/wellformed/rss/channel_dc_publisher.xml -feedparser/tests/wellformed/rss/channel_dc_publisher_email.xml -feedparser/tests/wellformed/rss/channel_dc_publisher_name.xml -feedparser/tests/wellformed/rss/channel_dc_rights.xml -feedparser/tests/wellformed/rss/channel_dc_subject.xml -feedparser/tests/wellformed/rss/channel_dc_subject_2.xml -feedparser/tests/wellformed/rss/channel_dc_subject_multiple.xml -feedparser/tests/wellformed/rss/channel_dc_title.xml -feedparser/tests/wellformed/rss/channel_dcterms_created.xml -feedparser/tests/wellformed/rss/channel_dcterms_created_parsed.xml -feedparser/tests/wellformed/rss/channel_dcterms_issued.xml -feedparser/tests/wellformed/rss/channel_dcterms_issued_parsed.xml -feedparser/tests/wellformed/rss/channel_dcterms_modified.xml -feedparser/tests/wellformed/rss/channel_dcterms_modified_parsed.xml -feedparser/tests/wellformed/rss/channel_description.xml -feedparser/tests/wellformed/rss/channel_description_escaped_markup.xml -feedparser/tests/wellformed/rss/channel_description_map_tagline.xml -feedparser/tests/wellformed/rss/channel_description_naked_markup.xml -feedparser/tests/wellformed/rss/channel_description_shorttag.xml -feedparser/tests/wellformed/rss/channel_docs.xml -feedparser/tests/wellformed/rss/channel_generator.xml -feedparser/tests/wellformed/rss/channel_image_description.xml -feedparser/tests/wellformed/rss/channel_image_height.xml -feedparser/tests/wellformed/rss/channel_image_link.xml -feedparser/tests/wellformed/rss/channel_image_link_bleed.xml -feedparser/tests/wellformed/rss/channel_image_link_conflict.xml -feedparser/tests/wellformed/rss/channel_image_title.xml -feedparser/tests/wellformed/rss/channel_image_title_conflict.xml -feedparser/tests/wellformed/rss/channel_image_url.xml -feedparser/tests/wellformed/rss/channel_image_width.xml -feedparser/tests/wellformed/rss/channel_lastBuildDate.xml -feedparser/tests/wellformed/rss/channel_lastBuildDate_parsed.xml -feedparser/tests/wellformed/rss/channel_link.xml -feedparser/tests/wellformed/rss/channel_managingEditor.xml -feedparser/tests/wellformed/rss/channel_managingEditor_map_author_detail_email.xml -feedparser/tests/wellformed/rss/channel_managingEditor_map_author_detail_name.xml -feedparser/tests/wellformed/rss/channel_pubDate.xml -feedparser/tests/wellformed/rss/channel_pubDate_map_updated_parsed.xml -feedparser/tests/wellformed/rss/channel_textInput_description.xml -feedparser/tests/wellformed/rss/channel_textInput_description_conflict.xml -feedparser/tests/wellformed/rss/channel_textInput_link.xml -feedparser/tests/wellformed/rss/channel_textInput_link_bleed.xml -feedparser/tests/wellformed/rss/channel_textInput_link_conflict.xml -feedparser/tests/wellformed/rss/channel_textInput_name.xml -feedparser/tests/wellformed/rss/channel_textInput_title.xml -feedparser/tests/wellformed/rss/channel_textInput_title_conflict.xml -feedparser/tests/wellformed/rss/channel_title.xml -feedparser/tests/wellformed/rss/channel_title_apos.xml -feedparser/tests/wellformed/rss/channel_title_gt.xml -feedparser/tests/wellformed/rss/channel_title_lt.xml -feedparser/tests/wellformed/rss/channel_ttl.xml -feedparser/tests/wellformed/rss/channel_webMaster.xml -feedparser/tests/wellformed/rss/channel_webMaster_email.xml -feedparser/tests/wellformed/rss/channel_webMaster_name.xml -feedparser/tests/wellformed/rss/entity_in_doctype.xml -feedparser/tests/wellformed/rss/item_author.xml -feedparser/tests/wellformed/rss/item_author_map_author_detail_email.xml -feedparser/tests/wellformed/rss/item_author_map_author_detail_email2.xml -feedparser/tests/wellformed/rss/item_author_map_author_detail_email3.xml -feedparser/tests/wellformed/rss/item_author_map_author_detail_name.xml -feedparser/tests/wellformed/rss/item_author_map_author_detail_name2.xml -feedparser/tests/wellformed/rss/item_author_map_author_detail_name3.xml -feedparser/tests/wellformed/rss/item_category.xml -feedparser/tests/wellformed/rss/item_category_domain.xml -feedparser/tests/wellformed/rss/item_category_image.xml -feedparser/tests/wellformed/rss/item_category_multiple.xml -feedparser/tests/wellformed/rss/item_category_multiple_2.xml -feedparser/tests/wellformed/rss/item_cc_license.xml -feedparser/tests/wellformed/rss/item_comments.xml -feedparser/tests/wellformed/rss/item_content_encoded.xml -feedparser/tests/wellformed/rss/item_content_encoded_mode.xml -feedparser/tests/wellformed/rss/item_content_encoded_type.xml -feedparser/tests/wellformed/rss/item_creativeCommons_license.xml -feedparser/tests/wellformed/rss/item_dc_author.xml -feedparser/tests/wellformed/rss/item_dc_author_map_author_detail_email.xml -feedparser/tests/wellformed/rss/item_dc_author_map_author_detail_name.xml -feedparser/tests/wellformed/rss/item_dc_contributor.xml -feedparser/tests/wellformed/rss/item_dc_creator.xml -feedparser/tests/wellformed/rss/item_dc_creator_map_author_detail_email.xml -feedparser/tests/wellformed/rss/item_dc_creator_map_author_detail_name.xml -feedparser/tests/wellformed/rss/item_dc_date.xml -feedparser/tests/wellformed/rss/item_dc_date_parsed.xml -feedparser/tests/wellformed/rss/item_dc_description.xml -feedparser/tests/wellformed/rss/item_dc_publisher.xml -feedparser/tests/wellformed/rss/item_dc_publisher_email.xml -feedparser/tests/wellformed/rss/item_dc_publisher_name.xml -feedparser/tests/wellformed/rss/item_dc_rights.xml -feedparser/tests/wellformed/rss/item_dc_subject.xml -feedparser/tests/wellformed/rss/item_dc_subject_2.xml -feedparser/tests/wellformed/rss/item_dc_subject_multiple.xml -feedparser/tests/wellformed/rss/item_dc_title.xml -feedparser/tests/wellformed/rss/item_dcterms_created.xml -feedparser/tests/wellformed/rss/item_dcterms_created_parsed.xml -feedparser/tests/wellformed/rss/item_dcterms_issued.xml -feedparser/tests/wellformed/rss/item_dcterms_issued_parsed.xml -feedparser/tests/wellformed/rss/item_dcterms_modified.xml -feedparser/tests/wellformed/rss/item_dcterms_modified_parsed.xml -feedparser/tests/wellformed/rss/item_description.xml -feedparser/tests/wellformed/rss/item_description_and_summary.xml -feedparser/tests/wellformed/rss/item_description_br.xml -feedparser/tests/wellformed/rss/item_description_br_shorttag.xml -feedparser/tests/wellformed/rss/item_description_code_br.xml -feedparser/tests/wellformed/rss/item_description_escaped_markup.xml -feedparser/tests/wellformed/rss/item_description_map_summary.xml -feedparser/tests/wellformed/rss/item_description_naked_markup.xml -feedparser/tests/wellformed/rss/item_description_not_a_doctype.xml -feedparser/tests/wellformed/rss/item_description_not_a_doctype2.xml -feedparser/tests/wellformed/rss/item_enclosure_length.xml -feedparser/tests/wellformed/rss/item_enclosure_multiple.xml -feedparser/tests/wellformed/rss/item_enclosure_type.xml -feedparser/tests/wellformed/rss/item_enclosure_url.xml -feedparser/tests/wellformed/rss/item_expirationDate.xml -feedparser/tests/wellformed/rss/item_expirationDate_multiple_values.xml -feedparser/tests/wellformed/rss/item_expirationDate_parsed.xml -feedparser/tests/wellformed/rss/item_fullitem.xml -feedparser/tests/wellformed/rss/item_fullitem_mode.xml -feedparser/tests/wellformed/rss/item_fullitem_type.xml -feedparser/tests/wellformed/rss/item_guid.xml -feedparser/tests/wellformed/rss/item_guid_conflict_link.xml -feedparser/tests/wellformed/rss/item_guid_guidislink.xml -feedparser/tests/wellformed/rss/item_guid_isPermaLink_conflict_link.xml -feedparser/tests/wellformed/rss/item_guid_isPermaLink_conflict_link_not_guidislink.xml -feedparser/tests/wellformed/rss/item_guid_isPermaLink_guidislink.xml -feedparser/tests/wellformed/rss/item_guid_isPermaLink_map_link.xml -feedparser/tests/wellformed/rss/item_guid_map_link.xml -feedparser/tests/wellformed/rss/item_guid_not_permalink.xml -feedparser/tests/wellformed/rss/item_guid_not_permalink_conflict_link.xml -feedparser/tests/wellformed/rss/item_guid_not_permalink_not_guidislink.xml -feedparser/tests/wellformed/rss/item_guid_not_permalink_not_guidislink_2.xml -feedparser/tests/wellformed/rss/item_guid_not_permalink_not_url.xml -feedparser/tests/wellformed/rss/item_image_link_bleed.xml -feedparser/tests/wellformed/rss/item_image_link_conflict.xml -feedparser/tests/wellformed/rss/item_link.xml -feedparser/tests/wellformed/rss/item_pubDate.xml -feedparser/tests/wellformed/rss/item_pubDate_map_updated_parsed.xml -feedparser/tests/wellformed/rss/item_source.xml -feedparser/tests/wellformed/rss/item_source_url.xml -feedparser/tests/wellformed/rss/item_summary_and_description.xml -feedparser/tests/wellformed/rss/item_title.xml -feedparser/tests/wellformed/rss/item_xhtml_body.xml -feedparser/tests/wellformed/rss/item_xhtml_body_mode.xml -feedparser/tests/wellformed/rss/item_xhtml_body_type.xml -feedparser/tests/wellformed/rss/newlocation.xml -feedparser/tests/wellformed/rss/rss_namespace_1.xml -feedparser/tests/wellformed/rss/rss_namespace_2.xml -feedparser/tests/wellformed/rss/rss_namespace_3.xml -feedparser/tests/wellformed/rss/rss_namespace_4.xml -feedparser/tests/wellformed/rss/rss_version_090.xml -feedparser/tests/wellformed/rss/rss_version_091_netscape.xml -feedparser/tests/wellformed/rss/rss_version_091_userland.xml -feedparser/tests/wellformed/rss/rss_version_092.xml -feedparser/tests/wellformed/rss/rss_version_093.xml -feedparser/tests/wellformed/rss/rss_version_094.xml -feedparser/tests/wellformed/rss/rss_version_20.xml -feedparser/tests/wellformed/rss/rss_version_201.xml -feedparser/tests/wellformed/rss/rss_version_21.xml -feedparser/tests/wellformed/rss/rss_version_missing.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_abbr.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_accept-charset.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_accept.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_accesskey.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_action.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_align.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_alt.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_autocomplete.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_autofocus.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_autoplay.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_axis.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_background.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_balance.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_bgcolor.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_bgproperties.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_border.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolor.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolordark.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolorlight.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_bottompadding.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_cellpadding.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_cellspacing.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_ch.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_challenge.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_char.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_charoff.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_charset.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_checked.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_choff.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_cite.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_class.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_clear.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_color.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_cols.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_colspan.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_compact.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_contenteditable.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_coords.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_data.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_datafld.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_datapagesize.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_datasrc.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_datetime.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_default.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_delay.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_dir.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_disabled.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_draggable.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_dynsrc.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_enctype.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_end.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_face.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_for.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_form.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_frame.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_galleryimg.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_gutter.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_headers.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_height.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_hidden.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_hidefocus.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_high.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_href.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_hreflang.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_hspace.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_icon.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_id.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_inputmode.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_ismap.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_keytype.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_label.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_lang.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_leftspacing.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_list.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_longdesc.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_loop.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_loopcount.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_loopend.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_loopstart.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_low.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_lowsrc.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_max.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_maxlength.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_media.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_method.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_min.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_multiple.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_name.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_nohref.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_noshade.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_nowrap.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_open.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_optimum.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_pattern.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_ping.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_point-size.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_poster.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_pqg.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_preload.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_prompt.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_radiogroup.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_readonly.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_rel.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_repeat-max.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_repeat-min.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_replace.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_required.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_rev.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_rightspacing.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_rows.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_rowspan.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_rules.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_scope.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_selected.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_shape.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_size.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_span.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_src.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_start.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_step.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_summary.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_suppress.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_tabindex.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_target.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_template.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_title.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_toppadding.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_type.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_unselectable.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_urn.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_usemap.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_valign.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_value.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_variable.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_volume.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_vrml.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_vspace.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_width.xml -feedparser/tests/wellformed/sanitize/acceptable_attribute_wrap.xml -feedparser/tests/wellformed/sanitize/acceptable_element_a.xml -feedparser/tests/wellformed/sanitize/acceptable_element_abbr.xml -feedparser/tests/wellformed/sanitize/acceptable_element_acronym.xml -feedparser/tests/wellformed/sanitize/acceptable_element_address.xml -feedparser/tests/wellformed/sanitize/acceptable_element_area.xml -feedparser/tests/wellformed/sanitize/acceptable_element_article.xml -feedparser/tests/wellformed/sanitize/acceptable_element_aside.xml -feedparser/tests/wellformed/sanitize/acceptable_element_audio.xml -feedparser/tests/wellformed/sanitize/acceptable_element_b.xml -feedparser/tests/wellformed/sanitize/acceptable_element_big.xml -feedparser/tests/wellformed/sanitize/acceptable_element_blockquote.xml -feedparser/tests/wellformed/sanitize/acceptable_element_br.xml -feedparser/tests/wellformed/sanitize/acceptable_element_button.xml -feedparser/tests/wellformed/sanitize/acceptable_element_canvas.xml -feedparser/tests/wellformed/sanitize/acceptable_element_caption.xml -feedparser/tests/wellformed/sanitize/acceptable_element_center.xml -feedparser/tests/wellformed/sanitize/acceptable_element_cite.xml -feedparser/tests/wellformed/sanitize/acceptable_element_code.xml -feedparser/tests/wellformed/sanitize/acceptable_element_col.xml -feedparser/tests/wellformed/sanitize/acceptable_element_colgroup.xml -feedparser/tests/wellformed/sanitize/acceptable_element_command.xml -feedparser/tests/wellformed/sanitize/acceptable_element_datagrid.xml -feedparser/tests/wellformed/sanitize/acceptable_element_datalist.xml -feedparser/tests/wellformed/sanitize/acceptable_element_dd.xml -feedparser/tests/wellformed/sanitize/acceptable_element_del.xml -feedparser/tests/wellformed/sanitize/acceptable_element_details.xml -feedparser/tests/wellformed/sanitize/acceptable_element_dfn.xml -feedparser/tests/wellformed/sanitize/acceptable_element_dialog.xml -feedparser/tests/wellformed/sanitize/acceptable_element_dir.xml -feedparser/tests/wellformed/sanitize/acceptable_element_div.xml -feedparser/tests/wellformed/sanitize/acceptable_element_dl.xml -feedparser/tests/wellformed/sanitize/acceptable_element_dt.xml -feedparser/tests/wellformed/sanitize/acceptable_element_em.xml -feedparser/tests/wellformed/sanitize/acceptable_element_event-source.xml -feedparser/tests/wellformed/sanitize/acceptable_element_fieldset.xml -feedparser/tests/wellformed/sanitize/acceptable_element_figure.xml -feedparser/tests/wellformed/sanitize/acceptable_element_font.xml -feedparser/tests/wellformed/sanitize/acceptable_element_footer.xml -feedparser/tests/wellformed/sanitize/acceptable_element_form.xml -feedparser/tests/wellformed/sanitize/acceptable_element_h1.xml -feedparser/tests/wellformed/sanitize/acceptable_element_h2.xml -feedparser/tests/wellformed/sanitize/acceptable_element_h3.xml -feedparser/tests/wellformed/sanitize/acceptable_element_h4.xml -feedparser/tests/wellformed/sanitize/acceptable_element_h5.xml -feedparser/tests/wellformed/sanitize/acceptable_element_h6.xml -feedparser/tests/wellformed/sanitize/acceptable_element_header.xml -feedparser/tests/wellformed/sanitize/acceptable_element_hr.xml -feedparser/tests/wellformed/sanitize/acceptable_element_i.xml -feedparser/tests/wellformed/sanitize/acceptable_element_img.xml -feedparser/tests/wellformed/sanitize/acceptable_element_input.xml -feedparser/tests/wellformed/sanitize/acceptable_element_ins.xml -feedparser/tests/wellformed/sanitize/acceptable_element_kbd.xml -feedparser/tests/wellformed/sanitize/acceptable_element_keygen.xml -feedparser/tests/wellformed/sanitize/acceptable_element_label.xml -feedparser/tests/wellformed/sanitize/acceptable_element_legend.xml -feedparser/tests/wellformed/sanitize/acceptable_element_li.xml -feedparser/tests/wellformed/sanitize/acceptable_element_m.xml -feedparser/tests/wellformed/sanitize/acceptable_element_map.xml -feedparser/tests/wellformed/sanitize/acceptable_element_menu.xml -feedparser/tests/wellformed/sanitize/acceptable_element_meter.xml -feedparser/tests/wellformed/sanitize/acceptable_element_multicol.xml -feedparser/tests/wellformed/sanitize/acceptable_element_nav.xml -feedparser/tests/wellformed/sanitize/acceptable_element_nextid.xml -feedparser/tests/wellformed/sanitize/acceptable_element_noscript.xml -feedparser/tests/wellformed/sanitize/acceptable_element_ol.xml -feedparser/tests/wellformed/sanitize/acceptable_element_optgroup.xml -feedparser/tests/wellformed/sanitize/acceptable_element_option.xml -feedparser/tests/wellformed/sanitize/acceptable_element_output.xml -feedparser/tests/wellformed/sanitize/acceptable_element_p.xml -feedparser/tests/wellformed/sanitize/acceptable_element_pre.xml -feedparser/tests/wellformed/sanitize/acceptable_element_progress.xml -feedparser/tests/wellformed/sanitize/acceptable_element_q.xml -feedparser/tests/wellformed/sanitize/acceptable_element_s.xml -feedparser/tests/wellformed/sanitize/acceptable_element_samp.xml -feedparser/tests/wellformed/sanitize/acceptable_element_section.xml -feedparser/tests/wellformed/sanitize/acceptable_element_select.xml -feedparser/tests/wellformed/sanitize/acceptable_element_small.xml -feedparser/tests/wellformed/sanitize/acceptable_element_sound.xml -feedparser/tests/wellformed/sanitize/acceptable_element_source.xml -feedparser/tests/wellformed/sanitize/acceptable_element_spacer.xml -feedparser/tests/wellformed/sanitize/acceptable_element_span.xml -feedparser/tests/wellformed/sanitize/acceptable_element_strike.xml -feedparser/tests/wellformed/sanitize/acceptable_element_strong.xml -feedparser/tests/wellformed/sanitize/acceptable_element_sub.xml -feedparser/tests/wellformed/sanitize/acceptable_element_sup.xml -feedparser/tests/wellformed/sanitize/acceptable_element_table.xml -feedparser/tests/wellformed/sanitize/acceptable_element_tbody.xml -feedparser/tests/wellformed/sanitize/acceptable_element_td.xml -feedparser/tests/wellformed/sanitize/acceptable_element_textarea.xml -feedparser/tests/wellformed/sanitize/acceptable_element_tfoot.xml -feedparser/tests/wellformed/sanitize/acceptable_element_th.xml -feedparser/tests/wellformed/sanitize/acceptable_element_thead.xml -feedparser/tests/wellformed/sanitize/acceptable_element_time.xml -feedparser/tests/wellformed/sanitize/acceptable_element_tr.xml -feedparser/tests/wellformed/sanitize/acceptable_element_tt.xml -feedparser/tests/wellformed/sanitize/acceptable_element_u.xml -feedparser/tests/wellformed/sanitize/acceptable_element_ul.xml -feedparser/tests/wellformed/sanitize/acceptable_element_var.xml -feedparser/tests/wellformed/sanitize/acceptable_element_video.xml -feedparser/tests/wellformed/sanitize/blogger_dollar_sign_in_attribute.xml -feedparser/tests/wellformed/sanitize/entry_content_applet.xml -feedparser/tests/wellformed/sanitize/entry_content_blink.xml -feedparser/tests/wellformed/sanitize/entry_content_crazy.xml -feedparser/tests/wellformed/sanitize/entry_content_embed.xml -feedparser/tests/wellformed/sanitize/entry_content_frame.xml -feedparser/tests/wellformed/sanitize/entry_content_iframe.xml -feedparser/tests/wellformed/sanitize/entry_content_link.xml -feedparser/tests/wellformed/sanitize/entry_content_meta.xml -feedparser/tests/wellformed/sanitize/entry_content_object.xml -feedparser/tests/wellformed/sanitize/entry_content_onabort.xml -feedparser/tests/wellformed/sanitize/entry_content_onblur.xml -feedparser/tests/wellformed/sanitize/entry_content_onchange.xml -feedparser/tests/wellformed/sanitize/entry_content_onclick.xml -feedparser/tests/wellformed/sanitize/entry_content_ondblclick.xml -feedparser/tests/wellformed/sanitize/entry_content_onerror.xml -feedparser/tests/wellformed/sanitize/entry_content_onfocus.xml -feedparser/tests/wellformed/sanitize/entry_content_onkeydown.xml -feedparser/tests/wellformed/sanitize/entry_content_onkeypress.xml -feedparser/tests/wellformed/sanitize/entry_content_onkeyup.xml -feedparser/tests/wellformed/sanitize/entry_content_onload.xml -feedparser/tests/wellformed/sanitize/entry_content_onmousedown.xml -feedparser/tests/wellformed/sanitize/entry_content_onmouseout.xml -feedparser/tests/wellformed/sanitize/entry_content_onmouseover.xml -feedparser/tests/wellformed/sanitize/entry_content_onmouseup.xml -feedparser/tests/wellformed/sanitize/entry_content_onreset.xml -feedparser/tests/wellformed/sanitize/entry_content_onresize.xml -feedparser/tests/wellformed/sanitize/entry_content_onsubmit.xml -feedparser/tests/wellformed/sanitize/entry_content_onunload.xml -feedparser/tests/wellformed/sanitize/entry_content_script.xml -feedparser/tests/wellformed/sanitize/entry_content_script_base64.xml -feedparser/tests/wellformed/sanitize/entry_content_script_cdata.xml -feedparser/tests/wellformed/sanitize/entry_content_script_inline.xml -feedparser/tests/wellformed/sanitize/entry_content_style.xml -feedparser/tests/wellformed/sanitize/entry_content_style_tag.xml -feedparser/tests/wellformed/sanitize/entry_summary_applet.xml -feedparser/tests/wellformed/sanitize/entry_summary_blink.xml -feedparser/tests/wellformed/sanitize/entry_summary_crazy.xml -feedparser/tests/wellformed/sanitize/entry_summary_embed.xml -feedparser/tests/wellformed/sanitize/entry_summary_frame.xml -feedparser/tests/wellformed/sanitize/entry_summary_iframe.xml -feedparser/tests/wellformed/sanitize/entry_summary_link.xml -feedparser/tests/wellformed/sanitize/entry_summary_meta.xml -feedparser/tests/wellformed/sanitize/entry_summary_object.xml -feedparser/tests/wellformed/sanitize/entry_summary_onabort.xml -feedparser/tests/wellformed/sanitize/entry_summary_onblur.xml -feedparser/tests/wellformed/sanitize/entry_summary_onchange.xml -feedparser/tests/wellformed/sanitize/entry_summary_onclick.xml -feedparser/tests/wellformed/sanitize/entry_summary_ondblclick.xml -feedparser/tests/wellformed/sanitize/entry_summary_onerror.xml -feedparser/tests/wellformed/sanitize/entry_summary_onfocus.xml -feedparser/tests/wellformed/sanitize/entry_summary_onkeydown.xml -feedparser/tests/wellformed/sanitize/entry_summary_onkeypress.xml -feedparser/tests/wellformed/sanitize/entry_summary_onkeyup.xml -feedparser/tests/wellformed/sanitize/entry_summary_onload.xml -feedparser/tests/wellformed/sanitize/entry_summary_onmousedown.xml -feedparser/tests/wellformed/sanitize/entry_summary_onmouseout.xml -feedparser/tests/wellformed/sanitize/entry_summary_onmouseover.xml -feedparser/tests/wellformed/sanitize/entry_summary_onmouseup.xml -feedparser/tests/wellformed/sanitize/entry_summary_onreset.xml -feedparser/tests/wellformed/sanitize/entry_summary_onresize.xml -feedparser/tests/wellformed/sanitize/entry_summary_onsubmit.xml -feedparser/tests/wellformed/sanitize/entry_summary_onunload.xml -feedparser/tests/wellformed/sanitize/entry_summary_script.xml -feedparser/tests/wellformed/sanitize/entry_summary_script_base64.xml -feedparser/tests/wellformed/sanitize/entry_summary_script_cdata.xml -feedparser/tests/wellformed/sanitize/entry_summary_script_inline.xml -feedparser/tests/wellformed/sanitize/entry_summary_script_map_description.xml -feedparser/tests/wellformed/sanitize/entry_summary_style.xml -feedparser/tests/wellformed/sanitize/entry_title_applet.xml -feedparser/tests/wellformed/sanitize/entry_title_blink.xml -feedparser/tests/wellformed/sanitize/entry_title_crazy.xml -feedparser/tests/wellformed/sanitize/entry_title_embed.xml -feedparser/tests/wellformed/sanitize/entry_title_frame.xml -feedparser/tests/wellformed/sanitize/entry_title_iframe.xml -feedparser/tests/wellformed/sanitize/entry_title_link.xml -feedparser/tests/wellformed/sanitize/entry_title_meta.xml -feedparser/tests/wellformed/sanitize/entry_title_object.xml -feedparser/tests/wellformed/sanitize/entry_title_onabort.xml -feedparser/tests/wellformed/sanitize/entry_title_onblur.xml -feedparser/tests/wellformed/sanitize/entry_title_onchange.xml -feedparser/tests/wellformed/sanitize/entry_title_onclick.xml -feedparser/tests/wellformed/sanitize/entry_title_ondblclick.xml -feedparser/tests/wellformed/sanitize/entry_title_onerror.xml -feedparser/tests/wellformed/sanitize/entry_title_onfocus.xml -feedparser/tests/wellformed/sanitize/entry_title_onkeydown.xml -feedparser/tests/wellformed/sanitize/entry_title_onkeypress.xml -feedparser/tests/wellformed/sanitize/entry_title_onkeyup.xml -feedparser/tests/wellformed/sanitize/entry_title_onload.xml -feedparser/tests/wellformed/sanitize/entry_title_onmousedown.xml -feedparser/tests/wellformed/sanitize/entry_title_onmouseout.xml -feedparser/tests/wellformed/sanitize/entry_title_onmouseover.xml -feedparser/tests/wellformed/sanitize/entry_title_onmouseup.xml -feedparser/tests/wellformed/sanitize/entry_title_onreset.xml -feedparser/tests/wellformed/sanitize/entry_title_onresize.xml -feedparser/tests/wellformed/sanitize/entry_title_onsubmit.xml -feedparser/tests/wellformed/sanitize/entry_title_onunload.xml -feedparser/tests/wellformed/sanitize/entry_title_script.xml -feedparser/tests/wellformed/sanitize/entry_title_script_cdata.xml -feedparser/tests/wellformed/sanitize/entry_title_script_inline.xml -feedparser/tests/wellformed/sanitize/entry_title_style.xml -feedparser/tests/wellformed/sanitize/feed_copyright_applet.xml -feedparser/tests/wellformed/sanitize/feed_copyright_blink.xml -feedparser/tests/wellformed/sanitize/feed_copyright_crazy.xml -feedparser/tests/wellformed/sanitize/feed_copyright_embed.xml -feedparser/tests/wellformed/sanitize/feed_copyright_frame.xml -feedparser/tests/wellformed/sanitize/feed_copyright_iframe.xml -feedparser/tests/wellformed/sanitize/feed_copyright_link.xml -feedparser/tests/wellformed/sanitize/feed_copyright_meta.xml -feedparser/tests/wellformed/sanitize/feed_copyright_object.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onabort.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onblur.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onchange.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onclick.xml -feedparser/tests/wellformed/sanitize/feed_copyright_ondblclick.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onerror.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onfocus.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onkeydown.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onkeypress.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onkeyup.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onload.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onmousedown.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onmouseout.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onmouseover.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onmouseup.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onreset.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onresize.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onsubmit.xml -feedparser/tests/wellformed/sanitize/feed_copyright_onunload.xml -feedparser/tests/wellformed/sanitize/feed_copyright_script.xml -feedparser/tests/wellformed/sanitize/feed_copyright_script_cdata.xml -feedparser/tests/wellformed/sanitize/feed_copyright_script_inline.xml -feedparser/tests/wellformed/sanitize/feed_copyright_style.xml -feedparser/tests/wellformed/sanitize/feed_info_applet.xml -feedparser/tests/wellformed/sanitize/feed_info_blink.xml -feedparser/tests/wellformed/sanitize/feed_info_crazy.xml -feedparser/tests/wellformed/sanitize/feed_info_embed.xml -feedparser/tests/wellformed/sanitize/feed_info_frame.xml -feedparser/tests/wellformed/sanitize/feed_info_iframe.xml -feedparser/tests/wellformed/sanitize/feed_info_link.xml -feedparser/tests/wellformed/sanitize/feed_info_meta.xml -feedparser/tests/wellformed/sanitize/feed_info_object.xml -feedparser/tests/wellformed/sanitize/feed_info_onabort.xml -feedparser/tests/wellformed/sanitize/feed_info_onblur.xml -feedparser/tests/wellformed/sanitize/feed_info_onchange.xml -feedparser/tests/wellformed/sanitize/feed_info_onclick.xml -feedparser/tests/wellformed/sanitize/feed_info_ondblclick.xml -feedparser/tests/wellformed/sanitize/feed_info_onerror.xml -feedparser/tests/wellformed/sanitize/feed_info_onfocus.xml -feedparser/tests/wellformed/sanitize/feed_info_onkeydown.xml -feedparser/tests/wellformed/sanitize/feed_info_onkeypress.xml -feedparser/tests/wellformed/sanitize/feed_info_onkeyup.xml -feedparser/tests/wellformed/sanitize/feed_info_onload.xml -feedparser/tests/wellformed/sanitize/feed_info_onmousedown.xml -feedparser/tests/wellformed/sanitize/feed_info_onmouseout.xml -feedparser/tests/wellformed/sanitize/feed_info_onmouseover.xml -feedparser/tests/wellformed/sanitize/feed_info_onmouseup.xml -feedparser/tests/wellformed/sanitize/feed_info_onreset.xml -feedparser/tests/wellformed/sanitize/feed_info_onresize.xml -feedparser/tests/wellformed/sanitize/feed_info_onsubmit.xml -feedparser/tests/wellformed/sanitize/feed_info_onunload.xml -feedparser/tests/wellformed/sanitize/feed_info_script.xml -feedparser/tests/wellformed/sanitize/feed_info_script_cdata.xml -feedparser/tests/wellformed/sanitize/feed_info_script_inline.xml -feedparser/tests/wellformed/sanitize/feed_info_style.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_applet.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_blink.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_crazy.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_embed.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_frame.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_iframe.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_link.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_meta.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_object.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onabort.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onblur.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onchange.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onclick.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_ondblclick.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onerror.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onfocus.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onkeydown.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onkeypress.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onkeyup.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onload.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onmousedown.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseout.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseover.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseup.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onreset.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onresize.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onsubmit.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_onunload.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_script.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_script_cdata.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_script_inline.xml -feedparser/tests/wellformed/sanitize/feed_subtitle_style.xml -feedparser/tests/wellformed/sanitize/feed_tagline_applet.xml -feedparser/tests/wellformed/sanitize/feed_tagline_blink.xml -feedparser/tests/wellformed/sanitize/feed_tagline_crazy.xml -feedparser/tests/wellformed/sanitize/feed_tagline_embed.xml -feedparser/tests/wellformed/sanitize/feed_tagline_frame.xml -feedparser/tests/wellformed/sanitize/feed_tagline_iframe.xml -feedparser/tests/wellformed/sanitize/feed_tagline_link.xml -feedparser/tests/wellformed/sanitize/feed_tagline_meta.xml -feedparser/tests/wellformed/sanitize/feed_tagline_object.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onabort.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onblur.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onchange.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onclick.xml -feedparser/tests/wellformed/sanitize/feed_tagline_ondblclick.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onerror.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onfocus.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onkeydown.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onkeypress.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onkeyup.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onload.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onmousedown.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onmouseout.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onmouseover.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onmouseup.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onreset.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onresize.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onsubmit.xml -feedparser/tests/wellformed/sanitize/feed_tagline_onunload.xml -feedparser/tests/wellformed/sanitize/feed_tagline_script.xml -feedparser/tests/wellformed/sanitize/feed_tagline_script_cdata.xml -feedparser/tests/wellformed/sanitize/feed_tagline_script_inline.xml -feedparser/tests/wellformed/sanitize/feed_tagline_script_map_description.xml -feedparser/tests/wellformed/sanitize/feed_tagline_style.xml -feedparser/tests/wellformed/sanitize/feed_title_applet.xml -feedparser/tests/wellformed/sanitize/feed_title_blink.xml -feedparser/tests/wellformed/sanitize/feed_title_crazy.xml -feedparser/tests/wellformed/sanitize/feed_title_embed.xml -feedparser/tests/wellformed/sanitize/feed_title_frame.xml -feedparser/tests/wellformed/sanitize/feed_title_iframe.xml -feedparser/tests/wellformed/sanitize/feed_title_link.xml -feedparser/tests/wellformed/sanitize/feed_title_meta.xml -feedparser/tests/wellformed/sanitize/feed_title_object.xml -feedparser/tests/wellformed/sanitize/feed_title_onabort.xml -feedparser/tests/wellformed/sanitize/feed_title_onblur.xml -feedparser/tests/wellformed/sanitize/feed_title_onchange.xml -feedparser/tests/wellformed/sanitize/feed_title_onclick.xml -feedparser/tests/wellformed/sanitize/feed_title_ondblclick.xml -feedparser/tests/wellformed/sanitize/feed_title_onerror.xml -feedparser/tests/wellformed/sanitize/feed_title_onfocus.xml -feedparser/tests/wellformed/sanitize/feed_title_onkeydown.xml -feedparser/tests/wellformed/sanitize/feed_title_onkeypress.xml -feedparser/tests/wellformed/sanitize/feed_title_onkeyup.xml -feedparser/tests/wellformed/sanitize/feed_title_onload.xml -feedparser/tests/wellformed/sanitize/feed_title_onmousedown.xml -feedparser/tests/wellformed/sanitize/feed_title_onmouseout.xml -feedparser/tests/wellformed/sanitize/feed_title_onmouseover.xml -feedparser/tests/wellformed/sanitize/feed_title_onmouseup.xml -feedparser/tests/wellformed/sanitize/feed_title_onreset.xml -feedparser/tests/wellformed/sanitize/feed_title_onresize.xml -feedparser/tests/wellformed/sanitize/feed_title_onsubmit.xml -feedparser/tests/wellformed/sanitize/feed_title_onunload.xml -feedparser/tests/wellformed/sanitize/feed_title_script.xml -feedparser/tests/wellformed/sanitize/feed_title_script_cdata.xml -feedparser/tests/wellformed/sanitize/feed_title_script_inline.xml -feedparser/tests/wellformed/sanitize/feed_title_style.xml -feedparser/tests/wellformed/sanitize/feed_title_unacceptable_uri.xml -feedparser/tests/wellformed/sanitize/item_body_applet.xml -feedparser/tests/wellformed/sanitize/item_body_blink.xml -feedparser/tests/wellformed/sanitize/item_body_embed.xml -feedparser/tests/wellformed/sanitize/item_body_frame.xml -feedparser/tests/wellformed/sanitize/item_body_iframe.xml -feedparser/tests/wellformed/sanitize/item_body_link.xml -feedparser/tests/wellformed/sanitize/item_body_meta.xml -feedparser/tests/wellformed/sanitize/item_body_object.xml -feedparser/tests/wellformed/sanitize/item_body_onabort.xml -feedparser/tests/wellformed/sanitize/item_body_onblur.xml -feedparser/tests/wellformed/sanitize/item_body_onchange.xml -feedparser/tests/wellformed/sanitize/item_body_onclick.xml -feedparser/tests/wellformed/sanitize/item_body_ondblclick.xml -feedparser/tests/wellformed/sanitize/item_body_onerror.xml -feedparser/tests/wellformed/sanitize/item_body_onfocus.xml -feedparser/tests/wellformed/sanitize/item_body_onkeydown.xml -feedparser/tests/wellformed/sanitize/item_body_onkeypress.xml -feedparser/tests/wellformed/sanitize/item_body_onkeyup.xml -feedparser/tests/wellformed/sanitize/item_body_onload.xml -feedparser/tests/wellformed/sanitize/item_body_onmousedown.xml -feedparser/tests/wellformed/sanitize/item_body_onmouseout.xml -feedparser/tests/wellformed/sanitize/item_body_onmouseover.xml -feedparser/tests/wellformed/sanitize/item_body_onmouseup.xml -feedparser/tests/wellformed/sanitize/item_body_onreset.xml -feedparser/tests/wellformed/sanitize/item_body_onresize.xml -feedparser/tests/wellformed/sanitize/item_body_onsubmit.xml -feedparser/tests/wellformed/sanitize/item_body_onunload.xml -feedparser/tests/wellformed/sanitize/item_body_script.xml -feedparser/tests/wellformed/sanitize/item_body_script_map_content.xml -feedparser/tests/wellformed/sanitize/item_body_style.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_applet.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_blink.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_crazy.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_embed.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_frame.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_iframe.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_link.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_map_content.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_meta.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_object.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onabort.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onblur.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onchange.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onclick.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_ondblclick.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onerror.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onfocus.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onkeydown.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onkeypress.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onkeyup.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onload.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onmousedown.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onmouseout.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onmouseover.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onmouseup.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onreset.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onresize.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onsubmit.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_onunload.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_script.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_script_cdata.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_script_map_content.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_script_nested_cdata.xml -feedparser/tests/wellformed/sanitize/item_content_encoded_style.xml -feedparser/tests/wellformed/sanitize/item_description_applet.xml -feedparser/tests/wellformed/sanitize/item_description_blink.xml -feedparser/tests/wellformed/sanitize/item_description_crazy.xml -feedparser/tests/wellformed/sanitize/item_description_embed.xml -feedparser/tests/wellformed/sanitize/item_description_frame.xml -feedparser/tests/wellformed/sanitize/item_description_iframe.xml -feedparser/tests/wellformed/sanitize/item_description_link.xml -feedparser/tests/wellformed/sanitize/item_description_meta.xml -feedparser/tests/wellformed/sanitize/item_description_object.xml -feedparser/tests/wellformed/sanitize/item_description_onabort.xml -feedparser/tests/wellformed/sanitize/item_description_onblur.xml -feedparser/tests/wellformed/sanitize/item_description_onchange.xml -feedparser/tests/wellformed/sanitize/item_description_onclick.xml -feedparser/tests/wellformed/sanitize/item_description_ondblclick.xml -feedparser/tests/wellformed/sanitize/item_description_onerror.xml -feedparser/tests/wellformed/sanitize/item_description_onfocus.xml -feedparser/tests/wellformed/sanitize/item_description_onkeydown.xml -feedparser/tests/wellformed/sanitize/item_description_onkeypress.xml -feedparser/tests/wellformed/sanitize/item_description_onkeyup.xml -feedparser/tests/wellformed/sanitize/item_description_onload.xml -feedparser/tests/wellformed/sanitize/item_description_onmousedown.xml -feedparser/tests/wellformed/sanitize/item_description_onmouseout.xml -feedparser/tests/wellformed/sanitize/item_description_onmouseover.xml -feedparser/tests/wellformed/sanitize/item_description_onmouseup.xml -feedparser/tests/wellformed/sanitize/item_description_onreset.xml -feedparser/tests/wellformed/sanitize/item_description_onresize.xml -feedparser/tests/wellformed/sanitize/item_description_onsubmit.xml -feedparser/tests/wellformed/sanitize/item_description_onunload.xml -feedparser/tests/wellformed/sanitize/item_description_script.xml -feedparser/tests/wellformed/sanitize/item_description_script_cdata.xml -feedparser/tests/wellformed/sanitize/item_description_script_map_summary.xml -feedparser/tests/wellformed/sanitize/item_description_style.xml -feedparser/tests/wellformed/sanitize/item_fullitem_applet.xml -feedparser/tests/wellformed/sanitize/item_fullitem_blink.xml -feedparser/tests/wellformed/sanitize/item_fullitem_crazy.xml -feedparser/tests/wellformed/sanitize/item_fullitem_embed.xml -feedparser/tests/wellformed/sanitize/item_fullitem_frame.xml -feedparser/tests/wellformed/sanitize/item_fullitem_iframe.xml -feedparser/tests/wellformed/sanitize/item_fullitem_link.xml -feedparser/tests/wellformed/sanitize/item_fullitem_meta.xml -feedparser/tests/wellformed/sanitize/item_fullitem_object.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onabort.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onblur.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onchange.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onclick.xml -feedparser/tests/wellformed/sanitize/item_fullitem_ondblclick.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onerror.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onfocus.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onkeydown.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onkeypress.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onkeyup.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onload.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onmousedown.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onmouseout.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onmouseover.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onmouseup.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onreset.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onresize.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onsubmit.xml -feedparser/tests/wellformed/sanitize/item_fullitem_onunload.xml -feedparser/tests/wellformed/sanitize/item_fullitem_script.xml -feedparser/tests/wellformed/sanitize/item_fullitem_script_cdata.xml -feedparser/tests/wellformed/sanitize/item_fullitem_script_map_summary.xml -feedparser/tests/wellformed/sanitize/item_fullitem_style.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_applet.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_blink.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_embed.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_frame.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_iframe.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_link.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_meta.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_object.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onabort.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onblur.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onchange.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onclick.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_ondblclick.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onerror.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onfocus.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onkeydown.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onkeypress.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onkeyup.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onload.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onmousedown.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onmouseout.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onmouseover.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onmouseup.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onreset.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onresize.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onsubmit.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_onunload.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_script.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_script_map_content.xml -feedparser/tests/wellformed/sanitize/item_xhtml_body_style.xml -feedparser/tests/wellformed/sanitize/large_atom_feed_that_needs_css_sanitisation.xml -feedparser/tests/wellformed/sanitize/style_background_repeat_repeat_x.xml -feedparser/tests/wellformed/sanitize/style_background_url.xml -feedparser/tests/wellformed/sanitize/style_background_yellow.xml -feedparser/tests/wellformed/sanitize/style_border_0.xml -feedparser/tests/wellformed/sanitize/style_border_1px_solid_rgb_0_0_0_.xml -feedparser/tests/wellformed/sanitize/style_border_3px_solid_ccc.xml -feedparser/tests/wellformed/sanitize/style_border_bottom_0pt.xml -feedparser/tests/wellformed/sanitize/style_border_bottom_dashed.xml -feedparser/tests/wellformed/sanitize/style_border_bottom_dotted.xml -feedparser/tests/wellformed/sanitize/style_border_collapse_collapse.xml -feedparser/tests/wellformed/sanitize/style_border_left_0pt.xml -feedparser/tests/wellformed/sanitize/style_border_medium_none_.xml -feedparser/tests/wellformed/sanitize/style_border_none_important.xml -feedparser/tests/wellformed/sanitize/style_border_right_0pt.xml -feedparser/tests/wellformed/sanitize/style_border_solid_2px_000000.xml -feedparser/tests/wellformed/sanitize/style_border_top_0pt.xml -feedparser/tests/wellformed/sanitize/style_clear_both.xml -feedparser/tests/wellformed/sanitize/style_color_000080.xml -feedparser/tests/wellformed/sanitize/style_color_008.xml -feedparser/tests/wellformed/sanitize/style_color_999999.xml -feedparser/tests/wellformed/sanitize/style_color_blue.xml -feedparser/tests/wellformed/sanitize/style_color_maroon.xml -feedparser/tests/wellformed/sanitize/style_color_red.xml -feedparser/tests/wellformed/sanitize/style_color_rgb_0_128_0_.xml -feedparser/tests/wellformed/sanitize/style_color_teal.xml -feedparser/tests/wellformed/sanitize/style_cursor_pointer.xml -feedparser/tests/wellformed/sanitize/style_display_block.xml -feedparser/tests/wellformed/sanitize/style_float_left.xml -feedparser/tests/wellformed/sanitize/style_float_right.xml -feedparser/tests/wellformed/sanitize/style_font_family__comic_sans_ms.xml -feedparser/tests/wellformed/sanitize/style_font_family_arial_sans_serif.xml -feedparser/tests/wellformed/sanitize/style_font_family_lucida_console_.xml -feedparser/tests/wellformed/sanitize/style_font_family_symbol.xml -feedparser/tests/wellformed/sanitize/style_font_size_0_9em.xml -feedparser/tests/wellformed/sanitize/style_font_size_10pt.xml -feedparser/tests/wellformed/sanitize/style_font_size_10px.xml -feedparser/tests/wellformed/sanitize/style_font_size_smaller.xml -feedparser/tests/wellformed/sanitize/style_font_style_italic.xml -feedparser/tests/wellformed/sanitize/style_font_weight_bold.xml -feedparser/tests/wellformed/sanitize/style_height_100px.xml -feedparser/tests/wellformed/sanitize/style_height_2px.xml -feedparser/tests/wellformed/sanitize/style_letter_spacing_1px.xml -feedparser/tests/wellformed/sanitize/style_line_height_normal.xml -feedparser/tests/wellformed/sanitize/style_margin_0.xml -feedparser/tests/wellformed/sanitize/style_margin_0_15px_0_0.xml -feedparser/tests/wellformed/sanitize/style_margin_0px_important.xml -feedparser/tests/wellformed/sanitize/style_margin_5px.xml -feedparser/tests/wellformed/sanitize/style_margin_99999em.xml -feedparser/tests/wellformed/sanitize/style_margin_bottom_0pt.xml -feedparser/tests/wellformed/sanitize/style_margin_bottom_10px.xml -feedparser/tests/wellformed/sanitize/style_margin_left_5px.xml -feedparser/tests/wellformed/sanitize/style_margin_right_0px.xml -feedparser/tests/wellformed/sanitize/style_margin_top_0in.xml -feedparser/tests/wellformed/sanitize/style_margin_top_10px.xml -feedparser/tests/wellformed/sanitize/style_moz_background_clip_initial.xml -feedparser/tests/wellformed/sanitize/style_mso_ansi_language_nl.xml -feedparser/tests/wellformed/sanitize/style_mso_bidi_font_weight_normal.xml -feedparser/tests/wellformed/sanitize/style_mso_highlight_yellow.xml -feedparser/tests/wellformed/sanitize/style_mso_layout_grid_align_none.xml -feedparser/tests/wellformed/sanitize/style_mso_list_l0_level1_lfo1.xml -feedparser/tests/wellformed/sanitize/style_mso_no_proof_yes.xml -feedparser/tests/wellformed/sanitize/style_mso_spacerun_yes.xml -feedparser/tests/wellformed/sanitize/style_mso_tab_count_3.xml -feedparser/tests/wellformed/sanitize/style_overflow_auto.xml -feedparser/tests/wellformed/sanitize/style_padding_0.xml -feedparser/tests/wellformed/sanitize/style_padding_0_0_12px_12px.xml -feedparser/tests/wellformed/sanitize/style_padding_2ex.xml -feedparser/tests/wellformed/sanitize/style_padding_99999em.xml -feedparser/tests/wellformed/sanitize/style_padding_left_4px.xml -feedparser/tests/wellformed/sanitize/style_padding_right_0in.xml -feedparser/tests/wellformed/sanitize/style_position_absolute.xml -feedparser/tests/wellformed/sanitize/style_tab_stops_list_5in.xml -feedparser/tests/wellformed/sanitize/style_text_align_center.xml -feedparser/tests/wellformed/sanitize/style_text_align_left.xml -feedparser/tests/wellformed/sanitize/style_text_align_right.xml -feedparser/tests/wellformed/sanitize/style_text_decoration_underline.xml -feedparser/tests/wellformed/sanitize/style_text_indent_0_5in.xml -feedparser/tests/wellformed/sanitize/style_vertical_align_bottom.xml -feedparser/tests/wellformed/sanitize/style_vertical_align_top.xml -feedparser/tests/wellformed/sanitize/style_white_space_nowrap.xml -feedparser/tests/wellformed/sanitize/style_white_space_top.xml -feedparser/tests/wellformed/sanitize/style_width_300px.xml -feedparser/tests/wellformed/sanitize/xml_declaration_unexpected_character.xml -feedparser/tests/wellformed/sanitize/xml_malicious_comment.xml -feedparser/tests/wellformed/sanitize/xml_unclosed_comment.xml -feedparser/tests/wellformed/sgml/charref_uppercase_x.xml -feedparser/tests/wellformed/xml/empty_xmlns_uri.xml -feedparser/tests/wellformed/xml/escaped_apos.xml -feedparser/tests/wellformed/xml/xlink_ns_no_prefix.xml \ No newline at end of file diff --git a/lib/feedparser/feedparser.egg-info/dependency_links.txt b/lib/feedparser/feedparser.egg-info/dependency_links.txt deleted file mode 100644 index 8b137891..00000000 --- a/lib/feedparser/feedparser.egg-info/dependency_links.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/lib/feedparser/feedparser.egg-info/top_level.txt b/lib/feedparser/feedparser.egg-info/top_level.txt deleted file mode 100644 index 1b25361f..00000000 --- a/lib/feedparser/feedparser.egg-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -feedparser diff --git a/lib/feedparser/feedparser.py b/lib/feedparser/feedparser.py index c78e6a39..578e2020 100644 --- a/lib/feedparser/feedparser.py +++ b/lib/feedparser/feedparser.py @@ -9,10 +9,10 @@ Required: Python 2.4 or later Recommended: iconv_codec """ -__version__ = "5.1.3" +__version__ = "5.2.0" __license__ = """ -Copyright (c) 2010-2012 Kurt McKee -Copyright (c) 2002-2008 Mark Pilgrim +Copyright 2010-2015 Kurt McKee +Copyright 2002-2008 Mark Pilgrim All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -61,15 +61,6 @@ ACCEPT_HEADER = "application/atom+xml,application/rdf+xml,application/rss+xml,ap # of pre-installed parsers until it finds one that supports everything we need. PREFERRED_XML_PARSERS = ["drv_libxml2"] -# If you want feedparser to automatically run HTML markup through HTML Tidy, set -# this to 1. Requires mxTidy -# or utidylib . -TIDY_MARKUP = 0 - -# List of Python interfaces for HTML Tidy, in order of preference. Only useful -# if TIDY_MARKUP = 1 -PREFERRED_TIDY_INTERFACES = ["uTidy", "mxTidy"] - # If you want feedparser to automatically resolve all relative URIs, set this # to 1. RESOLVE_RELATIVE_URIS = 1 @@ -78,10 +69,6 @@ RESOLVE_RELATIVE_URIS = 1 # HTML content, set this to 1. SANITIZE_HTML = 1 -# If you want feedparser to automatically parse microformat content embedded -# in entry contents, set this to 1 -PARSE_MICROFORMATS = 1 - # ---------- Python 3 modules (make it work if possible) ---------- try: import rfc822 @@ -147,6 +134,7 @@ import cgi import codecs import copy import datetime +import itertools import re import struct import time @@ -203,8 +191,7 @@ else: _XML_AVAILABLE = 1 # sgmllib is not available by default in Python 3; if the end user doesn't have -# it available then we'll lose illformed XML parsing, content santizing, and -# microformat support (at least while feedparser depends on BeautifulSoup). +# it available then we'll lose illformed XML parsing and content santizing try: import sgmllib except ImportError: @@ -276,15 +263,6 @@ try: except ImportError: chardet = None -# BeautifulSoup is used to extract microformat content from HTML -# feedparser is tested using BeautifulSoup 3.2.0 -# http://www.crummy.com/software/BeautifulSoup/ -try: - import BeautifulSoup -except ImportError: - BeautifulSoup = None - PARSE_MICROFORMATS = False - # ---------- don't touch these ---------- class ThingsNobodyCaresAboutButMe(Exception): pass class CharacterEncodingOverride(ThingsNobodyCaresAboutButMe): pass @@ -328,6 +306,9 @@ class FeedParserDict(dict): 'tagline': 'subtitle', 'tagline_detail': 'subtitle_detail'} def __getitem__(self, key): + ''' + :return: A :class:`FeedParserDict`. + ''' if key == 'category': try: return dict.__getitem__(self, 'tags')[0]['term'] @@ -390,6 +371,9 @@ class FeedParserDict(dict): has_key = __contains__ def get(self, key, default=None): + ''' + :return: A :class:`FeedParserDict`. + ''' try: return self.__getitem__(key) except KeyError: @@ -451,16 +435,15 @@ _cp1252 = { _urifixer = re.compile('^([A-Za-z][A-Za-z0-9+-.]*://)(/*)(.*?)') def _urljoin(base, uri): uri = _urifixer.sub(r'\1\3', uri) - #try: if not isinstance(uri, unicode): uri = uri.decode('utf-8', 'ignore') - uri = urlparse.urljoin(base, uri) + try: + uri = urlparse.urljoin(base, uri) + except ValueError: + uri = u'' if not isinstance(uri, unicode): return uri.decode('utf-8', 'ignore') return uri - #except: - # uri = urlparse.urlunparse([urllib.quote(part) for part in urlparse.urlparse(uri)]) - # return urlparse.urljoin(base, uri) class _FeedParserMixin: namespaces = { @@ -496,6 +479,8 @@ class _FeedParserMixin: 'http://freshmeat.net/rss/fm/': 'fm', 'http://xmlns.com/foaf/0.1/': 'foaf', 'http://www.w3.org/2003/01/geo/wgs84_pos#': 'geo', + 'http://www.georss.org/georss': 'georss', + 'http://www.opengis.net/gml': 'gml', 'http://postneo.com/icbm/': 'icbm', 'http://purl.org/rss/1.0/modules/image/': 'image', 'http://www.itunes.com/DTDs/PodCast-1.0.dtd': 'itunes', @@ -527,6 +512,7 @@ class _FeedParserMixin: 'http://www.w3.org/1999/xhtml': 'xhtml', 'http://www.w3.org/1999/xlink': 'xlink', 'http://www.w3.org/XML/1998/namespace': 'xml', + 'http://podlove.org/simple-chapters': 'psc', } _matchnamespaces = {} @@ -556,6 +542,10 @@ class _FeedParserMixin: self.incontributor = 0 self.inpublisher = 0 self.insource = 0 + + # georss + self.ingeometry = 0 + self.sourcedata = FeedParserDict() self.contentparams = FeedParserDict() self._summaryKey = None @@ -568,6 +558,11 @@ class _FeedParserMixin: self.svgOK = 0 self.title_depth = -1 self.depth = 0 + # psc_chapters_flag prevents multiple psc_chapters from being + # captured in a single entry or item. The transition states are + # None -> True -> False. psc_chapter elements will only be + # captured while it is True. + self.psc_chapters_flag = None if baselang: self.feeddata['language'] = baselang.replace('_','-') @@ -892,7 +887,9 @@ class _FeedParserMixin: # resolve relative URIs if (element in self.can_be_relative_uri) and output: - output = self.resolveURI(output) + # do not resolve guid elements with isPermalink="false" + if not element == 'id' or self.guidislink: + output = self.resolveURI(output) # decode entities within embedded markup if not self.contentparams.get('base64', 0): @@ -920,22 +917,6 @@ class _FeedParserMixin: if element in self.can_contain_relative_uris: output = _resolveRelativeURIs(output, self.baseuri, self.encoding, self.contentparams.get('type', u'text/html')) - # parse microformats - # (must do this before sanitizing because some microformats - # rely on elements that we sanitize) - if PARSE_MICROFORMATS and is_htmlish and element in ['content', 'description', 'summary']: - mfresults = _parseMicroformats(output, self.baseuri, self.encoding) - if mfresults: - for tag in mfresults.get('tags', []): - self._addTag(tag['term'], tag['scheme'], tag['label']) - for enclosure in mfresults.get('enclosures', []): - self._start_enclosure(enclosure) - for xfn in mfresults.get('xfn', []): - self._addXFN(xfn['relationships'], xfn['href'], xfn['name']) - vcard = mfresults.get('vcard') - if vcard: - self._getContext()['vcard'] = vcard - # sanitize embedded markup if is_htmlish and SANITIZE_HTML: if element in self.can_contain_dangerous_markup: @@ -956,8 +937,8 @@ class _FeedParserMixin: if isinstance(output, unicode): output = output.translate(_cp1252) - # categories/tags/keywords/whatever are handled in _end_category - if element == 'category': + # categories/tags/keywords/whatever are handled in _end_category or _end_tags or _end_itunes_keywords + if element in ('category', 'tags', 'itunes_keywords'): return output if element == 'title' and -1 < self.title_depth <= self.depth: @@ -975,6 +956,7 @@ class _FeedParserMixin: # query variables in urls in link elements are improperly # converted from `?a=1&b=2` to `?a=1&b;=2` as if they're # unhandled character references. fix this special case. + output = output.replace('&', '&') output = re.sub("&([A-Za-z0-9_]+);", "&\g<1>", output) self.entries[-1][element] = output if output: @@ -1313,7 +1295,7 @@ class _FeedParserMixin: def _sync_author_detail(self, key='author'): context = self._getContext() - detail = context.get('%s_detail' % key) + detail = context.get('%ss' % key, [FeedParserDict()])[-1] if detail: name = detail.get('name') email = detail.get('email') @@ -1342,11 +1324,11 @@ class _FeedParserMixin: author = author[:-1] author = author.strip() if author or email: - context.setdefault('%s_detail' % key, FeedParserDict()) + context.setdefault('%s_detail' % key, detail) if author: - context['%s_detail' % key]['name'] = author + detail['name'] = author if email: - context['%s_detail' % key]['email'] = email + detail['email'] = email def _start_subtitle(self, attrsD): self.pushContent('subtitle', attrsD, u'text/plain', 1) @@ -1374,6 +1356,7 @@ class _FeedParserMixin: self.inentry = 1 self.guidislink = 0 self.title_depth = -1 + self.psc_chapters_flag = None id = self._getAttribute(attrsD, 'rdf:about') if id: context = self._getContext() @@ -1403,6 +1386,20 @@ class _FeedParserMixin: self._sync_author_detail('publisher') _end_webmaster = _end_dc_publisher + def _start_dcterms_valid(self, attrsD): + self.push('validity', 1) + + def _end_dcterms_valid(self): + for validity_detail in self.pop('validity').split(';'): + if '=' in validity_detail: + key, value = validity_detail.split('=', 1) + if key == 'start': + self._save('validity_start', value, overwrite=True) + self._save('validity_start_parsed', _parse_date(value), overwrite=True) + elif key == 'end': + self._save('validity_end', value, overwrite=True) + self._save('validity_end_parsed', _parse_date(value), overwrite=True) + def _start_published(self, attrsD): self.push('published', 1) _start_dcterms_issued = _start_published @@ -1447,6 +1444,128 @@ class _FeedParserMixin: def _end_expirationdate(self): self._save('expired_parsed', _parse_date(self.pop('expired')), overwrite=True) + # geospatial location, or "where", from georss.org + + def _start_georssgeom(self, attrsD): + self.push('geometry', 0) + context = self._getContext() + context['where'] = FeedParserDict() + + _start_georss_point = _start_georssgeom + _start_georss_line = _start_georssgeom + _start_georss_polygon = _start_georssgeom + _start_georss_box = _start_georssgeom + + def _save_where(self, geometry): + context = self._getContext() + context['where'].update(geometry) + + def _end_georss_point(self): + geometry = _parse_georss_point(self.pop('geometry')) + if geometry: + self._save_where(geometry) + + def _end_georss_line(self): + geometry = _parse_georss_line(self.pop('geometry')) + if geometry: + self._save_where(geometry) + + def _end_georss_polygon(self): + this = self.pop('geometry') + geometry = _parse_georss_polygon(this) + if geometry: + self._save_where(geometry) + + def _end_georss_box(self): + geometry = _parse_georss_box(self.pop('geometry')) + if geometry: + self._save_where(geometry) + + def _start_where(self, attrsD): + self.push('where', 0) + context = self._getContext() + context['where'] = FeedParserDict() + _start_georss_where = _start_where + + def _parse_srs_attrs(self, attrsD): + srsName = attrsD.get('srsname') + try: + srsDimension = int(attrsD.get('srsdimension', '2')) + except ValueError: + srsDimension = 2 + context = self._getContext() + context['where']['srsName'] = srsName + context['where']['srsDimension'] = srsDimension + + def _start_gml_point(self, attrsD): + self._parse_srs_attrs(attrsD) + self.ingeometry = 1 + self.push('geometry', 0) + + def _start_gml_linestring(self, attrsD): + self._parse_srs_attrs(attrsD) + self.ingeometry = 'linestring' + self.push('geometry', 0) + + def _start_gml_polygon(self, attrsD): + self._parse_srs_attrs(attrsD) + self.push('geometry', 0) + + def _start_gml_exterior(self, attrsD): + self.push('geometry', 0) + + def _start_gml_linearring(self, attrsD): + self.ingeometry = 'polygon' + self.push('geometry', 0) + + def _start_gml_pos(self, attrsD): + self.push('pos', 0) + + def _end_gml_pos(self): + this = self.pop('pos') + context = self._getContext() + srsName = context['where'].get('srsName') + srsDimension = context['where'].get('srsDimension', 2) + swap = True + if srsName and "EPSG" in srsName: + epsg = int(srsName.split(":")[-1]) + swap = bool(epsg in _geogCS) + geometry = _parse_georss_point(this, swap=swap, dims=srsDimension) + if geometry: + self._save_where(geometry) + + def _start_gml_poslist(self, attrsD): + self.push('pos', 0) + + def _end_gml_poslist(self): + this = self.pop('pos') + context = self._getContext() + srsName = context['where'].get('srsName') + srsDimension = context['where'].get('srsDimension', 2) + swap = True + if srsName and "EPSG" in srsName: + epsg = int(srsName.split(":")[-1]) + swap = bool(epsg in _geogCS) + geometry = _parse_poslist( + this, self.ingeometry, swap=swap, dims=srsDimension) + if geometry: + self._save_where(geometry) + + def _end_geom(self): + self.ingeometry = 0 + self.pop('geometry') + _end_gml_point = _end_geom + _end_gml_linestring = _end_geom + _end_gml_linearring = _end_geom + _end_gml_exterior = _end_geom + _end_gml_polygon = _end_geom + + def _end_where(self): + self.pop('where') + _end_georss_where = _end_where + + # end geospatial + def _start_cc_license(self, attrsD): context = self._getContext() value = self._getAttribute(attrsD, 'rdf:resource') @@ -1471,22 +1590,25 @@ class _FeedParserMixin: del context['license'] _end_creativeCommons_license = _end_creativecommons_license - def _addXFN(self, relationships, href, name): - context = self._getContext() - xfn = context.setdefault('xfn', []) - value = FeedParserDict({'relationships': relationships, 'href': href, 'name': name}) - if value not in xfn: - xfn.append(value) - def _addTag(self, term, scheme, label): context = self._getContext() tags = context.setdefault('tags', []) if (not term) and (not scheme) and (not label): return - value = FeedParserDict({'term': term, 'scheme': scheme, 'label': label}) + value = FeedParserDict(term=term, scheme=scheme, label=label) if value not in tags: tags.append(value) + def _start_tags(self, attrsD): + # This is a completely-made up element. Its semantics are determined + # only by a single feed that precipitated bug report 392 on Google Code. + # In short, this is junk code. + self.push('tags', 1) + + def _end_tags(self): + for term in self.pop('tags').split(','): + self._addTag(term.strip(), None, None) + def _start_category(self, attrsD): term = attrsD.get('term') scheme = attrsD.get('scheme', attrsD.get('domain')) @@ -1505,6 +1627,11 @@ class _FeedParserMixin: if term.strip(): self._addTag(term.strip(), u'http://www.itunes.com/', None) + def _end_media_keywords(self): + for term in self.pop('media_keywords').split(','): + if term.strip(): + self._addTag(term.strip(), None, None) + def _start_itunes_category(self, attrsD): self._addTag(attrsD.get('text'), u'http://www.itunes.com/', None) self.push('category', 1) @@ -1594,6 +1721,7 @@ class _FeedParserMixin: else: self.pushContent('description', attrsD, u'text/html', self.infeed or self.inentry or self.insource) _start_dc_description = _start_description + _start_media_description = _start_description def _start_abstract(self, attrsD): self.pushContent('description', attrsD, u'text/plain', self.infeed or self.inentry or self.insource) @@ -1606,6 +1734,7 @@ class _FeedParserMixin: self._summaryKey = None _end_abstract = _end_description _end_dc_description = _end_description + _end_media_description = _end_description def _start_info(self, attrsD): self.pushContent('info', attrsD, u'text/plain', 1) @@ -1729,6 +1858,55 @@ class _FeedParserMixin: # by applications that only need to know if the content is explicit. self._getContext()['itunes_explicit'] = (None, False, True)[(value == 'yes' and 2) or value == 'clean' or 0] + def _start_media_group(self, attrsD): + # don't do anything, but don't break the enclosed tags either + pass + + def _start_media_rating(self, attrsD): + context = self._getContext() + context.setdefault('media_rating', attrsD) + self.push('rating', 1) + + def _end_media_rating(self): + rating = self.pop('rating') + if rating is not None and rating.strip(): + context = self._getContext() + context['media_rating']['content'] = rating + + def _start_media_credit(self, attrsD): + context = self._getContext() + context.setdefault('media_credit', []) + context['media_credit'].append(attrsD) + self.push('credit', 1) + + def _end_media_credit(self): + credit = self.pop('credit') + if credit != None and len(credit.strip()) != 0: + context = self._getContext() + context['media_credit'][-1]['content'] = credit + + def _start_media_restriction(self, attrsD): + context = self._getContext() + context.setdefault('media_restriction', attrsD) + self.push('restriction', 1) + + def _end_media_restriction(self): + restriction = self.pop('restriction') + if restriction != None and len(restriction.strip()) != 0: + context = self._getContext() + context['media_restriction']['content'] = [cc.strip().lower() for cc in restriction.split(' ')] + + def _start_media_license(self, attrsD): + context = self._getContext() + context.setdefault('media_license', attrsD) + self.push('license', 1) + + def _end_media_license(self): + license = self.pop('license') + if license != None and len(license.strip()) != 0: + context = self._getContext() + context['media_license']['content'] = license + def _start_media_content(self, attrsD): context = self._getContext() context.setdefault('media_content', []) @@ -1767,6 +1945,26 @@ class _FeedParserMixin: return context['newlocation'] = _makeSafeAbsoluteURI(self.baseuri, url.strip()) + def _start_psc_chapters(self, attrsD): + if self.psc_chapters_flag is None: + # Transition from None -> True + self.psc_chapters_flag = True + attrsD['chapters'] = [] + self._getContext()['psc_chapters'] = FeedParserDict(attrsD) + + def _end_psc_chapters(self): + # Transition from True -> False + self.psc_chapters_flag = False + + def _start_psc_chapter(self, attrsD): + if self.psc_chapters_flag: + start = self._getAttribute(attrsD, 'start') + attrsD['start_parsed'] = _parse_psc_chapter_start(start) + + context = self._getContext()['psc_chapters'] + context['chapters'].append(FeedParserDict(attrsD)) + + if _XML_AVAILABLE: class _StrictFeedParser(_FeedParserMixin, xml.sax.handler.ContentHandler): def __init__(self, baseuri, baselang, encoding): @@ -1830,6 +2028,7 @@ if _XML_AVAILABLE: attrsD[str(attrlocalname).lower()] = attrvalue for qname in attrs.getQNames(): attrsD[str(qname).lower()] = attrs.getValueByQName(qname) + localname = str(localname).lower() self.unknown_starttag(localname, attrsD.items()) def characters(self, text): @@ -2076,455 +2275,18 @@ class _LooseFeedParser(_FeedParserMixin, _BaseHTMLProcessor): data = data.replace('&', '&') data = data.replace('"', '"') data = data.replace(''', "'") + data = data.replace('/', '/') + data = data.replace('/', '/') return data def strattrs(self, attrs): return ''.join([' %s="%s"' % (n,v.replace('"','"')) for n,v in attrs]) -class _MicroformatsParser: - STRING = 1 - DATE = 2 - URI = 3 - NODE = 4 - EMAIL = 5 - - known_xfn_relationships = set(['contact', 'acquaintance', 'friend', 'met', 'co-worker', 'coworker', 'colleague', 'co-resident', 'coresident', 'neighbor', 'child', 'parent', 'sibling', 'brother', 'sister', 'spouse', 'wife', 'husband', 'kin', 'relative', 'muse', 'crush', 'date', 'sweetheart', 'me']) - known_binary_extensions = set(['zip','rar','exe','gz','tar','tgz','tbz2','bz2','z','7z','dmg','img','sit','sitx','hqx','deb','rpm','bz2','jar','rar','iso','bin','msi','mp2','mp3','ogg','ogm','mp4','m4v','m4a','avi','wma','wmv']) - - def __init__(self, data, baseuri, encoding): - self.document = BeautifulSoup.BeautifulSoup(data) - self.baseuri = baseuri - self.encoding = encoding - if isinstance(data, unicode): - data = data.encode(encoding) - self.tags = [] - self.enclosures = [] - self.xfn = [] - self.vcard = None - - def vcardEscape(self, s): - if isinstance(s, basestring): - s = s.replace(',', '\\,').replace(';', '\\;').replace('\n', '\\n') - return s - - def vcardFold(self, s): - s = re.sub(';+$', '', s) - sFolded = '' - iMax = 75 - sPrefix = '' - while len(s) > iMax: - sFolded += sPrefix + s[:iMax] + '\n' - s = s[iMax:] - sPrefix = ' ' - iMax = 74 - sFolded += sPrefix + s - return sFolded - - def normalize(self, s): - return re.sub(r'\s+', ' ', s).strip() - - def unique(self, aList): - results = [] - for element in aList: - if element not in results: - results.append(element) - return results - - def toISO8601(self, dt): - return time.strftime('%Y-%m-%dT%H:%M:%SZ', dt) - - def getPropertyValue(self, elmRoot, sProperty, iPropertyType=4, bAllowMultiple=0, bAutoEscape=0): - all = lambda x: 1 - sProperty = sProperty.lower() - bFound = 0 - bNormalize = 1 - propertyMatch = {'class': re.compile(r'\b%s\b' % sProperty)} - if bAllowMultiple and (iPropertyType != self.NODE): - snapResults = [] - containers = elmRoot(['ul', 'ol'], propertyMatch) - for container in containers: - snapResults.extend(container('li')) - bFound = (len(snapResults) != 0) - if not bFound: - snapResults = elmRoot(all, propertyMatch) - bFound = (len(snapResults) != 0) - if (not bFound) and (sProperty == 'value'): - snapResults = elmRoot('pre') - bFound = (len(snapResults) != 0) - bNormalize = not bFound - if not bFound: - snapResults = [elmRoot] - bFound = (len(snapResults) != 0) - arFilter = [] - if sProperty == 'vcard': - snapFilter = elmRoot(all, propertyMatch) - for node in snapFilter: - if node.findParent(all, propertyMatch): - arFilter.append(node) - arResults = [] - for node in snapResults: - if node not in arFilter: - arResults.append(node) - bFound = (len(arResults) != 0) - if not bFound: - if bAllowMultiple: - return [] - elif iPropertyType == self.STRING: - return '' - elif iPropertyType == self.DATE: - return None - elif iPropertyType == self.URI: - return '' - elif iPropertyType == self.NODE: - return None - else: - return None - arValues = [] - for elmResult in arResults: - sValue = None - if iPropertyType == self.NODE: - if bAllowMultiple: - arValues.append(elmResult) - continue - else: - return elmResult - sNodeName = elmResult.name.lower() - if (iPropertyType == self.EMAIL) and (sNodeName == 'a'): - sValue = (elmResult.get('href') or '').split('mailto:').pop().split('?')[0] - if sValue: - sValue = bNormalize and self.normalize(sValue) or sValue.strip() - if (not sValue) and (sNodeName == 'abbr'): - sValue = elmResult.get('title') - if sValue: - sValue = bNormalize and self.normalize(sValue) or sValue.strip() - if (not sValue) and (iPropertyType == self.URI): - if sNodeName == 'a': - sValue = elmResult.get('href') - elif sNodeName == 'img': - sValue = elmResult.get('src') - elif sNodeName == 'object': - sValue = elmResult.get('data') - if sValue: - sValue = bNormalize and self.normalize(sValue) or sValue.strip() - if (not sValue) and (sNodeName == 'img'): - sValue = elmResult.get('alt') - if sValue: - sValue = bNormalize and self.normalize(sValue) or sValue.strip() - if not sValue: - sValue = elmResult.renderContents() - sValue = re.sub(r'<\S[^>]*>', '', sValue) - sValue = sValue.replace('\r\n', '\n') - sValue = sValue.replace('\r', '\n') - if sValue: - sValue = bNormalize and self.normalize(sValue) or sValue.strip() - if not sValue: - continue - if iPropertyType == self.DATE: - sValue = _parse_date_iso8601(sValue) - if bAllowMultiple: - arValues.append(bAutoEscape and self.vcardEscape(sValue) or sValue) - else: - return bAutoEscape and self.vcardEscape(sValue) or sValue - return arValues - - def findVCards(self, elmRoot, bAgentParsing=0): - sVCards = '' - - if not bAgentParsing: - arCards = self.getPropertyValue(elmRoot, 'vcard', bAllowMultiple=1) - else: - arCards = [elmRoot] - - for elmCard in arCards: - arLines = [] - - def processSingleString(sProperty): - sValue = self.getPropertyValue(elmCard, sProperty, self.STRING, bAutoEscape=1).decode(self.encoding) - if sValue: - arLines.append(self.vcardFold(sProperty.upper() + ':' + sValue)) - return sValue or u'' - - def processSingleURI(sProperty): - sValue = self.getPropertyValue(elmCard, sProperty, self.URI) - if sValue: - sContentType = '' - sEncoding = '' - sValueKey = '' - if sValue.startswith('data:'): - sEncoding = ';ENCODING=b' - sContentType = sValue.split(';')[0].split('/').pop() - sValue = sValue.split(',', 1).pop() - else: - elmValue = self.getPropertyValue(elmCard, sProperty) - if elmValue: - if sProperty != 'url': - sValueKey = ';VALUE=uri' - sContentType = elmValue.get('type', '').strip().split('/').pop().strip() - sContentType = sContentType.upper() - if sContentType == 'OCTET-STREAM': - sContentType = '' - if sContentType: - sContentType = ';TYPE=' + sContentType.upper() - arLines.append(self.vcardFold(sProperty.upper() + sEncoding + sContentType + sValueKey + ':' + sValue)) - - def processTypeValue(sProperty, arDefaultType, arForceType=None): - arResults = self.getPropertyValue(elmCard, sProperty, bAllowMultiple=1) - for elmResult in arResults: - arType = self.getPropertyValue(elmResult, 'type', self.STRING, 1, 1) - if arForceType: - arType = self.unique(arForceType + arType) - if not arType: - arType = arDefaultType - sValue = self.getPropertyValue(elmResult, 'value', self.EMAIL, 0) - if sValue: - arLines.append(self.vcardFold(sProperty.upper() + ';TYPE=' + ','.join(arType) + ':' + sValue)) - - # AGENT - # must do this before all other properties because it is destructive - # (removes nested class="vcard" nodes so they don't interfere with - # this vcard's other properties) - arAgent = self.getPropertyValue(elmCard, 'agent', bAllowMultiple=1) - for elmAgent in arAgent: - if re.compile(r'\bvcard\b').search(elmAgent.get('class')): - sAgentValue = self.findVCards(elmAgent, 1) + '\n' - sAgentValue = sAgentValue.replace('\n', '\\n') - sAgentValue = sAgentValue.replace(';', '\\;') - if sAgentValue: - arLines.append(self.vcardFold('AGENT:' + sAgentValue)) - # Completely remove the agent element from the parse tree - elmAgent.extract() - else: - sAgentValue = self.getPropertyValue(elmAgent, 'value', self.URI, bAutoEscape=1); - if sAgentValue: - arLines.append(self.vcardFold('AGENT;VALUE=uri:' + sAgentValue)) - - # FN (full name) - sFN = processSingleString('fn') - - # N (name) - elmName = self.getPropertyValue(elmCard, 'n') - if elmName: - sFamilyName = self.getPropertyValue(elmName, 'family-name', self.STRING, bAutoEscape=1) - sGivenName = self.getPropertyValue(elmName, 'given-name', self.STRING, bAutoEscape=1) - arAdditionalNames = self.getPropertyValue(elmName, 'additional-name', self.STRING, 1, 1) + self.getPropertyValue(elmName, 'additional-names', self.STRING, 1, 1) - arHonorificPrefixes = self.getPropertyValue(elmName, 'honorific-prefix', self.STRING, 1, 1) + self.getPropertyValue(elmName, 'honorific-prefixes', self.STRING, 1, 1) - arHonorificSuffixes = self.getPropertyValue(elmName, 'honorific-suffix', self.STRING, 1, 1) + self.getPropertyValue(elmName, 'honorific-suffixes', self.STRING, 1, 1) - arLines.append(self.vcardFold('N:' + sFamilyName + ';' + - sGivenName + ';' + - ','.join(arAdditionalNames) + ';' + - ','.join(arHonorificPrefixes) + ';' + - ','.join(arHonorificSuffixes))) - elif sFN: - # implied "N" optimization - # http://microformats.org/wiki/hcard#Implied_.22N.22_Optimization - arNames = self.normalize(sFN).split() - if len(arNames) == 2: - bFamilyNameFirst = (arNames[0].endswith(',') or - len(arNames[1]) == 1 or - ((len(arNames[1]) == 2) and (arNames[1].endswith('.')))) - if bFamilyNameFirst: - arLines.append(self.vcardFold('N:' + arNames[0] + ';' + arNames[1])) - else: - arLines.append(self.vcardFold('N:' + arNames[1] + ';' + arNames[0])) - - # SORT-STRING - sSortString = self.getPropertyValue(elmCard, 'sort-string', self.STRING, bAutoEscape=1) - if sSortString: - arLines.append(self.vcardFold('SORT-STRING:' + sSortString)) - - # NICKNAME - arNickname = self.getPropertyValue(elmCard, 'nickname', self.STRING, 1, 1) - if arNickname: - arLines.append(self.vcardFold('NICKNAME:' + ','.join(arNickname))) - - # PHOTO - processSingleURI('photo') - - # BDAY - dtBday = self.getPropertyValue(elmCard, 'bday', self.DATE) - if dtBday: - arLines.append(self.vcardFold('BDAY:' + self.toISO8601(dtBday))) - - # ADR (address) - arAdr = self.getPropertyValue(elmCard, 'adr', bAllowMultiple=1) - for elmAdr in arAdr: - arType = self.getPropertyValue(elmAdr, 'type', self.STRING, 1, 1) - if not arType: - arType = ['intl','postal','parcel','work'] # default adr types, see RFC 2426 section 3.2.1 - sPostOfficeBox = self.getPropertyValue(elmAdr, 'post-office-box', self.STRING, 0, 1) - sExtendedAddress = self.getPropertyValue(elmAdr, 'extended-address', self.STRING, 0, 1) - sStreetAddress = self.getPropertyValue(elmAdr, 'street-address', self.STRING, 0, 1) - sLocality = self.getPropertyValue(elmAdr, 'locality', self.STRING, 0, 1) - sRegion = self.getPropertyValue(elmAdr, 'region', self.STRING, 0, 1) - sPostalCode = self.getPropertyValue(elmAdr, 'postal-code', self.STRING, 0, 1) - sCountryName = self.getPropertyValue(elmAdr, 'country-name', self.STRING, 0, 1) - arLines.append(self.vcardFold('ADR;TYPE=' + ','.join(arType) + ':' + - sPostOfficeBox + ';' + - sExtendedAddress + ';' + - sStreetAddress + ';' + - sLocality + ';' + - sRegion + ';' + - sPostalCode + ';' + - sCountryName)) - - # LABEL - processTypeValue('label', ['intl','postal','parcel','work']) - - # TEL (phone number) - processTypeValue('tel', ['voice']) - - # EMAIL - processTypeValue('email', ['internet'], ['internet']) - - # MAILER - processSingleString('mailer') - - # TZ (timezone) - processSingleString('tz') - - # GEO (geographical information) - elmGeo = self.getPropertyValue(elmCard, 'geo') - if elmGeo: - sLatitude = self.getPropertyValue(elmGeo, 'latitude', self.STRING, 0, 1) - sLongitude = self.getPropertyValue(elmGeo, 'longitude', self.STRING, 0, 1) - arLines.append(self.vcardFold('GEO:' + sLatitude + ';' + sLongitude)) - - # TITLE - processSingleString('title') - - # ROLE - processSingleString('role') - - # LOGO - processSingleURI('logo') - - # ORG (organization) - elmOrg = self.getPropertyValue(elmCard, 'org') - if elmOrg: - sOrganizationName = self.getPropertyValue(elmOrg, 'organization-name', self.STRING, 0, 1) - if not sOrganizationName: - # implied "organization-name" optimization - # http://microformats.org/wiki/hcard#Implied_.22organization-name.22_Optimization - sOrganizationName = self.getPropertyValue(elmCard, 'org', self.STRING, 0, 1) - if sOrganizationName: - arLines.append(self.vcardFold('ORG:' + sOrganizationName)) - else: - arOrganizationUnit = self.getPropertyValue(elmOrg, 'organization-unit', self.STRING, 1, 1) - arLines.append(self.vcardFold('ORG:' + sOrganizationName + ';' + ';'.join(arOrganizationUnit))) - - # CATEGORY - arCategory = self.getPropertyValue(elmCard, 'category', self.STRING, 1, 1) + self.getPropertyValue(elmCard, 'categories', self.STRING, 1, 1) - if arCategory: - arLines.append(self.vcardFold('CATEGORIES:' + ','.join(arCategory))) - - # NOTE - processSingleString('note') - - # REV - processSingleString('rev') - - # SOUND - processSingleURI('sound') - - # UID - processSingleString('uid') - - # URL - processSingleURI('url') - - # CLASS - processSingleString('class') - - # KEY - processSingleURI('key') - - if arLines: - arLines = [u'BEGIN:vCard',u'VERSION:3.0'] + arLines + [u'END:vCard'] - # XXX - this is super ugly; properly fix this with issue 148 - for i, s in enumerate(arLines): - if not isinstance(s, unicode): - arLines[i] = s.decode('utf-8', 'ignore') - sVCards += u'\n'.join(arLines) + u'\n' - - return sVCards.strip() - - def isProbablyDownloadable(self, elm): - attrsD = elm.attrMap - if 'href' not in attrsD: - return 0 - linktype = attrsD.get('type', '').strip() - if linktype.startswith('audio/') or \ - linktype.startswith('video/') or \ - (linktype.startswith('application/') and not linktype.endswith('xml')): - return 1 - try: - path = urlparse.urlparse(attrsD['href'])[2] - except ValueError: - return 0 - if path.find('.') == -1: - return 0 - fileext = path.split('.').pop().lower() - return fileext in self.known_binary_extensions - - def findTags(self): - all = lambda x: 1 - for elm in self.document(all, {'rel': re.compile(r'\btag\b')}): - href = elm.get('href') - if not href: - continue - urlscheme, domain, path, params, query, fragment = \ - urlparse.urlparse(_urljoin(self.baseuri, href)) - segments = path.split('/') - tag = segments.pop() - if not tag: - if segments: - tag = segments.pop() - else: - # there are no tags - continue - tagscheme = urlparse.urlunparse((urlscheme, domain, '/'.join(segments), '', '', '')) - if not tagscheme.endswith('/'): - tagscheme += '/' - self.tags.append(FeedParserDict({"term": tag, "scheme": tagscheme, "label": elm.string or ''})) - - def findEnclosures(self): - all = lambda x: 1 - enclosure_match = re.compile(r'\benclosure\b') - for elm in self.document(all, {'href': re.compile(r'.+')}): - if not enclosure_match.search(elm.get('rel', u'')) and not self.isProbablyDownloadable(elm): - continue - if elm.attrMap not in self.enclosures: - self.enclosures.append(elm.attrMap) - if elm.string and not elm.get('title'): - self.enclosures[-1]['title'] = elm.string - - def findXFN(self): - all = lambda x: 1 - for elm in self.document(all, {'rel': re.compile('.+'), 'href': re.compile('.+')}): - rels = elm.get('rel', u'').split() - xfn_rels = [r for r in rels if r in self.known_xfn_relationships] - if xfn_rels: - self.xfn.append({"relationships": xfn_rels, "href": elm.get('href', ''), "name": elm.string}) - -def _parseMicroformats(htmlSource, baseURI, encoding): - if not BeautifulSoup: - return - try: - p = _MicroformatsParser(htmlSource, baseURI, encoding) - except UnicodeEncodeError: - # sgmllib throws this exception when performing lookups of tags - # with non-ASCII characters in them. - return - p.vcard = p.findVCards(p.document) - p.findTags() - p.findEnclosures() - p.findXFN() - return {"tags": p.tags, "enclosures": p.enclosures, "xfn": p.xfn, "vcard": p.vcard} - class _RelativeURIResolver(_BaseHTMLProcessor): relative_uris = set([('a', 'href'), ('applet', 'codebase'), ('area', 'href'), + ('audio', 'src'), ('blockquote', 'cite'), ('body', 'background'), ('del', 'cite'), @@ -2547,7 +2309,9 @@ class _RelativeURIResolver(_BaseHTMLProcessor): ('object', 'usemap'), ('q', 'cite'), ('script', 'src'), - ('video', 'poster')]) + ('source', 'src'), + ('video', 'poster'), + ('video', 'src')]) def __init__(self, baseuri, encoding, _type): _BaseHTMLProcessor.__init__(self, encoding, _type) @@ -2572,10 +2336,7 @@ def _resolveRelativeURIs(htmlSource, baseURI, encoding, _type): def _makeSafeAbsoluteURI(base, rel=None): # bail if ACCEPTABLE_URI_SCHEMES is empty if not ACCEPTABLE_URI_SCHEMES: - try: - return _urljoin(base, rel or u'') - except ValueError: - return u'' + return _urljoin(base, rel or u'') if not base: return rel or u'' if not rel: @@ -2586,10 +2347,7 @@ def _makeSafeAbsoluteURI(base, rel=None): if not scheme or scheme in ACCEPTABLE_URI_SCHEMES: return base return u'' - try: - uri = _urljoin(base, rel) - except ValueError: - return u'' + uri = _urljoin(base, rel) if uri.strip().split(':', 1)[0] not in ACCEPTABLE_URI_SCHEMES: return u'' return uri @@ -2657,21 +2415,154 @@ class _HTMLSanitizer(_BaseHTMLProcessor): valid_css_values = re.compile('^(#[0-9a-f]+|rgb\(\d+%?,\d*%?,?\d*%?\)?|' + '\d{0,2}\.?\d{0,2}(cm|em|ex|in|mm|pc|pt|px|%|,|\))?)$') - mathml_elements = set(['annotation', 'annotation-xml', 'maction', 'math', - 'merror', 'mfenced', 'mfrac', 'mi', 'mmultiscripts', 'mn', 'mo', 'mover', 'mpadded', - 'mphantom', 'mprescripts', 'mroot', 'mrow', 'mspace', 'msqrt', 'mstyle', - 'msub', 'msubsup', 'msup', 'mtable', 'mtd', 'mtext', 'mtr', 'munder', - 'munderover', 'none', 'semantics']) + mathml_elements = set([ + 'annotation', + 'annotation-xml', + 'maction', + 'maligngroup', + 'malignmark', + 'math', + 'menclose', + 'merror', + 'mfenced', + 'mfrac', + 'mglyph', + 'mi', + 'mlabeledtr', + 'mlongdiv', + 'mmultiscripts', + 'mn', + 'mo', + 'mover', + 'mpadded', + 'mphantom', + 'mprescripts', + 'mroot', + 'mrow', + 'ms', + 'mscarries', + 'mscarry', + 'msgroup', + 'msline', + 'mspace', + 'msqrt', + 'msrow', + 'mstack', + 'mstyle', + 'msub', + 'msubsup', + 'msup', + 'mtable', + 'mtd', + 'mtext', + 'mtr', + 'munder', + 'munderover', + 'none', + 'semantics', + ]) - mathml_attributes = set(['actiontype', 'align', 'columnalign', 'columnalign', - 'columnalign', 'close', 'columnlines', 'columnspacing', 'columnspan', 'depth', - 'display', 'displaystyle', 'encoding', 'equalcolumns', 'equalrows', - 'fence', 'fontstyle', 'fontweight', 'frame', 'height', 'linethickness', - 'lspace', 'mathbackground', 'mathcolor', 'mathvariant', 'mathvariant', - 'maxsize', 'minsize', 'open', 'other', 'rowalign', 'rowalign', 'rowalign', - 'rowlines', 'rowspacing', 'rowspan', 'rspace', 'scriptlevel', 'selection', - 'separator', 'separators', 'stretchy', 'width', 'width', 'xlink:href', - 'xlink:show', 'xlink:type', 'xmlns', 'xmlns:xlink']) + mathml_attributes = set([ + 'accent', + 'accentunder', + 'actiontype', + 'align', + 'alignmentscope', + 'altimg', + 'altimg-height', + 'altimg-valign', + 'altimg-width', + 'alttext', + 'bevelled', + 'charalign', + 'close', + 'columnalign', + 'columnlines', + 'columnspacing', + 'columnspan', + 'columnwidth', + 'crossout', + 'decimalpoint', + 'denomalign', + 'depth', + 'dir', + 'display', + 'displaystyle', + 'edge', + 'encoding', + 'equalcolumns', + 'equalrows', + 'fence', + 'fontstyle', + 'fontweight', + 'form', + 'frame', + 'framespacing', + 'groupalign', + 'height', + 'href', + 'id', + 'indentalign', + 'indentalignfirst', + 'indentalignlast', + 'indentshift', + 'indentshiftfirst', + 'indentshiftlast', + 'indenttarget', + 'infixlinebreakstyle', + 'largeop', + 'length', + 'linebreak', + 'linebreakmultchar', + 'linebreakstyle', + 'lineleading', + 'linethickness', + 'location', + 'longdivstyle', + 'lquote', + 'lspace', + 'mathbackground', + 'mathcolor', + 'mathsize', + 'mathvariant', + 'maxsize', + 'minlabelspacing', + 'minsize', + 'movablelimits', + 'notation', + 'numalign', + 'open', + 'other', + 'overflow', + 'position', + 'rowalign', + 'rowlines', + 'rowspacing', + 'rowspan', + 'rquote', + 'rspace', + 'scriptlevel', + 'scriptminsize', + 'scriptsizemultiplier', + 'selection', + 'separator', + 'separators', + 'shift', + 'side', + 'src', + 'stackalign', + 'stretchy', + 'subscriptshift', + 'superscriptshift', + 'symmetric', + 'voffset', + 'width', + 'xlink:href', + 'xlink:show', + 'xlink:type', + 'xmlns', + 'xmlns:xlink', + ]) # svgtiny - foreignObject + linearGradient + radialGradient + stop svg_elements = set(['a', 'animate', 'animateColor', 'animateMotion', @@ -2860,38 +2751,6 @@ def _sanitizeHTML(htmlSource, encoding, _type): htmlSource = htmlSource.replace(''): - data = data.split('>', 1)[1] - if data.count(' julian: - if diff < day: - day = day - diff - else: - month = month - 1 - day = 31 - elif jday < julian: - if day + diff < 28: - day = day + diff - else: - month = month + 1 - return year, month, day - month = m.group('month') - day = 1 - if month is None: - month = 1 - else: - month = int(month) - day = m.group('day') - if day: - day = int(day) - else: - day = 1 - return year, month, day - - def __extract_time(m): - if not m: - return 0, 0, 0 - hours = m.group('hours') - if not hours: - return 0, 0, 0 - hours = int(hours) - minutes = int(m.group('minutes')) - seconds = m.group('seconds') - if seconds: - seconds = int(seconds) - else: - seconds = 0 - return hours, minutes, seconds - - def __extract_tzd(m): - '''Return the Time Zone Designator as an offset in seconds from UTC.''' - if not m: - return 0 - tzd = m.group('tzd') - if not tzd: - return 0 - if tzd == 'Z': - return 0 - hours = int(m.group('tzdhours')) - minutes = m.group('tzdminutes') - if minutes: - minutes = int(minutes) - else: - minutes = 0 - offset = (hours*60 + minutes) * 60 - if tzd[0] == '+': - return -offset - return offset - - __date_re = ('(?P\d\d\d\d)' - '(?:(?P-|)' - '(?:(?P\d\d)(?:(?P=dsep)(?P\d\d))?' - '|(?P\d\d\d)))?') - __tzd_re = ' ?(?P[-+](?P\d\d)(?::?(?P\d\d))|Z)?' - __time_re = ('(?P\d\d)(?P:|)(?P\d\d)' - '(?:(?P=tsep)(?P\d\d)(?:[.,]\d+)?)?' - + __tzd_re) - __datetime_re = '%s(?:[T ]%s)?' % (__date_re, __time_re) - __datetime_rx = re.compile(__datetime_re) - m = __datetime_rx.match(dateString) - if (m is None) or (m.group() != dateString): - return - gmt = __extract_date(m) + __extract_time(m) + (0, 0, 0) - if gmt[0] == 0: - return - return time.gmtime(time.mktime(gmt) + __extract_tzd(m) - time.timezone) -registerDateHandler(_parse_date_w3dtf) - -# Define the strings used by the RFC822 datetime parser -_rfc822_months = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', - 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'] -_rfc822_daynames = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun'] - -# Only the first three letters of the month name matter -_rfc822_month = "(?P%s)(?:[a-z]*,?)" % ('|'.join(_rfc822_months)) -# The year may be 2 or 4 digits; capture the century if it exists -_rfc822_year = "(?P(?:\d{2})?\d{2})" -_rfc822_day = "(?P *\d{1,2})" -_rfc822_date = "%s %s %s" % (_rfc822_day, _rfc822_month, _rfc822_year) - -_rfc822_hour = "(?P\d{2}):(?P\d{2})(?::(?P\d{2}))?" -_rfc822_tz = "(?Put|gmt(?:[+-]\d{2}:\d{2})?|[aecmp][sd]?t|[zamny]|[+-]\d{4})" -_rfc822_tznames = { +timezonenames = { 'ut': 0, 'gmt': 0, 'z': 0, 'adt': -3, 'ast': -4, 'at': -4, 'edt': -4, 'est': -5, 'et': -5, @@ -3468,86 +3224,206 @@ _rfc822_tznames = { 'pdt': -7, 'pst': -8, 'pt': -8, 'a': -1, 'n': 1, 'm': -12, 'y': 12, - } -# The timezone may be prefixed by 'Etc/' -_rfc822_time = "%s (?:etc/)?%s" % (_rfc822_hour, _rfc822_tz) - -_rfc822_dayname = "(?P%s)" % ('|'.join(_rfc822_daynames)) -_rfc822_match = re.compile( - "(?:%s, )?%s(?: %s)?" % (_rfc822_dayname, _rfc822_date, _rfc822_time) -).match - -def _parse_date_group_rfc822(m): - # Calculate a date and timestamp - for k in ('year', 'day', 'hour', 'minute', 'second'): - m[k] = int(m[k]) - m['month'] = _rfc822_months.index(m['month']) + 1 - # If the year is 2 digits, assume everything in the 90's is the 1990's - if m['year'] < 100: - m['year'] += (1900, 2000)[m['year'] < 90] - stamp = datetime.datetime(*[m[i] for i in - ('year', 'month', 'day', 'hour', 'minute', 'second')]) - - # Use the timezone information to calculate the difference between - # the given date and timestamp and Universal Coordinated Time +} +# W3 date and time format parser +# http://www.w3.org/TR/NOTE-datetime +# Also supports MSSQL-style datetimes as defined at: +# http://msdn.microsoft.com/en-us/library/ms186724.aspx +# (basically, allow a space as a date/time/timezone separator) +def _parse_date_w3dtf(datestr): + if not datestr.strip(): + return None + parts = datestr.lower().split('t') + if len(parts) == 1: + # This may be a date only, or may be an MSSQL-style date + parts = parts[0].split() + if len(parts) == 1: + # Treat this as a date only + parts.append('00:00:00z') + elif len(parts) > 2: + return None + date = parts[0].split('-', 2) + if not date or len(date[0]) != 4: + return None + # Ensure that `date` has 3 elements. Using '1' sets the default + # month to January and the default day to the 1st of the month. + date.extend(['1'] * (3 - len(date))) + try: + year, month, day = [int(i) for i in date] + except ValueError: + # `date` may have more than 3 elements or may contain + # non-integer strings. + return None + if parts[1].endswith('z'): + parts[1] = parts[1][:-1] + parts.append('z') + # Append the numeric timezone offset, if any, to parts. + # If this is an MSSQL-style date then parts[2] already contains + # the timezone information, so `append()` will not affect it. + # Add 1 to each value so that if `find()` returns -1 it will be + # treated as False. + loc = parts[1].find('-') + 1 or parts[1].find('+') + 1 or len(parts[1]) + 1 + loc = loc - 1 + parts.append(parts[1][loc:]) + parts[1] = parts[1][:loc] + time = parts[1].split(':', 2) + # Ensure that time has 3 elements. Using '0' means that the + # minutes and seconds, if missing, will default to 0. + time.extend(['0'] * (3 - len(time))) tzhour = 0 tzmin = 0 - if m['tz'] and m['tz'].startswith('gmt'): - # Handle GMT and GMT+hh:mm timezone syntax (the trailing - # timezone info will be handled by the next `if` block) - m['tz'] = ''.join(m['tz'][3:].split(':')) or 'gmt' - if not m['tz']: - pass - elif m['tz'].startswith('+'): - tzhour = int(m['tz'][1:3]) - tzmin = int(m['tz'][3:]) - elif m['tz'].startswith('-'): - tzhour = int(m['tz'][1:3]) * -1 - tzmin = int(m['tz'][3:]) * -1 + if parts[2][:1] in ('-', '+'): + try: + tzhour = int(parts[2][1:3]) + tzmin = int(parts[2][4:]) + except ValueError: + return None + if parts[2].startswith('-'): + tzhour = tzhour * -1 + tzmin = tzmin * -1 else: - tzhour = _rfc822_tznames[m['tz']] - delta = datetime.timedelta(0, 0, 0, 0, tzmin, tzhour) - - # Return the date and timestamp in UTC - return (stamp - delta).utctimetuple() - -def _parse_date_rfc822(dt): - """Parse RFC 822 dates and times, with one minor - difference: years may be 4DIGIT or 2DIGIT. - http://tools.ietf.org/html/rfc822#section-5""" + tzhour = timezonenames.get(parts[2], 0) try: - m = _rfc822_match(dt.lower()).groupdict(0) - except AttributeError: + hour, minute, second = [int(float(i)) for i in time] + except ValueError: + return None + # Create the datetime object and timezone delta objects + try: + stamp = datetime.datetime(year, month, day, hour, minute, second) + except ValueError: + return None + delta = datetime.timedelta(0, 0, 0, 0, tzmin, tzhour) + # Return the date and timestamp in a UTC 9-tuple + try: + return (stamp - delta).utctimetuple() + except (OverflowError, ValueError): + # IronPython throws ValueErrors instead of OverflowErrors return None - return _parse_date_group_rfc822(m) +registerDateHandler(_parse_date_w3dtf) + +def _parse_date_rfc822(date): + """Parse RFC 822 dates and times + http://tools.ietf.org/html/rfc822#section-5 + + There are some formatting differences that are accounted for: + 1. Years may be two or four digits. + 2. The month and day can be swapped. + 3. Additional timezone names are supported. + 4. A default time and timezone are assumed if only a date is present. + """ + daynames = set(['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']) + months = { + 'jan': 1, 'feb': 2, 'mar': 3, 'apr': 4, 'may': 5, 'jun': 6, + 'jul': 7, 'aug': 8, 'sep': 9, 'oct': 10, 'nov': 11, 'dec': 12, + } + + parts = date.lower().split() + if len(parts) < 5: + # Assume that the time and timezone are missing + parts.extend(('00:00:00', '0000')) + # Remove the day name + if parts[0][:3] in daynames: + parts = parts[1:] + if len(parts) < 5: + # If there are still fewer than five parts, there's not enough + # information to interpret this + return None + try: + day = int(parts[0]) + except ValueError: + # Check if the day and month are swapped + if months.get(parts[0][:3]): + try: + day = int(parts[1]) + except ValueError: + return None + else: + parts[1] = parts[0] + else: + return None + month = months.get(parts[1][:3]) + if not month: + return None + try: + year = int(parts[2]) + except ValueError: + return None + # Normalize two-digit years: + # Anything in the 90's is interpreted as 1990 and on + # Anything 89 or less is interpreted as 2089 or before + if len(parts[2]) <= 2: + year += (1900, 2000)[year < 90] + timeparts = parts[3].split(':') + timeparts = timeparts + ([0] * (3 - len(timeparts))) + try: + (hour, minute, second) = map(int, timeparts) + except ValueError: + return None + tzhour = 0 + tzmin = 0 + # Strip 'Etc/' from the timezone + if parts[4].startswith('etc/'): + parts[4] = parts[4][4:] + # Normalize timezones that start with 'gmt': + # GMT-05:00 => -0500 + # GMT => GMT + if parts[4].startswith('gmt'): + parts[4] = ''.join(parts[4][3:].split(':')) or 'gmt' + # Handle timezones like '-0500', '+0500', and 'EST' + if parts[4] and parts[4][0] in ('-', '+'): + try: + tzhour = int(parts[4][1:3]) + tzmin = int(parts[4][3:]) + except ValueError: + return None + if parts[4].startswith('-'): + tzhour = tzhour * -1 + tzmin = tzmin * -1 + else: + tzhour = timezonenames.get(parts[4], 0) + # Create the datetime object and timezone delta objects + try: + stamp = datetime.datetime(year, month, day, hour, minute, second) + except ValueError: + return None + delta = datetime.timedelta(0, 0, 0, 0, tzmin, tzhour) + # Return the date and timestamp in a UTC 9-tuple + try: + return (stamp - delta).utctimetuple() + except (OverflowError, ValueError): + # IronPython throws ValueErrors instead of OverflowErrors + return None registerDateHandler(_parse_date_rfc822) -def _parse_date_rfc822_grubby(dt): - """Parse date format similar to RFC 822, but - the comma after the dayname is optional and - month/day are inverted""" - _rfc822_date_grubby = "%s %s %s" % (_rfc822_month, _rfc822_day, _rfc822_year) - _rfc822_match_grubby = re.compile( - "(?:%s[,]? )?%s(?: %s)?" % (_rfc822_dayname, _rfc822_date_grubby, _rfc822_time) - ).match +_months = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', + 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'] +def _parse_date_asctime(dt): + """Parse asctime-style dates. - try: - m = _rfc822_match_grubby(dt.lower()).groupdict(0) - except AttributeError: + Converts asctime to RFC822-compatible dates and uses the RFC822 parser + to do the actual parsing. + + Supported formats (format is standardized to the first one listed): + + * {weekday name} {month name} dd hh:mm:ss {+-tz} yyyy + * {weekday name} {month name} dd hh:mm:ss yyyy + """ + + parts = dt.split() + + # Insert a GMT timezone, if needed. + if len(parts) == 5: + parts.insert(4, '+0000') + + # Exit if there are not six parts. + if len(parts) != 6: return None - return _parse_date_group_rfc822(m) -registerDateHandler(_parse_date_rfc822_grubby) - -def _parse_date_asctime(dt): - """Parse asctime-style dates""" - dayname, month, day, remainder = dt.split(None, 3) - # Convert month and day into zero-padded integers - month = '%02i ' % (_rfc822_months.index(month.lower()) + 1) - day = '%02i ' % (int(day),) - dt = month + day + remainder - return time.strptime(dt, '%m %d %H:%M:%S %Y')[:-1] + (0, ) + # Reassemble the parts in an RFC822-compatible order and parse them. + return _parse_date_rfc822(' '.join([ + parts[0], parts[2], parts[1], parts[5], parts[3], parts[4], + ])) registerDateHandler(_parse_date_asctime) def _parse_date_perforce(aDateString): @@ -3725,7 +3601,7 @@ def convert_to_utf8(http_headers, data): u'application/xml-external-parsed-entity') text_content_types = (u'text/xml', u'text/xml-external-parsed-entity') if (http_content_type in application_content_types) or \ - (http_content_type.startswith(u'application/') and + (http_content_type.startswith(u'application/') and http_content_type.endswith(u'+xml')): acceptable_content_type = 1 rfc3023_encoding = http_encoding or xml_encoding or u'utf-8' @@ -3763,13 +3639,21 @@ def convert_to_utf8(http_headers, data): # determine character encoding known_encoding = 0 - chardet_encoding = None + lazy_chardet_encoding = None tried_encodings = [] if chardet: - chardet_encoding = unicode(chardet.detect(data)['encoding'] or '', 'ascii', 'ignore') + def lazy_chardet_encoding(): + chardet_encoding = chardet.detect(data)['encoding'] + if not chardet_encoding: + chardet_encoding = '' + if not isinstance(chardet_encoding, unicode): + chardet_encoding = unicode(chardet_encoding, 'ascii', 'ignore') + return chardet_encoding # try: HTTP encoding, declared XML encoding, encoding sniffed from BOM for proposed_encoding in (rfc3023_encoding, xml_encoding, bom_encoding, - chardet_encoding, u'utf-8', u'windows-1252', u'iso-8859-2'): + lazy_chardet_encoding, u'utf-8', u'windows-1252', u'iso-8859-2'): + if callable(proposed_encoding): + proposed_encoding = proposed_encoding() if not proposed_encoding: continue if proposed_encoding in tried_encodings: @@ -3861,11 +3745,83 @@ def replace_doctype(data): for k, v in RE_SAFE_ENTITY_PATTERN.findall(replacement)) return version, data, safe_entities + +# GeoRSS geometry parsers. Each return a dict with 'type' and 'coordinates' +# items, or None in the case of a parsing error. + +def _parse_poslist(value, geom_type, swap=True, dims=2): + if geom_type == 'linestring': + return _parse_georss_line(value, swap, dims) + elif geom_type == 'polygon': + ring = _parse_georss_line(value, swap, dims) + return {'type': u'Polygon', 'coordinates': (ring['coordinates'],)} + else: + return None + +def _gen_georss_coords(value, swap=True, dims=2): + # A generator of (lon, lat) pairs from a string of encoded GeoRSS + # coordinates. Converts to floats and swaps order. + latlons = itertools.imap(float, value.strip().replace(',', ' ').split()) + nxt = latlons.next + while True: + t = [nxt(), nxt()][::swap and -1 or 1] + if dims == 3: + t.append(nxt()) + yield tuple(t) + +def _parse_georss_point(value, swap=True, dims=2): + # A point contains a single latitude-longitude pair, separated by + # whitespace. We'll also handle comma separators. + try: + coords = list(_gen_georss_coords(value, swap, dims)) + return {u'type': u'Point', u'coordinates': coords[0]} + except (IndexError, ValueError): + return None + +def _parse_georss_line(value, swap=True, dims=2): + # A line contains a space separated list of latitude-longitude pairs in + # WGS84 coordinate reference system, with each pair separated by + # whitespace. There must be at least two pairs. + try: + coords = list(_gen_georss_coords(value, swap, dims)) + return {u'type': u'LineString', u'coordinates': coords} + except (IndexError, ValueError): + return None + +def _parse_georss_polygon(value, swap=True, dims=2): + # A polygon contains a space separated list of latitude-longitude pairs, + # with each pair separated by whitespace. There must be at least four + # pairs, with the last being identical to the first (so a polygon has a + # minimum of three actual points). + try: + ring = list(_gen_georss_coords(value, swap, dims)) + except (IndexError, ValueError): + return None + if len(ring) < 4: + return None + return {u'type': u'Polygon', u'coordinates': (ring,)} + +def _parse_georss_box(value, swap=True, dims=2): + # A bounding box is a rectangular region, often used to define the extents + # of a map or a rough area of interest. A box contains two space seperate + # latitude-longitude pairs, with each pair separated by whitespace. The + # first pair is the lower corner, the second is the upper corner. + try: + coords = list(_gen_georss_coords(value, swap, dims)) + return {u'type': u'Box', u'coordinates': tuple(coords)} + except (IndexError, ValueError): + return None + +# end geospatial parsers + + def parse(url_file_stream_or_string, etag=None, modified=None, agent=None, referrer=None, handlers=None, request_headers=None, response_headers=None): '''Parse a feed from a URL, file, stream, or string. request_headers, if given, is a dict from http header name to value to add to the request; this overrides internally generated values. + + :return: A :class:`FeedParserDict`. ''' if handlers is None: @@ -4011,3 +3967,41 @@ def parse(url_file_stream_or_string, etag=None, modified=None, agent=None, refer result['version'] = result['version'] or feedparser.version result['namespaces'] = feedparser.namespacesInUse return result + +# The list of EPSG codes for geographic (latitude/longitude) coordinate +# systems to support decoding of GeoRSS GML profiles. +_geogCS = [ +3819, 3821, 3824, 3889, 3906, 4001, 4002, 4003, 4004, 4005, 4006, 4007, 4008, +4009, 4010, 4011, 4012, 4013, 4014, 4015, 4016, 4018, 4019, 4020, 4021, 4022, +4023, 4024, 4025, 4027, 4028, 4029, 4030, 4031, 4032, 4033, 4034, 4035, 4036, +4041, 4042, 4043, 4044, 4045, 4046, 4047, 4052, 4053, 4054, 4055, 4075, 4081, +4120, 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130, 4131, 4132, +4133, 4134, 4135, 4136, 4137, 4138, 4139, 4140, 4141, 4142, 4143, 4144, 4145, +4146, 4147, 4148, 4149, 4150, 4151, 4152, 4153, 4154, 4155, 4156, 4157, 4158, +4159, 4160, 4161, 4162, 4163, 4164, 4165, 4166, 4167, 4168, 4169, 4170, 4171, +4172, 4173, 4174, 4175, 4176, 4178, 4179, 4180, 4181, 4182, 4183, 4184, 4185, +4188, 4189, 4190, 4191, 4192, 4193, 4194, 4195, 4196, 4197, 4198, 4199, 4200, +4201, 4202, 4203, 4204, 4205, 4206, 4207, 4208, 4209, 4210, 4211, 4212, 4213, +4214, 4215, 4216, 4218, 4219, 4220, 4221, 4222, 4223, 4224, 4225, 4226, 4227, +4228, 4229, 4230, 4231, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, 4240, +4241, 4242, 4243, 4244, 4245, 4246, 4247, 4248, 4249, 4250, 4251, 4252, 4253, +4254, 4255, 4256, 4257, 4258, 4259, 4260, 4261, 4262, 4263, 4264, 4265, 4266, +4267, 4268, 4269, 4270, 4271, 4272, 4273, 4274, 4275, 4276, 4277, 4278, 4279, +4280, 4281, 4282, 4283, 4284, 4285, 4286, 4287, 4288, 4289, 4291, 4292, 4293, +4294, 4295, 4296, 4297, 4298, 4299, 4300, 4301, 4302, 4303, 4304, 4306, 4307, +4308, 4309, 4310, 4311, 4312, 4313, 4314, 4315, 4316, 4317, 4318, 4319, 4322, +4324, 4326, 4463, 4470, 4475, 4483, 4490, 4555, 4558, 4600, 4601, 4602, 4603, +4604, 4605, 4606, 4607, 4608, 4609, 4610, 4611, 4612, 4613, 4614, 4615, 4616, +4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, +4630, 4631, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, +4643, 4644, 4645, 4646, 4657, 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, +4666, 4667, 4668, 4669, 4670, 4671, 4672, 4673, 4674, 4675, 4676, 4677, 4678, +4679, 4680, 4681, 4682, 4683, 4684, 4685, 4686, 4687, 4688, 4689, 4690, 4691, +4692, 4693, 4694, 4695, 4696, 4697, 4698, 4699, 4700, 4701, 4702, 4703, 4704, +4705, 4706, 4707, 4708, 4709, 4710, 4711, 4712, 4713, 4714, 4715, 4716, 4717, +4718, 4719, 4720, 4721, 4722, 4723, 4724, 4725, 4726, 4727, 4728, 4729, 4730, +4731, 4732, 4733, 4734, 4735, 4736, 4737, 4738, 4739, 4740, 4741, 4742, 4743, +4744, 4745, 4746, 4747, 4748, 4749, 4750, 4751, 4752, 4753, 4754, 4755, 4756, +4757, 4758, 4759, 4760, 4761, 4762, 4763, 4764, 4765, 4801, 4802, 4803, 4804, +4805, 4806, 4807, 4808, 4809, 4810, 4811, 4813, 4814, 4815, 4816, 4817, 4818, +4819, 4820, 4821, 4823, 4824, 4901, 4902, 4903, 4904, 4979 ] diff --git a/lib/feedparser/feedparsertest.py b/lib/feedparser/feedparsertest.py deleted file mode 100644 index aadcf79d..00000000 --- a/lib/feedparser/feedparsertest.py +++ /dev/null @@ -1,859 +0,0 @@ -#!/usr/bin/env python - -__author__ = "Mark Pilgrim " -__license__ = """ -Copyright (c) 2010-2012 Kurt McKee -Copyright (c) 2004-2008 Mark Pilgrim -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE.""" - -import codecs -import datetime -import glob -import operator -import os -import posixpath -import pprint -import re -import struct -import sys -import threading -import time -import unittest -import urllib -import warnings -import zlib -import BaseHTTPServer -import SimpleHTTPServer - -import feedparser - -if not feedparser._XML_AVAILABLE: - sys.stderr.write('No XML parsers available, unit testing can not proceed\n') - sys.exit(1) - -try: - # the utf_32 codec was introduced in Python 2.6; it's necessary to - # check this as long as feedparser supports Python 2.4 and 2.5 - codecs.lookup('utf_32') -except LookupError: - _UTF32_AVAILABLE = False -else: - _UTF32_AVAILABLE = True - -_s2bytes = feedparser._s2bytes -_l2bytes = feedparser._l2bytes - -#---------- custom HTTP server (used to serve test feeds) ---------- - -_PORT = 8097 # not really configurable, must match hardcoded port in tests -_HOST = '127.0.0.1' # also not really configurable - -class FeedParserTestRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): - headers_re = re.compile(_s2bytes(r"^Header:\s+([^:]+):(.+)$"), re.MULTILINE) - - def send_head(self): - """Send custom headers defined in test case - - Example: - - """ - # Short-circuit the HTTP status test `test_redirect_to_304()` - if self.path == '/-/return-304.xml': - self.send_response(304) - self.send_header('Content-type', 'text/xml') - self.end_headers() - return feedparser._StringIO(u''.encode('utf-8')) - path = self.translate_path(self.path) - # the compression tests' filenames determine the header sent - if self.path.startswith('/tests/compression'): - if self.path.endswith('gz'): - headers = {'Content-Encoding': 'gzip'} - else: - headers = {'Content-Encoding': 'deflate'} - headers['Content-type'] = 'application/xml' - else: - headers = dict([(k.decode('utf-8'), v.decode('utf-8').strip()) for k, v in self.headers_re.findall(open(path, 'rb').read())]) - f = open(path, 'rb') - if (self.headers.get('if-modified-since') == headers.get('Last-Modified', 'nom')) \ - or (self.headers.get('if-none-match') == headers.get('ETag', 'nomatch')): - status = 304 - else: - status = 200 - headers.setdefault('Status', status) - self.send_response(int(headers['Status'])) - headers.setdefault('Content-type', self.guess_type(path)) - self.send_header("Content-type", headers['Content-type']) - self.send_header("Content-Length", str(os.stat(f.name)[6])) - for k, v in headers.items(): - if k not in ('Status', 'Content-type'): - self.send_header(k, v) - self.end_headers() - return f - - def log_request(self, *args): - pass - -class FeedParserTestServer(threading.Thread): - """HTTP Server that runs in a thread and handles a predetermined number of requests""" - - def __init__(self, requests): - threading.Thread.__init__(self) - self.requests = requests - self.ready = threading.Event() - - def run(self): - self.httpd = BaseHTTPServer.HTTPServer((_HOST, _PORT), FeedParserTestRequestHandler) - self.ready.set() - while self.requests: - self.httpd.handle_request() - self.requests -= 1 - self.ready.clear() - -#---------- dummy test case class (test methods are added dynamically) ---------- -unicode1_re = re.compile(_s2bytes(" u'")) -unicode2_re = re.compile(_s2bytes(' u"')) - -# _bytes is only used in everythingIsUnicode(). -# In Python 2 it's str, and in Python 3 it's bytes. -_bytes = type(_s2bytes('')) - -def everythingIsUnicode(d): - """Takes a dictionary, recursively verifies that every value is unicode""" - for k, v in d.iteritems(): - if isinstance(v, dict) and k != 'headers': - if not everythingIsUnicode(v): - return False - elif isinstance(v, list): - for i in v: - if isinstance(i, dict) and not everythingIsUnicode(i): - return False - elif isinstance(i, _bytes): - return False - elif isinstance(v, _bytes): - return False - return True - -def failUnlessEval(self, xmlfile, evalString, msg=None): - """Fail unless eval(evalString, env)""" - env = feedparser.parse(xmlfile) - try: - if not eval(evalString, globals(), env): - failure=(msg or 'not eval(%s) \nWITH env(%s)' % (evalString, pprint.pformat(env))) - raise self.failureException, failure - if not everythingIsUnicode(env): - raise self.failureException, "not everything is unicode \nWITH env(%s)" % (pprint.pformat(env), ) - except SyntaxError: - # Python 3 doesn't have the `u""` syntax, so evalString needs to be modified, - # which will require the failure message to be updated - evalString = re.sub(unicode1_re, _s2bytes(" '"), evalString) - evalString = re.sub(unicode2_re, _s2bytes(' "'), evalString) - if not eval(evalString, globals(), env): - failure=(msg or 'not eval(%s) \nWITH env(%s)' % (evalString, pprint.pformat(env))) - raise self.failureException, failure - -class BaseTestCase(unittest.TestCase): - failUnlessEval = failUnlessEval - -class TestCase(BaseTestCase): - pass - -class TestTemporaryFallbackBehavior(unittest.TestCase): - "These tests are temporarily here because of issues 310 and 328" - def test_issue_328_fallback_behavior(self): - warnings.filterwarnings('error') - - d = feedparser.FeedParserDict() - d['published'] = u'pub string' - d['published_parsed'] = u'pub tuple' - d['updated'] = u'upd string' - d['updated_parsed'] = u'upd tuple' - # Ensure that `updated` doesn't map to `published` when it exists - self.assertTrue('published' in d) - self.assertTrue('published_parsed' in d) - self.assertTrue('updated' in d) - self.assertTrue('updated_parsed' in d) - self.assertEqual(d['published'], 'pub string') - self.assertEqual(d['published_parsed'], 'pub tuple') - self.assertEqual(d['updated'], 'upd string') - self.assertEqual(d['updated_parsed'], 'upd tuple') - - d = feedparser.FeedParserDict() - d['published'] = u'pub string' - d['published_parsed'] = u'pub tuple' - # Ensure that `updated` doesn't actually exist - self.assertTrue('updated' not in d) - self.assertTrue('updated_parsed' not in d) - # Ensure that accessing `updated` throws a DeprecationWarning - try: - d['updated'] - except DeprecationWarning: - # Expected behavior - pass - else: - # Wrong behavior - self.assertEqual(True, False) - try: - d['updated_parsed'] - except DeprecationWarning: - # Expected behavior - pass - else: - # Wrong behavior - self.assertEqual(True, False) - # Ensure that `updated` maps to `published` - warnings.filterwarnings('ignore') - self.assertEqual(d['updated'], u'pub string') - self.assertEqual(d['updated_parsed'], u'pub tuple') - warnings.resetwarnings() - - -class TestEverythingIsUnicode(unittest.TestCase): - "Ensure that `everythingIsUnicode()` is working appropriately" - def test_everything_is_unicode(self): - self.assertTrue(everythingIsUnicode( - {'a': u'a', 'b': [u'b', {'c': u'c'}], 'd': {'e': u'e'}} - )) - def test_not_everything_is_unicode(self): - self.assertFalse(everythingIsUnicode({'a': _s2bytes('a')})) - self.assertFalse(everythingIsUnicode({'a': [_s2bytes('a')]})) - self.assertFalse(everythingIsUnicode({'a': {'b': _s2bytes('b')}})) - self.assertFalse(everythingIsUnicode({'a': [{'b': _s2bytes('b')}]})) - -class TestLooseParser(BaseTestCase): - "Test the sgmllib-based parser by manipulating feedparser " \ - "into believing no XML parsers are installed" - def __init__(self, arg): - unittest.TestCase.__init__(self, arg) - self._xml_available = feedparser._XML_AVAILABLE - def setUp(self): - feedparser._XML_AVAILABLE = 0 - def tearDown(self): - feedparser._XML_AVAILABLE = self._xml_available - -class TestStrictParser(BaseTestCase): - pass - -class TestMicroformats(BaseTestCase): - pass - -class TestEncodings(BaseTestCase): - def test_doctype_replacement(self): - "Ensure that non-ASCII-compatible encodings don't hide " \ - "disallowed ENTITY declarations" - doc = """ - - - - ]> - &exponential3;""" - doc = codecs.BOM_UTF16_BE + doc.encode('utf-16be') - result = feedparser.parse(doc) - self.assertEqual(result['feed']['title'], u'&exponential3') - def test_gb2312_converted_to_gb18030_in_xml_encoding(self): - # \u55de was chosen because it exists in gb18030 but not gb2312 - feed = u''' - \u55de''' - result = feedparser.parse(feed.encode('gb18030'), response_headers={ - 'Content-Type': 'text/xml' - }) - self.assertEqual(result.encoding, 'gb18030') - -class TestFeedParserDict(unittest.TestCase): - "Ensure that FeedParserDict returns values as expected and won't crash" - def setUp(self): - self.d = feedparser.FeedParserDict() - def _check_key(self, k): - self.assertTrue(k in self.d) - self.assertTrue(hasattr(self.d, k)) - self.assertEqual(self.d[k], 1) - self.assertEqual(getattr(self.d, k), 1) - def _check_no_key(self, k): - self.assertTrue(k not in self.d) - self.assertTrue(not hasattr(self.d, k)) - def test_empty(self): - keys = ( - 'a','entries', 'id', 'guid', 'summary', 'subtitle', 'description', - 'category', 'enclosures', 'license', 'categories', - ) - for k in keys: - self._check_no_key(k) - self.assertTrue('items' not in self.d) - self.assertTrue(hasattr(self.d, 'items')) # dict.items() exists - def test_neutral(self): - self.d['a'] = 1 - self._check_key('a') - def test_single_mapping_target_1(self): - self.d['id'] = 1 - self._check_key('id') - self._check_key('guid') - def test_single_mapping_target_2(self): - self.d['guid'] = 1 - self._check_key('id') - self._check_key('guid') - def test_multiple_mapping_target_1(self): - self.d['summary'] = 1 - self._check_key('summary') - self._check_key('description') - def test_multiple_mapping_target_2(self): - self.d['subtitle'] = 1 - self._check_key('subtitle') - self._check_key('description') - def test_multiple_mapping_mapped_key(self): - self.d['description'] = 1 - self._check_key('summary') - self._check_key('description') - def test_license(self): - self.d['links'] = [] - try: - self.d['license'] - self.assertTrue(False) - except KeyError: - pass - self.d['links'].append({'rel': 'license'}) - try: - self.d['license'] - self.assertTrue(False) - except KeyError: - pass - self.d['links'].append({'rel': 'license', 'href': 'http://dom.test/'}) - self.assertEqual(self.d['license'], 'http://dom.test/') - def test_category(self): - self.d['tags'] = [] - try: - self.d['category'] - self.assertTrue(False) - except KeyError: - pass - self.d['tags'] = [{}] - try: - self.d['category'] - self.assertTrue(False) - except KeyError: - pass - self.d['tags'] = [{'term': 'cat'}] - self.assertEqual(self.d['category'], 'cat') - self.d['tags'].append({'term': 'dog'}) - self.assertEqual(self.d['category'], 'cat') - -class TestOpenResource(unittest.TestCase): - "Ensure that `_open_resource()` interprets its arguments as URIs, " \ - "file-like objects, or in-memory feeds as expected" - def test_fileobj(self): - r = feedparser._open_resource(sys.stdin, '', '', '', '', [], {}) - self.assertTrue(r is sys.stdin) - def test_feed(self): - f = feedparser.parse(u'feed://localhost:8097/tests/http/target.xml') - self.assertEqual(f.href, u'http://localhost:8097/tests/http/target.xml') - def test_feed_http(self): - f = feedparser.parse(u'feed:http://localhost:8097/tests/http/target.xml') - self.assertEqual(f.href, u'http://localhost:8097/tests/http/target.xml') - def test_bytes(self): - s = 'text'.encode('utf-8') - r = feedparser._open_resource(s, '', '', '', '', [], {}) - self.assertEqual(s, r.read()) - def test_string(self): - s = 'text' - r = feedparser._open_resource(s, '', '', '', '', [], {}) - self.assertEqual(s.encode('utf-8'), r.read()) - def test_unicode_1(self): - s = u'text' - r = feedparser._open_resource(s, '', '', '', '', [], {}) - self.assertEqual(s.encode('utf-8'), r.read()) - def test_unicode_2(self): - s = u't\u00e9xt' - r = feedparser._open_resource(s, '', '', '', '', [], {}) - self.assertEqual(s.encode('utf-8'), r.read()) - -class TestMakeSafeAbsoluteURI(unittest.TestCase): - "Exercise the URI joining and sanitization code" - base = u'http://d.test/d/f.ext' - def _mktest(rel, expect, doc): - def fn(self): - value = feedparser._makeSafeAbsoluteURI(self.base, rel) - self.assertEqual(value, expect) - fn.__doc__ = doc - return fn - - # make the test cases; the call signature is: - # (relative_url, expected_return_value, test_doc_string) - test_abs = _mktest(u'https://s.test/', u'https://s.test/', 'absolute uri') - test_rel = _mktest(u'/new', u'http://d.test/new', 'relative uri') - test_bad = _mktest(u'x://bad.test/', u'', 'unacceptable uri protocol') - test_mag = _mktest(u'magnet:?xt=a', u'magnet:?xt=a', 'magnet uri') - - def test_catch_ValueError(self): - 'catch ValueError in Python 2.7 and up' - uri = u'http://bad]test/' - value1 = feedparser._makeSafeAbsoluteURI(uri) - value2 = feedparser._makeSafeAbsoluteURI(self.base, uri) - swap = feedparser.ACCEPTABLE_URI_SCHEMES - feedparser.ACCEPTABLE_URI_SCHEMES = () - value3 = feedparser._makeSafeAbsoluteURI(self.base, uri) - feedparser.ACCEPTABLE_URI_SCHEMES = swap - # Only Python 2.7 and up throw a ValueError, otherwise uri is returned - self.assertTrue(value1 in (uri, u'')) - self.assertTrue(value2 in (uri, u'')) - self.assertTrue(value3 in (uri, u'')) - -class TestConvertToIdn(unittest.TestCase): - "Test IDN support (unavailable in Jython as of Jython 2.5.2)" - # this is the greek test domain - hostname = u'\u03c0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1' - hostname += u'.\u03b4\u03bf\u03ba\u03b9\u03bc\u03ae' - def test_control(self): - r = feedparser._convert_to_idn(u'http://example.test/') - self.assertEqual(r, u'http://example.test/') - def test_idn(self): - r = feedparser._convert_to_idn(u'http://%s/' % (self.hostname,)) - self.assertEqual(r, u'http://xn--hxajbheg2az3al.xn--jxalpdlp/') - def test_port(self): - r = feedparser._convert_to_idn(u'http://%s:8080/' % (self.hostname,)) - self.assertEqual(r, u'http://xn--hxajbheg2az3al.xn--jxalpdlp:8080/') - -class TestCompression(unittest.TestCase): - "Test the gzip and deflate support in the HTTP code" - def test_gzip_good(self): - f = feedparser.parse('http://localhost:8097/tests/compression/gzip.gz') - self.assertEqual(f.version, 'atom10') - def test_gzip_not_compressed(self): - f = feedparser.parse('http://localhost:8097/tests/compression/gzip-not-compressed.gz') - self.assertEqual(f.bozo, 1) - self.assertTrue(isinstance(f.bozo_exception, IOError)) - self.assertEqual(f['feed']['title'], 'gzip') - def test_gzip_struct_error(self): - f = feedparser.parse('http://localhost:8097/tests/compression/gzip-struct-error.gz') - self.assertEqual(f.bozo, 1) - self.assertTrue(isinstance(f.bozo_exception, struct.error)) - def test_zlib_good(self): - f = feedparser.parse('http://localhost:8097/tests/compression/deflate.z') - self.assertEqual(f.version, 'atom10') - def test_zlib_no_headers(self): - f = feedparser.parse('http://localhost:8097/tests/compression/deflate-no-headers.z') - self.assertEqual(f.version, 'atom10') - def test_zlib_not_compressed(self): - f = feedparser.parse('http://localhost:8097/tests/compression/deflate-not-compressed.z') - self.assertEqual(f.bozo, 1) - self.assertTrue(isinstance(f.bozo_exception, zlib.error)) - self.assertEqual(f['feed']['title'], 'deflate') - -class TestHTTPStatus(unittest.TestCase): - "Test HTTP redirection and other status codes" - def test_301(self): - f = feedparser.parse('http://localhost:8097/tests/http/http_status_301.xml') - self.assertEqual(f.status, 301) - self.assertEqual(f.href, 'http://localhost:8097/tests/http/target.xml') - self.assertEqual(f.entries[0].title, 'target') - def test_302(self): - f = feedparser.parse('http://localhost:8097/tests/http/http_status_302.xml') - self.assertEqual(f.status, 302) - self.assertEqual(f.href, 'http://localhost:8097/tests/http/target.xml') - self.assertEqual(f.entries[0].title, 'target') - def test_303(self): - f = feedparser.parse('http://localhost:8097/tests/http/http_status_303.xml') - self.assertEqual(f.status, 303) - self.assertEqual(f.href, 'http://localhost:8097/tests/http/target.xml') - self.assertEqual(f.entries[0].title, 'target') - def test_307(self): - f = feedparser.parse('http://localhost:8097/tests/http/http_status_307.xml') - self.assertEqual(f.status, 307) - self.assertEqual(f.href, 'http://localhost:8097/tests/http/target.xml') - self.assertEqual(f.entries[0].title, 'target') - def test_304(self): - # first retrieve the url - u = 'http://localhost:8097/tests/http/http_status_304.xml' - f = feedparser.parse(u) - self.assertEqual(f.status, 200) - self.assertEqual(f.entries[0].title, 'title 304') - # extract the etag and last-modified headers - e = [v for k, v in f.headers.items() if k.lower() == 'etag'][0] - mh = [v for k, v in f.headers.items() if k.lower() == 'last-modified'][0] - ms = f.updated - mt = f.updated_parsed - md = datetime.datetime(*mt[0:7]) - self.assertTrue(isinstance(mh, basestring)) - self.assertTrue(isinstance(ms, basestring)) - self.assertTrue(isinstance(mt, time.struct_time)) - self.assertTrue(isinstance(md, datetime.datetime)) - # test that sending back the etag results in a 304 - f = feedparser.parse(u, etag=e) - self.assertEqual(f.status, 304) - # test that sending back last-modified (string) results in a 304 - f = feedparser.parse(u, modified=ms) - self.assertEqual(f.status, 304) - # test that sending back last-modified (9-tuple) results in a 304 - f = feedparser.parse(u, modified=mt) - self.assertEqual(f.status, 304) - # test that sending back last-modified (datetime) results in a 304 - f = feedparser.parse(u, modified=md) - self.assertEqual(f.status, 304) - def test_404(self): - f = feedparser.parse('http://localhost:8097/tests/http/http_status_404.xml') - self.assertEqual(f.status, 404) - def test_9001(self): - f = feedparser.parse('http://localhost:8097/tests/http/http_status_9001.xml') - self.assertEqual(f.bozo, 1) - def test_redirect_to_304(self): - # ensure that an http redirect to an http 304 doesn't - # trigger a bozo_exception - u = 'http://localhost:8097/tests/http/http_redirect_to_304.xml' - f = feedparser.parse(u) - self.assertTrue(f.bozo == 0) - self.assertTrue(f.status == 302) - -class TestDateParsers(unittest.TestCase): - "Test the various date parsers; most of the test cases are constructed " \ - "dynamically based on the contents of the `date_tests` dict, below" - def test_None(self): - self.assertTrue(feedparser._parse_date(None) is None) - def _check_date(self, func, dtstring, dttuple): - try: - tup = func(dtstring) - except (OverflowError, ValueError): - tup = None - self.assertEqual(tup, dttuple) - self.assertEqual(tup, feedparser._parse_date(dtstring)) - def test_year_10000_date(self): - # On some systems this date string will trigger an OverflowError. - # On Jython and x64 systems, however, it's interpreted just fine. - try: - date = feedparser._parse_date_rfc822(u'Sun, 31 Dec 9999 23:59:59 -9999') - except OverflowError: - date = None - self.assertTrue(date in (None, (10000, 1, 5, 4, 38, 59, 2, 5, 0))) - -date_tests = { - feedparser._parse_date_greek: ( - (u'', None), # empty string - (u'\u039a\u03c5\u03c1, 11 \u0399\u03bf\u03cd\u03bb 2004 12:00:00 EST', (2004, 7, 11, 17, 0, 0, 6, 193, 0)), - ), - feedparser._parse_date_hungarian: ( - (u'', None), # empty string - (u'2004-j\u00falius-13T9:15-05:00', (2004, 7, 13, 14, 15, 0, 1, 195, 0)), - ), - feedparser._parse_date_iso8601: ( - (u'', None), # empty string - (u'-0312', (2003, 12, 1, 0, 0, 0, 0, 335, 0)), # 2-digit year/month only variant - (u'031231', (2003, 12, 31, 0, 0, 0, 2, 365, 0)), # 2-digit year/month/day only, no hyphens - (u'03-12-31', (2003, 12, 31, 0, 0, 0, 2, 365, 0)), # 2-digit year/month/day only - (u'-03-12', (2003, 12, 1, 0, 0, 0, 0, 335, 0)), # 2-digit year/month only - (u'03335', (2003, 12, 1, 0, 0, 0, 0, 335, 0)), # 2-digit year/ordinal, no hyphens - (u'2003-12-31T10:14:55.1234Z', (2003, 12, 31, 10, 14, 55, 2, 365, 0)), # fractional seconds - # Special case for Google's extra zero in the month - (u'2003-012-31T10:14:55+00:00', (2003, 12, 31, 10, 14, 55, 2, 365, 0)), - ), - feedparser._parse_date_nate: ( - (u'', None), # empty string - (u'2004-05-25 \uc624\ud6c4 11:23:17', (2004, 5, 25, 14, 23, 17, 1, 146, 0)), - ), - feedparser._parse_date_onblog: ( - (u'', None), # empty string - (u'2004\ub144 05\uc6d4 28\uc77c 01:31:15', (2004, 5, 27, 16, 31, 15, 3, 148, 0)), - ), - feedparser._parse_date_perforce: ( - (u'', None), # empty string - (u'Fri, 2006/09/15 08:19:53 EDT', (2006, 9, 15, 12, 19, 53, 4, 258, 0)), - ), - feedparser._parse_date_rfc822: ( - (u'', None), # empty string - (u'Thu, 01 Jan 0100 00:00:01 +0100', (99, 12, 31, 23, 0, 1, 3, 365, 0)), # ancient date - (u'Thu, 01 Jan 04 19:48:21 GMT', (2004, 1, 1, 19, 48, 21, 3, 1, 0)), # 2-digit year - (u'Thu, 01 Jan 2004 19:48:21 GMT', (2004, 1, 1, 19, 48, 21, 3, 1, 0)), # 4-digit year - (u'Thu, 5 Apr 2012 10:00:00 GMT', (2012, 4, 5, 10, 0, 0, 3, 96, 0)), # 1-digit day - (u'Wed, 19 Aug 2009 18:28:00 Etc/GMT', (2009, 8, 19, 18, 28, 0, 2, 231, 0)), # etc/gmt timezone - (u'Wed, 19 Feb 2012 22:40:00 GMT-01:01', (2012, 2, 19, 23, 41, 0, 6, 50, 0)), # gmt+hh:mm timezone - (u'Mon, 13 Feb, 2012 06:28:00 UTC', (2012, 2, 13, 6, 28, 0, 0, 44, 0)), # extraneous comma - (u'Thu, 01 Jan 2004 00:00 GMT', (2004, 1, 1, 0, 0, 0, 3, 1, 0)), # no seconds - (u'Thu, 01 Jan 2004', (2004, 1, 1, 0, 0, 0, 3, 1, 0)), # no time - # Additional tests to handle Disney's long month names and invalid timezones - (u'Mon, 26 January 2004 16:31:00 AT', (2004, 1, 26, 20, 31, 0, 0, 26, 0)), - (u'Mon, 26 January 2004 16:31:00 ET', (2004, 1, 26, 21, 31, 0, 0, 26, 0)), - (u'Mon, 26 January 2004 16:31:00 CT', (2004, 1, 26, 22, 31, 0, 0, 26, 0)), - (u'Mon, 26 January 2004 16:31:00 MT', (2004, 1, 26, 23, 31, 0, 0, 26, 0)), - (u'Mon, 26 January 2004 16:31:00 PT', (2004, 1, 27, 0, 31, 0, 1, 27, 0)), - ), - feedparser._parse_date_rfc822_grubby: ( - (u'Thu Aug 30 2012 17:26:16 +0200', (2012, 8, 30, 15, 26, 16, 3, 243, 0)), - ), - feedparser._parse_date_asctime: ( - (u'Sun Jan 4 16:29:06 2004', (2004, 1, 4, 16, 29, 6, 6, 4, 0)), - ), - feedparser._parse_date_w3dtf: ( - (u'', None), # empty string - (u'2003-12-31T10:14:55Z', (2003, 12, 31, 10, 14, 55, 2, 365, 0)), # UTC - (u'2003-12-31T10:14:55-08:00', (2003, 12, 31, 18, 14, 55, 2, 365, 0)), # San Francisco timezone - (u'2003-12-31T18:14:55+08:00', (2003, 12, 31, 10, 14, 55, 2, 365, 0)), # Tokyo timezone - (u'2007-04-23T23:25:47.538+10:00', (2007, 4, 23, 13, 25, 47, 0, 113, 0)), # fractional seconds - (u'2003-12-31', (2003, 12, 31, 0, 0, 0, 2, 365, 0)), # year/month/day only - (u'20031231', (2003, 12, 31, 0, 0, 0, 2, 365, 0)), # year/month/day only, no hyphens - (u'2003-12', (2003, 12, 1, 0, 0, 0, 0, 335, 0)), # year/month only - (u'2003', (2003, 1, 1, 0, 0, 0, 2, 1, 0)), # year only - # MSSQL-style dates - (u'2004-07-08 23:56:58 -00:20', (2004, 7, 9, 0, 16, 58, 4, 191, 0)), # with timezone - (u'2004-07-08 23:56:58', (2004, 7, 8, 23, 56, 58, 3, 190, 0)), # without timezone - (u'2004-07-08 23:56:58.0', (2004, 7, 8, 23, 56, 58, 3, 190, 0)), # with fractional second - # Special cases for out-of-range times - (u'2003-12-31T25:14:55Z', (2004, 1, 1, 1, 14, 55, 3, 1, 0)), # invalid (25 hours) - (u'2003-12-31T10:61:55Z', (2003, 12, 31, 11, 1, 55, 2, 365, 0)), # invalid (61 minutes) - (u'2003-12-31T10:14:61Z', (2003, 12, 31, 10, 15, 1, 2, 365, 0)), # invalid (61 seconds) - # Special cases for rollovers in leap years - (u'2004-02-28T18:14:55-08:00', (2004, 2, 29, 2, 14, 55, 6, 60, 0)), # feb 28 in leap year - (u'2003-02-28T18:14:55-08:00', (2003, 3, 1, 2, 14, 55, 5, 60, 0)), # feb 28 in non-leap year - (u'2000-02-28T18:14:55-08:00', (2000, 2, 29, 2, 14, 55, 1, 60, 0)), # feb 28 in leap year on century divisible by 400 - ) -} - -def make_date_test(f, s, t): - return lambda self: self._check_date(f, s, t) - -for func, items in date_tests.iteritems(): - for i, (dtstring, dttuple) in enumerate(items): - uniqfunc = make_date_test(func, dtstring, dttuple) - setattr(TestDateParsers, 'test_%s_%02i' % (func.__name__, i), uniqfunc) - - -class TestHTMLGuessing(unittest.TestCase): - "Exercise the HTML sniffing code" - def _mktest(text, expect, doc): - def fn(self): - value = bool(feedparser._FeedParserMixin.lookslikehtml(text)) - self.assertEqual(value, expect) - fn.__doc__ = doc - return fn - - test_text_1 = _mktest(u'plain text', False, u'plain text') - test_text_2 = _mktest(u'2 < 3', False, u'plain text with angle bracket') - test_html_1 = _mktest(u'a', True, u'anchor tag') - test_html_2 = _mktest(u'i', True, u'italics tag') - test_html_3 = _mktest(u'b', True, u'bold tag') - test_html_4 = _mktest(u'', False, u'allowed tag, no end tag') - test_html_5 = _mktest(u' .. ', False, u'disallowed tag') - test_entity_1 = _mktest(u'AT&T', False, u'corporation name') - test_entity_2 = _mktest(u'©', True, u'named entity reference') - test_entity_3 = _mktest(u'©', True, u'numeric entity reference') - test_entity_4 = _mktest(u'©', True, u'hex numeric entity reference') - -#---------- additional api unit tests, not backed by files - -class TestBuildRequest(unittest.TestCase): - "Test that HTTP request objects are created as expected" - def test_extra_headers(self): - """You can pass in extra headers and they go into the request object.""" - - request = feedparser._build_urllib2_request( - 'http://example.com/feed', - 'agent-name', - None, None, None, None, - {'Cache-Control': 'max-age=0'}) - # nb, urllib2 folds the case of the headers - self.assertEqual( - request.get_header('Cache-control'), 'max-age=0') - - -class TestLxmlBug(unittest.TestCase): - def test_lxml_etree_bug(self): - try: - import lxml.etree - except ImportError: - pass - else: - doc = u"&illformed_charref".encode('utf8') - # Importing lxml.etree currently causes libxml2 to - # throw SAXException instead of SAXParseException. - feedparser.parse(feedparser._StringIO(doc)) - self.assertTrue(True) - -#---------- parse test files and create test methods ---------- -def convert_to_utf8(data): - "Identify data's encoding using its byte order mark" \ - "and convert it to its utf-8 equivalent" - if data[:4] == _l2bytes([0x4c, 0x6f, 0xa7, 0x94]): - return data.decode('cp037').encode('utf-8') - elif data[:4] == _l2bytes([0x00, 0x00, 0xfe, 0xff]): - if not _UTF32_AVAILABLE: - return None - return data.decode('utf-32be').encode('utf-8') - elif data[:4] == _l2bytes([0xff, 0xfe, 0x00, 0x00]): - if not _UTF32_AVAILABLE: - return None - return data.decode('utf-32le').encode('utf-8') - elif data[:4] == _l2bytes([0x00, 0x00, 0x00, 0x3c]): - if not _UTF32_AVAILABLE: - return None - return data.decode('utf-32be').encode('utf-8') - elif data[:4] == _l2bytes([0x3c, 0x00, 0x00, 0x00]): - if not _UTF32_AVAILABLE: - return None - return data.decode('utf-32le').encode('utf-8') - elif data[:4] == _l2bytes([0x00, 0x3c, 0x00, 0x3f]): - return data.decode('utf-16be').encode('utf-8') - elif data[:4] == _l2bytes([0x3c, 0x00, 0x3f, 0x00]): - return data.decode('utf-16le').encode('utf-8') - elif (data[:2] == _l2bytes([0xfe, 0xff])) and (data[2:4] != _l2bytes([0x00, 0x00])): - return data[2:].decode('utf-16be').encode('utf-8') - elif (data[:2] == _l2bytes([0xff, 0xfe])) and (data[2:4] != _l2bytes([0x00, 0x00])): - return data[2:].decode('utf-16le').encode('utf-8') - elif data[:3] == _l2bytes([0xef, 0xbb, 0xbf]): - return data[3:] - # no byte order mark was found - return data - -skip_re = re.compile(_s2bytes("SkipUnless:\s*(.*?)\n")) -desc_re = re.compile(_s2bytes("Description:\s*(.*?)\s*Expect:\s*(.*)\s*-->")) -def getDescription(xmlfile, data): - """Extract test data - - Each test case is an XML file which contains not only a test feed - but also the description of the test and the condition that we - would expect the parser to create when it parses the feed. Example: - - """ - skip_results = skip_re.search(data) - if skip_results: - skipUnless = skip_results.group(1).strip() - else: - skipUnless = '1' - search_results = desc_re.search(data) - if not search_results: - raise RuntimeError, "can't parse %s" % xmlfile - description, evalString = map(lambda s: s.strip(), list(search_results.groups())) - description = xmlfile + ": " + unicode(description, 'utf8') - return description, evalString, skipUnless - -def buildTestCase(xmlfile, description, evalString): - func = lambda self, xmlfile=xmlfile, evalString=evalString: \ - self.failUnlessEval(xmlfile, evalString) - func.__doc__ = description - return func - -def runtests(): - "Read the files in the tests/ directory, dynamically add tests to the " \ - "TestCases above, spawn the HTTP server, and run the test suite" - if sys.argv[1:]: - allfiles = filter(lambda s: s.endswith('.xml'), reduce(operator.add, map(glob.glob, sys.argv[1:]), [])) - sys.argv = [sys.argv[0]] #+ sys.argv[2:] - else: - allfiles = glob.glob(os.path.join('.', 'tests', '**', '**', '*.xml')) - wellformedfiles = glob.glob(os.path.join('.', 'tests', 'wellformed', '**', '*.xml')) - illformedfiles = glob.glob(os.path.join('.', 'tests', 'illformed', '*.xml')) - encodingfiles = glob.glob(os.path.join('.', 'tests', 'encoding', '*.xml')) - entitiesfiles = glob.glob(os.path.join('.', 'tests', 'entities', '*.xml')) - microformatfiles = glob.glob(os.path.join('.', 'tests', 'microformats', '**', '*.xml')) - httpd = None - # there are several compression test cases that must be accounted for - # as well as a number of http status tests that redirect to a target - # and a few `_open_resource`-related tests - httpcount = 6 + 17 + 2 - httpcount += len([f for f in allfiles if 'http' in f]) - httpcount += len([f for f in wellformedfiles if 'http' in f]) - httpcount += len([f for f in illformedfiles if 'http' in f]) - httpcount += len([f for f in encodingfiles if 'http' in f]) - try: - for c, xmlfile in enumerate(allfiles + encodingfiles + illformedfiles + entitiesfiles): - addTo = TestCase - if xmlfile in encodingfiles: - addTo = TestEncodings - elif xmlfile in entitiesfiles: - addTo = (TestStrictParser, TestLooseParser) - elif xmlfile in microformatfiles: - addTo = TestMicroformats - elif xmlfile in wellformedfiles: - addTo = (TestStrictParser, TestLooseParser) - data = open(xmlfile, 'rb').read() - if 'encoding' in xmlfile: - data = convert_to_utf8(data) - if data is None: - # convert_to_utf8 found a byte order mark for utf_32 - # but it's not supported in this installation of Python - if 'http' in xmlfile: - httpcount -= 1 + (xmlfile in wellformedfiles) - continue - description, evalString, skipUnless = getDescription(xmlfile, data) - testName = 'test_%06d' % c - ishttp = 'http' in xmlfile - try: - if not eval(skipUnless): raise NotImplementedError - except (ImportError, LookupError, NotImplementedError, AttributeError): - if ishttp: - httpcount -= 1 + (xmlfile in wellformedfiles) - continue - if ishttp: - xmlfile = 'http://%s:%s/%s' % (_HOST, _PORT, posixpath.normpath(xmlfile.replace('\\', '/'))) - testFunc = buildTestCase(xmlfile, description, evalString) - if isinstance(addTo, tuple): - setattr(addTo[0], testName, testFunc) - setattr(addTo[1], testName, testFunc) - else: - setattr(addTo, testName, testFunc) - if feedparser.TIDY_MARKUP and feedparser._mxtidy: - sys.stderr.write('\nWarning: feedparser.TIDY_MARKUP invalidates tests, turning it off temporarily\n\n') - feedparser.TIDY_MARKUP = 0 - if httpcount: - httpd = FeedParserTestServer(httpcount) - httpd.daemon = True - httpd.start() - httpd.ready.wait() - testsuite = unittest.TestSuite() - testloader = unittest.TestLoader() - testsuite.addTest(testloader.loadTestsFromTestCase(TestCase)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestStrictParser)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestLooseParser)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestEncodings)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestDateParsers)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestHTMLGuessing)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestHTTPStatus)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestCompression)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestConvertToIdn)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestMicroformats)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestOpenResource)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestFeedParserDict)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestMakeSafeAbsoluteURI)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestEverythingIsUnicode)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestTemporaryFallbackBehavior)) - testsuite.addTest(testloader.loadTestsFromTestCase(TestLxmlBug)) - testresults = unittest.TextTestRunner(verbosity=1).run(testsuite) - - # Return 0 if successful, 1 if there was a failure - sys.exit(not testresults.wasSuccessful()) - finally: - if httpd: - if httpd.requests: - # Should never get here unless something went horribly wrong, like the - # user hitting Ctrl-C. Tell our HTTP server that it's done, then do - # one more request to flush it. This rarely works; the combination of - # threading, self-terminating HTTP servers, and unittest is really - # quite flaky. Just what you want in a testing framework, no? - httpd.requests = 0 - if httpd.ready: - urllib.urlopen('http://127.0.0.1:8097/tests/wellformed/rss/aaa_wellformed.xml').read() - httpd.join(0) - -if __name__ == "__main__": - runtests() diff --git a/lib/feedparser/tests/compression/deflate-no-headers.z b/lib/feedparser/tests/compression/deflate-no-headers.z deleted file mode 100644 index 04b5c303..00000000 Binary files a/lib/feedparser/tests/compression/deflate-no-headers.z and /dev/null differ diff --git a/lib/feedparser/tests/compression/deflate-not-compressed.z b/lib/feedparser/tests/compression/deflate-not-compressed.z deleted file mode 100644 index ddd28221..00000000 --- a/lib/feedparser/tests/compression/deflate-not-compressed.z +++ /dev/null @@ -1 +0,0 @@ -deflate diff --git a/lib/feedparser/tests/compression/deflate.z b/lib/feedparser/tests/compression/deflate.z deleted file mode 100644 index e68e620e..00000000 Binary files a/lib/feedparser/tests/compression/deflate.z and /dev/null differ diff --git a/lib/feedparser/tests/compression/gzip-not-compressed.gz b/lib/feedparser/tests/compression/gzip-not-compressed.gz deleted file mode 100644 index f7431783..00000000 --- a/lib/feedparser/tests/compression/gzip-not-compressed.gz +++ /dev/null @@ -1 +0,0 @@ -gzip \ No newline at end of file diff --git a/lib/feedparser/tests/compression/gzip-struct-error.gz b/lib/feedparser/tests/compression/gzip-struct-error.gz deleted file mode 100644 index d4c59941..00000000 Binary files a/lib/feedparser/tests/compression/gzip-struct-error.gz and /dev/null differ diff --git a/lib/feedparser/tests/compression/gzip.gz b/lib/feedparser/tests/compression/gzip.gz deleted file mode 100644 index 52a063f7..00000000 Binary files a/lib/feedparser/tests/compression/gzip.gz and /dev/null differ diff --git a/lib/feedparser/tests/compression/sample.xml b/lib/feedparser/tests/compression/sample.xml deleted file mode 100644 index d6e8416d..00000000 --- a/lib/feedparser/tests/compression/sample.xml +++ /dev/null @@ -1 +0,0 @@ - diff --git a/lib/feedparser/tests/encoding/big5.xml b/lib/feedparser/tests/encoding/big5.xml deleted file mode 100644 index 823966bb..00000000 --- a/lib/feedparser/tests/encoding/big5.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/bozo_bogus_encoding.xml b/lib/feedparser/tests/encoding/bozo_bogus_encoding.xml deleted file mode 100644 index 89638b7b..00000000 --- a/lib/feedparser/tests/encoding/bozo_bogus_encoding.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/bozo_double-encoded-html.xml b/lib/feedparser/tests/encoding/bozo_double-encoded-html.xml deleted file mode 100644 index b268d6a9..00000000 --- a/lib/feedparser/tests/encoding/bozo_double-encoded-html.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - … - - - - diff --git a/lib/feedparser/tests/encoding/bozo_encoding_mismatch_crash.xml b/lib/feedparser/tests/encoding/bozo_encoding_mismatch_crash.xml deleted file mode 100644 index 315980b9..00000000 --- a/lib/feedparser/tests/encoding/bozo_encoding_mismatch_crash.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -¤]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/bozo_http_i18n.xml b/lib/feedparser/tests/encoding/bozo_http_i18n.xml deleted file mode 100644 index 5dae7973..00000000 --- a/lib/feedparser/tests/encoding/bozo_http_i18n.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Iñtërnâtiônàlizætiøn - diff --git a/lib/feedparser/tests/encoding/bozo_http_text_plain.xml b/lib/feedparser/tests/encoding/bozo_http_text_plain.xml deleted file mode 100644 index 7e0adfe8..00000000 --- a/lib/feedparser/tests/encoding/bozo_http_text_plain.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/bozo_http_text_plain_charset.xml b/lib/feedparser/tests/encoding/bozo_http_text_plain_charset.xml deleted file mode 100644 index 89c36e87..00000000 --- a/lib/feedparser/tests/encoding/bozo_http_text_plain_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/bozo_invalid-bytes-with-bom.xml b/lib/feedparser/tests/encoding/bozo_invalid-bytes-with-bom.xml deleted file mode 100644 index 4c1b349f..00000000 --- a/lib/feedparser/tests/encoding/bozo_invalid-bytes-with-bom.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -Valid UTF8: ѨInvalid UTF8: España -
-
-
- - - - - -
 ]]> - - - diff --git a/lib/feedparser/tests/encoding/csucs4.xml b/lib/feedparser/tests/encoding/csucs4.xml deleted file mode 100644 index 6a5e88ae..00000000 Binary files a/lib/feedparser/tests/encoding/csucs4.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/csunicode.xml b/lib/feedparser/tests/encoding/csunicode.xml deleted file mode 100644 index aac9a437..00000000 Binary files a/lib/feedparser/tests/encoding/csunicode.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/demoronize-1.xml b/lib/feedparser/tests/encoding/demoronize-1.xml deleted file mode 100644 index 8b2345f6..00000000 --- a/lib/feedparser/tests/encoding/demoronize-1.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - donÂ’t - - - - diff --git a/lib/feedparser/tests/encoding/demoronize-2.xml b/lib/feedparser/tests/encoding/demoronize-2.xml deleted file mode 100644 index f96d4549..00000000 --- a/lib/feedparser/tests/encoding/demoronize-2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - don’t - - - - diff --git a/lib/feedparser/tests/encoding/demoronize-3.xml b/lib/feedparser/tests/encoding/demoronize-3.xml deleted file mode 100644 index c54ef84a..00000000 --- a/lib/feedparser/tests/encoding/demoronize-3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - don&#146;t - - - - diff --git a/lib/feedparser/tests/encoding/double-encoded-html.xml b/lib/feedparser/tests/encoding/double-encoded-html.xml deleted file mode 100644 index f98916c9..00000000 --- a/lib/feedparser/tests/encoding/double-encoded-html.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - … - - - - diff --git a/lib/feedparser/tests/encoding/encoding_attribute_crash.xml b/lib/feedparser/tests/encoding/encoding_attribute_crash.xml deleted file mode 100644 index b270005a..00000000 --- a/lib/feedparser/tests/encoding/encoding_attribute_crash.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/encoding_attribute_crash_2.xml b/lib/feedparser/tests/encoding/encoding_attribute_crash_2.xml deleted file mode 100644 index a000acc9..00000000 --- a/lib/feedparser/tests/encoding/encoding_attribute_crash_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<a href="http://example.com"><img src="http://example.com/logo.gif" alt="The image &acirc;&#128;&#156;http://example.com/logo.gif&acirc;&#128;&#65533; cannot be displayed, because it contains errors."></a><br> - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/euc-kr-attribute.xml b/lib/feedparser/tests/encoding/euc-kr-attribute.xml deleted file mode 100644 index 0dd60882..00000000 --- a/lib/feedparser/tests/encoding/euc-kr-attribute.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - <img alt="³â" /> - - - - diff --git a/lib/feedparser/tests/encoding/euc-kr-item.xml b/lib/feedparser/tests/encoding/euc-kr-item.xml deleted file mode 100644 index 29a316da..00000000 --- a/lib/feedparser/tests/encoding/euc-kr-item.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - ³â - - - - diff --git a/lib/feedparser/tests/encoding/euc-kr.xml b/lib/feedparser/tests/encoding/euc-kr.xml deleted file mode 100644 index 96e110f5..00000000 --- a/lib/feedparser/tests/encoding/euc-kr.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - ³â - - - diff --git a/lib/feedparser/tests/encoding/http_application_atom_xml_charset.xml b/lib/feedparser/tests/encoding/http_application_atom_xml_charset.xml deleted file mode 100644 index a945704e..00000000 --- a/lib/feedparser/tests/encoding/http_application_atom_xml_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_atom_xml_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_application_atom_xml_charset_overrides_encoding.xml deleted file mode 100644 index f587bcc5..00000000 --- a/lib/feedparser/tests/encoding/http_application_atom_xml_charset_overrides_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_atom_xml_default.xml b/lib/feedparser/tests/encoding/http_application_atom_xml_default.xml deleted file mode 100644 index 6ef0efec..00000000 --- a/lib/feedparser/tests/encoding/http_application_atom_xml_default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_atom_xml_encoding.xml b/lib/feedparser/tests/encoding/http_application_atom_xml_encoding.xml deleted file mode 100644 index 4b46cab7..00000000 --- a/lib/feedparser/tests/encoding/http_application_atom_xml_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_atom_xml_gb2312_charset.xml b/lib/feedparser/tests/encoding/http_application_atom_xml_gb2312_charset.xml deleted file mode 100644 index 5a31ff01..00000000 --- a/lib/feedparser/tests/encoding/http_application_atom_xml_gb2312_charset.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_atom_xml_gb2312_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_application_atom_xml_gb2312_charset_overrides_encoding.xml deleted file mode 100644 index bb3c3fcd..00000000 --- a/lib/feedparser/tests/encoding/http_application_atom_xml_gb2312_charset_overrides_encoding.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_atom_xml_gb2312_encoding.xml b/lib/feedparser/tests/encoding/http_application_atom_xml_gb2312_encoding.xml deleted file mode 100644 index ab91a82d..00000000 --- a/lib/feedparser/tests/encoding/http_application_atom_xml_gb2312_encoding.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_rss_xml_charset.xml b/lib/feedparser/tests/encoding/http_application_rss_xml_charset.xml deleted file mode 100644 index 8ca929b1..00000000 --- a/lib/feedparser/tests/encoding/http_application_rss_xml_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_rss_xml_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_application_rss_xml_charset_overrides_encoding.xml deleted file mode 100644 index 80c214f1..00000000 --- a/lib/feedparser/tests/encoding/http_application_rss_xml_charset_overrides_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_rss_xml_default.xml b/lib/feedparser/tests/encoding/http_application_rss_xml_default.xml deleted file mode 100644 index 781e703e..00000000 --- a/lib/feedparser/tests/encoding/http_application_rss_xml_default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_rss_xml_encoding.xml b/lib/feedparser/tests/encoding/http_application_rss_xml_encoding.xml deleted file mode 100644 index 53ee7ff1..00000000 --- a/lib/feedparser/tests/encoding/http_application_rss_xml_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_application_xml_charset.xml b/lib/feedparser/tests/encoding/http_application_xml_charset.xml deleted file mode 100644 index 2ea8437e..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_application_xml_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_application_xml_charset_overrides_encoding.xml deleted file mode 100644 index cd314dd0..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_charset_overrides_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_application_xml_default.xml b/lib/feedparser/tests/encoding/http_application_xml_default.xml deleted file mode 100644 index 309496c6..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_application_xml_dtd_charset.xml b/lib/feedparser/tests/encoding/http_application_xml_dtd_charset.xml deleted file mode 100644 index 99bfcba9..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_dtd_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_xml_dtd_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_application_xml_dtd_charset_overrides_encoding.xml deleted file mode 100644 index fa01fef0..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_dtd_charset_overrides_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_xml_dtd_default.xml b/lib/feedparser/tests/encoding/http_application_xml_dtd_default.xml deleted file mode 100644 index 390e70e4..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_dtd_default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_xml_dtd_encoding.xml b/lib/feedparser/tests/encoding/http_application_xml_dtd_encoding.xml deleted file mode 100644 index ae67ce1d..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_dtd_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_xml_encoding.xml b/lib/feedparser/tests/encoding/http_application_xml_encoding.xml deleted file mode 100644 index 771663f9..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_application_xml_epe_charset.xml b/lib/feedparser/tests/encoding/http_application_xml_epe_charset.xml deleted file mode 100644 index 52ef0024..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_epe_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_xml_epe_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_application_xml_epe_charset_overrides_encoding.xml deleted file mode 100644 index ce10433e..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_epe_charset_overrides_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_xml_epe_default.xml b/lib/feedparser/tests/encoding/http_application_xml_epe_default.xml deleted file mode 100644 index 85af8596..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_epe_default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_application_xml_epe_encoding.xml b/lib/feedparser/tests/encoding/http_application_xml_epe_encoding.xml deleted file mode 100644 index 4085fa28..00000000 --- a/lib/feedparser/tests/encoding/http_application_xml_epe_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_encoding_attribute_crash.xml b/lib/feedparser/tests/encoding/http_encoding_attribute_crash.xml deleted file mode 100644 index 19c9dd63..00000000 --- a/lib/feedparser/tests/encoding/http_encoding_attribute_crash.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - -
-Browser market shares at ‘ongoing’ -
-
-
diff --git a/lib/feedparser/tests/encoding/http_i18n.xml b/lib/feedparser/tests/encoding/http_i18n.xml deleted file mode 100644 index e61ad6ae..00000000 --- a/lib/feedparser/tests/encoding/http_i18n.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Iñtërnâtiônàlizætiøn - - 2004-06-02T19:07:55-04:00 - If your parser thinks this is well-formed, it's right. - diff --git a/lib/feedparser/tests/encoding/http_text_atom_xml_charset.xml b/lib/feedparser/tests/encoding/http_text_atom_xml_charset.xml deleted file mode 100644 index bffafae6..00000000 --- a/lib/feedparser/tests/encoding/http_text_atom_xml_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_atom_xml_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_text_atom_xml_charset_overrides_encoding.xml deleted file mode 100644 index be4fbf9e..00000000 --- a/lib/feedparser/tests/encoding/http_text_atom_xml_charset_overrides_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_atom_xml_default.xml b/lib/feedparser/tests/encoding/http_text_atom_xml_default.xml deleted file mode 100644 index 2d3088f7..00000000 --- a/lib/feedparser/tests/encoding/http_text_atom_xml_default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_atom_xml_encoding.xml b/lib/feedparser/tests/encoding/http_text_atom_xml_encoding.xml deleted file mode 100644 index f3a25faa..00000000 --- a/lib/feedparser/tests/encoding/http_text_atom_xml_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_rss_xml_charset.xml b/lib/feedparser/tests/encoding/http_text_rss_xml_charset.xml deleted file mode 100644 index 88aa4176..00000000 --- a/lib/feedparser/tests/encoding/http_text_rss_xml_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_rss_xml_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_text_rss_xml_charset_overrides_encoding.xml deleted file mode 100644 index 84436b53..00000000 --- a/lib/feedparser/tests/encoding/http_text_rss_xml_charset_overrides_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_rss_xml_default.xml b/lib/feedparser/tests/encoding/http_text_rss_xml_default.xml deleted file mode 100644 index d7a90255..00000000 --- a/lib/feedparser/tests/encoding/http_text_rss_xml_default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_rss_xml_encoding.xml b/lib/feedparser/tests/encoding/http_text_rss_xml_encoding.xml deleted file mode 100644 index a786e7eb..00000000 --- a/lib/feedparser/tests/encoding/http_text_rss_xml_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_text_xml_bogus_charset.xml b/lib/feedparser/tests/encoding/http_text_xml_bogus_charset.xml deleted file mode 100644 index 09997938..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_bogus_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_text_xml_bogus_param.xml b/lib/feedparser/tests/encoding/http_text_xml_bogus_param.xml deleted file mode 100644 index b76cc1f5..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_bogus_param.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_text_xml_charset.xml b/lib/feedparser/tests/encoding/http_text_xml_charset.xml deleted file mode 100644 index 3917214e..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_text_xml_charset_2.xml b/lib/feedparser/tests/encoding/http_text_xml_charset_2.xml deleted file mode 100644 index aac1bec9..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_charset_2.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - -Foo -http://purl.org/rss/2.0/?item -This is a £“test.” - - - diff --git a/lib/feedparser/tests/encoding/http_text_xml_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_text_xml_charset_overrides_encoding.xml deleted file mode 100644 index 5b05f6b3..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_charset_overrides_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_text_xml_charset_overrides_encoding_2.xml b/lib/feedparser/tests/encoding/http_text_xml_charset_overrides_encoding_2.xml deleted file mode 100644 index 0a0eed40..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_charset_overrides_encoding_2.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - -Foo -http://purl.org/rss/2.0/?item -This is a £“test.” - - - diff --git a/lib/feedparser/tests/encoding/http_text_xml_default.xml b/lib/feedparser/tests/encoding/http_text_xml_default.xml deleted file mode 100644 index eb7236f5..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/http_text_xml_epe_charset.xml b/lib/feedparser/tests/encoding/http_text_xml_epe_charset.xml deleted file mode 100644 index 2552bedf..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_epe_charset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_xml_epe_charset_overrides_encoding.xml b/lib/feedparser/tests/encoding/http_text_xml_epe_charset_overrides_encoding.xml deleted file mode 100644 index 353429e1..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_epe_charset_overrides_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_xml_epe_default.xml b/lib/feedparser/tests/encoding/http_text_xml_epe_default.xml deleted file mode 100644 index 7f5c0ee5..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_epe_default.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_xml_epe_encoding.xml b/lib/feedparser/tests/encoding/http_text_xml_epe_encoding.xml deleted file mode 100644 index b85e3bca..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_epe_encoding.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/http_text_xml_qs.xml b/lib/feedparser/tests/encoding/http_text_xml_qs.xml deleted file mode 100644 index fa5f346b..00000000 --- a/lib/feedparser/tests/encoding/http_text_xml_qs.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/iso-10646-ucs-2.xml b/lib/feedparser/tests/encoding/iso-10646-ucs-2.xml deleted file mode 100644 index e2d2e93a..00000000 Binary files a/lib/feedparser/tests/encoding/iso-10646-ucs-2.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/iso-10646-ucs-4.xml b/lib/feedparser/tests/encoding/iso-10646-ucs-4.xml deleted file mode 100644 index c1116596..00000000 Binary files a/lib/feedparser/tests/encoding/iso-10646-ucs-4.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/no_content_type_default.xml b/lib/feedparser/tests/encoding/no_content_type_default.xml deleted file mode 100644 index cab1544e..00000000 --- a/lib/feedparser/tests/encoding/no_content_type_default.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/no_content_type_encoding.xml b/lib/feedparser/tests/encoding/no_content_type_encoding.xml deleted file mode 100644 index 6ad16c69..00000000 --- a/lib/feedparser/tests/encoding/no_content_type_encoding.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/encoding/u16.xml b/lib/feedparser/tests/encoding/u16.xml deleted file mode 100644 index 3110f17a..00000000 Binary files a/lib/feedparser/tests/encoding/u16.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/ucs-2.xml b/lib/feedparser/tests/encoding/ucs-2.xml deleted file mode 100644 index d4e3defb..00000000 Binary files a/lib/feedparser/tests/encoding/ucs-2.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/ucs-4.xml b/lib/feedparser/tests/encoding/ucs-4.xml deleted file mode 100644 index 143fdcad..00000000 Binary files a/lib/feedparser/tests/encoding/ucs-4.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-16be-autodetect.xml b/lib/feedparser/tests/encoding/utf-16be-autodetect.xml deleted file mode 100644 index 08976b7a..00000000 Binary files a/lib/feedparser/tests/encoding/utf-16be-autodetect.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-16be-bom.xml b/lib/feedparser/tests/encoding/utf-16be-bom.xml deleted file mode 100644 index 1f629657..00000000 Binary files a/lib/feedparser/tests/encoding/utf-16be-bom.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-16be.xml b/lib/feedparser/tests/encoding/utf-16be.xml deleted file mode 100644 index c9a0f145..00000000 Binary files a/lib/feedparser/tests/encoding/utf-16be.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-16le-autodetect.xml b/lib/feedparser/tests/encoding/utf-16le-autodetect.xml deleted file mode 100644 index 60938826..00000000 Binary files a/lib/feedparser/tests/encoding/utf-16le-autodetect.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-16le-bom.xml b/lib/feedparser/tests/encoding/utf-16le-bom.xml deleted file mode 100644 index 89cb4f77..00000000 Binary files a/lib/feedparser/tests/encoding/utf-16le-bom.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-16le.xml b/lib/feedparser/tests/encoding/utf-16le.xml deleted file mode 100644 index ec8effdc..00000000 Binary files a/lib/feedparser/tests/encoding/utf-16le.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-32be-autodetect.xml b/lib/feedparser/tests/encoding/utf-32be-autodetect.xml deleted file mode 100644 index deabb603..00000000 Binary files a/lib/feedparser/tests/encoding/utf-32be-autodetect.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-32be-bom.xml b/lib/feedparser/tests/encoding/utf-32be-bom.xml deleted file mode 100644 index f09e8aef..00000000 Binary files a/lib/feedparser/tests/encoding/utf-32be-bom.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-32be.xml b/lib/feedparser/tests/encoding/utf-32be.xml deleted file mode 100644 index f9120310..00000000 Binary files a/lib/feedparser/tests/encoding/utf-32be.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-32le-autodetect.xml b/lib/feedparser/tests/encoding/utf-32le-autodetect.xml deleted file mode 100644 index 37fd72a6..00000000 Binary files a/lib/feedparser/tests/encoding/utf-32le-autodetect.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-32le-bom.xml b/lib/feedparser/tests/encoding/utf-32le-bom.xml deleted file mode 100644 index c62cae40..00000000 Binary files a/lib/feedparser/tests/encoding/utf-32le-bom.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-32le.xml b/lib/feedparser/tests/encoding/utf-32le.xml deleted file mode 100644 index 4b83b240..00000000 Binary files a/lib/feedparser/tests/encoding/utf-32le.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf-8-bom.xml b/lib/feedparser/tests/encoding/utf-8-bom.xml deleted file mode 100644 index 07903156..00000000 --- a/lib/feedparser/tests/encoding/utf-8-bom.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/utf16.xml b/lib/feedparser/tests/encoding/utf16.xml deleted file mode 100644 index 053b03e3..00000000 Binary files a/lib/feedparser/tests/encoding/utf16.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf_16.xml b/lib/feedparser/tests/encoding/utf_16.xml deleted file mode 100644 index 63dd6a69..00000000 Binary files a/lib/feedparser/tests/encoding/utf_16.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/utf_32.xml b/lib/feedparser/tests/encoding/utf_32.xml deleted file mode 100644 index 74890483..00000000 Binary files a/lib/feedparser/tests/encoding/utf_32.xml and /dev/null differ diff --git a/lib/feedparser/tests/encoding/x80_437.xml b/lib/feedparser/tests/encoding/x80_437.xml deleted file mode 100644 index 747bffe6..00000000 --- a/lib/feedparser/tests/encoding/x80_437.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_850.xml b/lib/feedparser/tests/encoding/x80_850.xml deleted file mode 100644 index 89b51ddf..00000000 --- a/lib/feedparser/tests/encoding/x80_850.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_852.xml b/lib/feedparser/tests/encoding/x80_852.xml deleted file mode 100644 index 1fb1898e..00000000 --- a/lib/feedparser/tests/encoding/x80_852.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_855.xml b/lib/feedparser/tests/encoding/x80_855.xml deleted file mode 100644 index fbd5240f..00000000 --- a/lib/feedparser/tests/encoding/x80_855.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_857.xml b/lib/feedparser/tests/encoding/x80_857.xml deleted file mode 100644 index 2ebe0847..00000000 --- a/lib/feedparser/tests/encoding/x80_857.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_860.xml b/lib/feedparser/tests/encoding/x80_860.xml deleted file mode 100644 index dbe53c9c..00000000 --- a/lib/feedparser/tests/encoding/x80_860.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_861.xml b/lib/feedparser/tests/encoding/x80_861.xml deleted file mode 100644 index a2a69ddf..00000000 --- a/lib/feedparser/tests/encoding/x80_861.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_862.xml b/lib/feedparser/tests/encoding/x80_862.xml deleted file mode 100644 index 70947b41..00000000 --- a/lib/feedparser/tests/encoding/x80_862.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_863.xml b/lib/feedparser/tests/encoding/x80_863.xml deleted file mode 100644 index dce7c360..00000000 --- a/lib/feedparser/tests/encoding/x80_863.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_865.xml b/lib/feedparser/tests/encoding/x80_865.xml deleted file mode 100644 index bfe7e3a6..00000000 --- a/lib/feedparser/tests/encoding/x80_865.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_866.xml b/lib/feedparser/tests/encoding/x80_866.xml deleted file mode 100644 index d83badab..00000000 --- a/lib/feedparser/tests/encoding/x80_866.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp037.xml b/lib/feedparser/tests/encoding/x80_cp037.xml deleted file mode 100644 index bf80bdeb..00000000 --- a/lib/feedparser/tests/encoding/x80_cp037.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~ƒ—ðó÷on%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}ƒ—ðó÷}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@ƒ—ðó÷@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1125.xml b/lib/feedparser/tests/encoding/x80_cp1125.xml deleted file mode 100644 index ab540d1e..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1125.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1250.xml b/lib/feedparser/tests/encoding/x80_cp1250.xml deleted file mode 100644 index c32c6abe..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1250.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1251.xml b/lib/feedparser/tests/encoding/x80_cp1251.xml deleted file mode 100644 index 5892eb39..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1251.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1252.xml b/lib/feedparser/tests/encoding/x80_cp1252.xml deleted file mode 100644 index 960f8dfc..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1252.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1253.xml b/lib/feedparser/tests/encoding/x80_cp1253.xml deleted file mode 100644 index 0f3fae96..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1253.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1254.xml b/lib/feedparser/tests/encoding/x80_cp1254.xml deleted file mode 100644 index 5a5160f5..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1254.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1255.xml b/lib/feedparser/tests/encoding/x80_cp1255.xml deleted file mode 100644 index 64fa7b6a..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1255.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1256.xml b/lib/feedparser/tests/encoding/x80_cp1256.xml deleted file mode 100644 index 87ad5178..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1256.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1257.xml b/lib/feedparser/tests/encoding/x80_cp1257.xml deleted file mode 100644 index 9496f0b5..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1257.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp1258.xml b/lib/feedparser/tests/encoding/x80_cp1258.xml deleted file mode 100644 index 4fc927e7..00000000 --- a/lib/feedparser/tests/encoding/x80_cp1258.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp437.xml b/lib/feedparser/tests/encoding/x80_cp437.xml deleted file mode 100644 index d6fb55ca..00000000 --- a/lib/feedparser/tests/encoding/x80_cp437.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp500.xml b/lib/feedparser/tests/encoding/x80_cp500.xml deleted file mode 100644 index bc7abbdc..00000000 --- a/lib/feedparser/tests/encoding/x80_cp500.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~ƒ—õððon%LO``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}ƒ—õðð}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@ƒ—õðð@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp737.xml b/lib/feedparser/tests/encoding/x80_cp737.xml deleted file mode 100644 index 6798237d..00000000 --- a/lib/feedparser/tests/encoding/x80_cp737.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp775.xml b/lib/feedparser/tests/encoding/x80_cp775.xml deleted file mode 100644 index d04ed5f8..00000000 --- a/lib/feedparser/tests/encoding/x80_cp775.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp850.xml b/lib/feedparser/tests/encoding/x80_cp850.xml deleted file mode 100644 index b510c43f..00000000 --- a/lib/feedparser/tests/encoding/x80_cp850.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp852.xml b/lib/feedparser/tests/encoding/x80_cp852.xml deleted file mode 100644 index 1c7d3e95..00000000 --- a/lib/feedparser/tests/encoding/x80_cp852.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp855.xml b/lib/feedparser/tests/encoding/x80_cp855.xml deleted file mode 100644 index 069b0595..00000000 --- a/lib/feedparser/tests/encoding/x80_cp855.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp856.xml b/lib/feedparser/tests/encoding/x80_cp856.xml deleted file mode 100644 index d4d940ab..00000000 --- a/lib/feedparser/tests/encoding/x80_cp856.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp857.xml b/lib/feedparser/tests/encoding/x80_cp857.xml deleted file mode 100644 index 5682d7fa..00000000 --- a/lib/feedparser/tests/encoding/x80_cp857.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp860.xml b/lib/feedparser/tests/encoding/x80_cp860.xml deleted file mode 100644 index a572284a..00000000 --- a/lib/feedparser/tests/encoding/x80_cp860.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp861.xml b/lib/feedparser/tests/encoding/x80_cp861.xml deleted file mode 100644 index fb1a529d..00000000 --- a/lib/feedparser/tests/encoding/x80_cp861.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp862.xml b/lib/feedparser/tests/encoding/x80_cp862.xml deleted file mode 100644 index e9121d0f..00000000 --- a/lib/feedparser/tests/encoding/x80_cp862.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp863.xml b/lib/feedparser/tests/encoding/x80_cp863.xml deleted file mode 100644 index 3a2de4f2..00000000 --- a/lib/feedparser/tests/encoding/x80_cp863.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp864.xml b/lib/feedparser/tests/encoding/x80_cp864.xml deleted file mode 100644 index fa501d7a..00000000 --- a/lib/feedparser/tests/encoding/x80_cp864.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp865.xml b/lib/feedparser/tests/encoding/x80_cp865.xml deleted file mode 100644 index 1a59191f..00000000 --- a/lib/feedparser/tests/encoding/x80_cp865.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp866.xml b/lib/feedparser/tests/encoding/x80_cp866.xml deleted file mode 100644 index 62c9e958..00000000 --- a/lib/feedparser/tests/encoding/x80_cp866.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp874.xml b/lib/feedparser/tests/encoding/x80_cp874.xml deleted file mode 100644 index 80dd0ffd..00000000 --- a/lib/feedparser/tests/encoding/x80_cp874.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp875.xml b/lib/feedparser/tests/encoding/x80_cp875.xml deleted file mode 100644 index b8b0d245..00000000 --- a/lib/feedparser/tests/encoding/x80_cp875.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~ƒ—ø÷õon%LO``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}ƒ—ø÷õ}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@ƒ—ø÷õ@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}à¤ðóøõ}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cp_is.xml b/lib/feedparser/tests/encoding/x80_cp_is.xml deleted file mode 100644 index 231ac77b..00000000 --- a/lib/feedparser/tests/encoding/x80_cp_is.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm037.xml b/lib/feedparser/tests/encoding/x80_csibm037.xml deleted file mode 100644 index de1073be..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm037.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~ƒ¢‰‚”ðó÷on%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}ƒ¢‰‚”ðó÷}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@ƒ¢‰‚”ðó÷@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm500.xml b/lib/feedparser/tests/encoding/x80_csibm500.xml deleted file mode 100644 index 2a499828..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm500.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~ƒ¢‰‚”õððon%LO``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}ƒ¢‰‚”õðð}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@ƒ¢‰‚”õðð@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm855.xml b/lib/feedparser/tests/encoding/x80_csibm855.xml deleted file mode 100644 index cf078a74..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm855.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm857.xml b/lib/feedparser/tests/encoding/x80_csibm857.xml deleted file mode 100644 index b2df4627..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm857.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm860.xml b/lib/feedparser/tests/encoding/x80_csibm860.xml deleted file mode 100644 index 28269f79..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm860.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm861.xml b/lib/feedparser/tests/encoding/x80_csibm861.xml deleted file mode 100644 index 2300d2d9..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm861.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm863.xml b/lib/feedparser/tests/encoding/x80_csibm863.xml deleted file mode 100644 index af23c2bd..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm863.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm864.xml b/lib/feedparser/tests/encoding/x80_csibm864.xml deleted file mode 100644 index 6d820bec..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm864.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm865.xml b/lib/feedparser/tests/encoding/x80_csibm865.xml deleted file mode 100644 index 5ca7a89a..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm865.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csibm866.xml b/lib/feedparser/tests/encoding/x80_csibm866.xml deleted file mode 100644 index 0c962ed5..00000000 --- a/lib/feedparser/tests/encoding/x80_csibm866.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cskoi8r.xml b/lib/feedparser/tests/encoding/x80_cskoi8r.xml deleted file mode 100644 index 2a41be10..00000000 --- a/lib/feedparser/tests/encoding/x80_cskoi8r.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_csmacintosh.xml b/lib/feedparser/tests/encoding/x80_csmacintosh.xml deleted file mode 100644 index 3d387895..00000000 --- a/lib/feedparser/tests/encoding/x80_csmacintosh.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cspc775baltic.xml b/lib/feedparser/tests/encoding/x80_cspc775baltic.xml deleted file mode 100644 index e5b9993f..00000000 --- a/lib/feedparser/tests/encoding/x80_cspc775baltic.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cspc850multilingual.xml b/lib/feedparser/tests/encoding/x80_cspc850multilingual.xml deleted file mode 100644 index 21f5f7dc..00000000 --- a/lib/feedparser/tests/encoding/x80_cspc850multilingual.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cspc862latinhebrew.xml b/lib/feedparser/tests/encoding/x80_cspc862latinhebrew.xml deleted file mode 100644 index b282482a..00000000 --- a/lib/feedparser/tests/encoding/x80_cspc862latinhebrew.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cspc8codepage437.xml b/lib/feedparser/tests/encoding/x80_cspc8codepage437.xml deleted file mode 100644 index 74dffe05..00000000 --- a/lib/feedparser/tests/encoding/x80_cspc8codepage437.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_cspcp852.xml b/lib/feedparser/tests/encoding/x80_cspcp852.xml deleted file mode 100644 index bb0b3f2f..00000000 --- a/lib/feedparser/tests/encoding/x80_cspcp852.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_dbcs.xml b/lib/feedparser/tests/encoding/x80_dbcs.xml deleted file mode 100644 index 6d7ff415..00000000 --- a/lib/feedparser/tests/encoding/x80_dbcs.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic-cp-be.xml b/lib/feedparser/tests/encoding/x80_ebcdic-cp-be.xml deleted file mode 100644 index 605593c4..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic-cp-be.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒ`ƒ—`‚…on%LO``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒ`ƒ—`‚…}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒ`ƒ—`‚…@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic-cp-ca.xml b/lib/feedparser/tests/encoding/x80_ebcdic-cp-ca.xml deleted file mode 100644 index 346fa178..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic-cp-ca.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒ`ƒ—`ƒon%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒ`ƒ—`ƒ}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒ`ƒ—`ƒ@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic-cp-ch.xml b/lib/feedparser/tests/encoding/x80_ebcdic-cp-ch.xml deleted file mode 100644 index 1ed34d98..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic-cp-ch.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒ`ƒ—`ƒˆon%LO``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒ`ƒ—`ƒˆ}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒ`ƒ—`ƒˆ@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic-cp-nl.xml b/lib/feedparser/tests/encoding/x80_ebcdic-cp-nl.xml deleted file mode 100644 index 158a9b88..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic-cp-nl.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒ`ƒ—`•“on%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒ`ƒ—`•“}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒ`ƒ—`•“@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic-cp-us.xml b/lib/feedparser/tests/encoding/x80_ebcdic-cp-us.xml deleted file mode 100644 index 9bc45ffa..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic-cp-us.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒ`ƒ—`¤¢on%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒ`ƒ—`¤¢}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒ`ƒ—`¤¢@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic-cp-wt.xml b/lib/feedparser/tests/encoding/x80_ebcdic-cp-wt.xml deleted file mode 100644 index 69271435..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic-cp-wt.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒ`ƒ—`¦£on%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒ`ƒ—`¦£}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒ`ƒ—`¦£@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic_cp_be.xml b/lib/feedparser/tests/encoding/x80_ebcdic_cp_be.xml deleted file mode 100644 index fe4d13b6..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic_cp_be.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒmƒ—m‚…on%LO``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒmƒ—m‚…}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒmƒ—m‚…@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic_cp_ca.xml b/lib/feedparser/tests/encoding/x80_ebcdic_cp_ca.xml deleted file mode 100644 index 1999ff5f..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic_cp_ca.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒmƒ—mƒon%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒmƒ—mƒ}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒmƒ—mƒ@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic_cp_ch.xml b/lib/feedparser/tests/encoding/x80_ebcdic_cp_ch.xml deleted file mode 100644 index 8a7d36df..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic_cp_ch.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒmƒ—mƒˆon%LO``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒmƒ—mƒˆ}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒmƒ—mƒˆ@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic_cp_nl.xml b/lib/feedparser/tests/encoding/x80_ebcdic_cp_nl.xml deleted file mode 100644 index 2917b954..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic_cp_nl.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒmƒ—m•“on%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒmƒ—m•“}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒmƒ—m•“@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic_cp_us.xml b/lib/feedparser/tests/encoding/x80_ebcdic_cp_us.xml deleted file mode 100644 index 8d3d7612..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic_cp_us.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒmƒ—m¤¢on%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒmƒ—m¤¢}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒmƒ—m¤¢@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ebcdic_cp_wt.xml b/lib/feedparser/tests/encoding/x80_ebcdic_cp_wt.xml deleted file mode 100644 index b110ada1..00000000 --- a/lib/feedparser/tests/encoding/x80_ebcdic_cp_wt.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~…‚ƒ„‰ƒmƒ—m¦£on%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}…‚ƒ„‰ƒmƒ—m¦£}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@…‚ƒ„‰ƒmƒ—m¦£@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm037.xml b/lib/feedparser/tests/encoding/x80_ibm037.xml deleted file mode 100644 index e3ab6ec5..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm037.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~‰‚”ðó÷on%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}‰‚”ðó÷}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@‰‚”ðó÷@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm039.xml b/lib/feedparser/tests/encoding/x80_ibm039.xml deleted file mode 100644 index 211553d9..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm039.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~‰‚”ðóùon%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}‰‚”ðóù}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@‰‚”ðóù@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm1140.xml b/lib/feedparser/tests/encoding/x80_ibm1140.xml deleted file mode 100644 index c1cde5f9..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm1140.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~‰‚”ññôðon%LZ``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}‰‚”ññôð}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@‰‚”ññôð@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm437.xml b/lib/feedparser/tests/encoding/x80_ibm437.xml deleted file mode 100644 index c9689dc7..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm437.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm500.xml b/lib/feedparser/tests/encoding/x80_ibm500.xml deleted file mode 100644 index 1c32c886..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm500.xml +++ /dev/null @@ -1 +0,0 @@ -Lo§”“@¥…™¢‰–•~ñKð@…•ƒ–„‰•‡~‰‚”õððon%LO``%â’‰—ä•“…¢¢z@@mm‰”—–™£mmM}ƒ–„…ƒ¢}]K“––’¤—M}‰‚”õðð}]%Ä…¢ƒ™‰—£‰–•z@§øð@ƒˆ™ƒ£…™@‰•@‰‚”õðð@…•ƒ–„‰•‡%ŧ—…ƒ£z@@@@@@•–£@‚–©–@•„@†……„K£‰£“…@~~@¤}ৄø}%``n%L†……„@¥…™¢‰–•~ðKó@§”“•¢~ˆ££—zaa—¤™“K–™‡a£–”a•¢{n%L£‰£“…n€La£‰£“…n%La†……„n \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm775.xml b/lib/feedparser/tests/encoding/x80_ibm775.xml deleted file mode 100644 index a6ac0bf0..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm775.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm850.xml b/lib/feedparser/tests/encoding/x80_ibm850.xml deleted file mode 100644 index e3385b76..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm850.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm852.xml b/lib/feedparser/tests/encoding/x80_ibm852.xml deleted file mode 100644 index ed483108..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm852.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm855.xml b/lib/feedparser/tests/encoding/x80_ibm855.xml deleted file mode 100644 index 7574077a..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm855.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm857.xml b/lib/feedparser/tests/encoding/x80_ibm857.xml deleted file mode 100644 index 41f68489..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm857.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm860.xml b/lib/feedparser/tests/encoding/x80_ibm860.xml deleted file mode 100644 index 68c3f5ef..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm860.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm861.xml b/lib/feedparser/tests/encoding/x80_ibm861.xml deleted file mode 100644 index b9c19d76..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm861.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm862.xml b/lib/feedparser/tests/encoding/x80_ibm862.xml deleted file mode 100644 index 15a957b9..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm862.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm863.xml b/lib/feedparser/tests/encoding/x80_ibm863.xml deleted file mode 100644 index 884ca842..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm863.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm864.xml b/lib/feedparser/tests/encoding/x80_ibm864.xml deleted file mode 100644 index cc5522f4..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm864.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm865.xml b/lib/feedparser/tests/encoding/x80_ibm865.xml deleted file mode 100644 index 4419a8b3..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm865.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ibm866.xml b/lib/feedparser/tests/encoding/x80_ibm866.xml deleted file mode 100644 index cf247879..00000000 --- a/lib/feedparser/tests/encoding/x80_ibm866.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_koi8-r.xml b/lib/feedparser/tests/encoding/x80_koi8-r.xml deleted file mode 100644 index 9e6c9a6b..00000000 --- a/lib/feedparser/tests/encoding/x80_koi8-r.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_koi8-t.xml b/lib/feedparser/tests/encoding/x80_koi8-t.xml deleted file mode 100644 index 502735cf..00000000 --- a/lib/feedparser/tests/encoding/x80_koi8-t.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_koi8-u.xml b/lib/feedparser/tests/encoding/x80_koi8-u.xml deleted file mode 100644 index f8ea0abb..00000000 --- a/lib/feedparser/tests/encoding/x80_koi8-u.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_mac-cyrillic.xml b/lib/feedparser/tests/encoding/x80_mac-cyrillic.xml deleted file mode 100644 index 7a49eb05..00000000 --- a/lib/feedparser/tests/encoding/x80_mac-cyrillic.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_mac.xml b/lib/feedparser/tests/encoding/x80_mac.xml deleted file mode 100644 index b5361482..00000000 --- a/lib/feedparser/tests/encoding/x80_mac.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_maccentraleurope.xml b/lib/feedparser/tests/encoding/x80_maccentraleurope.xml deleted file mode 100644 index abcedfd3..00000000 --- a/lib/feedparser/tests/encoding/x80_maccentraleurope.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_maccyrillic.xml b/lib/feedparser/tests/encoding/x80_maccyrillic.xml deleted file mode 100644 index 89ae2309..00000000 --- a/lib/feedparser/tests/encoding/x80_maccyrillic.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_macgreek.xml b/lib/feedparser/tests/encoding/x80_macgreek.xml deleted file mode 100644 index ac91a79d..00000000 --- a/lib/feedparser/tests/encoding/x80_macgreek.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_maciceland.xml b/lib/feedparser/tests/encoding/x80_maciceland.xml deleted file mode 100644 index d93cfa56..00000000 --- a/lib/feedparser/tests/encoding/x80_maciceland.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_macintosh.xml b/lib/feedparser/tests/encoding/x80_macintosh.xml deleted file mode 100644 index e01a0e31..00000000 --- a/lib/feedparser/tests/encoding/x80_macintosh.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_maclatin2.xml b/lib/feedparser/tests/encoding/x80_maclatin2.xml deleted file mode 100644 index fe1d5c43..00000000 --- a/lib/feedparser/tests/encoding/x80_maclatin2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_macroman.xml b/lib/feedparser/tests/encoding/x80_macroman.xml deleted file mode 100644 index 0700f3af..00000000 --- a/lib/feedparser/tests/encoding/x80_macroman.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_macturkish.xml b/lib/feedparser/tests/encoding/x80_macturkish.xml deleted file mode 100644 index fa4ec82f..00000000 --- a/lib/feedparser/tests/encoding/x80_macturkish.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ms-ansi.xml b/lib/feedparser/tests/encoding/x80_ms-ansi.xml deleted file mode 100644 index b3312ec6..00000000 --- a/lib/feedparser/tests/encoding/x80_ms-ansi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ms-arab.xml b/lib/feedparser/tests/encoding/x80_ms-arab.xml deleted file mode 100644 index b67bee60..00000000 --- a/lib/feedparser/tests/encoding/x80_ms-arab.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ms-cyrl.xml b/lib/feedparser/tests/encoding/x80_ms-cyrl.xml deleted file mode 100644 index 57bfc929..00000000 --- a/lib/feedparser/tests/encoding/x80_ms-cyrl.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ms-ee.xml b/lib/feedparser/tests/encoding/x80_ms-ee.xml deleted file mode 100644 index eb034d0b..00000000 --- a/lib/feedparser/tests/encoding/x80_ms-ee.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ms-greek.xml b/lib/feedparser/tests/encoding/x80_ms-greek.xml deleted file mode 100644 index b8bfc78a..00000000 --- a/lib/feedparser/tests/encoding/x80_ms-greek.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ms-hebr.xml b/lib/feedparser/tests/encoding/x80_ms-hebr.xml deleted file mode 100644 index d170a9c6..00000000 --- a/lib/feedparser/tests/encoding/x80_ms-hebr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_ms-turk.xml b/lib/feedparser/tests/encoding/x80_ms-turk.xml deleted file mode 100644 index dad6cbe9..00000000 --- a/lib/feedparser/tests/encoding/x80_ms-turk.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_tcvn-5712.xml b/lib/feedparser/tests/encoding/x80_tcvn-5712.xml deleted file mode 100644 index 684c52f4..00000000 --- a/lib/feedparser/tests/encoding/x80_tcvn-5712.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_tcvn.xml b/lib/feedparser/tests/encoding/x80_tcvn.xml deleted file mode 100644 index 5b17c9d7..00000000 --- a/lib/feedparser/tests/encoding/x80_tcvn.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_tcvn5712-1.xml b/lib/feedparser/tests/encoding/x80_tcvn5712-1.xml deleted file mode 100644 index f6e92eef..00000000 --- a/lib/feedparser/tests/encoding/x80_tcvn5712-1.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_viscii.xml b/lib/feedparser/tests/encoding/x80_viscii.xml deleted file mode 100644 index b872c5b3..00000000 --- a/lib/feedparser/tests/encoding/x80_viscii.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_winbaltrim.xml b/lib/feedparser/tests/encoding/x80_winbaltrim.xml deleted file mode 100644 index a109e279..00000000 --- a/lib/feedparser/tests/encoding/x80_winbaltrim.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows-1250.xml b/lib/feedparser/tests/encoding/x80_windows-1250.xml deleted file mode 100644 index 7449843e..00000000 --- a/lib/feedparser/tests/encoding/x80_windows-1250.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows-1251.xml b/lib/feedparser/tests/encoding/x80_windows-1251.xml deleted file mode 100644 index 15f51c58..00000000 --- a/lib/feedparser/tests/encoding/x80_windows-1251.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows-1252.xml b/lib/feedparser/tests/encoding/x80_windows-1252.xml deleted file mode 100644 index 742278a0..00000000 --- a/lib/feedparser/tests/encoding/x80_windows-1252.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows-1253.xml b/lib/feedparser/tests/encoding/x80_windows-1253.xml deleted file mode 100644 index 00119990..00000000 --- a/lib/feedparser/tests/encoding/x80_windows-1253.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows-1254.xml b/lib/feedparser/tests/encoding/x80_windows-1254.xml deleted file mode 100644 index 7e907894..00000000 --- a/lib/feedparser/tests/encoding/x80_windows-1254.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows-1255.xml b/lib/feedparser/tests/encoding/x80_windows-1255.xml deleted file mode 100644 index 53cfc191..00000000 --- a/lib/feedparser/tests/encoding/x80_windows-1255.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows-1256.xml b/lib/feedparser/tests/encoding/x80_windows-1256.xml deleted file mode 100644 index 4b2b6303..00000000 --- a/lib/feedparser/tests/encoding/x80_windows-1256.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows-1257.xml b/lib/feedparser/tests/encoding/x80_windows-1257.xml deleted file mode 100644 index 00e807fa..00000000 --- a/lib/feedparser/tests/encoding/x80_windows-1257.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows-1258.xml b/lib/feedparser/tests/encoding/x80_windows-1258.xml deleted file mode 100644 index 7a6d4105..00000000 --- a/lib/feedparser/tests/encoding/x80_windows-1258.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows_1250.xml b/lib/feedparser/tests/encoding/x80_windows_1250.xml deleted file mode 100644 index 6728513e..00000000 --- a/lib/feedparser/tests/encoding/x80_windows_1250.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows_1251.xml b/lib/feedparser/tests/encoding/x80_windows_1251.xml deleted file mode 100644 index 9ea04a6a..00000000 --- a/lib/feedparser/tests/encoding/x80_windows_1251.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows_1252.xml b/lib/feedparser/tests/encoding/x80_windows_1252.xml deleted file mode 100644 index 7adeea4b..00000000 --- a/lib/feedparser/tests/encoding/x80_windows_1252.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows_1253.xml b/lib/feedparser/tests/encoding/x80_windows_1253.xml deleted file mode 100644 index ab21d9ef..00000000 --- a/lib/feedparser/tests/encoding/x80_windows_1253.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows_1254.xml b/lib/feedparser/tests/encoding/x80_windows_1254.xml deleted file mode 100644 index a35a78b8..00000000 --- a/lib/feedparser/tests/encoding/x80_windows_1254.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows_1255.xml b/lib/feedparser/tests/encoding/x80_windows_1255.xml deleted file mode 100644 index e71a7367..00000000 --- a/lib/feedparser/tests/encoding/x80_windows_1255.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows_1256.xml b/lib/feedparser/tests/encoding/x80_windows_1256.xml deleted file mode 100644 index 6f9f98d3..00000000 --- a/lib/feedparser/tests/encoding/x80_windows_1256.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows_1257.xml b/lib/feedparser/tests/encoding/x80_windows_1257.xml deleted file mode 100644 index 42649b74..00000000 --- a/lib/feedparser/tests/encoding/x80_windows_1257.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/encoding/x80_windows_1258.xml b/lib/feedparser/tests/encoding/x80_windows_1258.xml deleted file mode 100644 index c8bc701e..00000000 --- a/lib/feedparser/tests/encoding/x80_windows_1258.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/160.xml b/lib/feedparser/tests/entities/160.xml deleted file mode 100644 index a6d0c7fa..00000000 --- a/lib/feedparser/tests/entities/160.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing   entity - - - - -testing ˜ entity - - - - -testing ‘ entity - - - - -testing ’ entity - - - - -testing “ entity - - - - -testing ” entity - - - - -testing ♦ entity - - - - -testing á entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/acirc.xml b/lib/feedparser/tests/entities/acirc.xml deleted file mode 100644 index 88be7791..00000000 --- a/lib/feedparser/tests/entities/acirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing â entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/acute.xml b/lib/feedparser/tests/entities/acute.xml deleted file mode 100644 index bea2c495..00000000 --- a/lib/feedparser/tests/entities/acute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ´ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/aelig.xml b/lib/feedparser/tests/entities/aelig.xml deleted file mode 100644 index a616a1b6..00000000 --- a/lib/feedparser/tests/entities/aelig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing æ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/agrave.xml b/lib/feedparser/tests/entities/agrave.xml deleted file mode 100644 index c9f4d73f..00000000 --- a/lib/feedparser/tests/entities/agrave.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing à entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/alefsym.xml b/lib/feedparser/tests/entities/alefsym.xml deleted file mode 100644 index c3d383d9..00000000 --- a/lib/feedparser/tests/entities/alefsym.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ℵ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/alpha.xml b/lib/feedparser/tests/entities/alpha.xml deleted file mode 100644 index b4c3aa9a..00000000 --- a/lib/feedparser/tests/entities/alpha.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing α entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/and.xml b/lib/feedparser/tests/entities/and.xml deleted file mode 100644 index 4af0849e..00000000 --- a/lib/feedparser/tests/entities/and.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∧ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ang.xml b/lib/feedparser/tests/entities/ang.xml deleted file mode 100644 index cff7694d..00000000 --- a/lib/feedparser/tests/entities/ang.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∠ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/aring.xml b/lib/feedparser/tests/entities/aring.xml deleted file mode 100644 index d279eea2..00000000 --- a/lib/feedparser/tests/entities/aring.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing å entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/asymp.xml b/lib/feedparser/tests/entities/asymp.xml deleted file mode 100644 index 37c5eb2d..00000000 --- a/lib/feedparser/tests/entities/asymp.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ≈ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/atilde.xml b/lib/feedparser/tests/entities/atilde.xml deleted file mode 100644 index 2f31e87d..00000000 --- a/lib/feedparser/tests/entities/atilde.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ã entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/attr_amp.xml b/lib/feedparser/tests/entities/attr_amp.xml deleted file mode 100644 index 64b523fe..00000000 --- a/lib/feedparser/tests/entities/attr_amp.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - -testing ä entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/bdquo.xml b/lib/feedparser/tests/entities/bdquo.xml deleted file mode 100644 index e126e252..00000000 --- a/lib/feedparser/tests/entities/bdquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing „ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/beta.xml b/lib/feedparser/tests/entities/beta.xml deleted file mode 100644 index 588ba2d6..00000000 --- a/lib/feedparser/tests/entities/beta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing β entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/brvbar.xml b/lib/feedparser/tests/entities/brvbar.xml deleted file mode 100644 index 9a940e43..00000000 --- a/lib/feedparser/tests/entities/brvbar.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¦ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/bull.xml b/lib/feedparser/tests/entities/bull.xml deleted file mode 100644 index d2d396da..00000000 --- a/lib/feedparser/tests/entities/bull.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing • entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/cap.xml b/lib/feedparser/tests/entities/cap.xml deleted file mode 100644 index f8898e38..00000000 --- a/lib/feedparser/tests/entities/cap.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∩ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ccedil.xml b/lib/feedparser/tests/entities/ccedil.xml deleted file mode 100644 index 9a35ab0c..00000000 --- a/lib/feedparser/tests/entities/ccedil.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ç entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/cedil.xml b/lib/feedparser/tests/entities/cedil.xml deleted file mode 100644 index 9b93fb81..00000000 --- a/lib/feedparser/tests/entities/cedil.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¸ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/cent.xml b/lib/feedparser/tests/entities/cent.xml deleted file mode 100644 index 43101730..00000000 --- a/lib/feedparser/tests/entities/cent.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¢ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/chi.xml b/lib/feedparser/tests/entities/chi.xml deleted file mode 100644 index c63d3e55..00000000 --- a/lib/feedparser/tests/entities/chi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing χ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/circ.xml b/lib/feedparser/tests/entities/circ.xml deleted file mode 100644 index 76b6762b..00000000 --- a/lib/feedparser/tests/entities/circ.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ˆ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/clubs.xml b/lib/feedparser/tests/entities/clubs.xml deleted file mode 100644 index efe1ea34..00000000 --- a/lib/feedparser/tests/entities/clubs.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ♣ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/cong.xml b/lib/feedparser/tests/entities/cong.xml deleted file mode 100644 index e6dd55c9..00000000 --- a/lib/feedparser/tests/entities/cong.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ≅ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/copy.xml b/lib/feedparser/tests/entities/copy.xml deleted file mode 100644 index 7ec6367f..00000000 --- a/lib/feedparser/tests/entities/copy.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing © entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/crarr.xml b/lib/feedparser/tests/entities/crarr.xml deleted file mode 100644 index d1ced14d..00000000 --- a/lib/feedparser/tests/entities/crarr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ↵ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/cup.xml b/lib/feedparser/tests/entities/cup.xml deleted file mode 100644 index d81b582d..00000000 --- a/lib/feedparser/tests/entities/cup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∪ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/curren.xml b/lib/feedparser/tests/entities/curren.xml deleted file mode 100644 index 3aa6b871..00000000 --- a/lib/feedparser/tests/entities/curren.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¤ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/dagger.xml b/lib/feedparser/tests/entities/dagger.xml deleted file mode 100644 index c8360b8d..00000000 --- a/lib/feedparser/tests/entities/dagger.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing † entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/darr.xml b/lib/feedparser/tests/entities/darr.xml deleted file mode 100644 index d6ccf87f..00000000 --- a/lib/feedparser/tests/entities/darr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⇓ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/deg.xml b/lib/feedparser/tests/entities/deg.xml deleted file mode 100644 index c09fb858..00000000 --- a/lib/feedparser/tests/entities/deg.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ° entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/delta.xml b/lib/feedparser/tests/entities/delta.xml deleted file mode 100644 index a68be93d..00000000 --- a/lib/feedparser/tests/entities/delta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing δ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/diams.xml b/lib/feedparser/tests/entities/diams.xml deleted file mode 100644 index f41b8b16..00000000 --- a/lib/feedparser/tests/entities/diams.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ♦ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/divide.xml b/lib/feedparser/tests/entities/divide.xml deleted file mode 100644 index 6d926237..00000000 --- a/lib/feedparser/tests/entities/divide.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ÷ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/doesnotexist.xml b/lib/feedparser/tests/entities/doesnotexist.xml deleted file mode 100644 index 87125051..00000000 --- a/lib/feedparser/tests/entities/doesnotexist.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing &doesnotexist; entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/eacute.xml b/lib/feedparser/tests/entities/eacute.xml deleted file mode 100644 index ae8f8ece..00000000 --- a/lib/feedparser/tests/entities/eacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing é entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ecirc.xml b/lib/feedparser/tests/entities/ecirc.xml deleted file mode 100644 index b03136f7..00000000 --- a/lib/feedparser/tests/entities/ecirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ê entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/egrave.xml b/lib/feedparser/tests/entities/egrave.xml deleted file mode 100644 index 38bbe154..00000000 --- a/lib/feedparser/tests/entities/egrave.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing è entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/empty.xml b/lib/feedparser/tests/entities/empty.xml deleted file mode 100644 index e59e94de..00000000 --- a/lib/feedparser/tests/entities/empty.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∅ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/emsp.xml b/lib/feedparser/tests/entities/emsp.xml deleted file mode 100644 index 29fe31f5..00000000 --- a/lib/feedparser/tests/entities/emsp.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing   entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ensp.xml b/lib/feedparser/tests/entities/ensp.xml deleted file mode 100644 index dcaddd14..00000000 --- a/lib/feedparser/tests/entities/ensp.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing   entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/epsilon.xml b/lib/feedparser/tests/entities/epsilon.xml deleted file mode 100644 index b053ec5c..00000000 --- a/lib/feedparser/tests/entities/epsilon.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ε entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/equiv.xml b/lib/feedparser/tests/entities/equiv.xml deleted file mode 100644 index c63fe40c..00000000 --- a/lib/feedparser/tests/entities/equiv.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ≡ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/eta.xml b/lib/feedparser/tests/entities/eta.xml deleted file mode 100644 index e2692d50..00000000 --- a/lib/feedparser/tests/entities/eta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing η entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/eth.xml b/lib/feedparser/tests/entities/eth.xml deleted file mode 100644 index 056d4c0c..00000000 --- a/lib/feedparser/tests/entities/eth.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ð entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/euml.xml b/lib/feedparser/tests/entities/euml.xml deleted file mode 100644 index e3f56407..00000000 --- a/lib/feedparser/tests/entities/euml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ë entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/euro.xml b/lib/feedparser/tests/entities/euro.xml deleted file mode 100644 index 77a782da..00000000 --- a/lib/feedparser/tests/entities/euro.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing € entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/exist.xml b/lib/feedparser/tests/entities/exist.xml deleted file mode 100644 index 7332cdd4..00000000 --- a/lib/feedparser/tests/entities/exist.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∃ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/fnof.xml b/lib/feedparser/tests/entities/fnof.xml deleted file mode 100644 index c50f3924..00000000 --- a/lib/feedparser/tests/entities/fnof.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ƒ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/forall.xml b/lib/feedparser/tests/entities/forall.xml deleted file mode 100644 index e939eca1..00000000 --- a/lib/feedparser/tests/entities/forall.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∀ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/frac12.xml b/lib/feedparser/tests/entities/frac12.xml deleted file mode 100644 index 1d567cb9..00000000 --- a/lib/feedparser/tests/entities/frac12.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ½ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/frac14.xml b/lib/feedparser/tests/entities/frac14.xml deleted file mode 100644 index 7d99994e..00000000 --- a/lib/feedparser/tests/entities/frac14.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¼ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/frac34.xml b/lib/feedparser/tests/entities/frac34.xml deleted file mode 100644 index c106acc9..00000000 --- a/lib/feedparser/tests/entities/frac34.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¾ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/frasl.xml b/lib/feedparser/tests/entities/frasl.xml deleted file mode 100644 index e0af9ea5..00000000 --- a/lib/feedparser/tests/entities/frasl.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⁄ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/gamma.xml b/lib/feedparser/tests/entities/gamma.xml deleted file mode 100644 index f75e253a..00000000 --- a/lib/feedparser/tests/entities/gamma.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing γ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ge.xml b/lib/feedparser/tests/entities/ge.xml deleted file mode 100644 index 662d99db..00000000 --- a/lib/feedparser/tests/entities/ge.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ≥ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/hArr.xml b/lib/feedparser/tests/entities/hArr.xml deleted file mode 100644 index 0d600f34..00000000 --- a/lib/feedparser/tests/entities/hArr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ↔ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/hearts.xml b/lib/feedparser/tests/entities/hearts.xml deleted file mode 100644 index b46f1920..00000000 --- a/lib/feedparser/tests/entities/hearts.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ♥ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/hellip.xml b/lib/feedparser/tests/entities/hellip.xml deleted file mode 100644 index 0cc416e9..00000000 --- a/lib/feedparser/tests/entities/hellip.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing … entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/hex_entity_x_lowercase.xml b/lib/feedparser/tests/entities/hex_entity_x_lowercase.xml deleted file mode 100644 index 18115739..00000000 --- a/lib/feedparser/tests/entities/hex_entity_x_lowercase.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - A - - - - - A - - - - -testing í entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/icirc.xml b/lib/feedparser/tests/entities/icirc.xml deleted file mode 100644 index 42de099a..00000000 --- a/lib/feedparser/tests/entities/icirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing î entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/iexcl.xml b/lib/feedparser/tests/entities/iexcl.xml deleted file mode 100644 index e8eb6563..00000000 --- a/lib/feedparser/tests/entities/iexcl.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¡ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/igrave.xml b/lib/feedparser/tests/entities/igrave.xml deleted file mode 100644 index 788cf5a8..00000000 --- a/lib/feedparser/tests/entities/igrave.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ì entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/image.xml b/lib/feedparser/tests/entities/image.xml deleted file mode 100644 index a49bb6ec..00000000 --- a/lib/feedparser/tests/entities/image.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ℑ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/infin.xml b/lib/feedparser/tests/entities/infin.xml deleted file mode 100644 index 37e2cce3..00000000 --- a/lib/feedparser/tests/entities/infin.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∞ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/int.xml b/lib/feedparser/tests/entities/int.xml deleted file mode 100644 index f84f9645..00000000 --- a/lib/feedparser/tests/entities/int.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∫ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/iota.xml b/lib/feedparser/tests/entities/iota.xml deleted file mode 100644 index 38e23966..00000000 --- a/lib/feedparser/tests/entities/iota.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ι entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/iquest.xml b/lib/feedparser/tests/entities/iquest.xml deleted file mode 100644 index f73b3f73..00000000 --- a/lib/feedparser/tests/entities/iquest.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¿ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/isin.xml b/lib/feedparser/tests/entities/isin.xml deleted file mode 100644 index 2ef0469b..00000000 --- a/lib/feedparser/tests/entities/isin.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∈ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/iuml.xml b/lib/feedparser/tests/entities/iuml.xml deleted file mode 100644 index ca69817c..00000000 --- a/lib/feedparser/tests/entities/iuml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ï entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/kappa.xml b/lib/feedparser/tests/entities/kappa.xml deleted file mode 100644 index 2ab0736b..00000000 --- a/lib/feedparser/tests/entities/kappa.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing κ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/lArr.xml b/lib/feedparser/tests/entities/lArr.xml deleted file mode 100644 index 156f8e91..00000000 --- a/lib/feedparser/tests/entities/lArr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ← entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/lambda.xml b/lib/feedparser/tests/entities/lambda.xml deleted file mode 100644 index 8910ed30..00000000 --- a/lib/feedparser/tests/entities/lambda.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing λ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/lang.xml b/lib/feedparser/tests/entities/lang.xml deleted file mode 100644 index db4e4e9f..00000000 --- a/lib/feedparser/tests/entities/lang.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⟨ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/laquo.xml b/lib/feedparser/tests/entities/laquo.xml deleted file mode 100644 index 79537ca0..00000000 --- a/lib/feedparser/tests/entities/laquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing « entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/lceil.xml b/lib/feedparser/tests/entities/lceil.xml deleted file mode 100644 index eef0da64..00000000 --- a/lib/feedparser/tests/entities/lceil.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⌈ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ldquo.xml b/lib/feedparser/tests/entities/ldquo.xml deleted file mode 100644 index 791e4891..00000000 --- a/lib/feedparser/tests/entities/ldquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing “ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/le.xml b/lib/feedparser/tests/entities/le.xml deleted file mode 100644 index f2585951..00000000 --- a/lib/feedparser/tests/entities/le.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ≤ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/lfloor.xml b/lib/feedparser/tests/entities/lfloor.xml deleted file mode 100644 index 50d5a226..00000000 --- a/lib/feedparser/tests/entities/lfloor.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⌊ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/lowast.xml b/lib/feedparser/tests/entities/lowast.xml deleted file mode 100644 index 00821804..00000000 --- a/lib/feedparser/tests/entities/lowast.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∗ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/loz.xml b/lib/feedparser/tests/entities/loz.xml deleted file mode 100644 index 29ffb069..00000000 --- a/lib/feedparser/tests/entities/loz.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ◊ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/lrm.xml b/lib/feedparser/tests/entities/lrm.xml deleted file mode 100644 index d672bc31..00000000 --- a/lib/feedparser/tests/entities/lrm.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‎ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/lsaquo.xml b/lib/feedparser/tests/entities/lsaquo.xml deleted file mode 100644 index 2faa2ed5..00000000 --- a/lib/feedparser/tests/entities/lsaquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‹ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/lsquo.xml b/lib/feedparser/tests/entities/lsquo.xml deleted file mode 100644 index 2297817b..00000000 --- a/lib/feedparser/tests/entities/lsquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‘ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/macr.xml b/lib/feedparser/tests/entities/macr.xml deleted file mode 100644 index 4699e32d..00000000 --- a/lib/feedparser/tests/entities/macr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¯ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/mdash.xml b/lib/feedparser/tests/entities/mdash.xml deleted file mode 100644 index e2f8503a..00000000 --- a/lib/feedparser/tests/entities/mdash.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing — entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/micro.xml b/lib/feedparser/tests/entities/micro.xml deleted file mode 100644 index 5feecd06..00000000 --- a/lib/feedparser/tests/entities/micro.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing µ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/middot.xml b/lib/feedparser/tests/entities/middot.xml deleted file mode 100644 index c436115f..00000000 --- a/lib/feedparser/tests/entities/middot.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing · entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/minus.xml b/lib/feedparser/tests/entities/minus.xml deleted file mode 100644 index 08baeac4..00000000 --- a/lib/feedparser/tests/entities/minus.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing − entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/mu.xml b/lib/feedparser/tests/entities/mu.xml deleted file mode 100644 index 81eb6fa8..00000000 --- a/lib/feedparser/tests/entities/mu.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing μ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/nabla.xml b/lib/feedparser/tests/entities/nabla.xml deleted file mode 100644 index 770ce74a..00000000 --- a/lib/feedparser/tests/entities/nabla.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∇ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/nbsp.xml b/lib/feedparser/tests/entities/nbsp.xml deleted file mode 100644 index e61d94f5..00000000 --- a/lib/feedparser/tests/entities/nbsp.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing   entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ndash.xml b/lib/feedparser/tests/entities/ndash.xml deleted file mode 100644 index 801b4e7e..00000000 --- a/lib/feedparser/tests/entities/ndash.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing – entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ne.xml b/lib/feedparser/tests/entities/ne.xml deleted file mode 100644 index 911a7f16..00000000 --- a/lib/feedparser/tests/entities/ne.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ≠ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ni.xml b/lib/feedparser/tests/entities/ni.xml deleted file mode 100644 index 5022ec68..00000000 --- a/lib/feedparser/tests/entities/ni.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∋ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/not.xml b/lib/feedparser/tests/entities/not.xml deleted file mode 100644 index 0179bb8c..00000000 --- a/lib/feedparser/tests/entities/not.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¬ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/notin.xml b/lib/feedparser/tests/entities/notin.xml deleted file mode 100644 index 3c8f1f48..00000000 --- a/lib/feedparser/tests/entities/notin.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∉ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/nsub.xml b/lib/feedparser/tests/entities/nsub.xml deleted file mode 100644 index a9f4aca5..00000000 --- a/lib/feedparser/tests/entities/nsub.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⊄ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ntilde.xml b/lib/feedparser/tests/entities/ntilde.xml deleted file mode 100644 index 0160c98e..00000000 --- a/lib/feedparser/tests/entities/ntilde.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ñ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/nu.xml b/lib/feedparser/tests/entities/nu.xml deleted file mode 100644 index e9b99ef6..00000000 --- a/lib/feedparser/tests/entities/nu.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ν entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/oacute.xml b/lib/feedparser/tests/entities/oacute.xml deleted file mode 100644 index 7e7ad959..00000000 --- a/lib/feedparser/tests/entities/oacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ó entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ocirc.xml b/lib/feedparser/tests/entities/ocirc.xml deleted file mode 100644 index 561279ce..00000000 --- a/lib/feedparser/tests/entities/ocirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ô entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/oelig.xml b/lib/feedparser/tests/entities/oelig.xml deleted file mode 100644 index 54322396..00000000 --- a/lib/feedparser/tests/entities/oelig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing œ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ograve.xml b/lib/feedparser/tests/entities/ograve.xml deleted file mode 100644 index 44dbaf5b..00000000 --- a/lib/feedparser/tests/entities/ograve.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ò entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/oline.xml b/lib/feedparser/tests/entities/oline.xml deleted file mode 100644 index 193b139e..00000000 --- a/lib/feedparser/tests/entities/oline.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‾ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/omega.xml b/lib/feedparser/tests/entities/omega.xml deleted file mode 100644 index 614ad7e7..00000000 --- a/lib/feedparser/tests/entities/omega.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ω entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/omicron.xml b/lib/feedparser/tests/entities/omicron.xml deleted file mode 100644 index 5c23feb5..00000000 --- a/lib/feedparser/tests/entities/omicron.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ο entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/oplus.xml b/lib/feedparser/tests/entities/oplus.xml deleted file mode 100644 index 374d1596..00000000 --- a/lib/feedparser/tests/entities/oplus.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⊕ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/or.xml b/lib/feedparser/tests/entities/or.xml deleted file mode 100644 index 8499a33a..00000000 --- a/lib/feedparser/tests/entities/or.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∨ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ordf.xml b/lib/feedparser/tests/entities/ordf.xml deleted file mode 100644 index 13faf67b..00000000 --- a/lib/feedparser/tests/entities/ordf.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ª entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ordm.xml b/lib/feedparser/tests/entities/ordm.xml deleted file mode 100644 index da47c1e4..00000000 --- a/lib/feedparser/tests/entities/ordm.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing º entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/oslash.xml b/lib/feedparser/tests/entities/oslash.xml deleted file mode 100644 index 50e6c86b..00000000 --- a/lib/feedparser/tests/entities/oslash.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ø entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/otilde.xml b/lib/feedparser/tests/entities/otilde.xml deleted file mode 100644 index e5636bfe..00000000 --- a/lib/feedparser/tests/entities/otilde.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing õ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/otimes.xml b/lib/feedparser/tests/entities/otimes.xml deleted file mode 100644 index 4f89df3a..00000000 --- a/lib/feedparser/tests/entities/otimes.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⊗ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ouml.xml b/lib/feedparser/tests/entities/ouml.xml deleted file mode 100644 index cc6f868d..00000000 --- a/lib/feedparser/tests/entities/ouml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ö entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/para.xml b/lib/feedparser/tests/entities/para.xml deleted file mode 100644 index 6d86c990..00000000 --- a/lib/feedparser/tests/entities/para.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¶ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/part.xml b/lib/feedparser/tests/entities/part.xml deleted file mode 100644 index a60559cf..00000000 --- a/lib/feedparser/tests/entities/part.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∂ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/permil.xml b/lib/feedparser/tests/entities/permil.xml deleted file mode 100644 index 9d142215..00000000 --- a/lib/feedparser/tests/entities/permil.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‰ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/perp.xml b/lib/feedparser/tests/entities/perp.xml deleted file mode 100644 index a2a28141..00000000 --- a/lib/feedparser/tests/entities/perp.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⊥ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/phi.xml b/lib/feedparser/tests/entities/phi.xml deleted file mode 100644 index 815a262d..00000000 --- a/lib/feedparser/tests/entities/phi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing φ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/pi.xml b/lib/feedparser/tests/entities/pi.xml deleted file mode 100644 index c20d3ed2..00000000 --- a/lib/feedparser/tests/entities/pi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing π entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/piv.xml b/lib/feedparser/tests/entities/piv.xml deleted file mode 100644 index 31560b54..00000000 --- a/lib/feedparser/tests/entities/piv.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ϖ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/plusmn.xml b/lib/feedparser/tests/entities/plusmn.xml deleted file mode 100644 index 77f181ae..00000000 --- a/lib/feedparser/tests/entities/plusmn.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ± entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/pound.xml b/lib/feedparser/tests/entities/pound.xml deleted file mode 100644 index 8f58936f..00000000 --- a/lib/feedparser/tests/entities/pound.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing £ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/prime.xml b/lib/feedparser/tests/entities/prime.xml deleted file mode 100644 index 56f95ee3..00000000 --- a/lib/feedparser/tests/entities/prime.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ′ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/prod.xml b/lib/feedparser/tests/entities/prod.xml deleted file mode 100644 index 540e9350..00000000 --- a/lib/feedparser/tests/entities/prod.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∏ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/prop.xml b/lib/feedparser/tests/entities/prop.xml deleted file mode 100644 index 3996b342..00000000 --- a/lib/feedparser/tests/entities/prop.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∝ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/psi.xml b/lib/feedparser/tests/entities/psi.xml deleted file mode 100644 index 104d5851..00000000 --- a/lib/feedparser/tests/entities/psi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ψ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/query_variable_entry.xml b/lib/feedparser/tests/entities/query_variable_entry.xml deleted file mode 100644 index 565c3d90..00000000 --- a/lib/feedparser/tests/entities/query_variable_entry.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://example/?a=1&b=2&c - - - - - -http://example/?a=1&b=2&c - - - - -testing √ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/rang.xml b/lib/feedparser/tests/entities/rang.xml deleted file mode 100644 index 19be1043..00000000 --- a/lib/feedparser/tests/entities/rang.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⟩ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/raquo.xml b/lib/feedparser/tests/entities/raquo.xml deleted file mode 100644 index 60dec82d..00000000 --- a/lib/feedparser/tests/entities/raquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing » entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/rarr.xml b/lib/feedparser/tests/entities/rarr.xml deleted file mode 100644 index 95c8403b..00000000 --- a/lib/feedparser/tests/entities/rarr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⇒ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/rceil.xml b/lib/feedparser/tests/entities/rceil.xml deleted file mode 100644 index 6059028b..00000000 --- a/lib/feedparser/tests/entities/rceil.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⌉ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/rdquo.xml b/lib/feedparser/tests/entities/rdquo.xml deleted file mode 100644 index 05c2b2dd..00000000 --- a/lib/feedparser/tests/entities/rdquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ” entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/real.xml b/lib/feedparser/tests/entities/real.xml deleted file mode 100644 index da61fb9b..00000000 --- a/lib/feedparser/tests/entities/real.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ℜ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/reg.xml b/lib/feedparser/tests/entities/reg.xml deleted file mode 100644 index 5c4ab1d8..00000000 --- a/lib/feedparser/tests/entities/reg.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ® entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/rfloor.xml b/lib/feedparser/tests/entities/rfloor.xml deleted file mode 100644 index 2cbfe724..00000000 --- a/lib/feedparser/tests/entities/rfloor.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⌋ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/rho.xml b/lib/feedparser/tests/entities/rho.xml deleted file mode 100644 index 9593cf3d..00000000 --- a/lib/feedparser/tests/entities/rho.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ρ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/rlm.xml b/lib/feedparser/tests/entities/rlm.xml deleted file mode 100644 index 39607338..00000000 --- a/lib/feedparser/tests/entities/rlm.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‏ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/rsaquo.xml b/lib/feedparser/tests/entities/rsaquo.xml deleted file mode 100644 index da3fe764..00000000 --- a/lib/feedparser/tests/entities/rsaquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing › entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/rsquo.xml b/lib/feedparser/tests/entities/rsquo.xml deleted file mode 100644 index a24bc0b3..00000000 --- a/lib/feedparser/tests/entities/rsquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ’ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sbquo.xml b/lib/feedparser/tests/entities/sbquo.xml deleted file mode 100644 index 65d011c9..00000000 --- a/lib/feedparser/tests/entities/sbquo.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‚ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/scaron.xml b/lib/feedparser/tests/entities/scaron.xml deleted file mode 100644 index 5b0a075e..00000000 --- a/lib/feedparser/tests/entities/scaron.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing š entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sdot.xml b/lib/feedparser/tests/entities/sdot.xml deleted file mode 100644 index 580263b5..00000000 --- a/lib/feedparser/tests/entities/sdot.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⋅ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sect.xml b/lib/feedparser/tests/entities/sect.xml deleted file mode 100644 index 90d72799..00000000 --- a/lib/feedparser/tests/entities/sect.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing § entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/shy.xml b/lib/feedparser/tests/entities/shy.xml deleted file mode 100644 index e0257093..00000000 --- a/lib/feedparser/tests/entities/shy.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ­ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sigma.xml b/lib/feedparser/tests/entities/sigma.xml deleted file mode 100644 index 3d080ba1..00000000 --- a/lib/feedparser/tests/entities/sigma.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing σ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sigmaf.xml b/lib/feedparser/tests/entities/sigmaf.xml deleted file mode 100644 index 3dbf8a01..00000000 --- a/lib/feedparser/tests/entities/sigmaf.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ς entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sim.xml b/lib/feedparser/tests/entities/sim.xml deleted file mode 100644 index 7b1eadd6..00000000 --- a/lib/feedparser/tests/entities/sim.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∼ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/spades.xml b/lib/feedparser/tests/entities/spades.xml deleted file mode 100644 index 806acfe0..00000000 --- a/lib/feedparser/tests/entities/spades.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ♠ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sub.xml b/lib/feedparser/tests/entities/sub.xml deleted file mode 100644 index e52b46ea..00000000 --- a/lib/feedparser/tests/entities/sub.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⊂ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sube.xml b/lib/feedparser/tests/entities/sube.xml deleted file mode 100644 index 163e2e6b..00000000 --- a/lib/feedparser/tests/entities/sube.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⊆ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sum.xml b/lib/feedparser/tests/entities/sum.xml deleted file mode 100644 index 415dcc31..00000000 --- a/lib/feedparser/tests/entities/sum.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∑ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sup.xml b/lib/feedparser/tests/entities/sup.xml deleted file mode 100644 index 19d6c56e..00000000 --- a/lib/feedparser/tests/entities/sup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⊃ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sup1.xml b/lib/feedparser/tests/entities/sup1.xml deleted file mode 100644 index 37b4adb8..00000000 --- a/lib/feedparser/tests/entities/sup1.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¹ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sup2.xml b/lib/feedparser/tests/entities/sup2.xml deleted file mode 100644 index e4793553..00000000 --- a/lib/feedparser/tests/entities/sup2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ² entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/sup3.xml b/lib/feedparser/tests/entities/sup3.xml deleted file mode 100644 index dd47f583..00000000 --- a/lib/feedparser/tests/entities/sup3.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ³ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/supe.xml b/lib/feedparser/tests/entities/supe.xml deleted file mode 100644 index 4091ca78..00000000 --- a/lib/feedparser/tests/entities/supe.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⊇ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/szlig.xml b/lib/feedparser/tests/entities/szlig.xml deleted file mode 100644 index b7698fde..00000000 --- a/lib/feedparser/tests/entities/szlig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ß entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/tau.xml b/lib/feedparser/tests/entities/tau.xml deleted file mode 100644 index 9a367ddd..00000000 --- a/lib/feedparser/tests/entities/tau.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing τ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/there4.xml b/lib/feedparser/tests/entities/there4.xml deleted file mode 100644 index 14b9c375..00000000 --- a/lib/feedparser/tests/entities/there4.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ∴ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/theta.xml b/lib/feedparser/tests/entities/theta.xml deleted file mode 100644 index eb85cdf2..00000000 --- a/lib/feedparser/tests/entities/theta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing θ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/thetasym.xml b/lib/feedparser/tests/entities/thetasym.xml deleted file mode 100644 index 8244ba1a..00000000 --- a/lib/feedparser/tests/entities/thetasym.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ϑ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/thinsp.xml b/lib/feedparser/tests/entities/thinsp.xml deleted file mode 100644 index 580abadb..00000000 --- a/lib/feedparser/tests/entities/thinsp.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing   entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/thorn.xml b/lib/feedparser/tests/entities/thorn.xml deleted file mode 100644 index a8694f08..00000000 --- a/lib/feedparser/tests/entities/thorn.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing þ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/tilde.xml b/lib/feedparser/tests/entities/tilde.xml deleted file mode 100644 index a12b983c..00000000 --- a/lib/feedparser/tests/entities/tilde.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ˜ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/times.xml b/lib/feedparser/tests/entities/times.xml deleted file mode 100644 index 6c40e69e..00000000 --- a/lib/feedparser/tests/entities/times.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing × entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/trade.xml b/lib/feedparser/tests/entities/trade.xml deleted file mode 100644 index e93bd482..00000000 --- a/lib/feedparser/tests/entities/trade.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ™ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/uacute.xml b/lib/feedparser/tests/entities/uacute.xml deleted file mode 100644 index 4d9cff3b..00000000 --- a/lib/feedparser/tests/entities/uacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ú entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/uarr.xml b/lib/feedparser/tests/entities/uarr.xml deleted file mode 100644 index ca3ae5d2..00000000 --- a/lib/feedparser/tests/entities/uarr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ⇑ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ucirc.xml b/lib/feedparser/tests/entities/ucirc.xml deleted file mode 100644 index 5da01a03..00000000 --- a/lib/feedparser/tests/entities/ucirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing û entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/ugrave.xml b/lib/feedparser/tests/entities/ugrave.xml deleted file mode 100644 index e949fa11..00000000 --- a/lib/feedparser/tests/entities/ugrave.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ù entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/uml.xml b/lib/feedparser/tests/entities/uml.xml deleted file mode 100644 index 5245577f..00000000 --- a/lib/feedparser/tests/entities/uml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¨ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_AElig.xml b/lib/feedparser/tests/entities/upper_AElig.xml deleted file mode 100644 index d1884074..00000000 --- a/lib/feedparser/tests/entities/upper_AElig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Æ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Aacute.xml b/lib/feedparser/tests/entities/upper_Aacute.xml deleted file mode 100644 index d33622b9..00000000 --- a/lib/feedparser/tests/entities/upper_Aacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Á entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Acirc.xml b/lib/feedparser/tests/entities/upper_Acirc.xml deleted file mode 100644 index be9093cf..00000000 --- a/lib/feedparser/tests/entities/upper_Acirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing  entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Agrave.xml b/lib/feedparser/tests/entities/upper_Agrave.xml deleted file mode 100644 index 5635d5b0..00000000 --- a/lib/feedparser/tests/entities/upper_Agrave.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing À entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Alpha.xml b/lib/feedparser/tests/entities/upper_Alpha.xml deleted file mode 100644 index d78bd94e..00000000 --- a/lib/feedparser/tests/entities/upper_Alpha.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Α entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Aring.xml b/lib/feedparser/tests/entities/upper_Aring.xml deleted file mode 100644 index ce140cba..00000000 --- a/lib/feedparser/tests/entities/upper_Aring.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Å entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Atilde.xml b/lib/feedparser/tests/entities/upper_Atilde.xml deleted file mode 100644 index cf4bc6fa..00000000 --- a/lib/feedparser/tests/entities/upper_Atilde.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing à entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Auml.xml b/lib/feedparser/tests/entities/upper_Auml.xml deleted file mode 100644 index 7e85269a..00000000 --- a/lib/feedparser/tests/entities/upper_Auml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ä entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Beta.xml b/lib/feedparser/tests/entities/upper_Beta.xml deleted file mode 100644 index 871a11b6..00000000 --- a/lib/feedparser/tests/entities/upper_Beta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Β entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Ccedil.xml b/lib/feedparser/tests/entities/upper_Ccedil.xml deleted file mode 100644 index 38a830b8..00000000 --- a/lib/feedparser/tests/entities/upper_Ccedil.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ç entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Chi.xml b/lib/feedparser/tests/entities/upper_Chi.xml deleted file mode 100644 index ea02cd63..00000000 --- a/lib/feedparser/tests/entities/upper_Chi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Χ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Dagger.xml b/lib/feedparser/tests/entities/upper_Dagger.xml deleted file mode 100644 index 2a6c75aa..00000000 --- a/lib/feedparser/tests/entities/upper_Dagger.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‡ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Delta.xml b/lib/feedparser/tests/entities/upper_Delta.xml deleted file mode 100644 index 71d3cdd4..00000000 --- a/lib/feedparser/tests/entities/upper_Delta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Δ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_ETH.xml b/lib/feedparser/tests/entities/upper_ETH.xml deleted file mode 100644 index 32d86063..00000000 --- a/lib/feedparser/tests/entities/upper_ETH.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ð entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Eacute.xml b/lib/feedparser/tests/entities/upper_Eacute.xml deleted file mode 100644 index 9ced3e1f..00000000 --- a/lib/feedparser/tests/entities/upper_Eacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing É entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Ecirc.xml b/lib/feedparser/tests/entities/upper_Ecirc.xml deleted file mode 100644 index 2e22adab..00000000 --- a/lib/feedparser/tests/entities/upper_Ecirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ê entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Egrave.xml b/lib/feedparser/tests/entities/upper_Egrave.xml deleted file mode 100644 index 11323db2..00000000 --- a/lib/feedparser/tests/entities/upper_Egrave.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing È entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Epsilon.xml b/lib/feedparser/tests/entities/upper_Epsilon.xml deleted file mode 100644 index a4bfd651..00000000 --- a/lib/feedparser/tests/entities/upper_Epsilon.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ε entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Eta.xml b/lib/feedparser/tests/entities/upper_Eta.xml deleted file mode 100644 index 0ba2a892..00000000 --- a/lib/feedparser/tests/entities/upper_Eta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Η entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Euml.xml b/lib/feedparser/tests/entities/upper_Euml.xml deleted file mode 100644 index 9a7ea4a9..00000000 --- a/lib/feedparser/tests/entities/upper_Euml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ë entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Gamma.xml b/lib/feedparser/tests/entities/upper_Gamma.xml deleted file mode 100644 index d0d85bb5..00000000 --- a/lib/feedparser/tests/entities/upper_Gamma.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Γ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Iacute.xml b/lib/feedparser/tests/entities/upper_Iacute.xml deleted file mode 100644 index e7ebad95..00000000 --- a/lib/feedparser/tests/entities/upper_Iacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Í entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Icirc.xml b/lib/feedparser/tests/entities/upper_Icirc.xml deleted file mode 100644 index 03d7e45b..00000000 --- a/lib/feedparser/tests/entities/upper_Icirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Î entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Igrave.xml b/lib/feedparser/tests/entities/upper_Igrave.xml deleted file mode 100644 index 97a112b1..00000000 --- a/lib/feedparser/tests/entities/upper_Igrave.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ì entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Iota.xml b/lib/feedparser/tests/entities/upper_Iota.xml deleted file mode 100644 index 08153102..00000000 --- a/lib/feedparser/tests/entities/upper_Iota.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ι entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Iuml.xml b/lib/feedparser/tests/entities/upper_Iuml.xml deleted file mode 100644 index 6403c363..00000000 --- a/lib/feedparser/tests/entities/upper_Iuml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ï entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Kappa.xml b/lib/feedparser/tests/entities/upper_Kappa.xml deleted file mode 100644 index 347d70da..00000000 --- a/lib/feedparser/tests/entities/upper_Kappa.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Κ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Lambda.xml b/lib/feedparser/tests/entities/upper_Lambda.xml deleted file mode 100644 index e67223cb..00000000 --- a/lib/feedparser/tests/entities/upper_Lambda.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Λ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Mu.xml b/lib/feedparser/tests/entities/upper_Mu.xml deleted file mode 100644 index bfa0379a..00000000 --- a/lib/feedparser/tests/entities/upper_Mu.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Μ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Ntilde.xml b/lib/feedparser/tests/entities/upper_Ntilde.xml deleted file mode 100644 index bfbd3bd4..00000000 --- a/lib/feedparser/tests/entities/upper_Ntilde.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ñ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Nu.xml b/lib/feedparser/tests/entities/upper_Nu.xml deleted file mode 100644 index 25779bf8..00000000 --- a/lib/feedparser/tests/entities/upper_Nu.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ν entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_OElig.xml b/lib/feedparser/tests/entities/upper_OElig.xml deleted file mode 100644 index 7d486344..00000000 --- a/lib/feedparser/tests/entities/upper_OElig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Œ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Oacute.xml b/lib/feedparser/tests/entities/upper_Oacute.xml deleted file mode 100644 index eb382258..00000000 --- a/lib/feedparser/tests/entities/upper_Oacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ó entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Ocirc.xml b/lib/feedparser/tests/entities/upper_Ocirc.xml deleted file mode 100644 index 54e18073..00000000 --- a/lib/feedparser/tests/entities/upper_Ocirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ô entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Ograve.xml b/lib/feedparser/tests/entities/upper_Ograve.xml deleted file mode 100644 index 89503273..00000000 --- a/lib/feedparser/tests/entities/upper_Ograve.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ò entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Omega.xml b/lib/feedparser/tests/entities/upper_Omega.xml deleted file mode 100644 index 429ce59c..00000000 --- a/lib/feedparser/tests/entities/upper_Omega.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ω entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Omicron.xml b/lib/feedparser/tests/entities/upper_Omicron.xml deleted file mode 100644 index c74bec18..00000000 --- a/lib/feedparser/tests/entities/upper_Omicron.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ο entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Oslash.xml b/lib/feedparser/tests/entities/upper_Oslash.xml deleted file mode 100644 index 0f9e3533..00000000 --- a/lib/feedparser/tests/entities/upper_Oslash.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ø entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Otilde.xml b/lib/feedparser/tests/entities/upper_Otilde.xml deleted file mode 100644 index d3400305..00000000 --- a/lib/feedparser/tests/entities/upper_Otilde.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Õ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Ouml.xml b/lib/feedparser/tests/entities/upper_Ouml.xml deleted file mode 100644 index e32d9644..00000000 --- a/lib/feedparser/tests/entities/upper_Ouml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ö entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Phi.xml b/lib/feedparser/tests/entities/upper_Phi.xml deleted file mode 100644 index 8f93027d..00000000 --- a/lib/feedparser/tests/entities/upper_Phi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Φ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Pi.xml b/lib/feedparser/tests/entities/upper_Pi.xml deleted file mode 100644 index 2b8951f9..00000000 --- a/lib/feedparser/tests/entities/upper_Pi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Π entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Prime.xml b/lib/feedparser/tests/entities/upper_Prime.xml deleted file mode 100644 index b29dc9ff..00000000 --- a/lib/feedparser/tests/entities/upper_Prime.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ″ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Psi.xml b/lib/feedparser/tests/entities/upper_Psi.xml deleted file mode 100644 index 9d337bd4..00000000 --- a/lib/feedparser/tests/entities/upper_Psi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ψ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Rho.xml b/lib/feedparser/tests/entities/upper_Rho.xml deleted file mode 100644 index 0e187973..00000000 --- a/lib/feedparser/tests/entities/upper_Rho.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ρ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Scaron.xml b/lib/feedparser/tests/entities/upper_Scaron.xml deleted file mode 100644 index 784c67e1..00000000 --- a/lib/feedparser/tests/entities/upper_Scaron.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Š entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Sigma.xml b/lib/feedparser/tests/entities/upper_Sigma.xml deleted file mode 100644 index a7228509..00000000 --- a/lib/feedparser/tests/entities/upper_Sigma.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Σ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_THORN.xml b/lib/feedparser/tests/entities/upper_THORN.xml deleted file mode 100644 index 499d0b28..00000000 --- a/lib/feedparser/tests/entities/upper_THORN.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Þ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Tau.xml b/lib/feedparser/tests/entities/upper_Tau.xml deleted file mode 100644 index 3ff9f697..00000000 --- a/lib/feedparser/tests/entities/upper_Tau.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Τ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Theta.xml b/lib/feedparser/tests/entities/upper_Theta.xml deleted file mode 100644 index 85c43231..00000000 --- a/lib/feedparser/tests/entities/upper_Theta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Θ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Uacute.xml b/lib/feedparser/tests/entities/upper_Uacute.xml deleted file mode 100644 index e714b33c..00000000 --- a/lib/feedparser/tests/entities/upper_Uacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ú entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Ucirc.xml b/lib/feedparser/tests/entities/upper_Ucirc.xml deleted file mode 100644 index 2d6ddeb0..00000000 --- a/lib/feedparser/tests/entities/upper_Ucirc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Û entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Ugrave.xml b/lib/feedparser/tests/entities/upper_Ugrave.xml deleted file mode 100644 index 5d859b8e..00000000 --- a/lib/feedparser/tests/entities/upper_Ugrave.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ù entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Upsilon.xml b/lib/feedparser/tests/entities/upper_Upsilon.xml deleted file mode 100644 index 3a8ba537..00000000 --- a/lib/feedparser/tests/entities/upper_Upsilon.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Υ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Uuml.xml b/lib/feedparser/tests/entities/upper_Uuml.xml deleted file mode 100644 index 0d0c4b2a..00000000 --- a/lib/feedparser/tests/entities/upper_Uuml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ü entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Xi.xml b/lib/feedparser/tests/entities/upper_Xi.xml deleted file mode 100644 index 6d0411d3..00000000 --- a/lib/feedparser/tests/entities/upper_Xi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ξ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Yacute.xml b/lib/feedparser/tests/entities/upper_Yacute.xml deleted file mode 100644 index 96157bfb..00000000 --- a/lib/feedparser/tests/entities/upper_Yacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ý entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Yuml.xml b/lib/feedparser/tests/entities/upper_Yuml.xml deleted file mode 100644 index ee49cf3a..00000000 --- a/lib/feedparser/tests/entities/upper_Yuml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ÿ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upper_Zeta.xml b/lib/feedparser/tests/entities/upper_Zeta.xml deleted file mode 100644 index 4bcf3927..00000000 --- a/lib/feedparser/tests/entities/upper_Zeta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing Ζ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upsih.xml b/lib/feedparser/tests/entities/upsih.xml deleted file mode 100644 index 9248acdc..00000000 --- a/lib/feedparser/tests/entities/upsih.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ϒ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/upsilon.xml b/lib/feedparser/tests/entities/upsilon.xml deleted file mode 100644 index 1f916c5d..00000000 --- a/lib/feedparser/tests/entities/upsilon.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing υ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/uuml.xml b/lib/feedparser/tests/entities/uuml.xml deleted file mode 100644 index 4c147b2a..00000000 --- a/lib/feedparser/tests/entities/uuml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ü entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/weierp.xml b/lib/feedparser/tests/entities/weierp.xml deleted file mode 100644 index 63bd70c3..00000000 --- a/lib/feedparser/tests/entities/weierp.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ℘ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/xi.xml b/lib/feedparser/tests/entities/xi.xml deleted file mode 100644 index d9b280b9..00000000 --- a/lib/feedparser/tests/entities/xi.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ξ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/yacute.xml b/lib/feedparser/tests/entities/yacute.xml deleted file mode 100644 index c8b33150..00000000 --- a/lib/feedparser/tests/entities/yacute.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ý entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/yen.xml b/lib/feedparser/tests/entities/yen.xml deleted file mode 100644 index af9f596c..00000000 --- a/lib/feedparser/tests/entities/yen.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ¥ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/yuml.xml b/lib/feedparser/tests/entities/yuml.xml deleted file mode 100644 index 253b60bc..00000000 --- a/lib/feedparser/tests/entities/yuml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ÿ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/zeta.xml b/lib/feedparser/tests/entities/zeta.xml deleted file mode 100644 index af665ecd..00000000 --- a/lib/feedparser/tests/entities/zeta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ζ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/zwj.xml b/lib/feedparser/tests/entities/zwj.xml deleted file mode 100644 index 88124606..00000000 --- a/lib/feedparser/tests/entities/zwj.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‍ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/entities/zwnj.xml b/lib/feedparser/tests/entities/zwnj.xml deleted file mode 100644 index 3bcd5d4a..00000000 --- a/lib/feedparser/tests/entities/zwnj.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -testing ‌ entity - - \ No newline at end of file diff --git a/lib/feedparser/tests/http/http_redirect_to_304.xml b/lib/feedparser/tests/http/http_redirect_to_304.xml deleted file mode 100644 index a14cb0d3..00000000 --- a/lib/feedparser/tests/http/http_redirect_to_304.xml +++ /dev/null @@ -1,7 +0,0 @@ - - diff --git a/lib/feedparser/tests/http/http_status_301.xml b/lib/feedparser/tests/http/http_status_301.xml deleted file mode 100644 index 12d159ab..00000000 --- a/lib/feedparser/tests/http/http_status_301.xml +++ /dev/null @@ -1,7 +0,0 @@ - - diff --git a/lib/feedparser/tests/http/http_status_302.xml b/lib/feedparser/tests/http/http_status_302.xml deleted file mode 100644 index 4b15d437..00000000 --- a/lib/feedparser/tests/http/http_status_302.xml +++ /dev/null @@ -1,7 +0,0 @@ - - diff --git a/lib/feedparser/tests/http/http_status_303.xml b/lib/feedparser/tests/http/http_status_303.xml deleted file mode 100644 index 2dd5d2f7..00000000 --- a/lib/feedparser/tests/http/http_status_303.xml +++ /dev/null @@ -1,7 +0,0 @@ - - diff --git a/lib/feedparser/tests/http/http_status_304.xml b/lib/feedparser/tests/http/http_status_304.xml deleted file mode 100644 index a2eb6953..00000000 --- a/lib/feedparser/tests/http/http_status_304.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - title 304 - diff --git a/lib/feedparser/tests/http/http_status_307.xml b/lib/feedparser/tests/http/http_status_307.xml deleted file mode 100644 index 90074172..00000000 --- a/lib/feedparser/tests/http/http_status_307.xml +++ /dev/null @@ -1,7 +0,0 @@ - - diff --git a/lib/feedparser/tests/http/http_status_404.xml b/lib/feedparser/tests/http/http_status_404.xml deleted file mode 100644 index 02e08089..00000000 --- a/lib/feedparser/tests/http/http_status_404.xml +++ /dev/null @@ -1,6 +0,0 @@ - - diff --git a/lib/feedparser/tests/http/http_status_9001.xml b/lib/feedparser/tests/http/http_status_9001.xml deleted file mode 100644 index b90dce3b..00000000 --- a/lib/feedparser/tests/http/http_status_9001.xml +++ /dev/null @@ -1,6 +0,0 @@ - - diff --git a/lib/feedparser/tests/http/target.xml b/lib/feedparser/tests/http/target.xml deleted file mode 100644 index a81736b1..00000000 --- a/lib/feedparser/tests/http/target.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - target - diff --git a/lib/feedparser/tests/illformed/aaa_illformed.xml b/lib/feedparser/tests/illformed/aaa_illformed.xml deleted file mode 100644 index 044edc24..00000000 --- a/lib/feedparser/tests/illformed/aaa_illformed.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - - found - - diff --git a/lib/feedparser/tests/illformed/chardet/big5.xml b/lib/feedparser/tests/illformed/chardet/big5.xml deleted file mode 100644 index 91c9ec0f..00000000 --- a/lib/feedparser/tests/illformed/chardet/big5.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -¡m11¤ëªº¿½¨¹¡n - \ No newline at end of file diff --git a/lib/feedparser/tests/illformed/chardet/eucjp.xml b/lib/feedparser/tests/illformed/chardet/eucjp.xml deleted file mode 100644 index ba288a5e..00000000 --- a/lib/feedparser/tests/illformed/chardet/eucjp.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - -¥²¡¼¥à»°Ëæ¤ÊÀµ·î -¡ØSD¥¬¥ó¥À¥àG¥¸¥§¥Í¥ì¡¼¥·¥ç¥óNEO¡Ù¤ò¤º¤Ã¤È¥×¥ì¥¤¤·¤Æ¤¤¤ë¡£ ¡Ø¥¦¥ë¥È¥é¥Þ¥ó¡Ù¤Ï¥¹¥È¥ê¡¼¥â¡¼¥É¤ò½ª¤¨¤Æ¡¢¤Û¤Ü¤ä¤ê¿Ô¤¯¤·¤Æ¤·¤Þ¤Ã¤¿¡£ G¥¸¥§¥ÍNEO¤Ï¡¢¤ä¤Ã¤ÈÌÌÇò¤¯¤Ê¤ê¤Ä¤Ä¤¢¤ë¡£ ¤Ê¤ë¤Û¤É¡¢PS2¤Ã¤Æ¤¹¤´¤¤²èÁü½èÍýǽÎϤÀ¤Ê¤¢¤Èº£º¢´¶Æ°¤·¤Æ¤¤¤ë¡£ º£Ç¯¤³¤½ÃÙ¤ì¤Ê¤¤¤è¤¦PS3¤ÈXBOX360¤òÇ㤪¤¦¡Ê¤·¤«¤·¡¢Àµ·î°Ê³°¤Ï¥²¡¼¥à¤ä¤ë²Ë¤Ê¤¤¤Û¤ÉË»¤·¤¤¤ó¤À¤è¤Í¡Ë¡£ ¤½¤ì¤Ë¤·¤Æ¤â¡¢Àµ·î¤Ã¤Æ¿©¤Ù¤Æ¤Ð¤Ã¤«¤ê¤Ç¥Þ¥¸ÂÀ¤ë¤è¤Í¡£... - - - \ No newline at end of file diff --git a/lib/feedparser/tests/illformed/chardet/euckr.xml b/lib/feedparser/tests/illformed/chardet/euckr.xml deleted file mode 100644 index 767f3a59..00000000 --- a/lib/feedparser/tests/illformed/chardet/euckr.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - -EUC-KR ¿¡¼­ TypeKey Çѱ۴г×ÀÓ Ç¥½ÃÇϱâ -TypeKey ½Ã½ºÅÛÀÌ UTF-8·Î µ¹¾Æ°¡´Âµ¥, °Å±â¼­ Çѱ۷ΠµÈ ´Ð³×ÀÓÀ» Á¤ÇÒ °æ¿ì¿¡, EUC-KR·Î µÈ ¹«¹öºíŸÀÔ ºí·Ï¿¡¼± ¸®´ÙÀÌ·ºÆ®µÇ¾î Àü¼ÛµÇ¾î¿À´Â ´Ð³×ÀÓÀÌ UTF¶ó ´ç¿¬È÷ ±ú¾îÁ® ³ªÅ¸³­´Ù. ½ÇÁ¦ ºí·Ï µî¿¡¼­ »ç¿ëÇÏ´Â ÇÊ¸í ³»Áö´Â ´Ð³×ÀÓÀº Çѱ۷Π»ç¿ëÇÏ´Â ¸¹Àº ºÐµéµµ ŸÀÔÅ°¿¡¼­ÀÇ ´Ð³×ÀÓÀº ÀÌ·± ¹®Á¦¶§¹®¿¡ ¿ï¸ç°ÜÀÚ¸Ô±â·Î ¿µ¾î·Î Áþ°í ÀÖ´Ù.... - - - \ No newline at end of file diff --git a/lib/feedparser/tests/illformed/chardet/gb2312.xml b/lib/feedparser/tests/illformed/chardet/gb2312.xml deleted file mode 100644 index b28c1014..00000000 --- a/lib/feedparser/tests/illformed/chardet/gb2312.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -²»¹éÒÆÃñÂþ»­ÏµÁУº×¨Òµ¹¤×÷ - - - diff --git a/lib/feedparser/tests/illformed/chardet/koi8r.xml b/lib/feedparser/tests/illformed/chardet/koi8r.xml deleted file mode 100644 index 8cdea546..00000000 --- a/lib/feedparser/tests/illformed/chardet/koi8r.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - -ëÁË ÐÅÒÅÖÉÔØ ÎÏ×ÏÇÏÄÎÀÀ ÎÏÞØ - -îÁ×ÅÒÎÏÅ, ÅÄÉÎÓÔ×ÅÎÎÏÅ, ×Ï ÞÔÏ ÓÅÇÏÄÎÑ ÍÏÖÎÏ ×ÅÒÉÔØ ÂÅÚÏÇÏ×ÏÒÏÞÎÏ, ÔÁË ÜÔÏ × ÔÏ, ÞÔÏ îÏ×ÙÊ ÇÏÄ ÏÂÑÚÁÔÅÌØÎÏ ÎÁÓÔÕÐÉÔ. îÅÓÍÏÔÒÑ ÎÉ ÎÁ ÞÔÏ! üÔÏ ÎÅ ÐÒÏÓÔÏ ÏÞÅÒÅÄÎÏÊ ÐÒÁÚÄÎÉË, ÜÔÏ - ×ÅÈÁ! á ×ÅÈÉ × ÖÉÚÎÉ ÐÒÉÎÑÔÏ ÏÔÍÅÞÁÔØ. ïÔÍÅÞÁÔØ ÛÉÒÏËÏ É ÄÅÎØËÁ ÜÄÁË Ä×Á-ÔÒÉ... é ×ÍÅÓÔÏ ÐÒÏ×ÏÚÇÌÁÛÁÅÍÙÈ "ÎÏ×ÏÇÏ ÓÞÁÓÔØÑ" É "ÎÏ×ÏÇÏ ÚÄÏÒÏ×ØÑ" ÐÒÁÚÄÎÏ×ÁÎÉÅ îÏ×ÏÇÏ ÇÏÄÁ ÐÒÉÎÏÓÉÔ ÌÉÂÏ ÎÏ×ÙÅ ÂÏÌÑÞËÉ, ÌÉÂÏ ÏÂÏÓÔÒÑÅÔ ÓÔÁÒÙÅ. äÁÂÙ ÐÏÓÔÁÒÁÔØÓÑ ÉÚÂÅÖÁÔØ ÐÏÄÏÂÎÏÇÏ ÆÉÎÁÌÁ ÌÀÂÉÍÏÇÏ ÐÒÁÚÄÎÉËÁ, ÐÒÉ×ÅÄÕ ÎÅÓËÏÌØËÏ "ÐÒÁÚÄÎÉÞÎÙÈ" ÐÒÁ×ÉÌ ÚÁÓÔÏÌØÎÏÊ ÂÅÚÏÐÁÓÎÏÓÔÉ. - - - \ No newline at end of file diff --git a/lib/feedparser/tests/illformed/chardet/shiftjis.xml b/lib/feedparser/tests/illformed/chardet/shiftjis.xml deleted file mode 100644 index 28285d96..00000000 --- a/lib/feedparser/tests/illformed/chardet/shiftjis.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - DrecomRSS‚É‹LŽ–“Še‚ª”½‰f‚³‚ê‚È‚¢c - FX’²‚ׂĂ½‚çAMT3.2‚ªRSS1.0‚ðƒTƒ|[ƒg‚µ‚Ä‚¢‚È‚¢‚±‚Æ‚ª”»–¾B ‚à‚Æ‚à... - - \ No newline at end of file diff --git a/lib/feedparser/tests/illformed/chardet/tis620.xml b/lib/feedparser/tests/illformed/chardet/tis620.xml deleted file mode 100644 index 5dd10905..00000000 --- a/lib/feedparser/tests/illformed/chardet/tis620.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Êӹѡ§Ò¹Êè§àÊÃÔÁÍصÊÒË¡ÃÃÁ«Í¿µìáÇÃìáËè§ªÒµÔ ËÃ×Í SIPA ÃèÇÁ¡Ñº MamboHub.com ¢ÍàÃÕ¹àªÔ­·Ø¡·èÒ¹·Õèʹã¨Êè§ Template à¢éÒÃèÇÁ¡ÒûÃСǴ &#8220;Mambo Template Contest&#8221; ´éÇ Mambo 4.5.X ÊÓËÃѺãªé¨ÃÔ§ã¹àÇçºä«µì thaiopensource.org àÇçºä«µìÈÙ¹ÂìÃÇÁ¢éÍÁÙÅ¢èÒÇÊÒâͧ«Í¿µìáÇÃì Open Source ã¹àÁ×ͧä·Â â´ÂÊÒÁÒöÊ觼ŧҹà¢éÒ»ÃСǴä´é ·Ñé§ã¹¹ÒÁ¢Í§ºÃÔÉÑ· ºØ¤¤Å ËÃ×Í ¡ÅØèÁ/¤³Ð ·Ñ駹Õéà¾×èÍà»Ô´âÍ¡ÒÊ áÅÐʹѺʹعãËé¡ÅØèÁ¼Ùéãªé Mambo ã¹àÁ×ͧä·Âä´éÁÕÊèǹÃèÇÁ㹡ÒÃÍ͡ẺáÅоѲ¹ÒàÇçºä«µì thaiopensource.org µèÍä»ã¹Í¹Ò¤µ - - - diff --git a/lib/feedparser/tests/illformed/chardet/windows1255.xml b/lib/feedparser/tests/illformed/chardet/windows1255.xml deleted file mode 100644 index 0ab773f5..00000000 --- a/lib/feedparser/tests/illformed/chardet/windows1255.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - -äàí úãôéñ ðééø ùì àúø àéðèøðè ùîåöâ òì îñê îùúîù äåà äòú÷ ðàîï ìî÷åø ùì àúø äàéðèøðè? øáéí éâéãå ùëï, åìôòîéí âí áúé äîùôè éöèøôå àìéäí ùé÷áìå ôìè îàúø àéðèøðè ëøàéä ÷áéìä. àáì, æä îîù ìà ëê. åéù àôéìå äåëçä îãäéîä. - - - - diff --git a/lib/feedparser/tests/illformed/http_high_bit_date.xml b/lib/feedparser/tests/illformed/http_high_bit_date.xml deleted file mode 100644 index 480d3ae0..00000000 --- a/lib/feedparser/tests/illformed/http_high_bit_date.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - Ôñé, 29 Éïýí 2004 12:53:00 GMT - - \ No newline at end of file diff --git a/lib/feedparser/tests/illformed/non-ascii-tag.xml b/lib/feedparser/tests/illformed/non-ascii-tag.xml deleted file mode 100644 index e07883ec..00000000 --- a/lib/feedparser/tests/illformed/non-ascii-tag.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - Some text - - - diff --git a/lib/feedparser/tests/illformed/rdf_channel_empty_textinput.xml b/lib/feedparser/tests/illformed/rdf_channel_empty_textinput.xml deleted file mode 100644 index 7c09096d..00000000 --- a/lib/feedparser/tests/illformed/rdf_channel_empty_textinput.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - crashes here - - - - - - diff --git a/lib/feedparser/tests/illformed/rss_incomplete_cdata.xml b/lib/feedparser/tests/illformed/rss_incomplete_cdata.xml deleted file mode 100644 index 8fe311b9..00000000 --- a/lib/feedparser/tests/illformed/rss_incomplete_cdata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - -can feedparser read this xml -http://adcdefgh.com -feedparser goes into infinite loop while parsing this file -en-us -2005-10-28 -<![CD diff --git a/lib/feedparser/tests/illformed/undeclared_namespace.xml b/lib/feedparser/tests/illformed/undeclared_namespace.xml deleted file mode 100644 index cffe6f48..00000000 --- a/lib/feedparser/tests/illformed/undeclared_namespace.xml +++ /dev/null @@ -1,10 +0,0 @@ -<!-- -SkipUnless: __import__('sys').version.split()[0] >= '2.2.0' -Description: undeclared namespace -Expect: bozo ---> -<rss version="2.0"> -<channel> -<itunes:subtitle>Foo</itunes:subtitle> -</channel> -</rss> diff --git a/lib/feedparser/tests/microformats/hcard/2-4-2-vcard.xml b/lib/feedparser/tests/microformats/hcard/2-4-2-vcard.xml deleted file mode 100644 index 0e77f778..00000000 --- a/lib/feedparser/tests/microformats/hcard/2-4-2-vcard.xml +++ /dev/null @@ -1,23 +0,0 @@ -<!-- -SkipUnless: feedparser.BeautifulSoup -Description: 2.4.2 VCARD -Expect: not bozo and entries[0].vcard == u'BEGIN:vCard\nVERSION:3.0\nAGENT:BEGIN:vCard\\nVERSION:3.0\\nFN:Joe Friday\\nN:Friday\\;Joe\\nTEL\\;TYPE=voi\n ce:+1-919-555-7878\\nEMAIL\\;TYPE=internet:jfriday@host.com\\nTITLE:Area Admi\n nistrator\\, Assistant\\nEND:vCard\\n\nEND:vCard' ---> -<feed xmlns="http://www.w3.org/2005/Atom"> -<title>2.4.2 VCARD - - - -
-
-
- -
+1-919-555-7878
-
Area Administrator, Assistant
-
-
-

next

-
-
-
- \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-1-fn-unicode-char.xml b/lib/feedparser/tests/microformats/hcard/3-1-1-fn-unicode-char.xml deleted file mode 100644 index ffbd2853..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-1-fn-unicode-char.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - Tantek Çelik]]> - - - - diff --git a/lib/feedparser/tests/microformats/hcard/3-1-1-fn.xml b/lib/feedparser/tests/microformats/hcard/3-1-1-fn.xml deleted file mode 100644 index ded9a64b..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-1-fn.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.1.1 FN - - -
-
-Mr. John Q. Public, Esq. -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-2-n-2-plural.xml b/lib/feedparser/tests/microformats/hcard/3-1-2-n-2-plural.xml deleted file mode 100644 index 4ddbbcb5..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-2-n-2-plural.xml +++ /dev/null @@ -1,26 +0,0 @@ - - -3.1.2 N (example 2) - - -
-
- - Dr. - John - Philip - Paul - Stevenson, - Jr., - M.D., - A.C.P. - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-2-n-2-singular.xml b/lib/feedparser/tests/microformats/hcard/3-1-2-n-2-singular.xml deleted file mode 100644 index 07c7ebd0..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-2-n-2-singular.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -3.1.2 N (example 2) - - -
-
- - Dr. - John -
    -
  • Philip
  • -
  • Paul
  • -
- Stevenson, -
    -
  • Jr.
  • -
  • M.D.
  • -
  • A.C.P.
  • -
-
-
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-2-n-plural.xml b/lib/feedparser/tests/microformats/hcard/3-1-2-n-plural.xml deleted file mode 100644 index 69efcb18..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-2-n-plural.xml +++ /dev/null @@ -1,23 +0,0 @@ - - -3.1.2 N - - -
-
- - Mr. - John - Quinlan - Public, - Esq. - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-2-n-singular.xml b/lib/feedparser/tests/microformats/hcard/3-1-2-n-singular.xml deleted file mode 100644 index 5c4087d2..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-2-n-singular.xml +++ /dev/null @@ -1,23 +0,0 @@ - - -3.1.2 N - - -
-
- - Mr. - John - Quinlan - Public, - Esq. - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-3-nickname-2-plural.xml b/lib/feedparser/tests/microformats/hcard/3-1-3-nickname-2-plural.xml deleted file mode 100644 index d2423183..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-3-nickname-2-plural.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.1.3 NICKNAME (example 2, plural) - - -
-
-
  • Jim
  • Jimmie
-
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-3-nickname-2-singular.xml b/lib/feedparser/tests/microformats/hcard/3-1-3-nickname-2-singular.xml deleted file mode 100644 index 13cb9890..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-3-nickname-2-singular.xml +++ /dev/null @@ -1,18 +0,0 @@ - - -3.1.3 NICKNAME (example 2, singular) - - -
-
-Jim, -Jimmie -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-3-nickname.xml b/lib/feedparser/tests/microformats/hcard/3-1-3-nickname.xml deleted file mode 100644 index 84b7f1b6..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-3-nickname.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.1.3 NICKNAME - - -
-
-Robbie -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-4-photo-inline.xml b/lib/feedparser/tests/microformats/hcard/3-1-4-photo-inline.xml deleted file mode 100644 index 25e62beb..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-4-photo-inline.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.1.4 PHOTO inline - - -
-
- -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-4-photo.xml b/lib/feedparser/tests/microformats/hcard/3-1-4-photo.xml deleted file mode 100644 index 310284f1..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-4-photo.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.1.4 PHOTO - - -
-
- -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-5-bday-2.xml b/lib/feedparser/tests/microformats/hcard/3-1-5-bday-2.xml deleted file mode 100644 index f6b020d6..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-5-bday-2.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.1.5 BCARD (example 2) - - -
-
-Oct 15, 1993 -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-5-bday-3.xml b/lib/feedparser/tests/microformats/hcard/3-1-5-bday-3.xml deleted file mode 100644 index 3ff0eb3f..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-5-bday-3.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.1.5 BCARD (example 3) - - -
-
-Sept 9, 1987 -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-1-5-bday.xml b/lib/feedparser/tests/microformats/hcard/3-1-5-bday.xml deleted file mode 100644 index 08a2ff3d..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-1-5-bday.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.1.5 BCARD - - -
-
-April 15, 1996 -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-2-1-adr.xml b/lib/feedparser/tests/microformats/hcard/3-2-1-adr.xml deleted file mode 100644 index b9b37a00..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-2-1-adr.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -3.2.1 ADR - - -
-
-
- US - home address, for - mail and - shipments: -
123 Main Street
- Any Town, CA, - 91921-1234 -
-
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-2-2-label.xml b/lib/feedparser/tests/microformats/hcard/3-2-2-label.xml deleted file mode 100644 index 68624e07..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-2-2-label.xml +++ /dev/null @@ -1,30 +0,0 @@ - - -3.2.2 LABEL - - -
-
-Please use the following address label for -
- local delivery - to my home - of mail - and packages: -
-Mr.John Q. Public, Esq.
-Mail Drop: TNE QB
-123 Main Street
-Any Town, CA  91921-1234
-U.S.A.
-
-
-
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-3-1-tel.xml b/lib/feedparser/tests/microformats/hcard/3-3-1-tel.xml deleted file mode 100644 index 0c59d044..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-3-1-tel.xml +++ /dev/null @@ -1,23 +0,0 @@ - - -3.3.1 TEL - - -
-
- - my - work - phone, with - voicemail: - +1-213-555-1234 - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-3-2-email-2.xml b/lib/feedparser/tests/microformats/hcard/3-3-2-email-2.xml deleted file mode 100644 index 7a2093ec..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-3-2-email-2.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.3.2 EMAIL (example 2) - - -
- -
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-3-2-email-3.xml b/lib/feedparser/tests/microformats/hcard/3-3-2-email-3.xml deleted file mode 100644 index 6864e1e3..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-3-2-email-3.xml +++ /dev/null @@ -1,20 +0,0 @@ - - -3.3.2 EMAIL (example 3) - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-3-2-email.xml b/lib/feedparser/tests/microformats/hcard/3-3-2-email.xml deleted file mode 100644 index 6e2715e0..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-3-2-email.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.3.2 EMAIL - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-3-3-mailer.xml b/lib/feedparser/tests/microformats/hcard/3-3-3-mailer.xml deleted file mode 100644 index 0f71191d..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-3-3-mailer.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.3.3 MAILER - - -
-
-Jane Doe uses PigeonMail 2.1 for email. -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-4-1-tz-2.xml b/lib/feedparser/tests/microformats/hcard/3-4-1-tz-2.xml deleted file mode 100644 index 8ac53960..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-4-1-tz-2.xml +++ /dev/null @@ -1,20 +0,0 @@ - - -3.4.1 TZ (example 2) - - -
-
- - EST - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-4-1-tz.xml b/lib/feedparser/tests/microformats/hcard/3-4-1-tz.xml deleted file mode 100644 index 999a6025..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-4-1-tz.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.4.1 TZ - - -
-
--05:00 -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-4-2-geo.xml b/lib/feedparser/tests/microformats/hcard/3-4-2-geo.xml deleted file mode 100644 index b62cff56..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-4-2-geo.xml +++ /dev/null @@ -1,20 +0,0 @@ - - -3.4.2 GEO - - -
-
- - 37.386013, - -122.082932 - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-5-1-title.xml b/lib/feedparser/tests/microformats/hcard/3-5-1-title.xml deleted file mode 100644 index 2831831a..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-5-1-title.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.5.1 TITLE - - -
-
-Director, Research and Development -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-5-2-role.xml b/lib/feedparser/tests/microformats/hcard/3-5-2-role.xml deleted file mode 100644 index bc11530b..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-5-2-role.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.5.2 ROLE - - -
-
-Programmer -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-5-3-logo-2.xml b/lib/feedparser/tests/microformats/hcard/3-5-3-logo-2.xml deleted file mode 100644 index 4ad497a8..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-5-3-logo-2.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.5.3 LOGO (example 2) - - -
-
- -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-5-3-logo.xml b/lib/feedparser/tests/microformats/hcard/3-5-3-logo.xml deleted file mode 100644 index 6e5f7bd7..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-5-3-logo.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.5.3 LOGO - - -
-
- -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-5-4-agent-2.xml b/lib/feedparser/tests/microformats/hcard/3-5-4-agent-2.xml deleted file mode 100644 index 329eae1c..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-5-4-agent-2.xml +++ /dev/null @@ -1,20 +0,0 @@ - - -3.5.4 AGENT (example 2) - - -
-
- - , - +1-919-555-1234 - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-5-4-agent.xml b/lib/feedparser/tests/microformats/hcard/3-5-4-agent.xml deleted file mode 100644 index 8e53253c..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-5-4-agent.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.5.4 AGENT - - -
- -
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-5-5-org.xml b/lib/feedparser/tests/microformats/hcard/3-5-5-org.xml deleted file mode 100644 index 8f2d7b82..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-5-5-org.xml +++ /dev/null @@ -1,21 +0,0 @@ - - -3.5.5 ORG - - -
-
- - ABC, Inc., - North American Division, - Marketing, - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-1-categories-2-plural.xml b/lib/feedparser/tests/microformats/hcard/3-6-1-categories-2-plural.xml deleted file mode 100644 index 93908196..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-1-categories-2-plural.xml +++ /dev/null @@ -1,22 +0,0 @@ - - -3.6.1 CATEGORIES (example 2, plural) - - -
-
-
    -
  • INTERNET
  • -
  • IETF
  • -
  • INDUSTRY
  • -
  • INFORMATION TECHNOLOGY
  • -
-
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-1-categories-2-singular.xml b/lib/feedparser/tests/microformats/hcard/3-6-1-categories-2-singular.xml deleted file mode 100644 index fa2ac066..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-1-categories-2-singular.xml +++ /dev/null @@ -1,20 +0,0 @@ - - -3.6.1 CATEGORIES (example 2, singular) - - -
-
-INTERNET, -IETF, -INDUSTRY, -INFORMATION TECHNOLOGY -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-1-categories.xml b/lib/feedparser/tests/microformats/hcard/3-6-1-categories.xml deleted file mode 100644 index 68382508..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-1-categories.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.6.1 CATEGORIES - - -
-
-TRAVEL AGENT -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-2-note.xml b/lib/feedparser/tests/microformats/hcard/3-6-2-note.xml deleted file mode 100644 index 1f37e624..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-2-note.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.6.2 NOTE - - -
-
-

This fax number is operational 0800 to 1715 EST, Mon-Fri.

-
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-4-rev-2.xml b/lib/feedparser/tests/microformats/hcard/3-6-4-rev-2.xml deleted file mode 100644 index 24fb0397..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-4-rev-2.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.6.4 REV (example 2) - - -
-
-Updated: November 15 -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-4-rev.xml b/lib/feedparser/tests/microformats/hcard/3-6-4-rev.xml deleted file mode 100644 index bd6daf93..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-4-rev.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.6.4 REV - - -
-
-Updated: 10/31 10:27p -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-2.xml b/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-2.xml deleted file mode 100644 index ca80cd86..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-2.xml +++ /dev/null @@ -1,21 +0,0 @@ - - -3.6.5 SORT-STRING (example 2) - - -
-
- - Robert - Pau - Shou Chang - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-3.xml b/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-3.xml deleted file mode 100644 index 72e36ee9..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-3.xml +++ /dev/null @@ -1,19 +0,0 @@ - - -3.6.5 SORT-STRING (example 3) - - -
-
- - Osamu Koura - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-4.xml b/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-4.xml deleted file mode 100644 index 00857ff7..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-4.xml +++ /dev/null @@ -1,25 +0,0 @@ - - -3.6.5 SORT-STRING (example 4) - - -
-
- - - Oscar - del Pozo - - - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-5.xml b/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-5.xml deleted file mode 100644 index 715e4100..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string-5.xml +++ /dev/null @@ -1,19 +0,0 @@ - - -3.6.5 SORT-STRING (example 5) - - -
-
- - Christine d'Aboville - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string.xml b/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string.xml deleted file mode 100644 index a5ee5c16..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-5-sort-string.xml +++ /dev/null @@ -1,27 +0,0 @@ - - -3.6.5 SORT-STRING - - -
-
- - Sir - - Rene - - van der Harten - - - (J.), - R.D.O.N. - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-6-sound-2.xml b/lib/feedparser/tests/microformats/hcard/3-6-6-sound-2.xml deleted file mode 100644 index 29e138de..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-6-sound-2.xml +++ /dev/null @@ -1,20 +0,0 @@ - - -3.6.6 SOUND (example 2) - - -
-
- -pronounciation - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-6-sound.xml b/lib/feedparser/tests/microformats/hcard/3-6-6-sound.xml deleted file mode 100644 index 4c130bee..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-6-sound.xml +++ /dev/null @@ -1,20 +0,0 @@ - - -3.6.6 SOUND - - -
-
- -pronounciation of "JOHN Q PUBLIC" - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-7-uid.xml b/lib/feedparser/tests/microformats/hcard/3-6-7-uid.xml deleted file mode 100644 index da10a9d1..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-7-uid.xml +++ /dev/null @@ -1,18 +0,0 @@ - - -3.6.7 UID - - -
-
-Unique id: - 19950401-080045-40000F192713-0052 -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-6-8-url.xml b/lib/feedparser/tests/microformats/hcard/3-6-8-url.xml deleted file mode 100644 index dc1a1c6e..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-6-8-url.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.6.8 URL - - -
- -
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-7-1-class-2.xml b/lib/feedparser/tests/microformats/hcard/3-7-1-class-2.xml deleted file mode 100644 index 2ddcfa2d..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-7-1-class-2.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.7.1 CLASS (example 2) - - -
-
-PRIVATE -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-7-1-class-3.xml b/lib/feedparser/tests/microformats/hcard/3-7-1-class-3.xml deleted file mode 100644 index 3be1a889..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-7-1-class-3.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.7.1 CLASS (example 3) - - -
-
-CONFIDENTIAL -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-7-1-class.xml b/lib/feedparser/tests/microformats/hcard/3-7-1-class.xml deleted file mode 100644 index 795de978..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-7-1-class.xml +++ /dev/null @@ -1,17 +0,0 @@ - - -3.7.1 CLASS - - -
-
-PUBLIC -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/3-7-2-key.xml b/lib/feedparser/tests/microformats/hcard/3-7-2-key.xml deleted file mode 100644 index c0fc56f8..00000000 --- a/lib/feedparser/tests/microformats/hcard/3-7-2-key.xml +++ /dev/null @@ -1,20 +0,0 @@ - - -3.7.2 KEY - - -
-
- -Key - -
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/hcard/7-authors.xml b/lib/feedparser/tests/microformats/hcard/7-authors.xml deleted file mode 100644 index 5c134fe1..00000000 --- a/lib/feedparser/tests/microformats/hcard/7-authors.xml +++ /dev/null @@ -1,64 +0,0 @@ - - -7. Authors - - -
-
-Frank Dawson -
Lotus Development Corporation
-
- work address -(mail and - packages): -
6544 Battleford Drive
- Raleigh - NC - 27613-3502 -
U.S.A.
-
-
- +1-919-676-9515 -(w, - vm) -
-
- +1-919-676-9564 -(wf) -
-, - -
-
- -
Netscape Communications Corp.
-
- work address: -
501 E. Middlefield Rd.
- Mountain View, - CA - 94043 -
U.S.A.
-
-
- +1-415-937-3419 -(w, - vm) -
-
- +1-415-528-4164 -(wf) -
-
-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href.xml deleted file mode 100644 index bc86bacf..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_avi.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_avi.xml deleted file mode 100644 index 02ba14fb..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_avi.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_bin.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_bin.xml deleted file mode 100644 index 069e3abb..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_bin.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_bz2.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_bz2.xml deleted file mode 100644 index ad3e8721..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_bz2.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_deb.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_deb.xml deleted file mode 100644 index 602638ea..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_deb.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_dmg.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_dmg.xml deleted file mode 100644 index d0e74b20..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_dmg.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_exe.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_exe.xml deleted file mode 100644 index 73fd39f2..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_exe.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_gz.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_gz.xml deleted file mode 100644 index 9c95cdb8..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_gz.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_hqx.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_hqx.xml deleted file mode 100644 index 4047a729..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_hqx.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_img.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_img.xml deleted file mode 100644 index 322125ea..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_img.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_iso.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_iso.xml deleted file mode 100644 index 683add44..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_iso.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_jar.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_jar.xml deleted file mode 100644 index e39f8325..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_jar.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_m4a.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_m4a.xml deleted file mode 100644 index 84fc7782..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_m4a.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_m4v.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_m4v.xml deleted file mode 100644 index b3dcd909..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_m4v.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp2.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp2.xml deleted file mode 100644 index 3d3c6c70..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp2.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp3.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp3.xml deleted file mode 100644 index c67a4143..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp3.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp4.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp4.xml deleted file mode 100644 index e10bb622..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_mp4.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_msi.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_msi.xml deleted file mode 100644 index fcf83d2c..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_msi.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_ogg.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_ogg.xml deleted file mode 100644 index 4547dda0..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_ogg.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_rar.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_rar.xml deleted file mode 100644 index 81a56ee0..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_rar.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_rpm.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_rpm.xml deleted file mode 100644 index e635cf24..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_rpm.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_sit.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_sit.xml deleted file mode 100644 index fb3845a7..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_sit.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_sitx.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_sitx.xml deleted file mode 100644 index 5ac2cb29..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_sitx.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tar.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tar.xml deleted file mode 100644 index 1ad3e78e..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tar.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tbz2.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tbz2.xml deleted file mode 100644 index c53147bd..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tbz2.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tgz.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tgz.xml deleted file mode 100644 index 676fb48a..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_tgz.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_wma.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_wma.xml deleted file mode 100644 index 626d6ba4..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_wma.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_wmv.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_wmv.xml deleted file mode 100644 index 4f1931b2..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_wmv.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_z.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_z.xml deleted file mode 100644 index ed2bc37a..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_z.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_zip.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_zip.xml deleted file mode 100644 index ba6759c2..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_ext_zip.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_application_ogg.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_application_ogg.xml deleted file mode 100644 index 1ccbe63a..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_application_ogg.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_audio.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_audio.xml deleted file mode 100644 index 908e9016..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_audio.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_video.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_video.xml deleted file mode 100644 index 6ac97479..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_autodetect_by_type_video.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_invalid.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_invalid.xml deleted file mode 100644 index 0cf5716f..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_href_invalid.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_no_autodetect.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_no_autodetect.xml deleted file mode 100644 index 18a5fd46..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_no_autodetect.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_no_autodetect_xml.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_no_autodetect_xml.xml deleted file mode 100644 index b5d2d3a7..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_no_autodetect_xml.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_title.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_title.xml deleted file mode 100644 index ba812b5c..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_title.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - -
-

-
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_title_from_link_text.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_title_from_link_text.xml deleted file mode 100644 index b69d85e7..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_title_from_link_text.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_title_overrides_link_text.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_title_overrides_link_text.xml deleted file mode 100644 index 79c2a713..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_title_overrides_link_text.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_type.xml b/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_type.xml deleted file mode 100644 index bc6ced7e..00000000 --- a/lib/feedparser/tests/microformats/rel_enclosure/rel_enclosure_type.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_tag/rel_tag_duplicate.xml b/lib/feedparser/tests/microformats/rel_tag/rel_tag_duplicate.xml deleted file mode 100644 index 62ae4950..00000000 --- a/lib/feedparser/tests/microformats/rel_tag/rel_tag_duplicate.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_tag/rel_tag_label.xml b/lib/feedparser/tests/microformats/rel_tag/rel_tag_label.xml deleted file mode 100644 index 81aacadb..00000000 --- a/lib/feedparser/tests/microformats/rel_tag/rel_tag_label.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_tag/rel_tag_scheme.xml b/lib/feedparser/tests/microformats/rel_tag/rel_tag_scheme.xml deleted file mode 100644 index 50a115e2..00000000 --- a/lib/feedparser/tests/microformats/rel_tag/rel_tag_scheme.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_tag/rel_tag_term.xml b/lib/feedparser/tests/microformats/rel_tag/rel_tag_term.xml deleted file mode 100644 index c7876530..00000000 --- a/lib/feedparser/tests/microformats/rel_tag/rel_tag_term.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/rel_tag/rel_tag_term_trailing_slash.xml b/lib/feedparser/tests/microformats/rel_tag/rel_tag_term_trailing_slash.xml deleted file mode 100644 index 56f75e2b..00000000 --- a/lib/feedparser/tests/microformats/rel_tag/rel_tag_term_trailing_slash.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_acquaintance.xml b/lib/feedparser/tests/microformats/xfn/xfn_acquaintance.xml deleted file mode 100644 index aef6e376..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_acquaintance.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_brother.xml b/lib/feedparser/tests/microformats/xfn/xfn_brother.xml deleted file mode 100644 index eb201bf0..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_brother.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_child.xml b/lib/feedparser/tests/microformats/xfn/xfn_child.xml deleted file mode 100644 index 507d91bb..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_child.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_co-resident.xml b/lib/feedparser/tests/microformats/xfn/xfn_co-resident.xml deleted file mode 100644 index 10267a9a..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_co-resident.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_co-worker.xml b/lib/feedparser/tests/microformats/xfn/xfn_co-worker.xml deleted file mode 100644 index c385aeec..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_co-worker.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_colleague.xml b/lib/feedparser/tests/microformats/xfn/xfn_colleague.xml deleted file mode 100644 index 9a8ca3b1..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_colleague.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_contact.xml b/lib/feedparser/tests/microformats/xfn/xfn_contact.xml deleted file mode 100644 index 8ba482e6..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_contact.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_coresident.xml b/lib/feedparser/tests/microformats/xfn/xfn_coresident.xml deleted file mode 100644 index 64ecec5e..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_coresident.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_coworker.xml b/lib/feedparser/tests/microformats/xfn/xfn_coworker.xml deleted file mode 100644 index 9217d400..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_coworker.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_crush.xml b/lib/feedparser/tests/microformats/xfn/xfn_crush.xml deleted file mode 100644 index f5675382..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_crush.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_date.xml b/lib/feedparser/tests/microformats/xfn/xfn_date.xml deleted file mode 100644 index 10487650..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_date.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_friend.xml b/lib/feedparser/tests/microformats/xfn/xfn_friend.xml deleted file mode 100644 index b70aa2a3..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_friend.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_href.xml b/lib/feedparser/tests/microformats/xfn/xfn_href.xml deleted file mode 100644 index e05a6591..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_href.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_husband.xml b/lib/feedparser/tests/microformats/xfn/xfn_husband.xml deleted file mode 100644 index e68275bc..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_husband.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_kin.xml b/lib/feedparser/tests/microformats/xfn/xfn_kin.xml deleted file mode 100644 index 1d07e079..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_kin.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_me.xml b/lib/feedparser/tests/microformats/xfn/xfn_me.xml deleted file mode 100644 index cffd9fde..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_me.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_met.xml b/lib/feedparser/tests/microformats/xfn/xfn_met.xml deleted file mode 100644 index f8df859e..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_met.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_multiple.xml b/lib/feedparser/tests/microformats/xfn/xfn_multiple.xml deleted file mode 100644 index 9574495d..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_multiple.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_muse.xml b/lib/feedparser/tests/microformats/xfn/xfn_muse.xml deleted file mode 100644 index 7832f542..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_muse.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_name.xml b/lib/feedparser/tests/microformats/xfn/xfn_name.xml deleted file mode 100644 index cd1e9c37..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_name.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_neighbor.xml b/lib/feedparser/tests/microformats/xfn/xfn_neighbor.xml deleted file mode 100644 index 6b1b1aae..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_neighbor.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_parent.xml b/lib/feedparser/tests/microformats/xfn/xfn_parent.xml deleted file mode 100644 index 13739d32..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_parent.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_relative.xml b/lib/feedparser/tests/microformats/xfn/xfn_relative.xml deleted file mode 100644 index 06e5e371..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_relative.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_sibling.xml b/lib/feedparser/tests/microformats/xfn/xfn_sibling.xml deleted file mode 100644 index 7c12ed3c..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_sibling.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_sister.xml b/lib/feedparser/tests/microformats/xfn/xfn_sister.xml deleted file mode 100644 index 411ac983..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_sister.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_spouse.xml b/lib/feedparser/tests/microformats/xfn/xfn_spouse.xml deleted file mode 100644 index 157f26a5..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_spouse.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_sweetheart.xml b/lib/feedparser/tests/microformats/xfn/xfn_sweetheart.xml deleted file mode 100644 index 42715612..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_sweetheart.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/microformats/xfn/xfn_wife.xml b/lib/feedparser/tests/microformats/xfn/xfn_wife.xml deleted file mode 100644 index 529b7af9..00000000 --- a/lib/feedparser/tests/microformats/xfn/xfn_wife.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/lib/feedparser/tests/wellformed/amp/amp01.xml b/lib/feedparser/tests/wellformed/amp/amp01.xml deleted file mode 100644 index 3ca45835..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp01.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - &#38; - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp02.xml b/lib/feedparser/tests/wellformed/amp/amp02.xml deleted file mode 100644 index 86e049f5..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp02.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - &#x26; - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp03.xml b/lib/feedparser/tests/wellformed/amp/amp03.xml deleted file mode 100644 index 8fe78301..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp03.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - & - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp04.xml b/lib/feedparser/tests/wellformed/amp/amp04.xml deleted file mode 100644 index 7df221df..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp04.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - &amp; - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp05.xml b/lib/feedparser/tests/wellformed/amp/amp05.xml deleted file mode 100644 index 4a8a46e3..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp05.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - &#38; - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp06.xml b/lib/feedparser/tests/wellformed/amp/amp06.xml deleted file mode 100644 index 5a59cd4d..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp06.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - &#x26; - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp07.xml b/lib/feedparser/tests/wellformed/amp/amp07.xml deleted file mode 100644 index a324d4ba..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp07.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - & - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp08.xml b/lib/feedparser/tests/wellformed/amp/amp08.xml deleted file mode 100644 index 42ac2c70..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp08.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - &amp; - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp09.xml b/lib/feedparser/tests/wellformed/amp/amp09.xml deleted file mode 100644 index b634a90f..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp09.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - &#38; - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp10.xml b/lib/feedparser/tests/wellformed/amp/amp10.xml deleted file mode 100644 index 87a050c5..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp10.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - &#x26; - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp11.xml b/lib/feedparser/tests/wellformed/amp/amp11.xml deleted file mode 100644 index 2b8d5744..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp11.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - & - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp12.xml b/lib/feedparser/tests/wellformed/amp/amp12.xml deleted file mode 100644 index ff9622c7..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp12.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - &amp; - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp13.xml b/lib/feedparser/tests/wellformed/amp/amp13.xml deleted file mode 100644 index 486ce485..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp13.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#38;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp14.xml b/lib/feedparser/tests/wellformed/amp/amp14.xml deleted file mode 100644 index fc60ae17..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp14.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#x26;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp15.xml b/lib/feedparser/tests/wellformed/amp/amp15.xml deleted file mode 100644 index f2fecbdd..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp15.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&amp;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp16.xml b/lib/feedparser/tests/wellformed/amp/amp16.xml deleted file mode 100644 index 92ab7e45..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp16.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#38;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp17.xml b/lib/feedparser/tests/wellformed/amp/amp17.xml deleted file mode 100644 index 1a4f2fa0..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp17.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#x26;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp18.xml b/lib/feedparser/tests/wellformed/amp/amp18.xml deleted file mode 100644 index dda68b05..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp18.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&amp;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp19.xml b/lib/feedparser/tests/wellformed/amp/amp19.xml deleted file mode 100644 index 168e7446..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp19.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#38;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp20.xml b/lib/feedparser/tests/wellformed/amp/amp20.xml deleted file mode 100644 index d105aba1..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp20.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#x26;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp21.xml b/lib/feedparser/tests/wellformed/amp/amp21.xml deleted file mode 100644 index 15b987d8..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp21.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&amp;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp22.xml b/lib/feedparser/tests/wellformed/amp/amp22.xml deleted file mode 100644 index a54b0aa6..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp22.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#38;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp23.xml b/lib/feedparser/tests/wellformed/amp/amp23.xml deleted file mode 100644 index c4b09b53..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp23.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#x26;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp24.xml b/lib/feedparser/tests/wellformed/amp/amp24.xml deleted file mode 100644 index 8ff8f50b..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp24.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&amp;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp25.xml b/lib/feedparser/tests/wellformed/amp/amp25.xml deleted file mode 100644 index edac63bc..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp25.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#38;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp26.xml b/lib/feedparser/tests/wellformed/amp/amp26.xml deleted file mode 100644 index 0b0752fa..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp26.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#x26;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp27.xml b/lib/feedparser/tests/wellformed/amp/amp27.xml deleted file mode 100644 index 9c9419d1..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp27.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&amp;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp28.xml b/lib/feedparser/tests/wellformed/amp/amp28.xml deleted file mode 100644 index 8d6da530..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp28.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#38;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp29.xml b/lib/feedparser/tests/wellformed/amp/amp29.xml deleted file mode 100644 index 7baae50b..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp29.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&#x26;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp30.xml b/lib/feedparser/tests/wellformed/amp/amp30.xml deleted file mode 100644 index 5f6399c8..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp30.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <b>&amp;</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp31.xml b/lib/feedparser/tests/wellformed/amp/amp31.xml deleted file mode 100644 index 47b445ed..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp31.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#38;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp32.xml b/lib/feedparser/tests/wellformed/amp/amp32.xml deleted file mode 100644 index ac95fffd..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp32.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#x26;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp33.xml b/lib/feedparser/tests/wellformed/amp/amp33.xml deleted file mode 100644 index 442c79e0..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp33.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&amp;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp34.xml b/lib/feedparser/tests/wellformed/amp/amp34.xml deleted file mode 100644 index fd69c680..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp34.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#38;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp35.xml b/lib/feedparser/tests/wellformed/amp/amp35.xml deleted file mode 100644 index d2e6c604..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp35.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#x26;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp36.xml b/lib/feedparser/tests/wellformed/amp/amp36.xml deleted file mode 100644 index 545f4ddd..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp36.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&amp;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp37.xml b/lib/feedparser/tests/wellformed/amp/amp37.xml deleted file mode 100644 index 5ed3590d..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp37.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#38;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp38.xml b/lib/feedparser/tests/wellformed/amp/amp38.xml deleted file mode 100644 index c4710040..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp38.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#x26;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp39.xml b/lib/feedparser/tests/wellformed/amp/amp39.xml deleted file mode 100644 index 2d3a3d2b..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp39.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&amp;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp40.xml b/lib/feedparser/tests/wellformed/amp/amp40.xml deleted file mode 100644 index ddf24f36..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp40.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#38;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp41.xml b/lib/feedparser/tests/wellformed/amp/amp41.xml deleted file mode 100644 index 18f570e8..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp41.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#x26;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp42.xml b/lib/feedparser/tests/wellformed/amp/amp42.xml deleted file mode 100644 index 3857d607..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp42.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&amp;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp43.xml b/lib/feedparser/tests/wellformed/amp/amp43.xml deleted file mode 100644 index e5e35cf7..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp43.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#38;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp44.xml b/lib/feedparser/tests/wellformed/amp/amp44.xml deleted file mode 100644 index 290c3335..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp44.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#x26;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp45.xml b/lib/feedparser/tests/wellformed/amp/amp45.xml deleted file mode 100644 index ecba32b0..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp45.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&amp;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp46.xml b/lib/feedparser/tests/wellformed/amp/amp46.xml deleted file mode 100644 index 32b2f633..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp46.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#38;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp47.xml b/lib/feedparser/tests/wellformed/amp/amp47.xml deleted file mode 100644 index 9e81f91f..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp47.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&#x26;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp48.xml b/lib/feedparser/tests/wellformed/amp/amp48.xml deleted file mode 100644 index 3c0c26ea..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp48.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <strong>&amp;</strong> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp49.xml b/lib/feedparser/tests/wellformed/amp/amp49.xml deleted file mode 100644 index 102f803a..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp49.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[&]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp50.xml b/lib/feedparser/tests/wellformed/amp/amp50.xml deleted file mode 100644 index 3f1ae00c..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp50.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[&]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp51.xml b/lib/feedparser/tests/wellformed/amp/amp51.xml deleted file mode 100644 index a5644ff1..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp51.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[&]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp52.xml b/lib/feedparser/tests/wellformed/amp/amp52.xml deleted file mode 100644 index b6e89c26..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp52.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[&]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp53.xml b/lib/feedparser/tests/wellformed/amp/amp53.xml deleted file mode 100644 index 0556638d..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp53.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[<b>&</b>]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp54.xml b/lib/feedparser/tests/wellformed/amp/amp54.xml deleted file mode 100644 index 69dbde91..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp54.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[<b>&</b>]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp55.xml b/lib/feedparser/tests/wellformed/amp/amp55.xml deleted file mode 100644 index 3173c775..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp55.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[<b>&</b>]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp56.xml b/lib/feedparser/tests/wellformed/amp/amp56.xml deleted file mode 100644 index c577628b..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp56.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[<strong>&</strong>]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp57.xml b/lib/feedparser/tests/wellformed/amp/amp57.xml deleted file mode 100644 index 7abad46b..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp57.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[<strong>&</strong>]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp58.xml b/lib/feedparser/tests/wellformed/amp/amp58.xml deleted file mode 100644 index a204980d..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp58.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <![CDATA[<strong>&</strong>]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp59.xml b/lib/feedparser/tests/wellformed/amp/amp59.xml deleted file mode 100644 index 708471ad..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp59.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml"><b>&</b></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp60.xml b/lib/feedparser/tests/wellformed/amp/amp60.xml deleted file mode 100644 index baac7d49..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp60.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml"><b>&</b></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp61.xml b/lib/feedparser/tests/wellformed/amp/amp61.xml deleted file mode 100644 index c77686f6..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp61.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml"><b>&</b></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp62.xml b/lib/feedparser/tests/wellformed/amp/amp62.xml deleted file mode 100644 index 4016635e..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp62.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml"><strong>&</strong></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp63.xml b/lib/feedparser/tests/wellformed/amp/amp63.xml deleted file mode 100644 index 29eb5266..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp63.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml"><strong>&</strong></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/amp64.xml b/lib/feedparser/tests/wellformed/amp/amp64.xml deleted file mode 100644 index b26a921e..00000000 --- a/lib/feedparser/tests/wellformed/amp/amp64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml"><strong>&</strong></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/amp/attr01.xml b/lib/feedparser/tests/wellformed/amp/attr01.xml deleted file mode 100644 index 1f3cdbc4..00000000 --- a/lib/feedparser/tests/wellformed/amp/attr01.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <a title="&#38;">&#38;</a> - - diff --git a/lib/feedparser/tests/wellformed/amp/attr02.xml b/lib/feedparser/tests/wellformed/amp/attr02.xml deleted file mode 100644 index 8086e7b0..00000000 --- a/lib/feedparser/tests/wellformed/amp/attr02.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <a title="&amp;">&amp;</a> - - diff --git a/lib/feedparser/tests/wellformed/amp/attr03.xml b/lib/feedparser/tests/wellformed/amp/attr03.xml deleted file mode 100644 index 33d79f94..00000000 --- a/lib/feedparser/tests/wellformed/amp/attr03.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <a title="&#x26;">&#x26;</a> - - diff --git a/lib/feedparser/tests/wellformed/amp/attr04.xml b/lib/feedparser/tests/wellformed/amp/attr04.xml deleted file mode 100644 index a4be1219..00000000 --- a/lib/feedparser/tests/wellformed/amp/attr04.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml"><a title="&">&</a></div> - - diff --git a/lib/feedparser/tests/wellformed/amp/attr05.xml b/lib/feedparser/tests/wellformed/amp/attr05.xml deleted file mode 100644 index 3457934b..00000000 --- a/lib/feedparser/tests/wellformed/amp/attr05.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml"><a title="&">&</a></div> - - diff --git a/lib/feedparser/tests/wellformed/amp/attr06.xml b/lib/feedparser/tests/wellformed/amp/attr06.xml deleted file mode 100644 index b01196e7..00000000 --- a/lib/feedparser/tests/wellformed/amp/attr06.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml"><a title="&">&</a></div> - - diff --git a/lib/feedparser/tests/wellformed/atom/atom_namespace_1.xml b/lib/feedparser/tests/wellformed/atom/atom_namespace_1.xml deleted file mode 100644 index 96a90ce6..00000000 --- a/lib/feedparser/tests/wellformed/atom/atom_namespace_1.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/atom_namespace_2.xml b/lib/feedparser/tests/wellformed/atom/atom_namespace_2.xml deleted file mode 100644 index 90cc0d3b..00000000 --- a/lib/feedparser/tests/wellformed/atom/atom_namespace_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/atom_namespace_3.xml b/lib/feedparser/tests/wellformed/atom/atom_namespace_3.xml deleted file mode 100644 index d866205d..00000000 --- a/lib/feedparser/tests/wellformed/atom/atom_namespace_3.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/atom_namespace_4.xml b/lib/feedparser/tests/wellformed/atom/atom_namespace_4.xml deleted file mode 100644 index a805d978..00000000 --- a/lib/feedparser/tests/wellformed/atom/atom_namespace_4.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/atom_namespace_5.xml b/lib/feedparser/tests/wellformed/atom/atom_namespace_5.xml deleted file mode 100644 index 0e6fa46e..00000000 --- a/lib/feedparser/tests/wellformed/atom/atom_namespace_5.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_author_email.xml b/lib/feedparser/tests/wellformed/atom/entry_author_email.xml deleted file mode 100644 index 8210f4ca..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_author_email.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_author_homepage.xml b/lib/feedparser/tests/wellformed/atom/entry_author_homepage.xml deleted file mode 100644 index 21fdcae7..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_author_homepage.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_author_map_author.xml b/lib/feedparser/tests/wellformed/atom/entry_author_map_author.xml deleted file mode 100644 index dfb004dc..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_author_map_author.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_author_map_author_2.xml b/lib/feedparser/tests/wellformed/atom/entry_author_map_author_2.xml deleted file mode 100644 index bcd47e77..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_author_map_author_2.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - Example author - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_author_name.xml b/lib/feedparser/tests/wellformed/atom/entry_author_name.xml deleted file mode 100644 index 6b302b01..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_author_name.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_author_uri.xml b/lib/feedparser/tests/wellformed/atom/entry_author_uri.xml deleted file mode 100644 index 65398084..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_author_uri.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_author_url.xml b/lib/feedparser/tests/wellformed/atom/entry_author_url.xml deleted file mode 100644 index 7192d04a..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_author_url.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_content_mode_base64.xml b/lib/feedparser/tests/wellformed/atom/entry_content_mode_base64.xml deleted file mode 100644 index 91818ba7..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_content_mode_base64.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_content_mode_escaped.xml b/lib/feedparser/tests/wellformed/atom/entry_content_mode_escaped.xml deleted file mode 100644 index 67da8383..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_content_mode_escaped.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_content_type.xml b/lib/feedparser/tests/wellformed/atom/entry_content_type.xml deleted file mode 100644 index fd556e88..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_content_type.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_content_type_text_plain.xml b/lib/feedparser/tests/wellformed/atom/entry_content_type_text_plain.xml deleted file mode 100644 index 656dbd45..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_content_type_text_plain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_content_value.xml b/lib/feedparser/tests/wellformed/atom/entry_content_value.xml deleted file mode 100644 index 6da460d0..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_content_value.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_contributor_email.xml b/lib/feedparser/tests/wellformed/atom/entry_contributor_email.xml deleted file mode 100644 index f51fc17a..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_contributor_email.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example contributor - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_contributor_homepage.xml b/lib/feedparser/tests/wellformed/atom/entry_contributor_homepage.xml deleted file mode 100644 index f5a398d1..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_contributor_homepage.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example contributor - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_contributor_multiple.xml b/lib/feedparser/tests/wellformed/atom/entry_contributor_multiple.xml deleted file mode 100644 index c58cd916..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_contributor_multiple.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Contributor 1 - me@example.com - http://example.com/ - - - Contributor 2 - you@example.com - http://two.example.com/ - - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_contributor_name.xml b/lib/feedparser/tests/wellformed/atom/entry_contributor_name.xml deleted file mode 100644 index 1b82beeb..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_contributor_name.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example contributor - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_contributor_uri.xml b/lib/feedparser/tests/wellformed/atom/entry_contributor_uri.xml deleted file mode 100644 index a37f5773..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_contributor_uri.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example contributor - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_contributor_url.xml b/lib/feedparser/tests/wellformed/atom/entry_contributor_url.xml deleted file mode 100644 index 61851190..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_contributor_url.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example contributor - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_created.xml b/lib/feedparser/tests/wellformed/atom/entry_created.xml deleted file mode 100644 index 3175de02..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_created.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Thu, 01 Jan 2004 19:48:21 GMT - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_created_multiple_values.xml b/lib/feedparser/tests/wellformed/atom/entry_created_multiple_values.xml deleted file mode 100644 index 95688edd..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_created_multiple_values.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -2010-12-01T10:14:55Z -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_created_parsed.xml b/lib/feedparser/tests/wellformed/atom/entry_created_parsed.xml deleted file mode 100644 index e7f9e9c3..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_created_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_id.xml b/lib/feedparser/tests/wellformed/atom/entry_id.xml deleted file mode 100644 index 827ca379..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_id.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_id_map_guid.xml b/lib/feedparser/tests/wellformed/atom/entry_id_map_guid.xml deleted file mode 100644 index bc2dfb10..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_id_map_guid.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_issued.xml b/lib/feedparser/tests/wellformed/atom/entry_issued.xml deleted file mode 100644 index fdc50814..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_issued.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Thu, 01 Jan 2004 19:48:21 GMT - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_issued_parsed.xml b/lib/feedparser/tests/wellformed/atom/entry_issued_parsed.xml deleted file mode 100644 index 5cf27298..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_issued_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_link_alternate_map_link.xml b/lib/feedparser/tests/wellformed/atom/entry_link_alternate_map_link.xml deleted file mode 100644 index d618df92..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_link_alternate_map_link.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_link_alternate_map_link_2.xml b/lib/feedparser/tests/wellformed/atom/entry_link_alternate_map_link_2.xml deleted file mode 100644 index 11e03b46..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_link_alternate_map_link_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_link_href.xml b/lib/feedparser/tests/wellformed/atom/entry_link_href.xml deleted file mode 100644 index 2be6dc7f..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_link_href.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_link_multiple.xml b/lib/feedparser/tests/wellformed/atom/entry_link_multiple.xml deleted file mode 100644 index 9d7228ce..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_link_multiple.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_link_rel.xml b/lib/feedparser/tests/wellformed/atom/entry_link_rel.xml deleted file mode 100644 index db5d78a2..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_link_rel.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_link_title.xml b/lib/feedparser/tests/wellformed/atom/entry_link_title.xml deleted file mode 100644 index 4d71c057..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_link_title.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_link_type.xml b/lib/feedparser/tests/wellformed/atom/entry_link_type.xml deleted file mode 100644 index 8dbe4955..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_link_type.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_modified.xml b/lib/feedparser/tests/wellformed/atom/entry_modified.xml deleted file mode 100644 index 7bf362cc..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_modified.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Thu, 01 Jan 2004 19:48:21 GMT - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_modified_map_updated_parsed.xml b/lib/feedparser/tests/wellformed/atom/entry_modified_map_updated_parsed.xml deleted file mode 100644 index 0eaa5c10..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_modified_map_updated_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Thu, 01 Jan 2004 19:48:21 GMT - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_published_parsed.xml b/lib/feedparser/tests/wellformed/atom/entry_published_parsed.xml deleted file mode 100644 index 6c0c0505..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_published_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_published_parsed_date_overwriting.xml b/lib/feedparser/tests/wellformed/atom/entry_published_parsed_date_overwriting.xml deleted file mode 100644 index bd30e91a..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_published_parsed_date_overwriting.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -Thu, 01 Jan 2004 19:48:21 GMT -Sat, 01 Jan 2010 19:48:21 GMT - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_source_updated_parsed.xml b/lib/feedparser/tests/wellformed/atom/entry_source_updated_parsed.xml deleted file mode 100644 index d518d3df..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_source_updated_parsed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -2003-12-31T10:14:55Z - - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary.xml b/lib/feedparser/tests/wellformed/atom/entry_summary.xml deleted file mode 100644 index e12454b1..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_base64.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_base64.xml deleted file mode 100644 index 9c34f577..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_base64.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_base64_2.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_base64_2.xml deleted file mode 100644 index bfcd1836..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_base64_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_content_mode_base64.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_content_mode_base64.xml deleted file mode 100644 index 282cff83..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_content_mode_base64.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_content_mode_escaped.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_content_mode_escaped.xml deleted file mode 100644 index 1be7ac65..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_content_mode_escaped.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_content_type.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_content_type.xml deleted file mode 100644 index f20078f7..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_content_type.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_content_type_text_plain.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_content_type_text_plain.xml deleted file mode 100644 index 704d21b6..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_content_type_text_plain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_content_value.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_content_value.xml deleted file mode 100644 index bbb74f71..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_content_value.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_escaped_markup.xml deleted file mode 100644 index fa1cd246..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_escaped_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_inline_markup.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_inline_markup.xml deleted file mode 100644 index be60d2c1..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_inline_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example Atom
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_inline_markup_2.xml deleted file mode 100644 index fbd4dd80..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_inline_markup_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
History of the <blink> tag
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_naked_markup.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_naked_markup.xml deleted file mode 100644 index d5926a7b..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_naked_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_summary_text_plain.xml b/lib/feedparser/tests/wellformed/atom/entry_summary_text_plain.xml deleted file mode 100644 index 3839a854..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_summary_text_plain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title.xml b/lib/feedparser/tests/wellformed/atom/entry_title.xml deleted file mode 100644 index 1dd56fcd..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_base64.xml b/lib/feedparser/tests/wellformed/atom/entry_title_base64.xml deleted file mode 100644 index 85ac6caa..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_base64.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_base64_2.xml b/lib/feedparser/tests/wellformed/atom/entry_title_base64_2.xml deleted file mode 100644 index 330d3873..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_base64_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_content_mode_base64.xml b/lib/feedparser/tests/wellformed/atom/entry_title_content_mode_base64.xml deleted file mode 100644 index fc9893de..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_content_mode_base64.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_content_mode_escaped.xml b/lib/feedparser/tests/wellformed/atom/entry_title_content_mode_escaped.xml deleted file mode 100644 index eb6dd1bf..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_content_mode_escaped.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_content_type.xml b/lib/feedparser/tests/wellformed/atom/entry_title_content_type.xml deleted file mode 100644 index c14ef5a7..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_content_type.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_content_type_text_plain.xml b/lib/feedparser/tests/wellformed/atom/entry_title_content_type_text_plain.xml deleted file mode 100644 index bb0a1dce..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_content_type_text_plain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_content_value.xml b/lib/feedparser/tests/wellformed/atom/entry_title_content_value.xml deleted file mode 100644 index 043d0af5..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_content_value.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom/entry_title_escaped_markup.xml deleted file mode 100644 index ccc24b8a..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_escaped_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_inline_markup.xml b/lib/feedparser/tests/wellformed/atom/entry_title_inline_markup.xml deleted file mode 100644 index eb7c9315..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_inline_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <b>Atom</b></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom/entry_title_inline_markup_2.xml deleted file mode 100644 index 71cfc507..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_inline_markup_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">History of the <blink> tag</div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_naked_markup.xml b/lib/feedparser/tests/wellformed/atom/entry_title_naked_markup.xml deleted file mode 100644 index ffc9aa93..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_naked_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_text_plain.xml b/lib/feedparser/tests/wellformed/atom/entry_title_text_plain.xml deleted file mode 100644 index f02a6264..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_text_plain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_title_text_plain_brackets.xml b/lib/feedparser/tests/wellformed/atom/entry_title_text_plain_brackets.xml deleted file mode 100644 index cbd327cb..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_title_text_plain_brackets.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - History of the <blink> tag - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/entry_updated_multiple_values.xml b/lib/feedparser/tests/wellformed/atom/entry_updated_multiple_values.xml deleted file mode 100644 index 386cd076..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_updated_multiple_values.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -2010-12-01T10:14:55Z -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/atom/entry_updated_parsed.xml b/lib/feedparser/tests/wellformed/atom/entry_updated_parsed.xml deleted file mode 100644 index 66a315be..00000000 --- a/lib/feedparser/tests/wellformed/atom/entry_updated_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/atom/feed_author_email.xml b/lib/feedparser/tests/wellformed/atom/feed_author_email.xml deleted file mode 100644 index 3eb3f4a5..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_author_email.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_author_homepage.xml b/lib/feedparser/tests/wellformed/atom/feed_author_homepage.xml deleted file mode 100644 index 3d7abf79..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_author_homepage.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_author_map_author.xml b/lib/feedparser/tests/wellformed/atom/feed_author_map_author.xml deleted file mode 100644 index 003a1f4d..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_author_map_author.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_author_map_author_2.xml b/lib/feedparser/tests/wellformed/atom/feed_author_map_author_2.xml deleted file mode 100644 index 977142f8..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_author_map_author_2.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Example author - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_author_name.xml b/lib/feedparser/tests/wellformed/atom/feed_author_name.xml deleted file mode 100644 index 8e2e0277..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_author_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_author_uri.xml b/lib/feedparser/tests/wellformed/atom/feed_author_uri.xml deleted file mode 100644 index 3df7ce32..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_author_uri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_author_url.xml b/lib/feedparser/tests/wellformed/atom/feed_author_url.xml deleted file mode 100644 index dd7cb1f9..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_author_url.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_contributor_email.xml b/lib/feedparser/tests/wellformed/atom/feed_contributor_email.xml deleted file mode 100644 index 664e2a5e..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_contributor_email.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example contributor - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_contributor_homepage.xml b/lib/feedparser/tests/wellformed/atom/feed_contributor_homepage.xml deleted file mode 100644 index 14d518e2..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_contributor_homepage.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example contributor - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_contributor_multiple.xml b/lib/feedparser/tests/wellformed/atom/feed_contributor_multiple.xml deleted file mode 100644 index 64a1326e..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_contributor_multiple.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - Contributor 1 - me@example.com - http://example.com/ - - - Contributor 2 - you@example.com - http://two.example.com/ - - diff --git a/lib/feedparser/tests/wellformed/atom/feed_contributor_name.xml b/lib/feedparser/tests/wellformed/atom/feed_contributor_name.xml deleted file mode 100644 index 56de5593..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_contributor_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example contributor - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_contributor_uri.xml b/lib/feedparser/tests/wellformed/atom/feed_contributor_uri.xml deleted file mode 100644 index c462dcab..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_contributor_uri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example contributor - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_contributor_url.xml b/lib/feedparser/tests/wellformed/atom/feed_contributor_url.xml deleted file mode 100644 index f42c4ea9..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_contributor_url.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example contributor - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright.xml deleted file mode 100644 index e1a82181..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_base64.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_base64.xml deleted file mode 100644 index 7b659993..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_base64_2.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_base64_2.xml deleted file mode 100644 index 3cffcff4..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_base64_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_mode_base64.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_content_mode_base64.xml deleted file mode 100644 index 3c68739a..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_mode_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_mode_escaped.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_content_mode_escaped.xml deleted file mode 100644 index 72132f8e..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_mode_escaped.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_type.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_content_type.xml deleted file mode 100644 index e77a8ee0..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_type_text_plain.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_content_type_text_plain.xml deleted file mode 100644 index 39031396..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_type_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_value.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_content_value.xml deleted file mode 100644 index 491c10e4..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_content_value.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_escaped_markup.xml deleted file mode 100644 index 2f97df3e..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_escaped_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_inline_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_inline_markup.xml deleted file mode 100644 index bf8f211b..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_inline_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example Atom
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_inline_markup_2.xml deleted file mode 100644 index d4e4df3a..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_inline_markup_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
History of the <blink> tag
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_naked_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_naked_markup.xml deleted file mode 100644 index a04eed41..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_naked_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_copyright_text_plain.xml b/lib/feedparser/tests/wellformed/atom/feed_copyright_text_plain.xml deleted file mode 100644 index 5c71c1b9..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_copyright_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_generator.xml b/lib/feedparser/tests/wellformed/atom/feed_generator.xml deleted file mode 100644 index 21bce92b..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_generator.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example generator - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_generator_name.xml b/lib/feedparser/tests/wellformed/atom/feed_generator_name.xml deleted file mode 100644 index 349ed2de..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_generator_name.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example generator - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_generator_url.xml b/lib/feedparser/tests/wellformed/atom/feed_generator_url.xml deleted file mode 100644 index 4efaed26..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_generator_url.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example generator - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_generator_version.xml b/lib/feedparser/tests/wellformed/atom/feed_generator_version.xml deleted file mode 100644 index c6c08855..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_generator_version.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example generator - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_id.xml b/lib/feedparser/tests/wellformed/atom/feed_id.xml deleted file mode 100644 index a875baeb..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_id.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - http://example.com/ - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_id_map_guid.xml b/lib/feedparser/tests/wellformed/atom/feed_id_map_guid.xml deleted file mode 100644 index 9e6392dc..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_id_map_guid.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - http://example.com/ - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info.xml b/lib/feedparser/tests/wellformed/atom/feed_info.xml deleted file mode 100644 index a4f98f72..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_base64.xml b/lib/feedparser/tests/wellformed/atom/feed_info_base64.xml deleted file mode 100644 index df6136f3..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_base64_2.xml b/lib/feedparser/tests/wellformed/atom/feed_info_base64_2.xml deleted file mode 100644 index 4f50e30f..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_base64_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_content_mode_base64.xml b/lib/feedparser/tests/wellformed/atom/feed_info_content_mode_base64.xml deleted file mode 100644 index 0c3de704..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_content_mode_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_content_mode_escaped.xml b/lib/feedparser/tests/wellformed/atom/feed_info_content_mode_escaped.xml deleted file mode 100644 index fdc27e69..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_content_mode_escaped.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_content_type.xml b/lib/feedparser/tests/wellformed/atom/feed_info_content_type.xml deleted file mode 100644 index 615d4d68..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_content_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_content_type_text_plain.xml b/lib/feedparser/tests/wellformed/atom/feed_info_content_type_text_plain.xml deleted file mode 100644 index c97aef9e..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_content_type_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_content_value.xml b/lib/feedparser/tests/wellformed/atom/feed_info_content_value.xml deleted file mode 100644 index d601f03e..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_content_value.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_info_escaped_markup.xml deleted file mode 100644 index 4820f8be..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_escaped_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_inline_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_info_inline_markup.xml deleted file mode 100644 index 76e02eb0..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_inline_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example Atom
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom/feed_info_inline_markup_2.xml deleted file mode 100644 index a6313b75..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_inline_markup_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
History of the <blink> tag
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_naked_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_info_naked_markup.xml deleted file mode 100644 index 9dab661c..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_naked_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_info_text_plain.xml b/lib/feedparser/tests/wellformed/atom/feed_info_text_plain.xml deleted file mode 100644 index e61ed050..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_info_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_link_alternate_map_link.xml b/lib/feedparser/tests/wellformed/atom/feed_link_alternate_map_link.xml deleted file mode 100644 index 12842ffd..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_link_alternate_map_link.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_link_alternate_map_link_2.xml b/lib/feedparser/tests/wellformed/atom/feed_link_alternate_map_link_2.xml deleted file mode 100644 index e63141c5..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_link_alternate_map_link_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_link_href.xml b/lib/feedparser/tests/wellformed/atom/feed_link_href.xml deleted file mode 100644 index 6ab44d88..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_link_href.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_link_multiple.xml b/lib/feedparser/tests/wellformed/atom/feed_link_multiple.xml deleted file mode 100644 index 154fbbc3..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_link_multiple.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/lib/feedparser/tests/wellformed/atom/feed_link_rel.xml b/lib/feedparser/tests/wellformed/atom/feed_link_rel.xml deleted file mode 100644 index dd2fe64a..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_link_rel.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_link_title.xml b/lib/feedparser/tests/wellformed/atom/feed_link_title.xml deleted file mode 100644 index b8339eb3..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_link_title.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_link_type.xml b/lib/feedparser/tests/wellformed/atom/feed_link_type.xml deleted file mode 100644 index 4fddbfd8..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_link_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_modified.xml b/lib/feedparser/tests/wellformed/atom/feed_modified.xml deleted file mode 100644 index 984f8ab6..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_modified.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Thu, 01 Jan 2004 19:48:21 GMT - - diff --git a/lib/feedparser/tests/wellformed/atom/feed_modified_map_updated_parsed.xml b/lib/feedparser/tests/wellformed/atom/feed_modified_map_updated_parsed.xml deleted file mode 100644 index 9099adaf..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_modified_map_updated_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Thu, 01 Jan 2004 19:48:21 GMT - - diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline.xml deleted file mode 100644 index ce170ef8..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_base64.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_base64.xml deleted file mode 100644 index 196e0860..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_base64_2.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_base64_2.xml deleted file mode 100644 index eb57d151..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_base64_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_mode_base64.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_content_mode_base64.xml deleted file mode 100644 index ff55466c..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_mode_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_mode_escaped.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_content_mode_escaped.xml deleted file mode 100644 index 2a28f0b4..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_mode_escaped.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_type.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_content_type.xml deleted file mode 100644 index 8d7c831a..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_type_text_plain.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_content_type_text_plain.xml deleted file mode 100644 index a63a3ca7..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_type_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_value.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_content_value.xml deleted file mode 100644 index 24bc7ae7..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_content_value.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_escaped_markup.xml deleted file mode 100644 index 4530eabc..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_escaped_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_inline_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_inline_markup.xml deleted file mode 100644 index 6330c385..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_inline_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example Atom
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_inline_markup_2.xml deleted file mode 100644 index afb7ebee..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_inline_markup_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
History of the <blink> tag
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_naked_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_naked_markup.xml deleted file mode 100644 index 4e213464..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_naked_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_tagline_text_plain.xml b/lib/feedparser/tests/wellformed/atom/feed_tagline_text_plain.xml deleted file mode 100644 index 96d7d9cd..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_tagline_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title.xml b/lib/feedparser/tests/wellformed/atom/feed_title.xml deleted file mode 100644 index b59200cb..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_base64.xml b/lib/feedparser/tests/wellformed/atom/feed_title_base64.xml deleted file mode 100644 index f13b3c13..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_base64_2.xml b/lib/feedparser/tests/wellformed/atom/feed_title_base64_2.xml deleted file mode 100644 index a372b839..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_base64_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_content_mode_base64.xml b/lib/feedparser/tests/wellformed/atom/feed_title_content_mode_base64.xml deleted file mode 100644 index ac9ff594..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_content_mode_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_content_mode_escaped.xml b/lib/feedparser/tests/wellformed/atom/feed_title_content_mode_escaped.xml deleted file mode 100644 index 3ff055a1..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_content_mode_escaped.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_content_type.xml b/lib/feedparser/tests/wellformed/atom/feed_title_content_type.xml deleted file mode 100644 index c2075031..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_content_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_content_type_text_plain.xml b/lib/feedparser/tests/wellformed/atom/feed_title_content_type_text_plain.xml deleted file mode 100644 index 8bf0060b..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_content_type_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_content_value.xml b/lib/feedparser/tests/wellformed/atom/feed_title_content_value.xml deleted file mode 100644 index ac5cbdbe..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_content_value.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_title_escaped_markup.xml deleted file mode 100644 index b2daea2b..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_escaped_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_inline_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_title_inline_markup.xml deleted file mode 100644 index 0b675936..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_inline_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <b>Atom</b></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom/feed_title_inline_markup_2.xml deleted file mode 100644 index e687f402..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_inline_markup_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">History of the <blink> tag</div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_naked_markup.xml b/lib/feedparser/tests/wellformed/atom/feed_title_naked_markup.xml deleted file mode 100644 index fa4c3056..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_naked_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_title_text_plain.xml b/lib/feedparser/tests/wellformed/atom/feed_title_text_plain.xml deleted file mode 100644 index 3c94b7ee..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_title_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/feed_updated_parsed.xml b/lib/feedparser/tests/wellformed/atom/feed_updated_parsed.xml deleted file mode 100644 index a5ddfec1..00000000 --- a/lib/feedparser/tests/wellformed/atom/feed_updated_parsed.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -2003-12-31T10:14:55Z - diff --git a/lib/feedparser/tests/wellformed/atom/media_player1.xml b/lib/feedparser/tests/wellformed/atom/media_player1.xml deleted file mode 100644 index c95a7b2c..00000000 --- a/lib/feedparser/tests/wellformed/atom/media_player1.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - Example Atom - - diff --git a/lib/feedparser/tests/wellformed/atom/media_thumbnail.xml b/lib/feedparser/tests/wellformed/atom/media_thumbnail.xml deleted file mode 100644 index 6288bfa5..00000000 --- a/lib/feedparser/tests/wellformed/atom/media_thumbnail.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - diff --git a/lib/feedparser/tests/wellformed/atom/relative_uri.xml b/lib/feedparser/tests/wellformed/atom/relative_uri.xml deleted file mode 100644 index 0de466dd..00000000 --- a/lib/feedparser/tests/wellformed/atom/relative_uri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/relative_uri_inherit.xml b/lib/feedparser/tests/wellformed/atom/relative_uri_inherit.xml deleted file mode 100644 index a2195de9..00000000 --- a/lib/feedparser/tests/wellformed/atom/relative_uri_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom/relative_uri_inherit_2.xml b/lib/feedparser/tests/wellformed/atom/relative_uri_inherit_2.xml deleted file mode 100644 index 8ce7778a..00000000 --- a/lib/feedparser/tests/wellformed/atom/relative_uri_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/ampersand_in_attr.xml b/lib/feedparser/tests/wellformed/atom10/ampersand_in_attr.xml deleted file mode 100644 index 2dcec428..00000000 --- a/lib/feedparser/tests/wellformed/atom10/ampersand_in_attr.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="http://example.com/?a=1&b=2">test</a></div> - diff --git a/lib/feedparser/tests/wellformed/atom10/atom10_namespace.xml b/lib/feedparser/tests/wellformed/atom10/atom10_namespace.xml deleted file mode 100644 index c1278530..00000000 --- a/lib/feedparser/tests/wellformed/atom10/atom10_namespace.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/atom10_version.xml b/lib/feedparser/tests/wellformed/atom10/atom10_version.xml deleted file mode 100644 index e27c9111..00000000 --- a/lib/feedparser/tests/wellformed/atom10/atom10_version.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_author_email.xml b/lib/feedparser/tests/wellformed/atom10/entry_author_email.xml deleted file mode 100644 index 45d71fbf..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_author_email.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_author_map_author.xml b/lib/feedparser/tests/wellformed/atom10/entry_author_map_author.xml deleted file mode 100644 index 84a0776a..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_author_map_author.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_author_map_author_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_author_map_author_2.xml deleted file mode 100644 index 687d3d03..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_author_map_author_2.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - Example author - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_author_name.xml b/lib/feedparser/tests/wellformed/atom10/entry_author_name.xml deleted file mode 100644 index fb2157d6..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_author_name.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_author_uri.xml b/lib/feedparser/tests/wellformed/atom10/entry_author_uri.xml deleted file mode 100644 index 86e1e856..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_author_uri.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_author_url.xml b/lib/feedparser/tests/wellformed/atom10/entry_author_url.xml deleted file mode 100644 index dae246ae..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_author_url.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example author - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_authors_email.xml b/lib/feedparser/tests/wellformed/atom10/entry_authors_email.xml deleted file mode 100644 index d5a6369a..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_authors_email.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - one@one.com - - - two@two.com - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_authors_name.xml b/lib/feedparser/tests/wellformed/atom10/entry_authors_name.xml deleted file mode 100644 index a0e74ae4..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_authors_name.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - one - - - two - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_authors_uri.xml b/lib/feedparser/tests/wellformed/atom10/entry_authors_uri.xml deleted file mode 100644 index 68dbc03b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_authors_uri.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - http://one.com/ - - - http://two.com/ - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_authors_url.xml b/lib/feedparser/tests/wellformed/atom10/entry_authors_url.xml deleted file mode 100644 index 09a1f843..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_authors_url.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - http://one.com/ - - - http://two.com/ - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_category_label.xml b/lib/feedparser/tests/wellformed/atom10/entry_category_label.xml deleted file mode 100644 index 7691de37..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_category_label.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_category_scheme.xml b/lib/feedparser/tests/wellformed/atom10/entry_category_scheme.xml deleted file mode 100644 index a88defc2..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_category_scheme.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_category_term.xml b/lib/feedparser/tests/wellformed/atom10/entry_category_term.xml deleted file mode 100644 index f0755b39..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_category_term.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_category_term_non_ascii.xml b/lib/feedparser/tests/wellformed/atom10/entry_category_term_non_ascii.xml deleted file mode 100644 index a2529b5f..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_category_term_non_ascii.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_application_xml.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_application_xml.xml deleted file mode 100644 index 9506726e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_application_xml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example Atom
-
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_base64.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_base64.xml deleted file mode 100644 index 09ff3b0c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_base64.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_base64_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_base64_2.xml deleted file mode 100644 index 84de7fe1..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_base64_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_div_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_div_escaped_markup.xml deleted file mode 100644 index f1f0a974..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_div_escaped_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example <b>Atom</b>
-
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_escaped_markup.xml deleted file mode 100644 index 44a6e0a2..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_escaped_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_inline_markup.xml deleted file mode 100644 index 1dc354e6..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_inline_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example Atom
-
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_inline_markup_2.xml deleted file mode 100644 index e47e68f8..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_inline_markup_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
History of the <blink> tag
-
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_src.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_src.xml deleted file mode 100644 index 0b808a8d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_src.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_text_plain.xml deleted file mode 100644 index 402d6dd9..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_text_plain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_text_plain_brackets.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_text_plain_brackets.xml deleted file mode 100644 index b6f7401c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_text_plain_brackets.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - History of the <blink> tag - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_type.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_type.xml deleted file mode 100644 index c2d3adb8..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_type.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_type_text.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_type_text.xml deleted file mode 100644 index e6a5e98b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_type_text.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_content_value.xml b/lib/feedparser/tests/wellformed/atom10/entry_content_value.xml deleted file mode 100644 index 9fd290b4..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_content_value.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_contributor_email.xml b/lib/feedparser/tests/wellformed/atom10/entry_contributor_email.xml deleted file mode 100644 index ab60eeff..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_contributor_email.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example contributor - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_contributor_multiple.xml b/lib/feedparser/tests/wellformed/atom10/entry_contributor_multiple.xml deleted file mode 100644 index f132f41b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_contributor_multiple.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - Contributor 1 - me@example.com - http://example.com/ - - - Contributor 2 - you@example.com - http://two.example.com/ - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_contributor_name.xml b/lib/feedparser/tests/wellformed/atom10/entry_contributor_name.xml deleted file mode 100644 index 3ac96e82..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_contributor_name.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example contributor - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_contributor_uri.xml b/lib/feedparser/tests/wellformed/atom10/entry_contributor_uri.xml deleted file mode 100644 index 4a176b6d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_contributor_uri.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example contributor - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_contributor_url.xml b/lib/feedparser/tests/wellformed/atom10/entry_contributor_url.xml deleted file mode 100644 index dcc87f9b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_contributor_url.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Example contributor - me@example.com - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id.xml b/lib/feedparser/tests/wellformed/atom10/entry_id.xml deleted file mode 100644 index b06db1b5..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id_map_guid.xml b/lib/feedparser/tests/wellformed/atom10/entry_id_map_guid.xml deleted file mode 100644 index aa4b2bef..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id_map_guid.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_1.xml b/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_1.xml deleted file mode 100644 index ea4f6e5c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_1.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://www.example.org/thing - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_2.xml deleted file mode 100644 index 8b4df51c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://www.example.org/Thing - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_3.xml b/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_3.xml deleted file mode 100644 index e7f613ea..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_3.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://www.EXAMPLE.org/thing - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_4.xml b/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_4.xml deleted file mode 100644 index 32329366..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_4.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - HTTP://www.example.org/thing - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_5.xml b/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_5.xml deleted file mode 100644 index 0c08db8d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_5.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://www.example.com/~bob - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_6.xml b/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_6.xml deleted file mode 100644 index 45db81fa..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_6.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://www.example.com/%7ebob - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_7.xml b/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_7.xml deleted file mode 100644 index 25b6f7c7..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id_no_normalization_7.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://www.example.com/%7Ebob - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_id_with_attributes.xml b/lib/feedparser/tests/wellformed/atom10/entry_id_with_attributes.xml deleted file mode 100644 index 0829da91..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_id_with_attributes.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - right - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_alternate_map_link.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_alternate_map_link.xml deleted file mode 100644 index a507ee3e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_alternate_map_link.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_alternate_map_link_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_alternate_map_link_2.xml deleted file mode 100644 index f46e8b61..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_alternate_map_link_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_alternate_map_link_3.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_alternate_map_link_3.xml deleted file mode 100644 index ec49b560..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_alternate_map_link_3.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_href.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_href.xml deleted file mode 100644 index f69da53b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_href.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_hreflang.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_hreflang.xml deleted file mode 100644 index 15b23a0e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_hreflang.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_length.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_length.xml deleted file mode 100644 index c41378ee..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_length.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_multiple.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_multiple.xml deleted file mode 100644 index c50f93ee..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_multiple.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_no_rel.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_no_rel.xml deleted file mode 100644 index d18a8115..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_no_rel.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel.xml deleted file mode 100644 index a056a8a7..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure.xml deleted file mode 100644 index 26f4d7f7..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_length.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_length.xml deleted file mode 100644 index 8798fa0e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_length.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_type.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_type.xml deleted file mode 100644 index 73e8e16e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_type.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_url.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_url.xml deleted file mode 100644 index 4c085d6b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_url.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_license.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel_license.xml deleted file mode 100644 index 2438a177..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_license.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_other.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel_other.xml deleted file mode 100644 index b4117738..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_other.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_related.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel_related.xml deleted file mode 100644 index 56614050..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_related.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_self.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel_self.xml deleted file mode 100644 index cf0570cb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_self.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_via.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_rel_via.xml deleted file mode 100644 index e60edd95..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_rel_via.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_title.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_title.xml deleted file mode 100644 index 590c9b3b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_title.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_link_type.xml b/lib/feedparser/tests/wellformed/atom10/entry_link_type.xml deleted file mode 100644 index 04ec5f7d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_link_type.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_rights.xml b/lib/feedparser/tests/wellformed/atom10/entry_rights.xml deleted file mode 100644 index c86d9b94..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_rights.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_rights_content_value.xml b/lib/feedparser/tests/wellformed/atom10/entry_rights_content_value.xml deleted file mode 100644 index 4f827653..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_rights_content_value.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_rights_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_rights_escaped_markup.xml deleted file mode 100644 index 94dabcb7..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_rights_escaped_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_rights_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_rights_inline_markup.xml deleted file mode 100644 index 95d20ace..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_rights_inline_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example Atom
-
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_rights_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_rights_inline_markup_2.xml deleted file mode 100644 index 27616731..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_rights_inline_markup_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
History of the <blink> tag
-
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_rights_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/entry_rights_text_plain.xml deleted file mode 100644 index bc887b30..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_rights_text_plain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_rights_text_plain_brackets.xml b/lib/feedparser/tests/wellformed/atom10/entry_rights_text_plain_brackets.xml deleted file mode 100644 index 3516f961..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_rights_text_plain_brackets.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - History of the <blink> tag - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_rights_type_default.xml b/lib/feedparser/tests/wellformed/atom10/entry_rights_type_default.xml deleted file mode 100644 index 31b40019..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_rights_type_default.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_rights_type_text.xml b/lib/feedparser/tests/wellformed/atom10/entry_rights_type_text.xml deleted file mode 100644 index c1b82cef..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_rights_type_text.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_author_email.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_author_email.xml deleted file mode 100644 index fffb3197..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_author_email.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - Example author - me@example.com - http://example.com/ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_author_map_author.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_author_map_author.xml deleted file mode 100644 index 4db9605e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_author_map_author.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - Example author - me@example.com - http://example.com/ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_author_map_author_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_author_map_author_2.xml deleted file mode 100644 index 6d2c00df..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_author_map_author_2.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - Example author - http://example.com/ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_author_name.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_author_name.xml deleted file mode 100644 index d4d5c74f..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_author_name.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - Example author - me@example.com - http://example.com/ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_author_uri.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_author_uri.xml deleted file mode 100644 index df971db8..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_author_uri.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - Example author - me@example.com - http://example.com/ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_authors_email.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_authors_email.xml deleted file mode 100644 index b8125eb1..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_authors_email.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - one@one.com - - - two@two.com - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_authors_name.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_authors_name.xml deleted file mode 100644 index 1c846064..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_authors_name.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - one - - - two - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_authors_uri.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_authors_uri.xml deleted file mode 100644 index 9901ab75..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_authors_uri.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - http://one.com/ - - - http://two.com/ - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_authors_url.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_authors_url.xml deleted file mode 100644 index c48af343..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_authors_url.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - http://one.com/ - - - http://two.com/ - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_category_label.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_category_label.xml deleted file mode 100644 index 037b357a..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_category_label.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_category_scheme.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_category_scheme.xml deleted file mode 100644 index a93edaab..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_category_scheme.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_category_term.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_category_term.xml deleted file mode 100644 index d75748d9..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_category_term.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_category_term_non_ascii.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_category_term_non_ascii.xml deleted file mode 100644 index 5b1bd144..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_category_term_non_ascii.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_email.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_email.xml deleted file mode 100644 index 8662a9ac..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_email.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - Example contributor - me@example.com - http://example.com/ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_multiple.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_multiple.xml deleted file mode 100644 index 4dd68e37..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_multiple.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - Contributor 1 - me@example.com - http://example.com/ - - - Contributor 2 - you@example.com - http://two.example.com/ - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_name.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_name.xml deleted file mode 100644 index 6455366e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_name.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - Example contributor - me@example.com - http://example.com/ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_uri.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_uri.xml deleted file mode 100644 index cedf60f8..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_contributor_uri.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - Example contributor - me@example.com - http://example.com/ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_generator.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_generator.xml deleted file mode 100644 index 6c4605bf..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_generator.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example generator - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_generator_name.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_generator_name.xml deleted file mode 100644 index be328aaf..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_generator_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example generator - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_generator_uri.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_generator_uri.xml deleted file mode 100644 index ec5696a6..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_generator_uri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example generator - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_generator_version.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_generator_version.xml deleted file mode 100644 index cfbe01d0..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_generator_version.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example generator - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_icon.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_icon.xml deleted file mode 100644 index 1b40b28f..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_icon.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - http://example.com/favicon.ico - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_id.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_id.xml deleted file mode 100644 index 56fa8191..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_id.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_alternate_map_link.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_alternate_map_link.xml deleted file mode 100644 index 9982b6b5..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_alternate_map_link.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_alternate_map_link_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_alternate_map_link_2.xml deleted file mode 100644 index 140e749c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_alternate_map_link_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_href.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_href.xml deleted file mode 100644 index 5e2bccf4..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_href.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_hreflang.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_hreflang.xml deleted file mode 100644 index 973a28df..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_hreflang.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_length.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_length.xml deleted file mode 100644 index 5fd2f859..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_length.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_multiple.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_multiple.xml deleted file mode 100644 index a9656242..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_multiple.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_no_rel.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_no_rel.xml deleted file mode 100644 index ee9a6ea7..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_no_rel.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel.xml deleted file mode 100644 index 5b1a8cdd..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_other.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_other.xml deleted file mode 100644 index e24399f3..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_other.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_related.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_related.xml deleted file mode 100644 index 5eb71976..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_related.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_self.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_self.xml deleted file mode 100644 index ee04ef85..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_self.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_via.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_via.xml deleted file mode 100644 index 15b9bbfb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_rel_via.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_title.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_title.xml deleted file mode 100644 index 1c8ff561..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_title.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_link_type.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_link_type.xml deleted file mode 100644 index d77060bb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_link_type.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_logo.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_logo.xml deleted file mode 100644 index 2b43b39c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_logo.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - http://example.com/logo.jpg - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights.xml deleted file mode 100644 index d8d6ede8..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_base64.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights_base64.xml deleted file mode 100644 index a101d3f1..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_base64.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_base64_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights_base64_2.xml deleted file mode 100644 index f0a5c1de..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_base64_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_content_type.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights_content_type.xml deleted file mode 100644 index acf70585..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_content_type.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_content_type_text.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights_content_type_text.xml deleted file mode 100644 index 5bd7d131..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_content_type_text.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_content_value.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights_content_value.xml deleted file mode 100644 index 7a47e880..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_content_value.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights_escaped_markup.xml deleted file mode 100644 index 4501ae59..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_escaped_markup.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example <b>Atom</b> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights_inline_markup.xml deleted file mode 100644 index 1c264fb5..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_inline_markup.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -
Example Atom
- -
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights_inline_markup_2.xml deleted file mode 100644 index 9467b79b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_inline_markup_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -
History of the <blink> tag
- -
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_rights_text_plain.xml deleted file mode 100644 index f5bc9d36..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_rights_text_plain.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subittle_content_type_text.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subittle_content_type_text.xml deleted file mode 100644 index c4dda832..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subittle_content_type_text.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle.xml deleted file mode 100644 index 828129b0..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_base64.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_base64.xml deleted file mode 100644 index 5821b8cd..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_base64.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_base64_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_base64_2.xml deleted file mode 100644 index 10fea62b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_base64_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_content_type.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_content_type.xml deleted file mode 100644 index b92408ed..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_content_type.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_content_value.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_content_value.xml deleted file mode 100644 index 5a8d120e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_content_value.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_escaped_markup.xml deleted file mode 100644 index 4b7cf90c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_escaped_markup.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example <b>Atom</b> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_inline_markup.xml deleted file mode 100644 index a82035be..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_inline_markup.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -
Example Atom
- -
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_inline_markup_2.xml deleted file mode 100644 index 10df20c0..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_inline_markup_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -
History of the <blink> tag
- -
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_text_plain.xml deleted file mode 100644 index e5994480..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_subtitle_text_plain.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title.xml deleted file mode 100644 index f7640979..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title_base64.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title_base64.xml deleted file mode 100644 index 32727421..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title_base64.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title_base64_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title_base64_2.xml deleted file mode 100644 index 1687b7cb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title_base64_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title_content_type.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title_content_type.xml deleted file mode 100644 index de8c0d33..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title_content_type.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title_content_type_text.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title_content_type_text.xml deleted file mode 100644 index d14b9aff..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title_content_type_text.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title_content_value.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title_content_value.xml deleted file mode 100644 index 149e9a5c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title_content_value.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title_escaped_markup.xml deleted file mode 100644 index 1d606868..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title_escaped_markup.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example <b>Atom</b> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title_inline_markup.xml deleted file mode 100644 index e2060b56..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title_inline_markup.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <b>Atom</b></div> - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title_inline_markup_2.xml deleted file mode 100644 index bc186718..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title_inline_markup_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - <div xmlns="http://www.w3.org/1999/xhtml">History of the <blink> tag</div> - - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_source_title_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/entry_source_title_text_plain.xml deleted file mode 100644 index 34f190b9..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_source_title_text_plain.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example Atom - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary.xml deleted file mode 100644 index 65ed3d6d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary_base64.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary_base64.xml deleted file mode 100644 index 8c34a40d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary_base64.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary_base64_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary_base64_2.xml deleted file mode 100644 index 7cd16258..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary_base64_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary_content_value.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary_content_value.xml deleted file mode 100644 index ecf48929..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary_content_value.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary_escaped_markup.xml deleted file mode 100644 index c6236c1d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary_escaped_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary_inline_markup.xml deleted file mode 100644 index b174bf8f..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary_inline_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example Atom
-
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary_inline_markup_2.xml deleted file mode 100644 index 45ecf452..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary_inline_markup_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
History of the <blink> tag
-
-
diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary_text_plain.xml deleted file mode 100644 index 2a1731f9..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary_text_plain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary_type_default.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary_type_default.xml deleted file mode 100644 index ac7d18ef..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary_type_default.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_summary_type_text.xml b/lib/feedparser/tests/wellformed/atom10/entry_summary_type_text.xml deleted file mode 100644 index 70a0e23c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_summary_type_text.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title.xml b/lib/feedparser/tests/wellformed/atom10/entry_title.xml deleted file mode 100644 index b3ed03f8..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_base64.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_base64.xml deleted file mode 100644 index 856b9b2c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_base64.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_base64_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_base64_2.xml deleted file mode 100644 index 30e2bd8e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_base64_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_content_value.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_content_value.xml deleted file mode 100644 index b3324205..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_content_value.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_escaped_markup.xml deleted file mode 100644 index 71e6e6d5..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_escaped_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example <b>Atom</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_inline_markup.xml deleted file mode 100644 index 650468b4..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_inline_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <b>Atom</b></div> - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_inline_markup_2.xml deleted file mode 100644 index 6998214d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_inline_markup_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">History of the <blink> tag</div> - - diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_text_plain.xml deleted file mode 100644 index 7692469e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_text_plain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_text_plain_brackets.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_text_plain_brackets.xml deleted file mode 100644 index 5a6e72e0..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_text_plain_brackets.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - History of the <blink> tag - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_type_default.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_type_default.xml deleted file mode 100644 index 07fd597f..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_type_default.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/entry_title_type_text.xml b/lib/feedparser/tests/wellformed/atom10/entry_title_type_text.xml deleted file mode 100644 index d7621b06..00000000 --- a/lib/feedparser/tests/wellformed/atom10/entry_title_type_text.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_author_email.xml b/lib/feedparser/tests/wellformed/atom10/feed_author_email.xml deleted file mode 100644 index 78e898d2..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_author_email.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_author_map_author.xml b/lib/feedparser/tests/wellformed/atom10/feed_author_map_author.xml deleted file mode 100644 index a85c0436..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_author_map_author.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_author_map_author_2.xml b/lib/feedparser/tests/wellformed/atom10/feed_author_map_author_2.xml deleted file mode 100644 index af8eb617..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_author_map_author_2.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Example author - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_author_name.xml b/lib/feedparser/tests/wellformed/atom10/feed_author_name.xml deleted file mode 100644 index d0aa2f71..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_author_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_author_uri.xml b/lib/feedparser/tests/wellformed/atom10/feed_author_uri.xml deleted file mode 100644 index b5e56f5d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_author_uri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_author_url.xml b/lib/feedparser/tests/wellformed/atom10/feed_author_url.xml deleted file mode 100644 index 0b6e40f2..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_author_url.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example author - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_authors_email.xml b/lib/feedparser/tests/wellformed/atom10/feed_authors_email.xml deleted file mode 100644 index 83591e13..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_authors_email.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - one@one.com - - - two@two.com - - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_authors_name.xml b/lib/feedparser/tests/wellformed/atom10/feed_authors_name.xml deleted file mode 100644 index 7b02089c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_authors_name.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - one - - - two - - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_authors_uri.xml b/lib/feedparser/tests/wellformed/atom10/feed_authors_uri.xml deleted file mode 100644 index 79429967..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_authors_uri.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - http://one.com/ - - - http://two.com/ - - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_authors_url.xml b/lib/feedparser/tests/wellformed/atom10/feed_authors_url.xml deleted file mode 100644 index d7fcde82..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_authors_url.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - http://one.com/ - - - http://two.com/ - - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_contributor_email.xml b/lib/feedparser/tests/wellformed/atom10/feed_contributor_email.xml deleted file mode 100644 index f9381917..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_contributor_email.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example contributor - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_contributor_multiple.xml b/lib/feedparser/tests/wellformed/atom10/feed_contributor_multiple.xml deleted file mode 100644 index 8095a741..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_contributor_multiple.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - Contributor 1 - me@example.com - http://example.com/ - - - Contributor 2 - you@example.com - http://two.example.com/ - - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_contributor_name.xml b/lib/feedparser/tests/wellformed/atom10/feed_contributor_name.xml deleted file mode 100644 index 4d7d163b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_contributor_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example contributor - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_contributor_uri.xml b/lib/feedparser/tests/wellformed/atom10/feed_contributor_uri.xml deleted file mode 100644 index a8fc8626..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_contributor_uri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example contributor - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_contributor_url.xml b/lib/feedparser/tests/wellformed/atom10/feed_contributor_url.xml deleted file mode 100644 index b6cc8da9..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_contributor_url.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - Example contributor - me@example.com - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_generator.xml b/lib/feedparser/tests/wellformed/atom10/feed_generator.xml deleted file mode 100644 index 88c3abfb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_generator.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example generator - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_generator_name.xml b/lib/feedparser/tests/wellformed/atom10/feed_generator_name.xml deleted file mode 100644 index fd89ce59..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_generator_name.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example generator - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_generator_url.xml b/lib/feedparser/tests/wellformed/atom10/feed_generator_url.xml deleted file mode 100644 index a321577e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_generator_url.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example generator - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_generator_version.xml b/lib/feedparser/tests/wellformed/atom10/feed_generator_version.xml deleted file mode 100644 index 0660672c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_generator_version.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example generator - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_icon.xml b/lib/feedparser/tests/wellformed/atom10/feed_icon.xml deleted file mode 100644 index 498b4d07..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_icon.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - http://example.com/favicon.ico - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_id.xml b/lib/feedparser/tests/wellformed/atom10/feed_id.xml deleted file mode 100644 index dae9b121..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_id.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - http://example.com/ - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_id_map_guid.xml b/lib/feedparser/tests/wellformed/atom10/feed_id_map_guid.xml deleted file mode 100644 index 94fe01c8..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_id_map_guid.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - http://example.com/ - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_alternate_map_link.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_alternate_map_link.xml deleted file mode 100644 index e25189f0..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_alternate_map_link.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_alternate_map_link_2.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_alternate_map_link_2.xml deleted file mode 100644 index 26f09699..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_alternate_map_link_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_href.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_href.xml deleted file mode 100644 index 6d8919fc..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_href.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_hreflang.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_hreflang.xml deleted file mode 100644 index ea036129..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_hreflang.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_length.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_length.xml deleted file mode 100644 index b9e04e95..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_length.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_multiple.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_multiple.xml deleted file mode 100644 index 8745e6ef..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_multiple.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_no_rel.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_no_rel.xml deleted file mode 100644 index 69af2b88..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_no_rel.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_rel.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_rel.xml deleted file mode 100644 index eb935d8d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_rel.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_other.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_rel_other.xml deleted file mode 100644 index c721a447..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_other.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_related.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_rel_related.xml deleted file mode 100644 index b19d09bb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_related.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_self.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_rel_self.xml deleted file mode 100644 index 601402ac..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_self.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_self_default_type.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_rel_self_default_type.xml deleted file mode 100644 index 11a542e3..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_self_default_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_via.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_rel_via.xml deleted file mode 100644 index 12993fde..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_rel_via.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_title.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_title.xml deleted file mode 100644 index 72cc9e92..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_title.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_link_type.xml b/lib/feedparser/tests/wellformed/atom10/feed_link_type.xml deleted file mode 100644 index 8bf83efb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_link_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_logo.xml b/lib/feedparser/tests/wellformed/atom10/feed_logo.xml deleted file mode 100644 index 1dbf1a1d..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_logo.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - http://example.com/logo.jpg - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights.xml deleted file mode 100644 index a44db6fa..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights_base64.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights_base64.xml deleted file mode 100644 index 956daca3..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights_base64_2.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights_base64_2.xml deleted file mode 100644 index 76b1b2b7..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights_base64_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights_content_type.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights_content_type.xml deleted file mode 100644 index ee44d5ad..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights_content_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights_content_type_text.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights_content_type_text.xml deleted file mode 100644 index 6aa0412a..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights_content_type_text.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights_content_value.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights_content_value.xml deleted file mode 100644 index fb078003..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights_content_value.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights_escaped_markup.xml deleted file mode 100644 index 8384d299..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights_escaped_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights_inline_markup.xml deleted file mode 100644 index 080f880e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights_inline_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example Atom
-
diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights_inline_markup_2.xml deleted file mode 100644 index d8b953fd..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights_inline_markup_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
History of the <blink> tag
-
diff --git a/lib/feedparser/tests/wellformed/atom10/feed_rights_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/feed_rights_text_plain.xml deleted file mode 100644 index 54e7e612..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_rights_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle.xml deleted file mode 100644 index 8a07142c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_base64.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle_base64.xml deleted file mode 100644 index 8dd6a864..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_base64_2.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle_base64_2.xml deleted file mode 100644 index d2ef0d6e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_base64_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_content_type.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle_content_type.xml deleted file mode 100644 index 2e339514..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_content_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_content_type_text.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle_content_type_text.xml deleted file mode 100644 index ce207366..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_content_type_text.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_content_value.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle_content_value.xml deleted file mode 100644 index 309deafb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_content_value.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle_escaped_markup.xml deleted file mode 100644 index fc7a85b8..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_escaped_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle_inline_markup.xml deleted file mode 100644 index 2742f68e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_inline_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example Atom
-
diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle_inline_markup_2.xml deleted file mode 100644 index 4b36e24a..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_inline_markup_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
History of the <blink> tag
-
diff --git a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/feed_subtitle_text_plain.xml deleted file mode 100644 index bf97397a..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_subtitle_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title.xml b/lib/feedparser/tests/wellformed/atom10/feed_title.xml deleted file mode 100644 index 37a26ea5..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title_base64.xml b/lib/feedparser/tests/wellformed/atom10/feed_title_base64.xml deleted file mode 100644 index 5c07e729..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title_base64.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - RXhhbXBsZSA8Yj5BdG9tPC9iPg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title_base64_2.xml b/lib/feedparser/tests/wellformed/atom10/feed_title_base64_2.xml deleted file mode 100644 index 409c1f32..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title_base64_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PHA+SGlzdG9yeSBvZiB0aGUgJmx0O2JsaW5rJmd0OyB0YWc8L3A+ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title_content_type.xml b/lib/feedparser/tests/wellformed/atom10/feed_title_content_type.xml deleted file mode 100644 index 52d45675..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title_content_type.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title_content_type_text.xml b/lib/feedparser/tests/wellformed/atom10/feed_title_content_type_text.xml deleted file mode 100644 index d1649921..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title_content_type_text.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title_content_value.xml b/lib/feedparser/tests/wellformed/atom10/feed_title_content_value.xml deleted file mode 100644 index 7d31b22e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title_content_value.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title_escaped_markup.xml b/lib/feedparser/tests/wellformed/atom10/feed_title_escaped_markup.xml deleted file mode 100644 index ba23dc0b..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title_escaped_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example <b>Atom</b> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title_inline_markup.xml b/lib/feedparser/tests/wellformed/atom10/feed_title_inline_markup.xml deleted file mode 100644 index fea23a77..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title_inline_markup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <b>Atom</b></div> - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title_inline_markup_2.xml b/lib/feedparser/tests/wellformed/atom10/feed_title_inline_markup_2.xml deleted file mode 100644 index ec2da6b0..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title_inline_markup_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">History of the <blink> tag</div> - diff --git a/lib/feedparser/tests/wellformed/atom10/feed_title_text_plain.xml b/lib/feedparser/tests/wellformed/atom10/feed_title_text_plain.xml deleted file mode 100644 index 0f7ff959..00000000 --- a/lib/feedparser/tests/wellformed/atom10/feed_title_text_plain.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/atom10/item_media_category_label.xml b/lib/feedparser/tests/wellformed/atom10/item_media_category_label.xml deleted file mode 100644 index c66c46d1..00000000 --- a/lib/feedparser/tests/wellformed/atom10/item_media_category_label.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - cat1 - - - diff --git a/lib/feedparser/tests/wellformed/atom10/item_media_category_multiple.xml b/lib/feedparser/tests/wellformed/atom10/item_media_category_multiple.xml deleted file mode 100644 index 95b2f48c..00000000 --- a/lib/feedparser/tests/wellformed/atom10/item_media_category_multiple.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - cat1 - cat2 - - - diff --git a/lib/feedparser/tests/wellformed/atom10/item_media_category_scheme1.xml b/lib/feedparser/tests/wellformed/atom10/item_media_category_scheme1.xml deleted file mode 100644 index d1de91e2..00000000 --- a/lib/feedparser/tests/wellformed/atom10/item_media_category_scheme1.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - cat1 - - - diff --git a/lib/feedparser/tests/wellformed/atom10/item_media_category_scheme2.xml b/lib/feedparser/tests/wellformed/atom10/item_media_category_scheme2.xml deleted file mode 100644 index 62f5c365..00000000 --- a/lib/feedparser/tests/wellformed/atom10/item_media_category_scheme2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - cat1 - - - diff --git a/lib/feedparser/tests/wellformed/atom10/item_media_category_term.xml b/lib/feedparser/tests/wellformed/atom10/item_media_category_term.xml deleted file mode 100644 index d01d81fb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/item_media_category_term.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - cat1 - - - diff --git a/lib/feedparser/tests/wellformed/atom10/item_media_title_type_plain.xml b/lib/feedparser/tests/wellformed/atom10/item_media_title_type_plain.xml deleted file mode 100644 index 4262d196..00000000 --- a/lib/feedparser/tests/wellformed/atom10/item_media_title_type_plain.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - plain means text/plain - - - diff --git a/lib/feedparser/tests/wellformed/atom10/missing_quote_in_attr.xml b/lib/feedparser/tests/wellformed/atom10/missing_quote_in_attr.xml deleted file mode 100644 index a62a0d9e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/missing_quote_in_attr.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <![CDATA[<a href=http://example.com/">example</a>]]> - diff --git a/lib/feedparser/tests/wellformed/atom10/qna.xml b/lib/feedparser/tests/wellformed/atom10/qna.xml deleted file mode 100644 index 6198ec1e..00000000 --- a/lib/feedparser/tests/wellformed/atom10/qna.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Q&A session - - diff --git a/lib/feedparser/tests/wellformed/atom10/quote_in_attr.xml b/lib/feedparser/tests/wellformed/atom10/quote_in_attr.xml deleted file mode 100644 index 88c133c7..00000000 --- a/lib/feedparser/tests/wellformed/atom10/quote_in_attr.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml"><a title='"test"'>test</a></div> - diff --git a/lib/feedparser/tests/wellformed/atom10/relative_uri.xml b/lib/feedparser/tests/wellformed/atom10/relative_uri.xml deleted file mode 100644 index 8c5509bd..00000000 --- a/lib/feedparser/tests/wellformed/atom10/relative_uri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - diff --git a/lib/feedparser/tests/wellformed/atom10/relative_uri_inherit.xml b/lib/feedparser/tests/wellformed/atom10/relative_uri_inherit.xml deleted file mode 100644 index 5462c18f..00000000 --- a/lib/feedparser/tests/wellformed/atom10/relative_uri_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - diff --git a/lib/feedparser/tests/wellformed/atom10/relative_uri_inherit_2.xml b/lib/feedparser/tests/wellformed/atom10/relative_uri_inherit_2.xml deleted file mode 100644 index e018e2df..00000000 --- a/lib/feedparser/tests/wellformed/atom10/relative_uri_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - diff --git a/lib/feedparser/tests/wellformed/atom10/tag_in_attr.xml b/lib/feedparser/tests/wellformed/atom10/tag_in_attr.xml deleted file mode 100644 index 9e4d3beb..00000000 --- a/lib/feedparser/tests/wellformed/atom10/tag_in_attr.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <![CDATA[<img src="http://example.com/cat-dog.jpg" alt="cat<br />dog">]]> - diff --git a/lib/feedparser/tests/wellformed/base/cdf_item_abstract_xml_base.xml b/lib/feedparser/tests/wellformed/base/cdf_item_abstract_xml_base.xml deleted file mode 100644 index f90968e4..00000000 --- a/lib/feedparser/tests/wellformed/base/cdf_item_abstract_xml_base.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - channel title - channel abstract - - item title - item abstract - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_content_xml_base.xml b/lib/feedparser/tests/wellformed/base/entry_content_xml_base.xml deleted file mode 100644 index d64344ec..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_content_xml_base.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit.xml b/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit.xml deleted file mode 100644 index cd09929e..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit_2.xml b/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit_2.xml deleted file mode 100644 index 58c699d4..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit_3.xml b/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit_3.xml deleted file mode 100644 index 49c3ceab..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit_3.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -
blah blah blah
-
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit_4.xml b/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit_4.xml deleted file mode 100644 index 64053cf4..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_content_xml_base_inherit_4.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -
blah blah blah
-
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base.xml b/lib/feedparser/tests/wellformed/base/entry_summary_xml_base.xml deleted file mode 100644 index ae49ecf3..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit.xml b/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit.xml deleted file mode 100644 index 3fe23348..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_2.xml b/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_2.xml deleted file mode 100644 index cf0c95fd..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_3.xml b/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_3.xml deleted file mode 100644 index 75f442b6..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_3.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
blah blah blah
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_4.xml b/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_4.xml deleted file mode 100644 index d3602994..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_summary_xml_base_inherit_4.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
blah blah blah
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_title_xml_base.xml b/lib/feedparser/tests/wellformed/base/entry_title_xml_base.xml deleted file mode 100644 index 10a13fe8..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_title_xml_base.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit.xml b/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit.xml deleted file mode 100644 index b838c9ec..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit_2.xml b/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit_2.xml deleted file mode 100644 index 7bef55e6..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit_3.xml b/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit_3.xml deleted file mode 100644 index 28518d98..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit_3.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -
blah blah blah
- <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit_4.xml b/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit_4.xml deleted file mode 100644 index 7104e098..00000000 --- a/lib/feedparser/tests/wellformed/base/entry_title_xml_base_inherit_4.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -
blah blah blah
- <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base.xml b/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base.xml deleted file mode 100644 index 22a3de83..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit.xml b/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit.xml deleted file mode 100644 index fd19cc4b..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_2.xml b/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_2.xml deleted file mode 100644 index 5d2b7a66..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_3.xml b/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_3.xml deleted file mode 100644 index eddb60af..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_3.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
-
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_4.xml b/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_4.xml deleted file mode 100644 index 14afc9d7..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_copyright_xml_base_inherit_4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
-
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_info_xml_base.xml b/lib/feedparser/tests/wellformed/base/feed_info_xml_base.xml deleted file mode 100644 index 2f830c6a..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_info_xml_base.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit.xml b/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit.xml deleted file mode 100644 index 50cf9cd4..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit_2.xml b/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit_2.xml deleted file mode 100644 index 3a095a58..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit_3.xml b/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit_3.xml deleted file mode 100644 index 92f6d36f..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit_3.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
blah blah blah
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit_4.xml b/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit_4.xml deleted file mode 100644 index 09dcc337..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_info_xml_base_inherit_4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
blah blah blah
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_link_xml_base_iri.xml b/lib/feedparser/tests/wellformed/base/feed_link_xml_base_iri.xml deleted file mode 100644 index 4777baa2..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_link_xml_base_iri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base.xml b/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base.xml deleted file mode 100644 index 953f2b80..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit.xml b/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit.xml deleted file mode 100644 index c6339d7f..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_2.xml b/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_2.xml deleted file mode 100644 index 5ce1d77f..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_3.xml b/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_3.xml deleted file mode 100644 index 0e840363..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_3.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
-
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_4.xml b/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_4.xml deleted file mode 100644 index 6248bbd6..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_tagline_xml_base_inherit_4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
-
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_title_xml_base.xml b/lib/feedparser/tests/wellformed/base/feed_title_xml_base.xml deleted file mode 100644 index 3613c680..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_title_xml_base.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit.xml b/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit.xml deleted file mode 100644 index 8c06788b..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit_2.xml b/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit_2.xml deleted file mode 100644 index 8137b7f5..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit_3.xml b/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit_3.xml deleted file mode 100644 index 5123fb5d..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit_3.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
- <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit_4.xml b/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit_4.xml deleted file mode 100644 index 5675be27..00000000 --- a/lib/feedparser/tests/wellformed/base/feed_title_xml_base_inherit_4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
- <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_channel_docs_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_channel_docs_base_content_location.xml deleted file mode 100644 index 26f7ccd1..00000000 --- a/lib/feedparser/tests/wellformed/base/http_channel_docs_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -/relative/uri - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_channel_docs_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_channel_docs_base_docuri.xml deleted file mode 100644 index 933567e0..00000000 --- a/lib/feedparser/tests/wellformed/base/http_channel_docs_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -/relative/uri - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_channel_link_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_channel_link_base_content_location.xml deleted file mode 100644 index 400976b3..00000000 --- a/lib/feedparser/tests/wellformed/base/http_channel_link_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -/relative/uri - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_channel_link_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_channel_link_base_docuri.xml deleted file mode 100644 index 4611b591..00000000 --- a/lib/feedparser/tests/wellformed/base/http_channel_link_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -/relative/uri - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_author_url_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_author_url_base_content_location.xml deleted file mode 100644 index ad89d1d4..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_author_url_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - /relative/link - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_author_url_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_author_url_base_docuri.xml deleted file mode 100644 index 90de1ea2..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_author_url_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - /relative/link - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_content_base64_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_content_base64_base_content_location.xml deleted file mode 100644 index 5bdf866d..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_content_base64_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_content_base64_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_content_base64_base_docuri.xml deleted file mode 100644 index c2672064..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_content_base64_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_content_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_content_base_content_location.xml deleted file mode 100644 index 650fbd93..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_content_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -<div><a href="/relative/uri">click here</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_content_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_content_base_docuri.xml deleted file mode 100644 index 97c0e437..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_content_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<div><a href="/relative/uri">click here</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_content_inline_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_content_inline_base_content_location.xml deleted file mode 100644 index 71855723..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_content_inline_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_content_inline_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_content_inline_base_docuri.xml deleted file mode 100644 index cbd82ca0..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_content_inline_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_contributor_url_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_contributor_url_base_content_location.xml deleted file mode 100644 index 84f38b96..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_contributor_url_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - /relative/link - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_contributor_url_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_contributor_url_base_docuri.xml deleted file mode 100644 index 7bf7738b..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_contributor_url_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - /relative/link - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_id_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_id_base_content_location.xml deleted file mode 100644 index 2a3cf901..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_id_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - /relative/link - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_id_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_id_base_docuri.xml deleted file mode 100644 index a9e146d0..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_id_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - /relative/link - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_link_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_link_base_content_location.xml deleted file mode 100644 index b09bde69..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_link_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_link_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_link_base_docuri.xml deleted file mode 100644 index ec49b082..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_link_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_summary_base64_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_summary_base64_base_content_location.xml deleted file mode 100644 index 0833f811..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_summary_base64_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_summary_base64_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_summary_base64_base_docuri.xml deleted file mode 100644 index 4ae879cf..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_summary_base64_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_summary_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_summary_base_content_location.xml deleted file mode 100644 index 031cbdcc..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_summary_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -<div><a href="/relative/uri">click here</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_summary_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_summary_base_docuri.xml deleted file mode 100644 index 27279f60..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_summary_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<div><a href="/relative/uri">click here</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_summary_inline_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_summary_inline_base_content_location.xml deleted file mode 100644 index 32c365e5..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_summary_inline_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_summary_inline_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_summary_inline_base_docuri.xml deleted file mode 100644 index ea7820db..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_summary_inline_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_title_base64_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_title_base64_base_content_location.xml deleted file mode 100644 index e23bdbb5..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_title_base64_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_title_base64_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_title_base64_base_docuri.xml deleted file mode 100644 index b9a673f0..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_title_base64_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_title_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_title_base_content_location.xml deleted file mode 100644 index 9a0bc2b4..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_title_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -<div><a href="/relative/uri">click here</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_title_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_title_base_docuri.xml deleted file mode 100644 index 776fbcde..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_title_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<div><a href="/relative/uri">click here</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_title_inline_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_entry_title_inline_base_content_location.xml deleted file mode 100644 index 95f6bc07..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_title_inline_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -<div xmlns="http://www.w3.org/1999/xhtml"><a href="/relative/uri">click here</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_entry_title_inline_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_entry_title_inline_base_docuri.xml deleted file mode 100644 index cb766893..00000000 --- a/lib/feedparser/tests/wellformed/base/http_entry_title_inline_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<div xmlns="http://www.w3.org/1999/xhtml"><a href="/relative/uri">click here</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_author_url_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_author_url_base_content_location.xml deleted file mode 100644 index f9c757fc..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_author_url_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - /relative/link - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_author_url_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_author_url_base_docuri.xml deleted file mode 100644 index f4c5ab2b..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_author_url_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - /relative/link - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_contributor_url_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_contributor_url_base_content_location.xml deleted file mode 100644 index 07c762e6..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_contributor_url_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - /relative/link - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_contributor_url_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_contributor_url_base_docuri.xml deleted file mode 100644 index 962836c8..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_contributor_url_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - /relative/link - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_copyright_base64_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_copyright_base64_base_content_location.xml deleted file mode 100644 index 045f730e..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_copyright_base64_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_copyright_base64_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_copyright_base64_base_docuri.xml deleted file mode 100644 index 71764142..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_copyright_base64_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_copyright_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_copyright_base_content_location.xml deleted file mode 100644 index a15fe2a0..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_copyright_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -<div><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_copyright_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_copyright_base_docuri.xml deleted file mode 100644 index ff363af7..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_copyright_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<div><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_copyright_inline_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_copyright_inline_base_content_location.xml deleted file mode 100644 index f9e8555f..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_copyright_inline_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_copyright_inline_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_copyright_inline_base_docuri.xml deleted file mode 100644 index b076c7a1..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_copyright_inline_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_generator_url_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_generator_url_base_content_location.xml deleted file mode 100644 index 3b418bc0..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_generator_url_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -Movable Type - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_generator_url_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_generator_url_base_docuri.xml deleted file mode 100644 index b9d9e66e..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_generator_url_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -Movable Type - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_id_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_id_base_content_location.xml deleted file mode 100644 index 3f8b6ae6..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_id_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - /relative/link - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_id_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_id_base_docuri.xml deleted file mode 100644 index a4c67022..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_id_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - /relative/link - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_info_base64_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_info_base64_base_content_location.xml deleted file mode 100644 index 6bb78e83..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_info_base64_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_info_base64_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_info_base64_base_docuri.xml deleted file mode 100644 index 66ba7854..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_info_base64_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_info_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_info_base_content_location.xml deleted file mode 100644 index 78a09e5a..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_info_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -<div><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_info_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_info_base_docuri.xml deleted file mode 100644 index a19e737e..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_info_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<div><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_info_inline_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_info_inline_base_content_location.xml deleted file mode 100644 index 8e60e157..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_info_inline_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_info_inline_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_info_inline_base_docuri.xml deleted file mode 100644 index 41bd64a1..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_info_inline_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_link_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_link_base_content_location.xml deleted file mode 100644 index 3c416b1f..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_link_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_link_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_link_base_docuri.xml deleted file mode 100644 index ab7fe93d..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_link_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_tagline_base64_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_tagline_base64_base_content_location.xml deleted file mode 100644 index cfa216da..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_tagline_base64_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_tagline_base64_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_tagline_base64_base_docuri.xml deleted file mode 100644 index 2bd63232..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_tagline_base64_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_tagline_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_tagline_base_content_location.xml deleted file mode 100644 index 29e93e54..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_tagline_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -<div><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_tagline_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_tagline_base_docuri.xml deleted file mode 100644 index 2fe14caa..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_tagline_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<div><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_tagline_inline_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_tagline_inline_base_content_location.xml deleted file mode 100644 index 619b3a6a..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_tagline_inline_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_tagline_inline_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_tagline_inline_base_docuri.xml deleted file mode 100644 index e5a05f40..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_tagline_inline_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_title_base64_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_title_base64_base_content_location.xml deleted file mode 100644 index 38975b42..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_title_base64_base_content_location.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_title_base64_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_title_base64_base_docuri.xml deleted file mode 100644 index 88ee5ab3..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_title_base64_base_docuri.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -PGRpdj48YSBocmVmPSIvcmVsYXRpdmUvdXJpIj5jbGljayBoZXJlPC9hPjwvZGl2Pg== - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_title_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_title_base_content_location.xml deleted file mode 100644 index a0d29406..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_title_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -<div><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_title_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_title_base_docuri.xml deleted file mode 100644 index 0a9a9414..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_title_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<div><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_title_inline_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_feed_title_inline_base_content_location.xml deleted file mode 100644 index 2287791d..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_title_inline_base_content_location.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -<div xmlns="http://www.w3.org/1999/xhtml"><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_feed_title_inline_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_feed_title_inline_base_docuri.xml deleted file mode 100644 index 2eb83ad4..00000000 --- a/lib/feedparser/tests/wellformed/base/http_feed_title_inline_base_docuri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<div xmlns="http://www.w3.org/1999/xhtml"><a href="/relative/uri">click here</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_body_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_item_body_base_content_location.xml deleted file mode 100644 index 036295ac..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_body_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -click here - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_body_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_item_body_base_docuri.xml deleted file mode 100644 index 1abea106..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_body_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -click here - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_comments_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_item_comments_base_content_location.xml deleted file mode 100644 index 128cdddd..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_comments_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -/relative/uri - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_comments_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_item_comments_base_docuri.xml deleted file mode 100644 index a42a2848..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_comments_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -/relative/uri - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_content_encoded_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_item_content_encoded_base_content_location.xml deleted file mode 100644 index 03526eba..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_content_encoded_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -<a href="/relative/uri">click here</a> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_content_encoded_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_item_content_encoded_base_docuri.xml deleted file mode 100644 index d7e7430b..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_content_encoded_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<a href="/relative/uri">click here</a> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_description_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_item_description_base_content_location.xml deleted file mode 100644 index f935976f..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_description_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -<a href="/relative/uri">click here</a> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_description_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_item_description_base_docuri.xml deleted file mode 100644 index 0e56e0a8..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_description_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<a href="/relative/uri">click here</a> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_description_spaces.xml b/lib/feedparser/tests/wellformed/base/http_item_description_spaces.xml deleted file mode 100644 index 1efc8b7c..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_description_spaces.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<a href=" /relative/uri ">click here</a> - - - diff --git a/lib/feedparser/tests/wellformed/base/http_item_fullitem_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_item_fullitem_base_content_location.xml deleted file mode 100644 index a10d1054..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_fullitem_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -<a href="/relative/uri">click here</a> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_fullitem_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_item_fullitem_base_docuri.xml deleted file mode 100644 index 145fb7c1..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_fullitem_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<a href="/relative/uri">click here</a> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_link_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_item_link_base_content_location.xml deleted file mode 100644 index ad5fec18..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_link_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -/relative/uri - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_link_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_item_link_base_docuri.xml deleted file mode 100644 index c3dabac3..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_link_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -/relative/uri - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_wfw_commentRSS_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_item_wfw_commentRSS_base_content_location.xml deleted file mode 100644 index fe5c1a72..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_wfw_commentRSS_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -/relative/uri - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_wfw_commentRSS_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_item_wfw_commentRSS_base_docuri.xml deleted file mode 100644 index 0704efdb..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_wfw_commentRSS_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -/relative/uri - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_wfw_comment_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_item_wfw_comment_base_content_location.xml deleted file mode 100644 index f15c73a1..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_wfw_comment_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -/relative/uri - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_wfw_comment_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_item_wfw_comment_base_docuri.xml deleted file mode 100644 index f01880b1..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_wfw_comment_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -/relative/uri - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_xhtml_body_base_content_location.xml b/lib/feedparser/tests/wellformed/base/http_item_xhtml_body_base_content_location.xml deleted file mode 100644 index a30fdcea..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_xhtml_body_base_content_location.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -click here - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_item_xhtml_body_base_docuri.xml b/lib/feedparser/tests/wellformed/base/http_item_xhtml_body_base_docuri.xml deleted file mode 100644 index c7a441ea..00000000 --- a/lib/feedparser/tests/wellformed/base/http_item_xhtml_body_base_docuri.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -click here - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_relative_xml_base.xml b/lib/feedparser/tests/wellformed/base/http_relative_xml_base.xml deleted file mode 100644 index 46aa556e..00000000 --- a/lib/feedparser/tests/wellformed/base/http_relative_xml_base.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/http_relative_xml_base_2.xml b/lib/feedparser/tests/wellformed/base/http_relative_xml_base_2.xml deleted file mode 100644 index 362d948e..00000000 --- a/lib/feedparser/tests/wellformed/base/http_relative_xml_base_2.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/item_media_title1.xml b/lib/feedparser/tests/wellformed/base/item_media_title1.xml deleted file mode 100644 index d3c272e3..00000000 --- a/lib/feedparser/tests/wellformed/base/item_media_title1.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - bar - - - diff --git a/lib/feedparser/tests/wellformed/base/item_media_title2.xml b/lib/feedparser/tests/wellformed/base/item_media_title2.xml deleted file mode 100644 index 57c7aef9..00000000 --- a/lib/feedparser/tests/wellformed/base/item_media_title2.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - bar - foo - - - diff --git a/lib/feedparser/tests/wellformed/base/item_media_title3.xml b/lib/feedparser/tests/wellformed/base/item_media_title3.xml deleted file mode 100644 index a9fbd31c..00000000 --- a/lib/feedparser/tests/wellformed/base/item_media_title3.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - foo - bar - - - diff --git a/lib/feedparser/tests/wellformed/base/malformed_base.xml b/lib/feedparser/tests/wellformed/base/malformed_base.xml deleted file mode 100644 index 3bed7b02..00000000 --- a/lib/feedparser/tests/wellformed/base/malformed_base.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/rel_uri_with_unicode_character.xml b/lib/feedparser/tests/wellformed/base/rel_uri_with_unicode_character.xml deleted file mode 100644 index 2f8d9330..00000000 --- a/lib/feedparser/tests/wellformed/base/rel_uri_with_unicode_character.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - <a href="À">uri</a> - - - diff --git a/lib/feedparser/tests/wellformed/base/relative_xml_base.xml b/lib/feedparser/tests/wellformed/base/relative_xml_base.xml deleted file mode 100644 index 1c686c63..00000000 --- a/lib/feedparser/tests/wellformed/base/relative_xml_base.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/relative_xml_base_2.xml b/lib/feedparser/tests/wellformed/base/relative_xml_base_2.xml deleted file mode 100644 index 4d2115e4..00000000 --- a/lib/feedparser/tests/wellformed/base/relative_xml_base_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/base/unsafe_base.xml b/lib/feedparser/tests/wellformed/base/unsafe_base.xml deleted file mode 100644 index 50b8c30f..00000000 --- a/lib/feedparser/tests/wellformed/base/unsafe_base.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - diff --git a/lib/feedparser/tests/wellformed/cdf/channel_abstract_map_description.xml b/lib/feedparser/tests/wellformed/cdf/channel_abstract_map_description.xml deleted file mode 100644 index 8bce8d9e..00000000 --- a/lib/feedparser/tests/wellformed/cdf/channel_abstract_map_description.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/cdf/channel_abstract_map_tagline.xml b/lib/feedparser/tests/wellformed/cdf/channel_abstract_map_tagline.xml deleted file mode 100644 index 04feca0c..00000000 --- a/lib/feedparser/tests/wellformed/cdf/channel_abstract_map_tagline.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/cdf/channel_href_map_link.xml b/lib/feedparser/tests/wellformed/cdf/channel_href_map_link.xml deleted file mode 100644 index 133f1419..00000000 --- a/lib/feedparser/tests/wellformed/cdf/channel_href_map_link.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/cdf/channel_href_map_links.xml b/lib/feedparser/tests/wellformed/cdf/channel_href_map_links.xml deleted file mode 100644 index 0c65bc27..00000000 --- a/lib/feedparser/tests/wellformed/cdf/channel_href_map_links.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/cdf/channel_lastmod.xml b/lib/feedparser/tests/wellformed/cdf/channel_lastmod.xml deleted file mode 100644 index 7b91da4d..00000000 --- a/lib/feedparser/tests/wellformed/cdf/channel_lastmod.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/lib/feedparser/tests/wellformed/cdf/channel_lastmod_parsed.xml b/lib/feedparser/tests/wellformed/cdf/channel_lastmod_parsed.xml deleted file mode 100644 index 65faa72c..00000000 --- a/lib/feedparser/tests/wellformed/cdf/channel_lastmod_parsed.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/lib/feedparser/tests/wellformed/cdf/channel_title.xml b/lib/feedparser/tests/wellformed/cdf/channel_title.xml deleted file mode 100644 index 080c725f..00000000 --- a/lib/feedparser/tests/wellformed/cdf/channel_title.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example feed - diff --git a/lib/feedparser/tests/wellformed/cdf/item_abstract_map_description.xml b/lib/feedparser/tests/wellformed/cdf/item_abstract_map_description.xml deleted file mode 100644 index 64821d07..00000000 --- a/lib/feedparser/tests/wellformed/cdf/item_abstract_map_description.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/cdf/item_abstract_map_summary.xml b/lib/feedparser/tests/wellformed/cdf/item_abstract_map_summary.xml deleted file mode 100644 index 14946c9d..00000000 --- a/lib/feedparser/tests/wellformed/cdf/item_abstract_map_summary.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/cdf/item_href_map_link.xml b/lib/feedparser/tests/wellformed/cdf/item_href_map_link.xml deleted file mode 100644 index 973609eb..00000000 --- a/lib/feedparser/tests/wellformed/cdf/item_href_map_link.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/cdf/item_href_map_links.xml b/lib/feedparser/tests/wellformed/cdf/item_href_map_links.xml deleted file mode 100644 index a55082e9..00000000 --- a/lib/feedparser/tests/wellformed/cdf/item_href_map_links.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/cdf/item_lastmod.xml b/lib/feedparser/tests/wellformed/cdf/item_lastmod.xml deleted file mode 100644 index 50db8a13..00000000 --- a/lib/feedparser/tests/wellformed/cdf/item_lastmod.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/lib/feedparser/tests/wellformed/cdf/item_lastmod_parsed.xml b/lib/feedparser/tests/wellformed/cdf/item_lastmod_parsed.xml deleted file mode 100644 index 1767352f..00000000 --- a/lib/feedparser/tests/wellformed/cdf/item_lastmod_parsed.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/lib/feedparser/tests/wellformed/cdf/item_title.xml b/lib/feedparser/tests/wellformed/cdf/item_title.xml deleted file mode 100644 index 50fb359d..00000000 --- a/lib/feedparser/tests/wellformed/cdf/item_title.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example item - - diff --git a/lib/feedparser/tests/wellformed/feedburner/feedburner_browserfriendly.xml b/lib/feedparser/tests/wellformed/feedburner/feedburner_browserfriendly.xml deleted file mode 100644 index 4d341cf0..00000000 --- a/lib/feedparser/tests/wellformed/feedburner/feedburner_browserfriendly.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site. - - diff --git a/lib/feedparser/tests/wellformed/http/headers_content_location-relative.xml b/lib/feedparser/tests/wellformed/http/headers_content_location-relative.xml deleted file mode 100644 index 4c0254fe..00000000 --- a/lib/feedparser/tests/wellformed/http/headers_content_location-relative.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/wellformed/http/headers_content_location-unsafe.xml b/lib/feedparser/tests/wellformed/http/headers_content_location-unsafe.xml deleted file mode 100644 index e22c2625..00000000 --- a/lib/feedparser/tests/wellformed/http/headers_content_location-unsafe.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/lib/feedparser/tests/wellformed/http/headers_etag.xml b/lib/feedparser/tests/wellformed/http/headers_etag.xml deleted file mode 100644 index af4f905c..00000000 --- a/lib/feedparser/tests/wellformed/http/headers_etag.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/http/headers_foo.xml b/lib/feedparser/tests/wellformed/http/headers_foo.xml deleted file mode 100644 index e32833fb..00000000 --- a/lib/feedparser/tests/wellformed/http/headers_foo.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - diff --git a/lib/feedparser/tests/wellformed/http/headers_no_etag.xml b/lib/feedparser/tests/wellformed/http/headers_no_etag.xml deleted file mode 100644 index 051c2a15..00000000 --- a/lib/feedparser/tests/wellformed/http/headers_no_etag.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_block.xml deleted file mode 100644 index 1d7b87ed..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - yes - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_false.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_false.xml deleted file mode 100644 index a935e1ce..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_false.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - false - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_no.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_no.xml deleted file mode 100644 index 1aa62758..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_no.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - no - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_true.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_true.xml deleted file mode 100644 index 93655ae5..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_true.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - true - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_uppercase.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_uppercase.xml deleted file mode 100644 index c031ef2c..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_uppercase.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - YES - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_whitespace.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_whitespace.xml deleted file mode 100644 index 864f5e3d..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_block_whitespace.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - yes - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_category.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_category.xml deleted file mode 100644 index 7a670a27..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_category.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_category_nested.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_category_nested.xml deleted file mode 100644 index 7ec9d588..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_category_nested.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_category_scheme.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_category_scheme.xml deleted file mode 100644 index 00fde6bc..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_category_scheme.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit.xml deleted file mode 100644 index 584f1fd6..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - yes - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_clean.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_clean.xml deleted file mode 100644 index caec32fd..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_clean.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - clean - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_false.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_false.xml deleted file mode 100644 index 71b2e008..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_false.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - false - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_no.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_no.xml deleted file mode 100644 index 369021b6..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_no.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - no - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_true.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_true.xml deleted file mode 100644 index ddb7a8bd..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_true.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - true - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_uppercase.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_uppercase.xml deleted file mode 100644 index a9fc6fa8..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_uppercase.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - YES - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_whitespace.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_whitespace.xml deleted file mode 100644 index 38105316..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_explicit_whitespace.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - yes - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_image.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_image.xml deleted file mode 100644 index 883352ef..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_image.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_image_no_href.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_image_no_href.xml deleted file mode 100644 index a0d455a8..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_image_no_href.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - http://i.INVALID/i.gif - - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_image_url.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_image_url.xml deleted file mode 100644 index 4778c715..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_image_url.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords.xml deleted file mode 100644 index 299fb7b3..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Technology - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords_duplicate.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords_duplicate.xml deleted file mode 100644 index 5ca4085d..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords_duplicate.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Technology,Technology - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords_duplicate_2.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords_duplicate_2.xml deleted file mode 100644 index 4fcfa5b9..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords_duplicate_2.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - -Technology - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords_multiple.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords_multiple.xml deleted file mode 100644 index 9629e014..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_keywords_multiple.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Technology, Gadgets - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_link_image.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_link_image.xml deleted file mode 100644 index c89dc9f1..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_link_image.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_owner_email.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_owner_email.xml deleted file mode 100644 index 92c433b4..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_owner_email.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Mark Pilgrim -mark@example.com - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_owner_name.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_owner_name.xml deleted file mode 100644 index 6d3d54fe..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_owner_name.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Mark Pilgrim -mark@example.com - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_subtitle.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_subtitle.xml deleted file mode 100644 index c638bf5b..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_subtitle.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example subtitle - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_channel_summary.xml b/lib/feedparser/tests/wellformed/itunes/itunes_channel_summary.xml deleted file mode 100644 index f23b3284..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_channel_summary.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example summary - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_core_element_uppercase.xml b/lib/feedparser/tests/wellformed/itunes/itunes_core_element_uppercase.xml deleted file mode 100644 index 9b3e91f2..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_core_element_uppercase.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example title - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_author_map_author.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_author_map_author.xml deleted file mode 100644 index e6764845..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_author_map_author.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Mark Pilgrim - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_block.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_block.xml deleted file mode 100644 index e7d05ccd..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_block.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - yes - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_false.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_block_false.xml deleted file mode 100644 index 7f9d4da7..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_false.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - false - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_no.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_block_no.xml deleted file mode 100644 index f09435bb..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_no.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - no - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_true.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_block_true.xml deleted file mode 100644 index e30de679..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_true.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - true - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_uppercase.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_block_uppercase.xml deleted file mode 100644 index 8ebabeab..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_uppercase.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - YES - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_whitespace.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_block_whitespace.xml deleted file mode 100644 index ca71b54e..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_block_whitespace.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - yes - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_category.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_category.xml deleted file mode 100644 index 54e312ca..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_category.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_category_nested.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_category_nested.xml deleted file mode 100644 index 4939da1b..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_category_nested.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_category_scheme.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_category_scheme.xml deleted file mode 100644 index ab66dcc4..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_category_scheme.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_duration.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_duration.xml deleted file mode 100644 index 20a83efb..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_duration.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - 3:00 - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit.xml deleted file mode 100644 index e5d9d39c..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - yes - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_clean.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_clean.xml deleted file mode 100644 index eb4e89e8..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_clean.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - clean - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_false.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_false.xml deleted file mode 100644 index f3c0610d..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_false.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - false - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_no.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_no.xml deleted file mode 100644 index b2a0b3cd..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_no.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - no - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_true.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_true.xml deleted file mode 100644 index c42c3c58..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_true.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - true - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_uppercase.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_uppercase.xml deleted file mode 100644 index 017c24d5..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_uppercase.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - YES - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_whitespace.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_whitespace.xml deleted file mode 100644 index 8bf2f539..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_explicit_whitespace.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - yes - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_image.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_image.xml deleted file mode 100644 index 2c0f9c76..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_image.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_image_url.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_image_url.xml deleted file mode 100644 index 3a23c495..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_image_url.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_link_image.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_link_image.xml deleted file mode 100644 index befa0ac9..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_link_image.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_subtitle.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_subtitle.xml deleted file mode 100644 index 7a485236..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_subtitle.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example subtitle - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_item_summary.xml b/lib/feedparser/tests/wellformed/itunes/itunes_item_summary.xml deleted file mode 100644 index 159918a1..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_item_summary.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - Example summary - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_namespace.xml b/lib/feedparser/tests/wellformed/itunes/itunes_namespace.xml deleted file mode 100644 index 8a1fc43b..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_namespace.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - yes - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_namespace_example.xml b/lib/feedparser/tests/wellformed/itunes/itunes_namespace_example.xml deleted file mode 100644 index 24221d80..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_namespace_example.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - yes - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_namespace_lowercase.xml b/lib/feedparser/tests/wellformed/itunes/itunes_namespace_lowercase.xml deleted file mode 100644 index fdceb9e2..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_namespace_lowercase.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - yes - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/itunes/itunes_namespace_uppercase.xml b/lib/feedparser/tests/wellformed/itunes/itunes_namespace_uppercase.xml deleted file mode 100644 index 9d78ea5e..00000000 --- a/lib/feedparser/tests/wellformed/itunes/itunes_namespace_uppercase.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - yes - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/channel_dc_language.xml b/lib/feedparser/tests/wellformed/lang/channel_dc_language.xml deleted file mode 100644 index 8ca66fbe..00000000 --- a/lib/feedparser/tests/wellformed/lang/channel_dc_language.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -en - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/channel_language.xml b/lib/feedparser/tests/wellformed/lang/channel_language.xml deleted file mode 100644 index 85009399..00000000 --- a/lib/feedparser/tests/wellformed/lang/channel_language.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -en-us - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang.xml deleted file mode 100644 index 96bf686b..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_blank.xml b/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_blank.xml deleted file mode 100644 index 25bf9c34..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_blank.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_blank_2.xml b/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_blank_2.xml deleted file mode 100644 index 6c508498..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_blank_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_blank_3.xml b/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_blank_3.xml deleted file mode 100644 index ea34db9d..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_blank_3.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -
Example test
-
- -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit.xml deleted file mode 100644 index 80445b17..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_2.xml b/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_2.xml deleted file mode 100644 index fe1d3b07..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_3.xml b/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_3.xml deleted file mode 100644 index c80c753d..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_3.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -
blah blah blah
-
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_4.xml b/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_4.xml deleted file mode 100644 index 8399d1f1..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_inherit_4.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -
blah blah blah
-
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_underscore.xml b/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_underscore.xml deleted file mode 100644 index 9de86a43..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_content_xml_lang_underscore.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - diff --git a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang.xml deleted file mode 100644 index 63d8966c..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_blank.xml b/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_blank.xml deleted file mode 100644 index 39383476..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_blank.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit.xml deleted file mode 100644 index 4d1b1659..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_2.xml b/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_2.xml deleted file mode 100644 index 3d894061..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
Example test
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_3.xml b/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_3.xml deleted file mode 100644 index 37ada76c..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_3.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
blah blah blah
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_4.xml b/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_4.xml deleted file mode 100644 index 4a5909e2..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_summary_xml_lang_inherit_4.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
blah blah blah
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang.xml deleted file mode 100644 index e10a4fd6..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example Atom - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_blank.xml b/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_blank.xml deleted file mode 100644 index 0152a4aa..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_blank.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit.xml deleted file mode 100644 index 752bf686..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_2.xml b/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_2.xml deleted file mode 100644 index 2fa32a82..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_3.xml b/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_3.xml deleted file mode 100644 index 93efc4d2..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_3.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -
blah blah blah
- <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_4.xml b/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_4.xml deleted file mode 100644 index 28c8a0df..00000000 --- a/lib/feedparser/tests/wellformed/lang/entry_title_xml_lang_inherit_4.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -
blah blah blah
- <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang.xml deleted file mode 100644 index 2ec0dffc..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_blank.xml b/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_blank.xml deleted file mode 100644 index 1dc0b95d..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_blank.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit.xml deleted file mode 100644 index 0edff944..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_2.xml b/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_2.xml deleted file mode 100644 index 900a3242..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_3.xml b/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_3.xml deleted file mode 100644 index 3957f454..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_3.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
-
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_4.xml b/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_4.xml deleted file mode 100644 index 0752e966..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_copyright_xml_lang_inherit_4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
-
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang.xml deleted file mode 100644 index e863e8de..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_blank.xml b/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_blank.xml deleted file mode 100644 index cb8f7f5a..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_blank.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit.xml deleted file mode 100644 index b36cfa8d..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_2.xml b/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_2.xml deleted file mode 100644 index 8e665406..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_3.xml b/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_3.xml deleted file mode 100644 index 5aaf56a2..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_3.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
blah blah blah
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_4.xml b/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_4.xml deleted file mode 100644 index 4764fb03..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_info_xml_lang_inherit_4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
blah blah blah
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_language.xml b/lib/feedparser/tests/wellformed/lang/feed_language.xml deleted file mode 100644 index 4301594c..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_language.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -en - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_language_override.xml b/lib/feedparser/tests/wellformed/lang/feed_language_override.xml deleted file mode 100644 index 4301594c..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_language_override.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -en - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_not_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/feed_not_xml_lang.xml deleted file mode 100644 index 6e89e9c9..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_not_xml_lang.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -foo - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_not_xml_lang_2.xml b/lib/feedparser/tests/wellformed/lang/feed_not_xml_lang_2.xml deleted file mode 100644 index 5ea58f5e..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_not_xml_lang_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -foo - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang.xml deleted file mode 100644 index c7a3088e..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_blank.xml b/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_blank.xml deleted file mode 100644 index ece12084..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_blank.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit.xml deleted file mode 100644 index 97d78896..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_2.xml b/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_2.xml deleted file mode 100644 index 72fea3c6..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_3.xml b/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_3.xml deleted file mode 100644 index bda6b065..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_3.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
-
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_4.xml b/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_4.xml deleted file mode 100644 index 8d9b83dd..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_tagline_xml_lang_inherit_4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
-
Example test
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang.xml deleted file mode 100644 index 3ce6b48d..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - Example Atom - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_blank.xml b/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_blank.xml deleted file mode 100644 index 12a5d465..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_blank.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit.xml deleted file mode 100644 index 0a2e6b20..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_2.xml b/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_2.xml deleted file mode 100644 index 1d9a636d..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_2.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_3.xml b/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_3.xml deleted file mode 100644 index 535e34e8..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_3.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
- <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_4.xml b/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_4.xml deleted file mode 100644 index de9bff9e..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_title_xml_lang_inherit_4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -
blah blah blah
- <div xmlns="http://www.w3.org/1999/xhtml">Example <a href="test.html">test</a></div> -
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/feed_xml_lang.xml deleted file mode 100644 index e60bc559..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_xml_lang.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/feed_xml_lang_underscore.xml b/lib/feedparser/tests/wellformed/lang/feed_xml_lang_underscore.xml deleted file mode 100644 index d29a49e7..00000000 --- a/lib/feedparser/tests/wellformed/lang/feed_xml_lang_underscore.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/lib/feedparser/tests/wellformed/lang/http_content_language.xml b/lib/feedparser/tests/wellformed/lang/http_content_language.xml deleted file mode 100644 index cc245abb..00000000 --- a/lib/feedparser/tests/wellformed/lang/http_content_language.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/http_content_language_entry_title_inherit.xml b/lib/feedparser/tests/wellformed/lang/http_content_language_entry_title_inherit.xml deleted file mode 100644 index 97c4b199..00000000 --- a/lib/feedparser/tests/wellformed/lang/http_content_language_entry_title_inherit.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -foo - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/http_content_language_entry_title_inherit_2.xml b/lib/feedparser/tests/wellformed/lang/http_content_language_entry_title_inherit_2.xml deleted file mode 100644 index cc573e9a..00000000 --- a/lib/feedparser/tests/wellformed/lang/http_content_language_entry_title_inherit_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - -1 -foo - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/http_content_language_feed_language.xml b/lib/feedparser/tests/wellformed/lang/http_content_language_feed_language.xml deleted file mode 100644 index 4421746b..00000000 --- a/lib/feedparser/tests/wellformed/lang/http_content_language_feed_language.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -fr - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/http_content_language_feed_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/http_content_language_feed_xml_lang.xml deleted file mode 100644 index 0ab11869..00000000 --- a/lib/feedparser/tests/wellformed/lang/http_content_language_feed_xml_lang.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/item_content_encoded_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/item_content_encoded_xml_lang.xml deleted file mode 100644 index 0a61f55b..00000000 --- a/lib/feedparser/tests/wellformed/lang/item_content_encoded_xml_lang.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/item_content_encoded_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/item_content_encoded_xml_lang_inherit.xml deleted file mode 100644 index 69397d46..00000000 --- a/lib/feedparser/tests/wellformed/lang/item_content_encoded_xml_lang_inherit.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/item_dc_language.xml b/lib/feedparser/tests/wellformed/lang/item_dc_language.xml deleted file mode 100644 index 045a4715..00000000 --- a/lib/feedparser/tests/wellformed/lang/item_dc_language.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -en - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/item_fullitem_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/item_fullitem_xml_lang.xml deleted file mode 100644 index 0a4da4ad..00000000 --- a/lib/feedparser/tests/wellformed/lang/item_fullitem_xml_lang.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/item_fullitem_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/item_fullitem_xml_lang_inherit.xml deleted file mode 100644 index 7fe98d1c..00000000 --- a/lib/feedparser/tests/wellformed/lang/item_fullitem_xml_lang_inherit.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/item_xhtml_body_xml_lang.xml b/lib/feedparser/tests/wellformed/lang/item_xhtml_body_xml_lang.xml deleted file mode 100644 index 4f483877..00000000 --- a/lib/feedparser/tests/wellformed/lang/item_xhtml_body_xml_lang.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - -

Example content

- -
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/lang/item_xhtml_body_xml_lang_inherit.xml b/lib/feedparser/tests/wellformed/lang/item_xhtml_body_xml_lang_inherit.xml deleted file mode 100644 index a9eb6347..00000000 --- a/lib/feedparser/tests/wellformed/lang/item_xhtml_body_xml_lang_inherit.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - -

Example content

- -
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/mf_hcard/3-5-5-org-unicode.xml b/lib/feedparser/tests/wellformed/mf_hcard/3-5-5-org-unicode.xml deleted file mode 100644 index 3cb6c96f..00000000 --- a/lib/feedparser/tests/wellformed/mf_hcard/3-5-5-org-unicode.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - -<div class="vcard"> -<span class='org'>´</span> -</div> - - - diff --git a/lib/feedparser/tests/wellformed/mf_rel_tag/rel_tag_term_no_term.xml b/lib/feedparser/tests/wellformed/mf_rel_tag/rel_tag_term_no_term.xml deleted file mode 100644 index 75db178e..00000000 --- a/lib/feedparser/tests/wellformed/mf_rel_tag/rel_tag_term_no_term.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -<a href='http://empty-path.test' rel='tag'>anything</a> - - - diff --git a/lib/feedparser/tests/wellformed/namespace/atommathml.xml b/lib/feedparser/tests/wellformed/namespace/atommathml.xml deleted file mode 100644 index 1795a2e0..00000000 --- a/lib/feedparser/tests/wellformed/namespace/atommathml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
a+b
-
-
diff --git a/lib/feedparser/tests/wellformed/namespace/atomsvg.xml b/lib/feedparser/tests/wellformed/namespace/atomsvg.xml deleted file mode 100644 index ecee5ed7..00000000 --- a/lib/feedparser/tests/wellformed/namespace/atomsvg.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
-
-
diff --git a/lib/feedparser/tests/wellformed/namespace/atomsvgdctitle.xml b/lib/feedparser/tests/wellformed/namespace/atomsvgdctitle.xml deleted file mode 100644 index d28c9e33..00000000 --- a/lib/feedparser/tests/wellformed/namespace/atomsvgdctitle.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - -
-

Before

- - - - - Christmas Tree - - - - Aaron Spike - - - - - - - - - - - -

After

-
-
-
-
diff --git a/lib/feedparser/tests/wellformed/namespace/atomsvgdesc.xml b/lib/feedparser/tests/wellformed/namespace/atomsvgdesc.xml deleted file mode 100644 index 5f9311cd..00000000 --- a/lib/feedparser/tests/wellformed/namespace/atomsvgdesc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
foo
-
-
diff --git a/lib/feedparser/tests/wellformed/namespace/atomsvgtitle.xml b/lib/feedparser/tests/wellformed/namespace/atomsvgtitle.xml deleted file mode 100644 index 7848e992..00000000 --- a/lib/feedparser/tests/wellformed/namespace/atomsvgtitle.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
foo
-
-
diff --git a/lib/feedparser/tests/wellformed/namespace/atomthreading.xml b/lib/feedparser/tests/wellformed/namespace/atomthreading.xml deleted file mode 100644 index b5d6ea66..00000000 --- a/lib/feedparser/tests/wellformed/namespace/atomthreading.xml +++ /dev/null @@ -1,5 +0,0 @@ - - diff --git a/lib/feedparser/tests/wellformed/namespace/atomthreadingwithentry.xml b/lib/feedparser/tests/wellformed/namespace/atomthreadingwithentry.xml deleted file mode 100644 index 79c7e4d0..00000000 --- a/lib/feedparser/tests/wellformed/namespace/atomthreadingwithentry.xml +++ /dev/null @@ -1,6 +0,0 @@ - - -tag:blogger.com,1999:blog-893591374313312737.post3861663258538857954..comments2009-12-08T16:59:02.563-08:00Comments on salmon-test: Test postJohnnoreply@blogger.comBlogger30125tag:blogger.com,1999:blog-893591374313312737.post-47886288576257377012009-12-08T16:59:02.544-08:002009-12-08T16:59:02.544-08:00bloffo bliff by te...bloffo bliff by <a href="http://example.org/profile/te..." rel="nofollow">te...</a>Johnhttp://www.blogger.com/profile/12344017489797258795noreply@blogger.com diff --git a/lib/feedparser/tests/wellformed/namespace/atomxlink.xml b/lib/feedparser/tests/wellformed/namespace/atomxlink.xml deleted file mode 100644 index ed7105ec..00000000 --- a/lib/feedparser/tests/wellformed/namespace/atomxlink.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
-
-
diff --git a/lib/feedparser/tests/wellformed/namespace/rss1.0withModules.xml b/lib/feedparser/tests/wellformed/namespace/rss1.0withModules.xml deleted file mode 100644 index 469b7630..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss1.0withModules.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - RSS Tests - RSS 1.0 - http://www.pocketsoap.com/rssTests/rss1.0withModules.xml - A set of test RSS files for examining the state of extension support in RSS aggregators - en-gb - Copyright 2002 Simon Fell - - 2002-09-28T20:01:19Z - sf@zaks.demon.co.uk - sf@zaks.demon.co.uk - - 2002-09-28T20:01:19Z - 2002-01-12T02:15:32Z - - 2002-09-28T20:01:19Z - 2002 - - - - - - - - - - Test Item - RSS 1.0 - http://www.pocketsoap.com/weblog/rssTests/rss1.0withModules.xml#1 - - This is a fairly standard RSS 1.0 feed with a few modules, with no localname clashes, any aggregator that supports RSS 1.0 should handle this fine (RSS 1.0) - 2002-09-28T20:01:19Z - - 2002-09-28T20:01:19Z - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/namespace/rss1.0withModulesNoDefNS.xml b/lib/feedparser/tests/wellformed/namespace/rss1.0withModulesNoDefNS.xml deleted file mode 100644 index d0442be1..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss1.0withModulesNoDefNS.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - RSS Tests - RSS 1.0 no Default NS - http://www.pocketsoap.com/rssTests/rss1.0withModulesNoDefNS.xml - A set of test RSS files for examining the state of extension support in RSS aggregators - en-gb - Copyright 2002 Simon Fell - - 2002-09-28T20:01:19Z - sf@zaks.demon.co.uk - sf@zaks.demon.co.uk - - 2002-09-28T20:01:19Z - 2002-01-12T02:15:32Z - - 2002-09-28T20:01:19Z - 2002 - - - - - - - - - - Test Item - RSS 1.0 no Default NS - http://www.pocketsoap.com/weblog/rssTests/rss1.0withModulesNoDefNS.xml#1 - - This is a fairly standard RSS 1.0 feed with a few modules, with no localname clashes, any aggregator that supports RSS 1.0 should handle this fine. This doesn't use - any default namespace declarations, all namespaces are mapped to prefixes. As far the namespace spec is concerned this is identical to the rss1.0withModules.xml version (RSS 1.0 no Default NS) - 2002-09-28T20:01:19Z - - 2002-09-28T20:01:19Z - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/namespace/rss1.0withModulesNoDefNSLocalNameClash.xml b/lib/feedparser/tests/wellformed/namespace/rss1.0withModulesNoDefNSLocalNameClash.xml deleted file mode 100644 index f09c9f5f..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss1.0withModulesNoDefNSLocalNameClash.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - RSS Tests - RSS 1.0 no Default NS, localName clashes - http://www.pocketsoap.com/rssTests/rss1.0withModulesNoDefNSLocalNameClash.xml - A set of test RSS files for examining the state of extension support in RSS aggregators - en-gb - Copyright 2002 Simon Fell - - 2002-09-28T20:01:19Z - sf@zaks.demon.co.uk - sf@zaks.demon.co.uk - - 2002-09-28T20:01:19Z - 2002-01-12T02:15:32Z - - 2002-09-28T20:01:19Z - 2002 - - - - - - - - - - Test Item - RSS 1.0 no Default NS, localName clashes - http://www.pocketsoap.com/weblog/rssTests/rss1.0withModulesNoDefNSLocalNameClash.xml#1 - - This is a extension module that is in a different namespace, but uses a localname from the RSS core spec. - This shouldn't appear in your aggregator, but probably does. (pre rss:description RSS 1.0 no Default NS, localName clashes) - - correct description - This is a extension module that is in a different namespace, but uses a localname from the RSS core spec. - This shouldn't appear in your aggregator, but probably does. (post rss:description RSS 1.0 no Default NS, localName clashes) - - 2002-09-28T20:01:19Z - 2002-09-28T20:01:19Z - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0NSwithModules.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0NSwithModules.xml deleted file mode 100644 index 99f40d77..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0NSwithModules.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - RSS Tests - RSS2.0 w/ NS - http://www.pocketsoap.com/rssTests/rss2.0NSwithModules.xml - A set of test RSS files for examining the state of extension support in RSS aggregators - en-gb - Copyright 2002 Simon Fell - - Copyright 2002 Simon Fell - 2002-09-28T21:00:02Z - Sat, 28 Sep 2002 21:00:02 GMT - Sat, 28 Sep 2002 21:00:02 GMT - sf@zaks.demon.co.uk - sf@zaks.demon.co.uk - - sf@zaks.demon.co.uk - ultraedit-32 - - sf@zaks.demon.co.uk (Simon Fell) - 2002-09-28T20:01:19Z - 2002-01-12T02:15:32Z - - 2002-09-28T20:01:19Z - 2002 - - - Test Item - RSS2.0 w/ NS - http://www.pocketsoap.com/weblog/rssTests/rss2.0NSwithModules.xml#1 - This is a fairly standard RSS 2.0 feed, it uses a few modules, the RSS 2.0 elements are in the http://backend.userland.com/rss2 namespace, all module elements are in their required namespaces. - there are no localname clashes. This is very similar to a RSS1.0 feed. (RSS2.0 w/ NS) - - - 2002-09-28T20:01:19Z - 2002-09-28T20:01:19Z - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNS.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNS.xml deleted file mode 100644 index 7f374dd2..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNS.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - RSS Tests - RSS2.0 w/ NS no default NS - http://www.pocketsoap.com/rssTests/rss2.0NSwithModulesNoDefNS.xml - A set of test RSS files for examining the state of extension support in RSS aggregators - en-gb - Copyright 2002 Simon Fell - - Copyright 2002 Simon Fell - 2002-09-28T21:00:02Z - Sat, 28 Sep 2002 21:00:02 GMT - Sat, 28 Sep 2002 21:00:02 GMT - sf@zaks.demon.co.uk - sf@zaks.demon.co.uk - - sf@zaks.demon.co.uk - ultraedit-32 - - sf@zaks.demon.co.uk (Simon Fell) - 2002-09-28T20:01:19Z - 2002-01-12T02:15:32Z - - 2002-09-28T20:01:19Z - 2002 - - - Test Item - - RSS2.0 w/ NS no default NS - http://www.pocketsoap.com/weblog/rssTests/rss2.0withModulesNoDefNS.xml#1 - This is a fairly standard RSS 2.0 feed, it uses a few modules, the RSS 2.0 elements are in the http://backend.userland.com/rss2 namespace, all module elements are in their required namespaces. - there are no localname clashes, all elements uses namespace prefixes, there is no default namespace declared. This is very similar to a RSS1.0 feed. (RSS2.0 w/ NS no default NS) - - - 2002-09-28T20:01:19Z - 2002-09-28T20:01:19Z - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNSLocalNameClash.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNSLocalNameClash.xml deleted file mode 100644 index be99b57c..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNSLocalNameClash.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - RSS Tests - RSS2.0 w/ NS, no default NS, localName clash - http://www.pocketsoap.com/rssTests/rss2.0NSwithModulesNoDefNSLocalNameClash.xml - A set of test RSS files for examining the state of extension support in RSS aggregators - en-gb - en-gb - - Copyright 2002 Simon Fell - Copyright 2002 Simon Fell - 2002-09-28T21:00:02Z - Sat, 28 Sep 2002 21:00:02 GMT - Sat, 28 Sep 2002 21:00:02 GMT - sf@zaks.demon.co.uk - - sf@zaks.demon.co.uk - sf@zaks.demon.co.uk - ultraedit-32 - - sf@zaks.demon.co.uk (Simon Fell) - 2002-09-28T20:01:19Z - - 2002-01-12T02:15:32Z - 2002-09-28T20:01:19Z - 2002 - - - Test Item - RSS2.0 w/ NS, no default NS, localName clash - http://www.pocketsoap.com/weblog/rssTests/rss2.0NSwithModulesNoDefNSLocalNameClash.xml#1 - - - This is a extension module that is in a different namespace, but uses a localname from the RSS core spec. - This shouldn't appear in your aggregator, but probably does. (pre rss:description - RSS2.0 w/ NS, no default NS, localName clash) - - correct description - This is a extension module that is in a different namespace, but uses a localname from the RSS core spec. - This shouldn't appear in your aggregator, but probably does. (post rss:description - RSS2.0 w/ NS, no default NS, localName clash) - - 2002-09-28T20:01:19Z - 2002-09-28T20:01:19Z - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0mathml.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0mathml.xml deleted file mode 100644 index 0a1bbca7..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0mathml.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<math xmlns='http://www.w3.org/1998/Math/MathML'><mrow xlink:type="simple" xlink:show="replace" xlink:href="http://golem.ph.utexas.edu"><mrow><mi>a</mi><mo>+</mo><mi>b</mi></mrow></mrow></math> - - - diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0noNSwithModules.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0noNSwithModules.xml deleted file mode 100644 index 3869d964..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0noNSwithModules.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - RSS Tests - RSS2.0 no NS - http://www.pocketsoap.com/rssTests/rss2.0noNSwithModules.xml - A set of test RSS files for examining the state of extension support in RSS aggregators - en-gb - Copyright 2002 Simon Fell - - Copyright 2002 Simon Fell - 2002-09-28T21:00:02Z - Sat, 28 Sep 2002 21:00:02 GMT - Sat, 28 Sep 2002 21:00:02 GMT - sf@zaks.demon.co.uk - sf@zaks.demon.co.uk - - sf@zaks.demon.co.uk - ultraedit-32 - - sf@zaks.demon.co.uk (Simon Fell) - 2002-09-28T20:01:19Z - 2002-01-12T02:15:32Z - - 2002-09-28T20:01:19Z - 2002 - - - Test Item - RSS 2.0 no NS - http://www.pocketsoap.com/weblog/rssTests/rss2.0noNSwithModules.xml - This is a fairly standard RSS 2.0 feed, it uses a few modules, the RSS 2.0 elements aren't in any namespace, all module elements are in their required namespaces. - there are no localname clashes. This is largely backwardly compatible with 0.9x. (RSS 2.0 no NS) - - - 2002-09-28T20:01:19Z - 2002-09-28T20:01:19Z - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0noNSwithModulesLocalNameClash.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0noNSwithModulesLocalNameClash.xml deleted file mode 100644 index 174de089..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0noNSwithModulesLocalNameClash.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - RSS Tests - RSS2.0 no NS localName clash - http://www.pocketsoap.com/rssTests/rss2.0noNSwithModulesLocalNameClash.xml - A set of test RSS files for examining the state of extension support in RSS aggregators - en-gb - en-gb - - Copyright 2002 Simon Fell - Copyright 2002 Simon Fell - 2002-09-28T21:00:02Z - Sat, 28 Sep 2002 21:00:02 GMT - Sat, 28 Sep 2002 21:00:02 GMT - sf@zaks.demon.co.uk - - sf@zaks.demon.co.uk - sf@zaks.demon.co.uk - ultraedit-32 - - sf@zaks.demon.co.uk (Simon Fell) - 2002-09-28T20:01:19Z - - 2002-01-12T02:15:32Z - 2002-09-28T20:01:19Z - 2002 - - - Test Item - RSS2.0 no NS localName clash - http://www.pocketsoap.com/weblog/rssTests/rss2.0noNSwithModulesLocalNameClash.xml#1 - - - This is a extension module that is in a different namespace, but uses a localname from the RSS core spec. - This shouldn't appear in your aggregator, but probably does. (pre rss:description - RSS2.0 no NS localName clash) - - correct description - This is a extension module that is in a different namespace, but uses a localname from the RSS core spec. - This shouldn't appear in your aggregator, but probably does. (post rss:description - RSS2.0 no NS localName clash) - - 2002-09-28T20:01:19Z - 2002-09-28T20:01:19Z - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0svg.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0svg.xml deleted file mode 100644 index 1a7a5546..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0svg.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<svg version="1.1" baseProfile="full" width="300px" height="200px" xmlns="http://www.w3.org/2000/svg"><circle cx="150px" cy="100px" r="50px" fill="#ff0000" stroke="#000000" stroke-width="5px" /></svg> - - - diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0svg5.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0svg5.xml deleted file mode 100644 index 8119615b..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0svg5.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<svg version="1.1" baseProfile="full" width="300px" height="200px"><circle cx="150px" cy="100px" r="50px" fill="#ff0000" stroke="#000000" stroke-width="5px" /></svg> - - - diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0svgtitle.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0svgtitle.xml deleted file mode 100644 index e06a69ca..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0svgtitle.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<svg version="1.1" baseProfile="full" width="300px" height="200px" xmlns="http://www.w3.org/2000/svg"><title>foo</title><circle cx="150px" cy="100px" r="50px" fill="#ff0000" stroke="#000000" stroke-width="5px"/></svg> - - - diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0withAtomNS.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0withAtomNS.xml deleted file mode 100644 index 6f4bbe0b..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0withAtomNS.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - Delicious/wearehugh - http://delicious.com/wearehugh - bookmarks posted by wearehugh - - - rsync and vfat | Geek at Play - Fri, 25 Dec 2009 03:30:22 +0000 - http://delicious.com/url/174603f9d836a1aafac49e28ace1c19e#wearehugh - http://www.kylev.com/2005/03/29/rsync-and-vfat/ - - http://delicious.com/url/174603f9d836a1aafac49e28ace1c19e - http://feeds.delicious.com/v2/rss/url/174603f9d836a1aafac49e28ace1c19e - wearehugh's bookmarks - rsync - vfat - windows - linux - mount - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/namespace/rss2.0xlink.xml b/lib/feedparser/tests/wellformed/namespace/rss2.0xlink.xml deleted file mode 100644 index 047c0bce..00000000 --- a/lib/feedparser/tests/wellformed/namespace/rss2.0xlink.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<svg version="1.1" baseProfile="full" width="300px" height="200px" xmlns="http://www.w3.org/2000/svg"><a xlink:href="http://example.com/"><circle cx="150px" cy="100px" r="50px" fill="#ff0000" stroke="#000000" stroke-width="5px" /></a></svg> - - - diff --git a/lib/feedparser/tests/wellformed/node_precedence/atom10_arbitrary_element.xml b/lib/feedparser/tests/wellformed/node_precedence/atom10_arbitrary_element.xml deleted file mode 100644 index 4421f817..00000000 --- a/lib/feedparser/tests/wellformed/node_precedence/atom10_arbitrary_element.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - Correct Value - - Incorrect Value - - - - - Incorrect Value - - Correct Value - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/node_precedence/atom10_id.xml b/lib/feedparser/tests/wellformed/node_precedence/atom10_id.xml deleted file mode 100644 index e6741531..00000000 --- a/lib/feedparser/tests/wellformed/node_precedence/atom10_id.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - Correct Value - - Incorrect Value - - - - - Incorrect Value - - Correct Value - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/node_precedence/atom10_title.xml b/lib/feedparser/tests/wellformed/node_precedence/atom10_title.xml deleted file mode 100644 index bf3a201b..00000000 --- a/lib/feedparser/tests/wellformed/node_precedence/atom10_title.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - Correct Value - - Incorrect Value - - - - - Incorrect Value - - Correct Value - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/doctype_contains_entity_decl.xml b/lib/feedparser/tests/wellformed/rdf/doctype_contains_entity_decl.xml deleted file mode 100644 index e235aa05..00000000 --- a/lib/feedparser/tests/wellformed/rdf/doctype_contains_entity_decl.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - -%HTMLlat1; -]> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rdf_channel_description.xml b/lib/feedparser/tests/wellformed/rdf/rdf_channel_description.xml deleted file mode 100644 index 26be54e7..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rdf_channel_description.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rdf_channel_link.xml b/lib/feedparser/tests/wellformed/rdf/rdf_channel_link.xml deleted file mode 100644 index 9c50f64a..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rdf_channel_link.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rdf_channel_title.xml b/lib/feedparser/tests/wellformed/rdf/rdf_channel_title.xml deleted file mode 100644 index edca2428..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rdf_channel_title.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Example feed - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rdf_item_description.xml b/lib/feedparser/tests/wellformed/rdf/rdf_item_description.xml deleted file mode 100644 index a40ea080..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rdf_item_description.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rdf_item_link.xml b/lib/feedparser/tests/wellformed/rdf/rdf_item_link.xml deleted file mode 100644 index 8f0a07c7..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rdf_item_link.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - http://example.com/1 - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rdf_item_rdf_about.xml b/lib/feedparser/tests/wellformed/rdf/rdf_item_rdf_about.xml deleted file mode 100644 index 1362e1b1..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rdf_item_rdf_about.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rdf_item_title.xml b/lib/feedparser/tests/wellformed/rdf/rdf_item_title.xml deleted file mode 100644 index 04ec848d..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rdf_item_title.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - Example title - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rss090_channel_title.xml b/lib/feedparser/tests/wellformed/rdf/rss090_channel_title.xml deleted file mode 100644 index 0169e311..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rss090_channel_title.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -Example title - - -Item title - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rss090_item_title.xml b/lib/feedparser/tests/wellformed/rdf/rss090_item_title.xml deleted file mode 100644 index 41d88e31..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rss090_item_title.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -Example title - - -Item title - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rss_version_10.xml b/lib/feedparser/tests/wellformed/rdf/rss_version_10.xml deleted file mode 100644 index b51a1130..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rss_version_10.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rdf/rss_version_10_not_default_ns.xml b/lib/feedparser/tests/wellformed/rdf/rss_version_10_not_default_ns.xml deleted file mode 100644 index e033013e..00000000 --- a/lib/feedparser/tests/wellformed/rdf/rss_version_10_not_default_ns.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/lib/feedparser/tests/wellformed/rss/aaa_wellformed.xml b/lib/feedparser/tests/wellformed/rss/aaa_wellformed.xml deleted file mode 100644 index c9c70bed..00000000 --- a/lib/feedparser/tests/wellformed/rss/aaa_wellformed.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_author.xml b/lib/feedparser/tests/wellformed/rss/channel_author.xml deleted file mode 100644 index 74aecd76..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_author.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_email.xml b/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_email.xml deleted file mode 100644 index c0919c2b..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_email.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_email_2.xml b/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_email_2.xml deleted file mode 100644 index da0b9c19..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_email_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me+spam@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_email_3.xml b/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_email_3.xml deleted file mode 100644 index 8deba3e7..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_email_3.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -me@example.com (Example editor) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_name.xml b/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_name.xml deleted file mode 100644 index 3e5f8705..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_name.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_name_2.xml b/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_name_2.xml deleted file mode 100644 index ec133699..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_author_map_author_detail_name_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -me@example.com (Example editor) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_category.xml b/lib/feedparser/tests/wellformed/rss/channel_category.xml deleted file mode 100644 index 37ddf22d..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_category.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example category - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_category_domain.xml b/lib/feedparser/tests/wellformed/rss/channel_category_domain.xml deleted file mode 100644 index 6c07ccc5..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_category_domain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example category - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_category_multiple.xml b/lib/feedparser/tests/wellformed/rss/channel_category_multiple.xml deleted file mode 100644 index 9effbfdd..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_category_multiple.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -Example category 1 -Example category 2 - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_category_multiple_2.xml b/lib/feedparser/tests/wellformed/rss/channel_category_multiple_2.xml deleted file mode 100644 index 00daebe2..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_category_multiple_2.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -Example category 1 -Example category 2 - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_cloud_domain.xml b/lib/feedparser/tests/wellformed/rss/channel_cloud_domain.xml deleted file mode 100644 index ef926b6c..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_cloud_domain.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_cloud_path.xml b/lib/feedparser/tests/wellformed/rss/channel_cloud_path.xml deleted file mode 100644 index eccf1b9d..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_cloud_path.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_cloud_port.xml b/lib/feedparser/tests/wellformed/rss/channel_cloud_port.xml deleted file mode 100644 index 0cd2bc65..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_cloud_port.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_cloud_protocol.xml b/lib/feedparser/tests/wellformed/rss/channel_cloud_protocol.xml deleted file mode 100644 index 73e3392c..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_cloud_protocol.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_cloud_registerProcedure.xml b/lib/feedparser/tests/wellformed/rss/channel_cloud_registerProcedure.xml deleted file mode 100644 index 703f5365..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_cloud_registerProcedure.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_copyright.xml b/lib/feedparser/tests/wellformed/rss/channel_copyright.xml deleted file mode 100644 index c1dec40c..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_copyright.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example copyright - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_author.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_author.xml deleted file mode 100644 index 6bae15e1..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_author.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_author_map_author_detail_email.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_author_map_author_detail_email.xml deleted file mode 100644 index b5d73d55..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_author_map_author_detail_email.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_author_map_author_detail_name.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_author_map_author_detail_name.xml deleted file mode 100644 index f6894456..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_author_map_author_detail_name.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_contributor.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_contributor.xml deleted file mode 100644 index 76450c2f..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_contributor.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example contributor - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_creator.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_creator.xml deleted file mode 100644 index 111ae8ba..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_creator.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_creator_map_author_detail_email.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_creator_map_author_detail_email.xml deleted file mode 100644 index 05cb34ac..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_creator_map_author_detail_email.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_creator_map_author_detail_name.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_creator_map_author_detail_name.xml deleted file mode 100644 index 451dd86e..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_creator_map_author_detail_name.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_date.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_date.xml deleted file mode 100644 index cbf3fa79..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_date.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_date_parsed.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_date_parsed.xml deleted file mode 100644 index 79511488..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_date_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_publisher.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_publisher.xml deleted file mode 100644 index b21d4ad8..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_publisher.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_publisher_email.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_publisher_email.xml deleted file mode 100644 index 1c5d8cd1..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_publisher_email.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_publisher_name.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_publisher_name.xml deleted file mode 100644 index e581af65..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_publisher_name.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_rights.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_rights.xml deleted file mode 100644 index 9d33d75c..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_rights.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example copyright - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_subject.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_subject.xml deleted file mode 100644 index c8ab3010..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_subject.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example category - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_subject_2.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_subject_2.xml deleted file mode 100644 index 953d4d3f..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_subject_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example category - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_subject_multiple.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_subject_multiple.xml deleted file mode 100644 index 3ff2558c..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_subject_multiple.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - -Example category 1 -Example category 2 - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dc_title.xml b/lib/feedparser/tests/wellformed/rss/channel_dc_title.xml deleted file mode 100644 index 299ae233..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dc_title.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example title - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_dcterms_created.xml b/lib/feedparser/tests/wellformed/rss/channel_dcterms_created.xml deleted file mode 100644 index aa36aadb..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dcterms_created.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dcterms_created_parsed.xml b/lib/feedparser/tests/wellformed/rss/channel_dcterms_created_parsed.xml deleted file mode 100644 index 21117859..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dcterms_created_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dcterms_issued.xml b/lib/feedparser/tests/wellformed/rss/channel_dcterms_issued.xml deleted file mode 100644 index a17cee67..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dcterms_issued.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dcterms_issued_parsed.xml b/lib/feedparser/tests/wellformed/rss/channel_dcterms_issued_parsed.xml deleted file mode 100644 index dda97dca..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dcterms_issued_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dcterms_modified.xml b/lib/feedparser/tests/wellformed/rss/channel_dcterms_modified.xml deleted file mode 100644 index 5a436d2c..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dcterms_modified.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_dcterms_modified_parsed.xml b/lib/feedparser/tests/wellformed/rss/channel_dcterms_modified_parsed.xml deleted file mode 100644 index 53ed3b26..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_dcterms_modified_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2003-12-31T10:14:55Z - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_description.xml b/lib/feedparser/tests/wellformed/rss/channel_description.xml deleted file mode 100644 index d2621011..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_description.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_description_escaped_markup.xml b/lib/feedparser/tests/wellformed/rss/channel_description_escaped_markup.xml deleted file mode 100644 index fa86a59c..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_description_escaped_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<p>Example description</p> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_description_map_tagline.xml b/lib/feedparser/tests/wellformed/rss/channel_description_map_tagline.xml deleted file mode 100644 index f83cc50d..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_description_map_tagline.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_description_naked_markup.xml b/lib/feedparser/tests/wellformed/rss/channel_description_naked_markup.xml deleted file mode 100644 index 671452fb..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_description_naked_markup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -

Example description

-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_description_shorttag.xml b/lib/feedparser/tests/wellformed/rss/channel_description_shorttag.xml deleted file mode 100644 index d0d49285..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_description_shorttag.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - -http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_docs.xml b/lib/feedparser/tests/wellformed/rss/channel_docs.xml deleted file mode 100644 index f2e312a9..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_docs.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -http://www.example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_generator.xml b/lib/feedparser/tests/wellformed/rss/channel_generator.xml deleted file mode 100644 index 5c046e35..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_generator.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example generator - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_image_description.xml b/lib/feedparser/tests/wellformed/rss/channel_image_description.xml deleted file mode 100644 index e498675e..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_image_description.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - -Sample image -http://example.org/url -http://example.org/link -80 -15 -Available in Netscape RSS 0.91 - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_image_height.xml b/lib/feedparser/tests/wellformed/rss/channel_image_height.xml deleted file mode 100644 index 97c68b34..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_image_height.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - -Sample image -http://example.org/url -http://example.org/link -80 -15 -Available in Netscape RSS 0.91 - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_image_link.xml b/lib/feedparser/tests/wellformed/rss/channel_image_link.xml deleted file mode 100644 index 3e1ad8c4..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_image_link.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - -Sample image -http://example.org/url -http://example.org/link -80 -15 -Available in Netscape RSS 0.91 - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_image_link_bleed.xml b/lib/feedparser/tests/wellformed/rss/channel_image_link_bleed.xml deleted file mode 100644 index d6b1c026..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_image_link_bleed.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -http://channel.example.com/ - -http://image.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_image_link_conflict.xml b/lib/feedparser/tests/wellformed/rss/channel_image_link_conflict.xml deleted file mode 100644 index 6187df74..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_image_link_conflict.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -http://channel.example.com/ - -http://image.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_image_title.xml b/lib/feedparser/tests/wellformed/rss/channel_image_title.xml deleted file mode 100644 index 66d8fe83..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_image_title.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - -Sample image -http://example.org/url -http://example.org/link -80 -15 -Available in Netscape RSS 0.91 - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_image_title_conflict.xml b/lib/feedparser/tests/wellformed/rss/channel_image_title_conflict.xml deleted file mode 100644 index aac174d6..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_image_title_conflict.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -Real title - -textInput title - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_image_url.xml b/lib/feedparser/tests/wellformed/rss/channel_image_url.xml deleted file mode 100644 index cd3c0529..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_image_url.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - -Sample image -http://example.org/url -http://example.org/link -80 -15 -Available in Netscape RSS 0.91 - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_image_width.xml b/lib/feedparser/tests/wellformed/rss/channel_image_width.xml deleted file mode 100644 index 96470d64..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_image_width.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - -Sample image -http://example.org/url -http://example.org/link -80 -15 -Available in Netscape RSS 0.91 - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_lastBuildDate.xml b/lib/feedparser/tests/wellformed/rss/channel_lastBuildDate.xml deleted file mode 100644 index 88b1398a..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_lastBuildDate.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Sat, 07 Sep 2002 00:00:01 GMT - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_lastBuildDate_parsed.xml b/lib/feedparser/tests/wellformed/rss/channel_lastBuildDate_parsed.xml deleted file mode 100644 index aa0ff822..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_lastBuildDate_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - Sat, 07 Sep 2002 00:00:01 GMT - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_link.xml b/lib/feedparser/tests/wellformed/rss/channel_link.xml deleted file mode 100644 index 51b616fa..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_link.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -http://example.com/ - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_managingEditor.xml b/lib/feedparser/tests/wellformed/rss/channel_managingEditor.xml deleted file mode 100644 index 56cfa70f..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_managingEditor.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_managingEditor_map_author_detail_email.xml b/lib/feedparser/tests/wellformed/rss/channel_managingEditor_map_author_detail_email.xml deleted file mode 100644 index bfe88857..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_managingEditor_map_author_detail_email.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_managingEditor_map_author_detail_name.xml b/lib/feedparser/tests/wellformed/rss/channel_managingEditor_map_author_detail_name.xml deleted file mode 100644 index 58294445..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_managingEditor_map_author_detail_name.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_pubDate.xml b/lib/feedparser/tests/wellformed/rss/channel_pubDate.xml deleted file mode 100644 index b60f8474..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_pubDate.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Thu, 01 Jan 2004 19:48:21 GMT - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_pubDate_map_updated_parsed.xml b/lib/feedparser/tests/wellformed/rss/channel_pubDate_map_updated_parsed.xml deleted file mode 100644 index 271338d8..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_pubDate_map_updated_parsed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Thu, 01 Jan 2004 19:48:21 GMT - - diff --git a/lib/feedparser/tests/wellformed/rss/channel_textInput_description.xml b/lib/feedparser/tests/wellformed/rss/channel_textInput_description.xml deleted file mode 100644 index 91ca14ba..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_textInput_description.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - -Real title -Real description - -textInput title -textInput description - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_textInput_description_conflict.xml b/lib/feedparser/tests/wellformed/rss/channel_textInput_description_conflict.xml deleted file mode 100644 index 3eb6e7bc..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_textInput_description_conflict.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -Real description - -textInput description - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_textInput_link.xml b/lib/feedparser/tests/wellformed/rss/channel_textInput_link.xml deleted file mode 100644 index ce5073bd..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_textInput_link.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -http://channel.example.com/ - -http://textinput.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_textInput_link_bleed.xml b/lib/feedparser/tests/wellformed/rss/channel_textInput_link_bleed.xml deleted file mode 100644 index 77d1aca6..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_textInput_link_bleed.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -http://channel.example.com/ - -http://textinput.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_textInput_link_conflict.xml b/lib/feedparser/tests/wellformed/rss/channel_textInput_link_conflict.xml deleted file mode 100644 index 9d1ffb67..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_textInput_link_conflict.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -http://channel.example.com/ - -http://textinput.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_textInput_name.xml b/lib/feedparser/tests/wellformed/rss/channel_textInput_name.xml deleted file mode 100644 index cf2316ca..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_textInput_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -textinput name - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_textInput_title.xml b/lib/feedparser/tests/wellformed/rss/channel_textInput_title.xml deleted file mode 100644 index 7d2f4b70..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_textInput_title.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -Real title - -textInput title - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_textInput_title_conflict.xml b/lib/feedparser/tests/wellformed/rss/channel_textInput_title_conflict.xml deleted file mode 100644 index f6a9d374..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_textInput_title_conflict.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - -Real title - -textInput title - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_title.xml b/lib/feedparser/tests/wellformed/rss/channel_title.xml deleted file mode 100644 index c4ea8c07..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_title.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example feed - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_title_apos.xml b/lib/feedparser/tests/wellformed/rss/channel_title_apos.xml deleted file mode 100644 index 35b36f3f..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_title_apos.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Mark's title - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_title_gt.xml b/lib/feedparser/tests/wellformed/rss/channel_title_gt.xml deleted file mode 100644 index dec60c1a..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_title_gt.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -2 > 1 - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_title_lt.xml b/lib/feedparser/tests/wellformed/rss/channel_title_lt.xml deleted file mode 100644 index c1cf9ec5..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_title_lt.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -1 < 2 - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_ttl.xml b/lib/feedparser/tests/wellformed/rss/channel_ttl.xml deleted file mode 100644 index 781d0585..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_ttl.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -60 - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_webMaster.xml b/lib/feedparser/tests/wellformed/rss/channel_webMaster.xml deleted file mode 100644 index 2f0ff5f1..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_webMaster.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_webMaster_email.xml b/lib/feedparser/tests/wellformed/rss/channel_webMaster_email.xml deleted file mode 100644 index ff0410db..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_webMaster_email.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/channel_webMaster_name.xml b/lib/feedparser/tests/wellformed/rss/channel_webMaster_name.xml deleted file mode 100644 index 1fad5732..00000000 --- a/lib/feedparser/tests/wellformed/rss/channel_webMaster_name.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example editor (me@example.com) - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/entity_in_doctype.xml b/lib/feedparser/tests/wellformed/rss/entity_in_doctype.xml deleted file mode 100644 index b8890763..00000000 --- a/lib/feedparser/tests/wellformed/rss/entity_in_doctype.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - -]> - - - - -&id;2006-05-04:/blog/ - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_author.xml b/lib/feedparser/tests/wellformed/rss/item_author.xml deleted file mode 100644 index 176ce1c9..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_author.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_email.xml b/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_email.xml deleted file mode 100644 index e990c9f5..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_email.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor (me@example.com) - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_email2.xml b/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_email2.xml deleted file mode 100644 index 4cbf2da9..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_email2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor <me@example.com> - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_email3.xml b/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_email3.xml deleted file mode 100644 index 42aafb03..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_email3.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -me@example.com (Example editor) - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_name.xml b/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_name.xml deleted file mode 100644 index 8083ff44..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor (me@example.com) - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_name2.xml b/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_name2.xml deleted file mode 100644 index bcc45135..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_name2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor <me@example.com> - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_name3.xml b/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_name3.xml deleted file mode 100644 index c0f64169..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_author_map_author_detail_name3.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -me@example.com (Example editor) - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_category.xml b/lib/feedparser/tests/wellformed/rss/item_category.xml deleted file mode 100644 index 2b50558c..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_category.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example category - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_category_domain.xml b/lib/feedparser/tests/wellformed/rss/item_category_domain.xml deleted file mode 100644 index 8cbe25fd..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_category_domain.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example category - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_category_image.xml b/lib/feedparser/tests/wellformed/rss/item_category_image.xml deleted file mode 100644 index 6c1c5e85..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_category_image.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - -Example category - - http://www.thestranger.com/imager/b/story/4281993/a0a6/SavageLove-400.jpg - <![CDATA[Savage Love]]> - - - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_category_multiple.xml b/lib/feedparser/tests/wellformed/rss/item_category_multiple.xml deleted file mode 100644 index c2f121d3..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_category_multiple.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Example category 1 -Example category 2 - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_category_multiple_2.xml b/lib/feedparser/tests/wellformed/rss/item_category_multiple_2.xml deleted file mode 100644 index 861dd92e..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_category_multiple_2.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Example category 1 -Example category 2 - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_cc_license.xml b/lib/feedparser/tests/wellformed/rss/item_cc_license.xml deleted file mode 100644 index 6b023b9a..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_cc_license.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - -http://example.com/ - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_comments.xml b/lib/feedparser/tests/wellformed/rss/item_comments.xml deleted file mode 100644 index 9751403c..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_comments.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_content_encoded.xml b/lib/feedparser/tests/wellformed/rss/item_content_encoded.xml deleted file mode 100644 index e826c39b..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_content_encoded.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_content_encoded_mode.xml b/lib/feedparser/tests/wellformed/rss/item_content_encoded_mode.xml deleted file mode 100644 index 6cbd874b..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_content_encoded_mode.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_content_encoded_type.xml b/lib/feedparser/tests/wellformed/rss/item_content_encoded_type.xml deleted file mode 100644 index 3640386b..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_content_encoded_type.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_creativeCommons_license.xml b/lib/feedparser/tests/wellformed/rss/item_creativeCommons_license.xml deleted file mode 100644 index 65353d91..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_creativeCommons_license.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -http://www.creativecommons.org/licenses/by-nc/1.0 -http://example.com/ - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_author.xml b/lib/feedparser/tests/wellformed/rss/item_dc_author.xml deleted file mode 100644 index 22e71c64..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_author.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_author_map_author_detail_email.xml b/lib/feedparser/tests/wellformed/rss/item_dc_author_map_author_detail_email.xml deleted file mode 100644 index eb81dc96..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_author_map_author_detail_email.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor (me@example.com) - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_author_map_author_detail_name.xml b/lib/feedparser/tests/wellformed/rss/item_dc_author_map_author_detail_name.xml deleted file mode 100644 index 5139a243..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_author_map_author_detail_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor (me@example.com) - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_contributor.xml b/lib/feedparser/tests/wellformed/rss/item_dc_contributor.xml deleted file mode 100644 index 79d16d03..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_contributor.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example contributor - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_creator.xml b/lib/feedparser/tests/wellformed/rss/item_dc_creator.xml deleted file mode 100644 index c214414b..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_creator.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_creator_map_author_detail_email.xml b/lib/feedparser/tests/wellformed/rss/item_dc_creator_map_author_detail_email.xml deleted file mode 100644 index 899464ec..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_creator_map_author_detail_email.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor (me@example.com) - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_creator_map_author_detail_name.xml b/lib/feedparser/tests/wellformed/rss/item_dc_creator_map_author_detail_name.xml deleted file mode 100644 index ca20ab08..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_creator_map_author_detail_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor (me@example.com) - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_date.xml b/lib/feedparser/tests/wellformed/rss/item_dc_date.xml deleted file mode 100644 index 0f0f1179..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_date.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -2003-12-31T10:14:55Z - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_date_parsed.xml b/lib/feedparser/tests/wellformed/rss/item_dc_date_parsed.xml deleted file mode 100644 index 1d39df93..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_date_parsed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -2003-12-31T10:14:55Z - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_description.xml b/lib/feedparser/tests/wellformed/rss/item_dc_description.xml deleted file mode 100644 index 973d736c..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_description.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example description - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_publisher.xml b/lib/feedparser/tests/wellformed/rss/item_dc_publisher.xml deleted file mode 100644 index 7b4e82b5..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_publisher.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_publisher_email.xml b/lib/feedparser/tests/wellformed/rss/item_dc_publisher_email.xml deleted file mode 100644 index d321bed4..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_publisher_email.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor (me@example.com) - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_publisher_name.xml b/lib/feedparser/tests/wellformed/rss/item_dc_publisher_name.xml deleted file mode 100644 index 636c739e..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_publisher_name.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example editor (me@example.com) - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_rights.xml b/lib/feedparser/tests/wellformed/rss/item_dc_rights.xml deleted file mode 100644 index 2d734a98..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_rights.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example copyright - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_subject.xml b/lib/feedparser/tests/wellformed/rss/item_dc_subject.xml deleted file mode 100644 index 745a7864..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_subject.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example category - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_subject_2.xml b/lib/feedparser/tests/wellformed/rss/item_dc_subject_2.xml deleted file mode 100644 index b7de4cc0..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_subject_2.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example category - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_subject_multiple.xml b/lib/feedparser/tests/wellformed/rss/item_dc_subject_multiple.xml deleted file mode 100644 index aa7722d6..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_subject_multiple.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Example category 1 -Example category 2 - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dc_title.xml b/lib/feedparser/tests/wellformed/rss/item_dc_title.xml deleted file mode 100644 index dbe11343..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dc_title.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example title - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_dcterms_created.xml b/lib/feedparser/tests/wellformed/rss/item_dcterms_created.xml deleted file mode 100644 index f70882b1..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dcterms_created.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -2003-12-31T10:14:55Z - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dcterms_created_parsed.xml b/lib/feedparser/tests/wellformed/rss/item_dcterms_created_parsed.xml deleted file mode 100644 index 5d235c14..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dcterms_created_parsed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -2003-12-31T10:14:55Z - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dcterms_issued.xml b/lib/feedparser/tests/wellformed/rss/item_dcterms_issued.xml deleted file mode 100644 index 789d514c..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dcterms_issued.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -2003-12-31T10:14:55Z - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dcterms_issued_parsed.xml b/lib/feedparser/tests/wellformed/rss/item_dcterms_issued_parsed.xml deleted file mode 100644 index 4a3db36e..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dcterms_issued_parsed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -2003-12-31T10:14:55Z - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dcterms_modified.xml b/lib/feedparser/tests/wellformed/rss/item_dcterms_modified.xml deleted file mode 100644 index 00409dd5..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dcterms_modified.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -2003-12-31T10:14:55Z - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_dcterms_modified_parsed.xml b/lib/feedparser/tests/wellformed/rss/item_dcterms_modified_parsed.xml deleted file mode 100644 index 388e3e70..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_dcterms_modified_parsed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -2003-12-31T10:14:55Z - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_description.xml b/lib/feedparser/tests/wellformed/rss/item_description.xml deleted file mode 100644 index f5a49448..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example description - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_description_and_summary.xml b/lib/feedparser/tests/wellformed/rss/item_description_and_summary.xml deleted file mode 100644 index 355f1c47..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description_and_summary.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Example description -Example summary - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_description_br.xml b/lib/feedparser/tests/wellformed/rss/item_description_br.xml deleted file mode 100644 index 19a5a121..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description_br.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -
article byline

text of article]]>
-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_description_br_shorttag.xml b/lib/feedparser/tests/wellformed/rss/item_description_br_shorttag.xml deleted file mode 100644 index aa11391f..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description_br_shorttag.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -http://www.example.com/ -<b>x</b><br/> - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_description_code_br.xml b/lib/feedparser/tests/wellformed/rss/item_description_code_br.xml deleted file mode 100644 index d5b98d62..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description_code_br.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -http://www.example.com/ -<br />
]]> - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_description_escaped_markup.xml b/lib/feedparser/tests/wellformed/rss/item_description_escaped_markup.xml deleted file mode 100644 index 4f461a30..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description_escaped_markup.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example description</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_description_map_summary.xml b/lib/feedparser/tests/wellformed/rss/item_description_map_summary.xml deleted file mode 100644 index a43ece73..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description_map_summary.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example description - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_description_naked_markup.xml b/lib/feedparser/tests/wellformed/rss/item_description_naked_markup.xml deleted file mode 100644 index 95d54460..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description_naked_markup.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -

Example description

-
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_description_not_a_doctype.xml b/lib/feedparser/tests/wellformed/rss/item_description_not_a_doctype.xml deleted file mode 100644 index 1930555c..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description_not_a_doctype.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<!' <a href="foo"> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_description_not_a_doctype2.xml b/lib/feedparser/tests/wellformed/rss/item_description_not_a_doctype2.xml deleted file mode 100644 index a32d25ed..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_description_not_a_doctype2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_enclosure_length.xml b/lib/feedparser/tests/wellformed/rss/item_enclosure_length.xml deleted file mode 100644 index 5f0f72fe..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_enclosure_length.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - -http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_enclosure_multiple.xml b/lib/feedparser/tests/wellformed/rss/item_enclosure_multiple.xml deleted file mode 100644 index 0e40abd0..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_enclosure_multiple.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - -http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_enclosure_type.xml b/lib/feedparser/tests/wellformed/rss/item_enclosure_type.xml deleted file mode 100644 index 3b191c6d..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_enclosure_type.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - -http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_enclosure_url.xml b/lib/feedparser/tests/wellformed/rss/item_enclosure_url.xml deleted file mode 100644 index b5da8cd5..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_enclosure_url.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - -http://example.com/ - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_expirationDate.xml b/lib/feedparser/tests/wellformed/rss/item_expirationDate.xml deleted file mode 100644 index c4738acd..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_expirationDate.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Thu, 01 Jan 2004 19:48:21 GMT - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_expirationDate_multiple_values.xml b/lib/feedparser/tests/wellformed/rss/item_expirationDate_multiple_values.xml deleted file mode 100644 index 59a099f6..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_expirationDate_multiple_values.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Wed, 01 Dec 2010 19:48:21 GMT -Thu, 01 Jan 2004 19:48:21 GMT - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_expirationDate_parsed.xml b/lib/feedparser/tests/wellformed/rss/item_expirationDate_parsed.xml deleted file mode 100644 index 39ec50d6..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_expirationDate_parsed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Thu, 01 Jan 2004 19:48:21 GMT - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_fullitem.xml b/lib/feedparser/tests/wellformed/rss/item_fullitem.xml deleted file mode 100644 index afe454b9..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_fullitem.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_fullitem_mode.xml b/lib/feedparser/tests/wellformed/rss/item_fullitem_mode.xml deleted file mode 100644 index bc14adaa..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_fullitem_mode.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_fullitem_type.xml b/lib/feedparser/tests/wellformed/rss/item_fullitem_type.xml deleted file mode 100644 index f667d695..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_fullitem_type.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -<p>Example content</p> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid.xml b/lib/feedparser/tests/wellformed/rss/item_guid.xml deleted file mode 100644 index 52ed0843..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_conflict_link.xml b/lib/feedparser/tests/wellformed/rss/item_guid_conflict_link.xml deleted file mode 100644 index b579c3cd..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_conflict_link.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -http://link.example.com/ -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_guidislink.xml b/lib/feedparser/tests/wellformed/rss/item_guid_guidislink.xml deleted file mode 100644 index 1f9705e8..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_guidislink.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_conflict_link.xml b/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_conflict_link.xml deleted file mode 100644 index 64bd5753..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_conflict_link.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -http://link.example.com/ -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_conflict_link_not_guidislink.xml b/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_conflict_link_not_guidislink.xml deleted file mode 100644 index d8505fb1..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_conflict_link_not_guidislink.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -http://link.example.com/ -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_guidislink.xml b/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_guidislink.xml deleted file mode 100644 index bed21fec..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_guidislink.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_map_link.xml b/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_map_link.xml deleted file mode 100644 index ce2e90cb..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_isPermaLink_map_link.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_map_link.xml b/lib/feedparser/tests/wellformed/rss/item_guid_map_link.xml deleted file mode 100644 index bb778e79..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_map_link.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink.xml b/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink.xml deleted file mode 100644 index 79f20e24..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_conflict_link.xml b/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_conflict_link.xml deleted file mode 100644 index 5f16a292..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_conflict_link.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -http://link.example.com/ -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_not_guidislink.xml b/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_not_guidislink.xml deleted file mode 100644 index c25de446..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_not_guidislink.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_not_guidislink_2.xml b/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_not_guidislink_2.xml deleted file mode 100644 index 7052b455..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_not_guidislink_2.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -http://link.example.com/ -http://guid.example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_not_url.xml b/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_not_url.xml deleted file mode 100644 index 008a2477..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_guid_not_permalink_not_url.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -abc - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_image_link_bleed.xml b/lib/feedparser/tests/wellformed/rss/item_image_link_bleed.xml deleted file mode 100644 index ae5b9864..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_image_link_bleed.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - http://item.TEST/ - - http://item.TEST/imagelink - - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_image_link_conflict.xml b/lib/feedparser/tests/wellformed/rss/item_image_link_conflict.xml deleted file mode 100644 index 3fa86ae7..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_image_link_conflict.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - http://item.TEST/ - - http://item.TEST/imagelink - - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_link.xml b/lib/feedparser/tests/wellformed/rss/item_link.xml deleted file mode 100644 index f56a3d4c..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_link.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -http://example.com/ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_pubDate.xml b/lib/feedparser/tests/wellformed/rss/item_pubDate.xml deleted file mode 100644 index 23c3c896..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_pubDate.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Thu, 01 Jan 2004 19:48:21 GMT - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_pubDate_map_updated_parsed.xml b/lib/feedparser/tests/wellformed/rss/item_pubDate_map_updated_parsed.xml deleted file mode 100644 index 32db8be4..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_pubDate_map_updated_parsed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Thu, 01 Jan 2004 19:48:21 GMT - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_source.xml b/lib/feedparser/tests/wellformed/rss/item_source.xml deleted file mode 100644 index 12b7745e..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_source.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example source - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_source_url.xml b/lib/feedparser/tests/wellformed/rss/item_source_url.xml deleted file mode 100644 index c5f235a4..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_source_url.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Example source - - - diff --git a/lib/feedparser/tests/wellformed/rss/item_summary_and_description.xml b/lib/feedparser/tests/wellformed/rss/item_summary_and_description.xml deleted file mode 100644 index 9fd152f0..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_summary_and_description.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Example summary -Example description - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_title.xml b/lib/feedparser/tests/wellformed/rss/item_title.xml deleted file mode 100644 index b0d62660..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_title.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -Item 1 title - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_xhtml_body.xml b/lib/feedparser/tests/wellformed/rss/item_xhtml_body.xml deleted file mode 100644 index cf41c29a..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_xhtml_body.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - -

Example content

- -
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_xhtml_body_mode.xml b/lib/feedparser/tests/wellformed/rss/item_xhtml_body_mode.xml deleted file mode 100644 index 5d30b0f2..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_xhtml_body_mode.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - -

Example content

- -
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/item_xhtml_body_type.xml b/lib/feedparser/tests/wellformed/rss/item_xhtml_body_type.xml deleted file mode 100644 index ded661a0..00000000 --- a/lib/feedparser/tests/wellformed/rss/item_xhtml_body_type.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - -

Example content

- -
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/newlocation.xml b/lib/feedparser/tests/wellformed/rss/newlocation.xml deleted file mode 100644 index b6b99239..00000000 --- a/lib/feedparser/tests/wellformed/rss/newlocation.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - http://example/new - - diff --git a/lib/feedparser/tests/wellformed/rss/rss_namespace_1.xml b/lib/feedparser/tests/wellformed/rss/rss_namespace_1.xml deleted file mode 100644 index 9f583c69..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_namespace_1.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_namespace_2.xml b/lib/feedparser/tests/wellformed/rss/rss_namespace_2.xml deleted file mode 100644 index 38af2200..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_namespace_2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_namespace_3.xml b/lib/feedparser/tests/wellformed/rss/rss_namespace_3.xml deleted file mode 100644 index 8bd75469..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_namespace_3.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_namespace_4.xml b/lib/feedparser/tests/wellformed/rss/rss_namespace_4.xml deleted file mode 100644 index 52dc603e..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_namespace_4.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_090.xml b/lib/feedparser/tests/wellformed/rss/rss_version_090.xml deleted file mode 100644 index a73e246b..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_090.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_091_netscape.xml b/lib/feedparser/tests/wellformed/rss/rss_version_091_netscape.xml deleted file mode 100644 index fbcc15ce..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_091_netscape.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_091_userland.xml b/lib/feedparser/tests/wellformed/rss/rss_version_091_userland.xml deleted file mode 100644 index ee9f1cc3..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_091_userland.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_092.xml b/lib/feedparser/tests/wellformed/rss/rss_version_092.xml deleted file mode 100644 index 3f3b82ad..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_092.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_093.xml b/lib/feedparser/tests/wellformed/rss/rss_version_093.xml deleted file mode 100644 index 5855af68..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_093.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_094.xml b/lib/feedparser/tests/wellformed/rss/rss_version_094.xml deleted file mode 100644 index 8b03e17d..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_094.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_20.xml b/lib/feedparser/tests/wellformed/rss/rss_version_20.xml deleted file mode 100644 index 56ffbdde..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_20.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_201.xml b/lib/feedparser/tests/wellformed/rss/rss_version_201.xml deleted file mode 100644 index 74965979..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_201.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_21.xml b/lib/feedparser/tests/wellformed/rss/rss_version_21.xml deleted file mode 100644 index b7d45ef7..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_21.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/rss/rss_version_missing.xml b/lib/feedparser/tests/wellformed/rss/rss_version_missing.xml deleted file mode 100644 index e6440d88..00000000 --- a/lib/feedparser/tests/wellformed/rss/rss_version_missing.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -Example description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_abbr.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_abbr.xml deleted file mode 100644 index 71c1aa74..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_abbr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span abbr=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_accept-charset.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_accept-charset.xml deleted file mode 100644 index 28c84977..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_accept-charset.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span accept-charset=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_accept.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_accept.xml deleted file mode 100644 index 9eaee233..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_accept.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span accept=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_accesskey.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_accesskey.xml deleted file mode 100644 index dd41be86..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_accesskey.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span accesskey=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_action.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_action.xml deleted file mode 100644 index fa15e1e9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_action.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span action=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_align.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_align.xml deleted file mode 100644 index 9d1c53b7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_align.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span align=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_alt.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_alt.xml deleted file mode 100644 index 88c0b194..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_alt.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span alt=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_autocomplete.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_autocomplete.xml deleted file mode 100644 index 71399464..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_autocomplete.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span autocomplete=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_autofocus.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_autofocus.xml deleted file mode 100644 index 77cd3fa3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_autofocus.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span autofocus=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_autoplay.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_autoplay.xml deleted file mode 100644 index 0d872934..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_autoplay.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span autoplay=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_axis.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_axis.xml deleted file mode 100644 index 2d3232f1..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_axis.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span axis=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_background.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_background.xml deleted file mode 100644 index bc0fb9b9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_background.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span background=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_balance.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_balance.xml deleted file mode 100644 index 9a9dfc74..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_balance.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span balance=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bgcolor.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bgcolor.xml deleted file mode 100644 index efc9f5c3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bgcolor.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span bgcolor=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bgproperties.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bgproperties.xml deleted file mode 100644 index 8f964272..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bgproperties.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span bgproperties=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_border.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_border.xml deleted file mode 100644 index 80b118dd..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_border.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span border=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolor.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolor.xml deleted file mode 100644 index 5b314be8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolor.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span bordercolor=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolordark.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolordark.xml deleted file mode 100644 index 5913ffab..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolordark.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span bordercolordark=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolorlight.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolorlight.xml deleted file mode 100644 index 4883e64a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bordercolorlight.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span bordercolorlight=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bottompadding.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bottompadding.xml deleted file mode 100644 index beaad75f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_bottompadding.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span bottompadding=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cellpadding.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cellpadding.xml deleted file mode 100644 index 27c4df18..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cellpadding.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span cellpadding=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cellspacing.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cellspacing.xml deleted file mode 100644 index 4043ac5c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cellspacing.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span cellspacing=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_ch.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_ch.xml deleted file mode 100644 index e1dcbcec..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_ch.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span ch=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_challenge.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_challenge.xml deleted file mode 100644 index 2eb2869c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_challenge.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span challenge=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_char.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_char.xml deleted file mode 100644 index 31d30b4e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_char.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span char=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_charoff.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_charoff.xml deleted file mode 100644 index 4f866340..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_charoff.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span charoff=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_charset.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_charset.xml deleted file mode 100644 index 85d2a1fb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_charset.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span charset=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_checked.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_checked.xml deleted file mode 100644 index 259e17c7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_checked.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span checked=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_choff.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_choff.xml deleted file mode 100644 index 2e3e79bf..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_choff.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span choff=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cite.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cite.xml deleted file mode 100644 index 5eb0011f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cite.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span cite=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_class.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_class.xml deleted file mode 100644 index bd2577db..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_class.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span class=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_clear.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_clear.xml deleted file mode 100644 index a1a572dc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_clear.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span clear=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_color.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_color.xml deleted file mode 100644 index 980ccfc1..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_color.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span color=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cols.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cols.xml deleted file mode 100644 index ceeef598..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_cols.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span cols=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_colspan.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_colspan.xml deleted file mode 100644 index eef6cb6c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_colspan.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span colspan=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_compact.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_compact.xml deleted file mode 100644 index 61a0bbe6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_compact.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span compact=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_contenteditable.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_contenteditable.xml deleted file mode 100644 index 328c6249..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_contenteditable.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span contenteditable=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_coords.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_coords.xml deleted file mode 100644 index 9d389fb6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_coords.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span coords=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_data.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_data.xml deleted file mode 100644 index 537d331e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_data.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span data=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datafld.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datafld.xml deleted file mode 100644 index 44837182..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datafld.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span datafld=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datapagesize.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datapagesize.xml deleted file mode 100644 index 4093280a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datapagesize.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span datapagesize=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datasrc.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datasrc.xml deleted file mode 100644 index 3d86946b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datasrc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span datasrc=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datetime.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datetime.xml deleted file mode 100644 index 6554045b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_datetime.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span datetime=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_default.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_default.xml deleted file mode 100644 index 17829c04..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_default.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span default=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_delay.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_delay.xml deleted file mode 100644 index ee7777d7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_delay.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span delay=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_dir.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_dir.xml deleted file mode 100644 index c0618cc1..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_dir.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span dir=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_disabled.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_disabled.xml deleted file mode 100644 index aa9194a9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_disabled.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span disabled=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_draggable.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_draggable.xml deleted file mode 100644 index 88720d3d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_draggable.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span draggable=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_dynsrc.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_dynsrc.xml deleted file mode 100644 index c57ccb76..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_dynsrc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span dynsrc=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_enctype.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_enctype.xml deleted file mode 100644 index ab50610a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_enctype.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span enctype=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_end.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_end.xml deleted file mode 100644 index 22cc29e4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_end.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span end=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_face.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_face.xml deleted file mode 100644 index 6c595b03..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_face.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span face=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_for.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_for.xml deleted file mode 100644 index 2b08493f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_for.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span for=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_form.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_form.xml deleted file mode 100644 index 4b37f62c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_form.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span form=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_frame.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_frame.xml deleted file mode 100644 index ed8d85a2..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_frame.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span frame=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_galleryimg.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_galleryimg.xml deleted file mode 100644 index f4668258..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_galleryimg.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span galleryimg=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_gutter.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_gutter.xml deleted file mode 100644 index ed5a8f5a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_gutter.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span gutter=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_headers.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_headers.xml deleted file mode 100644 index 6e805fcc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_headers.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span headers=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_height.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_height.xml deleted file mode 100644 index 881636bc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_height.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span height=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hidden.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hidden.xml deleted file mode 100644 index 7e45d5b4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hidden.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span hidden=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hidefocus.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hidefocus.xml deleted file mode 100644 index b1ae3e08..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hidefocus.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span hidefocus=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_high.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_high.xml deleted file mode 100644 index b89160b7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_high.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span high=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_href.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_href.xml deleted file mode 100644 index 4382e9fc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_href.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span href=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hreflang.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hreflang.xml deleted file mode 100644 index a48b42f3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hreflang.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span hreflang=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hspace.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hspace.xml deleted file mode 100644 index c08a6027..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_hspace.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span hspace=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_icon.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_icon.xml deleted file mode 100644 index 444a6b8f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_icon.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span icon=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_id.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_id.xml deleted file mode 100644 index d9f93a84..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_id.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span id=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_inputmode.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_inputmode.xml deleted file mode 100644 index b0956390..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_inputmode.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span inputmode=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_ismap.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_ismap.xml deleted file mode 100644 index eda48b6e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_ismap.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span ismap=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_keytype.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_keytype.xml deleted file mode 100644 index 074727b9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_keytype.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span keytype=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_label.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_label.xml deleted file mode 100644 index 340a4c38..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_label.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span label=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_lang.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_lang.xml deleted file mode 100644 index 2d7e5261..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_lang.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span lang=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_leftspacing.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_leftspacing.xml deleted file mode 100644 index a6432e0c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_leftspacing.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span leftspacing=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_list.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_list.xml deleted file mode 100644 index 360b27f8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_list.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span list=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_longdesc.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_longdesc.xml deleted file mode 100644 index 97b7d941..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_longdesc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span longdesc=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loop.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loop.xml deleted file mode 100644 index 8201f52d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loop.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span loop=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loopcount.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loopcount.xml deleted file mode 100644 index 8bde8e88..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loopcount.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span loopcount=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loopend.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loopend.xml deleted file mode 100644 index fa608d17..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loopend.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span loopend=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loopstart.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loopstart.xml deleted file mode 100644 index f1190127..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_loopstart.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span loopstart=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_low.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_low.xml deleted file mode 100644 index 8ec062fe..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_low.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span low=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_lowsrc.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_lowsrc.xml deleted file mode 100644 index a4258e36..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_lowsrc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span lowsrc=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_max.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_max.xml deleted file mode 100644 index 80cbaeba..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_max.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span max=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_maxlength.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_maxlength.xml deleted file mode 100644 index ad16126e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_maxlength.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span maxlength=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_media.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_media.xml deleted file mode 100644 index daeea441..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_media.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span media=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_method.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_method.xml deleted file mode 100644 index c3a81ce5..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_method.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span method=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_min.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_min.xml deleted file mode 100644 index ad28c081..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_min.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span min=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_multiple.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_multiple.xml deleted file mode 100644 index ef1e17ac..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_multiple.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span multiple=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_name.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_name.xml deleted file mode 100644 index 0f98d769..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_name.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span name=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_nohref.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_nohref.xml deleted file mode 100644 index 1b7fb0d9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_nohref.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span nohref=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_noshade.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_noshade.xml deleted file mode 100644 index b1371da3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_noshade.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span noshade=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_nowrap.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_nowrap.xml deleted file mode 100644 index b312dea0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_nowrap.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span nowrap=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_open.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_open.xml deleted file mode 100644 index 2f4fc43c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_open.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span open=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_optimum.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_optimum.xml deleted file mode 100644 index a1220763..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_optimum.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span optimum=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_pattern.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_pattern.xml deleted file mode 100644 index c4e10322..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_pattern.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span pattern=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_ping.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_ping.xml deleted file mode 100644 index 03b4f233..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_ping.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span ping=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_point-size.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_point-size.xml deleted file mode 100644 index f6a6713f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_point-size.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span point-size=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_poster.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_poster.xml deleted file mode 100644 index 4148f5e7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_poster.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<video poster="p.jpeg"></video> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_pqg.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_pqg.xml deleted file mode 100644 index c2afa36a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_pqg.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span pqg=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_preload.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_preload.xml deleted file mode 100644 index 0e26d091..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_preload.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<video preload="auto"></video> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_prompt.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_prompt.xml deleted file mode 100644 index 86f0d0b6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_prompt.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span prompt=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_radiogroup.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_radiogroup.xml deleted file mode 100644 index d575eace..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_radiogroup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span radiogroup=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_readonly.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_readonly.xml deleted file mode 100644 index f123f839..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_readonly.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span readonly=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rel.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rel.xml deleted file mode 100644 index cd09d308..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rel.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span rel=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_repeat-max.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_repeat-max.xml deleted file mode 100644 index 15b86874..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_repeat-max.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span repeat-max=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_repeat-min.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_repeat-min.xml deleted file mode 100644 index 9549f0e4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_repeat-min.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span repeat-min=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_replace.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_replace.xml deleted file mode 100644 index 2fb1e8c4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_replace.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span replace=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_required.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_required.xml deleted file mode 100644 index 3252c8a4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_required.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span required=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rev.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rev.xml deleted file mode 100644 index 8f56b026..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rev.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span rev=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rightspacing.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rightspacing.xml deleted file mode 100644 index 9a90e34a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rightspacing.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span rightspacing=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rows.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rows.xml deleted file mode 100644 index 6817c543..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rows.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span rows=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rowspan.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rowspan.xml deleted file mode 100644 index daca0671..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rowspan.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span rowspan=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rules.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rules.xml deleted file mode 100644 index 62a718cc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_rules.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span rules=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_scope.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_scope.xml deleted file mode 100644 index 7ae2c075..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_scope.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span scope=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_selected.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_selected.xml deleted file mode 100644 index e1ff4b1f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_selected.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span selected=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_shape.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_shape.xml deleted file mode 100644 index 9bcb6923..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_shape.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span shape=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_size.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_size.xml deleted file mode 100644 index 5a7d7a98..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_size.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span size=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_span.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_span.xml deleted file mode 100644 index e6da56c4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_span.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span span=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_src.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_src.xml deleted file mode 100644 index fd6636ba..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_src.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span src=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_start.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_start.xml deleted file mode 100644 index 81374748..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_start.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span start=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_step.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_step.xml deleted file mode 100644 index 3935b810..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_step.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span step=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_summary.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_summary.xml deleted file mode 100644 index 903ccf68..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_summary.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span summary=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_suppress.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_suppress.xml deleted file mode 100644 index 9779ee12..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_suppress.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span suppress=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_tabindex.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_tabindex.xml deleted file mode 100644 index a6c0ec6e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_tabindex.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span tabindex=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_target.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_target.xml deleted file mode 100644 index 3716ecd3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_target.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span target=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_template.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_template.xml deleted file mode 100644 index b624ee09..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_template.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span template=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_title.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_title.xml deleted file mode 100644 index 0e8d5207..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_title.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span title=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_toppadding.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_toppadding.xml deleted file mode 100644 index 248bfbfb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_toppadding.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span toppadding=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_type.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_type.xml deleted file mode 100644 index 7f9479f4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_type.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span type=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_unselectable.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_unselectable.xml deleted file mode 100644 index 4ef7f63a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_unselectable.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span unselectable=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_urn.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_urn.xml deleted file mode 100644 index ebbcfc5b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_urn.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span urn=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_usemap.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_usemap.xml deleted file mode 100644 index d0a76387..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_usemap.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span usemap=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_valign.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_valign.xml deleted file mode 100644 index 21efa6bf..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_valign.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span valign=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_value.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_value.xml deleted file mode 100644 index 56ce060c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_value.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span value=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_variable.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_variable.xml deleted file mode 100644 index ada4076f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_variable.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span variable=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_volume.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_volume.xml deleted file mode 100644 index 05852092..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_volume.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span volume=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_vrml.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_vrml.xml deleted file mode 100644 index 50b7a3f4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_vrml.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span vrml=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_vspace.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_vspace.xml deleted file mode 100644 index 7eca04f8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_vspace.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span vspace=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_width.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_width.xml deleted file mode 100644 index c2b4cebe..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_width.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span width=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_wrap.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_wrap.xml deleted file mode 100644 index 1b23e49f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_attribute_wrap.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span wrap=""></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_a.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_a.xml deleted file mode 100644 index 3c502891..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_a.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<a></a> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_abbr.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_abbr.xml deleted file mode 100644 index 4aafa029..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_abbr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<abbr></abbr> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_acronym.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_acronym.xml deleted file mode 100644 index 5762c398..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_acronym.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<acronym></acronym> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_address.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_address.xml deleted file mode 100644 index e11de2fb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_address.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<address></address> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_area.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_area.xml deleted file mode 100644 index ce4a14fe..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_area.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<area></area> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_article.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_article.xml deleted file mode 100644 index 3c1c3285..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_article.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<article></article> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_aside.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_aside.xml deleted file mode 100644 index 035ab288..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_aside.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<aside></aside> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_audio.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_audio.xml deleted file mode 100644 index 3923dfab..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_audio.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<audio></audio> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_b.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_b.xml deleted file mode 100644 index 76cdf89c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_b.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<b></b> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_big.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_big.xml deleted file mode 100644 index 8671e096..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_big.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<big></big> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_blockquote.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_blockquote.xml deleted file mode 100644 index 5eae0451..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_blockquote.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<blockquote></blockquote> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_br.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_br.xml deleted file mode 100644 index 192a27ce..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_br.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<br></br> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_button.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_button.xml deleted file mode 100644 index 9a07d9f0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_button.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<button></button> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_canvas.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_canvas.xml deleted file mode 100644 index 99b97bd0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_canvas.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<canvas></canvas> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_caption.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_caption.xml deleted file mode 100644 index fc4c55af..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_caption.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<caption></caption> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_center.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_center.xml deleted file mode 100644 index 8aecf8f3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_center.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<center></center> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_cite.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_cite.xml deleted file mode 100644 index 0af1302e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_cite.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<cite></cite> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_code.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_code.xml deleted file mode 100644 index c43bfe02..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_code.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<code></code> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_col.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_col.xml deleted file mode 100644 index 14b064fe..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_col.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<col></col> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_colgroup.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_colgroup.xml deleted file mode 100644 index 0b628463..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_colgroup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<colgroup></colgroup> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_command.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_command.xml deleted file mode 100644 index c09276c8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_command.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<command></command> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_datagrid.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_datagrid.xml deleted file mode 100644 index a9b1a681..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_datagrid.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<datagrid></datagrid> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_datalist.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_datalist.xml deleted file mode 100644 index d4ab94bb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_datalist.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<datalist></datalist> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dd.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dd.xml deleted file mode 100644 index 99b110ae..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dd.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<dd></dd> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_del.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_del.xml deleted file mode 100644 index 36444a5e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_del.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<del></del> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_details.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_details.xml deleted file mode 100644 index c66b6b07..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_details.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<details></details> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dfn.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dfn.xml deleted file mode 100644 index d6d09546..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dfn.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<dfn></dfn> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dialog.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dialog.xml deleted file mode 100644 index c0f91220..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dialog.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<dialog></dialog> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dir.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dir.xml deleted file mode 100644 index 55e74651..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dir.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<dir></dir> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_div.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_div.xml deleted file mode 100644 index aecbff33..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_div.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<div></div> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dl.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dl.xml deleted file mode 100644 index bd14c61c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dl.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<dl></dl> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dt.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dt.xml deleted file mode 100644 index 9cb828c6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_dt.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<dt></dt> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_em.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_em.xml deleted file mode 100644 index 1fad48ed..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_em.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<em></em> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_event-source.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_event-source.xml deleted file mode 100644 index 693381fc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_event-source.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<event-source></event-source> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_fieldset.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_fieldset.xml deleted file mode 100644 index 489fc29d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_fieldset.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<fieldset></fieldset> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_figure.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_figure.xml deleted file mode 100644 index 0314699c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_figure.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<figure></figure> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_font.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_font.xml deleted file mode 100644 index 4356a897..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_font.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<font></font> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_footer.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_footer.xml deleted file mode 100644 index 05fddcfa..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_footer.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<footer></footer> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_form.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_form.xml deleted file mode 100644 index b2795de9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_form.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<form></form> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h1.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h1.xml deleted file mode 100644 index 792d8438..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h1.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<h1></h1> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h2.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h2.xml deleted file mode 100644 index 1e559c17..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h2.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<h2></h2> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h3.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h3.xml deleted file mode 100644 index d778b68a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h3.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<h3></h3> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h4.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h4.xml deleted file mode 100644 index 736e40d0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h4.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<h4></h4> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h5.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h5.xml deleted file mode 100644 index 44d0cece..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h5.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<h5></h5> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h6.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h6.xml deleted file mode 100644 index e50a6a17..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_h6.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<h6></h6> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_header.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_header.xml deleted file mode 100644 index c6e124dc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_header.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<header></header> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_hr.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_hr.xml deleted file mode 100644 index 9d960505..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_hr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<hr></hr> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_i.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_i.xml deleted file mode 100644 index 6d61b461..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_i.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<i></i> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_img.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_img.xml deleted file mode 100644 index 87c3e14e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_img.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img></img> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_input.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_input.xml deleted file mode 100644 index 955bcd85..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_input.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<input></input> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_ins.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_ins.xml deleted file mode 100644 index 75ebb8c7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_ins.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<ins></ins> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_kbd.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_kbd.xml deleted file mode 100644 index a26b8771..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_kbd.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<kbd></kbd> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_keygen.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_keygen.xml deleted file mode 100644 index e86b15f5..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_keygen.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<keygen></keygen> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_label.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_label.xml deleted file mode 100644 index 64379d86..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_label.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<label></label> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_legend.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_legend.xml deleted file mode 100644 index c858b6fd..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_legend.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<legend></legend> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_li.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_li.xml deleted file mode 100644 index 212ed94c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_li.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<li></li> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_m.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_m.xml deleted file mode 100644 index 0b14b58f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_m.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<m></m> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_map.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_map.xml deleted file mode 100644 index 3f8835a0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_map.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<map></map> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_menu.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_menu.xml deleted file mode 100644 index 3ecc3a21..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_menu.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<menu></menu> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_meter.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_meter.xml deleted file mode 100644 index d263e8aa..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_meter.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<meter></meter> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_multicol.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_multicol.xml deleted file mode 100644 index 96c65fbc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_multicol.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<multicol></multicol> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_nav.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_nav.xml deleted file mode 100644 index 0a4be553..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_nav.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<nav></nav> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_nextid.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_nextid.xml deleted file mode 100644 index 83ac0b54..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_nextid.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<nextid></nextid> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_noscript.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_noscript.xml deleted file mode 100644 index 4d53a080..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_noscript.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<noscript></noscript> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_ol.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_ol.xml deleted file mode 100644 index d41750ea..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_ol.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<ol></ol> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_optgroup.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_optgroup.xml deleted file mode 100644 index 2ed4a5b3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_optgroup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<optgroup></optgroup> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_option.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_option.xml deleted file mode 100644 index 944a0897..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_option.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<option></option> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_output.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_output.xml deleted file mode 100644 index bd6d2399..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_output.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<output></output> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_p.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_p.xml deleted file mode 100644 index ad67e0c7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_p.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<p></p> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_pre.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_pre.xml deleted file mode 100644 index c6da1b86..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_pre.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<pre></pre> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_progress.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_progress.xml deleted file mode 100644 index 7b335e94..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_progress.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<progress></progress> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_q.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_q.xml deleted file mode 100644 index 95958d29..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_q.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<q></q> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_s.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_s.xml deleted file mode 100644 index 6a5e9118..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_s.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<s></s> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_samp.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_samp.xml deleted file mode 100644 index ededff49..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_samp.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<samp></samp> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_section.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_section.xml deleted file mode 100644 index 97044eb3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_section.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<section></section> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_select.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_select.xml deleted file mode 100644 index 2f8091cb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_select.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<select></select> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_small.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_small.xml deleted file mode 100644 index 3ec2a3ac..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_small.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<small></small> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_sound.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_sound.xml deleted file mode 100644 index d65966fb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_sound.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<sound></sound> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_source.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_source.xml deleted file mode 100644 index 87e92485..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_source.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<source></source> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_spacer.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_spacer.xml deleted file mode 100644 index 537b415f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_spacer.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<spacer></spacer> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_span.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_span.xml deleted file mode 100644 index d1f19a14..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_span.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<span></span> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_strike.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_strike.xml deleted file mode 100644 index 0185a3d0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_strike.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<strike></strike> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_strong.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_strong.xml deleted file mode 100644 index b931d270..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_strong.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<strong></strong> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_sub.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_sub.xml deleted file mode 100644 index 578c437b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_sub.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<sub></sub> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_sup.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_sup.xml deleted file mode 100644 index 3e90091c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_sup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<sup></sup> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_table.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_table.xml deleted file mode 100644 index d23afb57..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_table.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<table></table> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tbody.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tbody.xml deleted file mode 100644 index 09d43dae..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tbody.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<tbody></tbody> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_td.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_td.xml deleted file mode 100644 index 09d4ccdd..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_td.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<td></td> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_textarea.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_textarea.xml deleted file mode 100644 index b2a6758c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_textarea.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<textarea></textarea> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tfoot.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tfoot.xml deleted file mode 100644 index 3ada9d6f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tfoot.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<tfoot></tfoot> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_th.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_th.xml deleted file mode 100644 index 5441dac4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_th.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<th></th> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_thead.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_thead.xml deleted file mode 100644 index 317100db..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_thead.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<thead></thead> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_time.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_time.xml deleted file mode 100644 index b6925992..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_time.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<time></time> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tr.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tr.xml deleted file mode 100644 index 2b83aace..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tr.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<tr></tr> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tt.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tt.xml deleted file mode 100644 index e23719e4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_tt.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<tt></tt> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_u.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_u.xml deleted file mode 100644 index dd85877c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_u.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<u></u> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_ul.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_ul.xml deleted file mode 100644 index a6e825e2..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_ul.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<ul></ul> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_var.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_var.xml deleted file mode 100644 index e39e7123..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_var.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<var></var> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_video.xml b/lib/feedparser/tests/wellformed/sanitize/acceptable_element_video.xml deleted file mode 100644 index c88a91c8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/acceptable_element_video.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<video></video> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/blogger_dollar_sign_in_attribute.xml b/lib/feedparser/tests/wellformed/sanitize/blogger_dollar_sign_in_attribute.xml deleted file mode 100644 index c66295e4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/blogger_dollar_sign_in_attribute.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - <img border="0" i$="true" src="http://site.invalid/img.jpg" /> - - - diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_applet.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_applet.xml deleted file mode 100644 index d2c31437..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_applet.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<applet code="foo.class" codebase="http://example.com/"></applet> <b>description</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_blink.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_blink.xml deleted file mode 100644 index 64f9e574..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_blink.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<blink>safe</blink> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_crazy.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_crazy.xml deleted file mode 100644 index 9260c1ca..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_crazy.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title>Crazy HTML -- Can Your Regex Parse This?</title> - -</head> -<body notRealAttribute="value"onload="executeMe();"foo="bar" - -> -<!-- <script> --> - -<!-- - <script> ---> - -</script> - - -<script - - -> - -function executeMe() -{ - - - - -/* <script> -function am_i_javascript() -{ - var str = "Some innocuously commented out stuff"; -} -< /script> -*/ - - - - - - - - - - alert("Executed"); -} - - </script - - - -> -<h1>Did The Javascript Execute?</h1> -<div notRealAttribute="value -"onmouseover=" -executeMe(); -"foo="bar"> -I will execute here, too, if you mouse over me -</div> - -</body> - -</html> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_embed.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_embed.xml deleted file mode 100644 index d8ff3775..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_embed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<embed src="http://example.com/"> <b>description</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_frame.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_frame.xml deleted file mode 100644 index cfc75d17..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_frame.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<frameset rows="*"><frame src="http://example.com/"></frameset> <b>description</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_iframe.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_iframe.xml deleted file mode 100644 index fc2a07be..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_iframe.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<iframe src="http://example.com/"> <b>description</b></iframe> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_link.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_link.xml deleted file mode 100644 index 2672577f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_link.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<link rel="stylesheet" type="text/css" href="http://example.com/evil.css"> <b>description</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_meta.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_meta.xml deleted file mode 100644 index d22be265..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_meta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<meta http-equiv="Refresh" content="0; URL=http://example.com/"> <b>description</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_object.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_object.xml deleted file mode 100644 index 24542192..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_object.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<object classid="clsid:C932BA85-4374-101B-A56C-00AA003668DC"> <b>description</b> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onabort.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onabort.xml deleted file mode 100644 index 55ddeb5f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onabort.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onabort="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onblur.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onblur.xml deleted file mode 100644 index a45a40c8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onblur.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onblur="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onchange.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onchange.xml deleted file mode 100644 index 3d4c3ede..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onchange.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onchange="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onclick.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onclick.xml deleted file mode 100644 index 10f544c3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onclick.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onclick="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_ondblclick.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_ondblclick.xml deleted file mode 100644 index 4817e3f9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_ondblclick.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" ondblclick="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onerror.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onerror.xml deleted file mode 100644 index 1d0bd042..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onerror.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onerror="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onfocus.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onfocus.xml deleted file mode 100644 index b547ab43..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onfocus.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onfocus="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onkeydown.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onkeydown.xml deleted file mode 100644 index e3cc0064..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onkeydown.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeydown="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onkeypress.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onkeypress.xml deleted file mode 100644 index 2e622b80..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onkeypress.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeypress="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onkeyup.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onkeyup.xml deleted file mode 100644 index 668b8fb9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onkeyup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeyup="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onload.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onload.xml deleted file mode 100644 index 11a25672..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onload.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onload="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onmousedown.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onmousedown.xml deleted file mode 100644 index 546ae7cc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onmousedown.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmousedown="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onmouseout.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onmouseout.xml deleted file mode 100644 index 3c34adbb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onmouseout.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseout="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onmouseover.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onmouseover.xml deleted file mode 100644 index baccde4e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onmouseover.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseover="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onmouseup.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onmouseup.xml deleted file mode 100644 index 5c11c082..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onmouseup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseup="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onreset.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onreset.xml deleted file mode 100644 index 5a69ab58..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onreset.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onreset="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onresize.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onresize.xml deleted file mode 100644 index ffa3bff6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onresize.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onresize="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onsubmit.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onsubmit.xml deleted file mode 100644 index c3946849..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onsubmit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onsubmit="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_onunload.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_onunload.xml deleted file mode 100644 index 3f42aa36..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_onunload.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onunload="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_script.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_script.xml deleted file mode 100644 index e975dad5..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_script.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_script_base64.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_script_base64.xml deleted file mode 100644 index 210eb6ca..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_script_base64.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -c2FmZTxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0Ij5sb2NhdGlvbi5ocmVmPSdodHRwOi8n -KycvZXhhbXBsZS5jb20vJzs8L3NjcmlwdD4gZGVzY3JpcHRpb24= - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_script_cdata.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_script_cdata.xml deleted file mode 100644 index 0bb07b9f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_script_cdata.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -location.href='http:/'+'/example.com/'; description]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_script_inline.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_script_inline.xml deleted file mode 100644 index 9c5c6239..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_script_inline.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
safe description
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_style.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_style.xml deleted file mode 100644 index b243bf18..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_style.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<a href="http://www.ragingplatypus.com/" style="display:block; position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; background-color:black; background-image:url(http://www.ragingplatypus.com/i/cam-full.jpg); background-x:center; background-y:center; background-repeat:repeat;">never trust your upstream platypus</a> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_content_style_tag.xml b/lib/feedparser/tests/wellformed/sanitize/entry_content_style_tag.xml deleted file mode 100644 index 6b38beb9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_content_style_tag.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<style>b {color:red}</style> <b>description</b> - - diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_applet.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_applet.xml deleted file mode 100644 index 4404687f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_applet.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<applet code="foo.class" codebase="http://example.com/"></applet> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_blink.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_blink.xml deleted file mode 100644 index 64e95bc6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_blink.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<blink>safe</blink> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_crazy.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_crazy.xml deleted file mode 100644 index cdc2ad17..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_crazy.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title>Crazy HTML -- Can Your Regex Parse This?</title> - -</head> -<body notRealAttribute="value"onload="executeMe();"foo="bar" - -> -<!-- <script> --> - -<!-- - <script> ---> - -</script> - - -<script - - -> - -function executeMe() -{ - - - - -/* <script> -function am_i_javascript() -{ - var str = "Some innocuously commented out stuff"; -} -< /script> -*/ - - - - - - - - - - alert("Executed"); -} - - </script - - - -> -<h1>Did The Javascript Execute?</h1> -<div notRealAttribute="value -"onmouseover=" -executeMe(); -"foo="bar"> -I will execute here, too, if you mouse over me -</div> - -</body> - -</html> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_embed.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_embed.xml deleted file mode 100644 index f7403ef9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_embed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<embed src="http://example.com/"> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_frame.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_frame.xml deleted file mode 100644 index a59a2d04..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_frame.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<frameset rows="*"><frame src="http://example.com/"></frameset> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_iframe.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_iframe.xml deleted file mode 100644 index a93899aa..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_iframe.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<iframe src="http://example.com/"> description</iframe> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_link.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_link.xml deleted file mode 100644 index 4db83dbe..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_link.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<link rel="stylesheet" type="text/css" href="http://example.com/evil.css"> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_meta.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_meta.xml deleted file mode 100644 index 42345e15..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_meta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<meta http-equiv="Refresh" content="0; URL=http://example.com/"> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_object.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_object.xml deleted file mode 100644 index f38dcb5f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_object.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<object classid="clsid:C932BA85-4374-101B-A56C-00AA003668DC"> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onabort.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onabort.xml deleted file mode 100644 index 97c86763..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onabort.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onabort="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onblur.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onblur.xml deleted file mode 100644 index 1bc3f830..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onblur.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onblur="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onchange.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onchange.xml deleted file mode 100644 index 553aa311..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onchange.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onchange="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onclick.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onclick.xml deleted file mode 100644 index b5d1d4e1..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onclick.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onclick="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_ondblclick.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_ondblclick.xml deleted file mode 100644 index fc3a61a2..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_ondblclick.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" ondblclick="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onerror.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onerror.xml deleted file mode 100644 index 60d46a18..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onerror.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onerror="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onfocus.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onfocus.xml deleted file mode 100644 index 6f47ec69..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onfocus.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onfocus="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onkeydown.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onkeydown.xml deleted file mode 100644 index 7eaa42c8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onkeydown.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeydown="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onkeypress.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onkeypress.xml deleted file mode 100644 index 8085f65d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onkeypress.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeypress="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onkeyup.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onkeyup.xml deleted file mode 100644 index 557422ee..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onkeyup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeyup="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onload.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onload.xml deleted file mode 100644 index 04323bce..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onload.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onload="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmousedown.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmousedown.xml deleted file mode 100644 index bb74f81c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmousedown.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmousedown="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmouseout.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmouseout.xml deleted file mode 100644 index 3c60df97..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmouseout.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseout="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmouseover.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmouseover.xml deleted file mode 100644 index f0732d05..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmouseover.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseover="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmouseup.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmouseup.xml deleted file mode 100644 index 8b28f6dc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onmouseup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseup="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onreset.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onreset.xml deleted file mode 100644 index 997cfc4b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onreset.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onreset="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onresize.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onresize.xml deleted file mode 100644 index 9a6a84e8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onresize.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onresize="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onsubmit.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onsubmit.xml deleted file mode 100644 index af6682fb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onsubmit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onsubmit="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onunload.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_onunload.xml deleted file mode 100644 index 6b1539dc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_onunload.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onunload="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_script.xml deleted file mode 100644 index 3787017e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_base64.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_base64.xml deleted file mode 100644 index 61c013cc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_base64.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - -c2FmZTxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0Ij5sb2NhdGlvbi5ocmVmPSdodHRwOi8n -KycvZXhhbXBsZS5jb20vJzs8L3NjcmlwdD4gZGVzY3JpcHRpb24= - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_cdata.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_cdata.xml deleted file mode 100644 index 055e3660..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_cdata.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -location.href='http:/'+'/example.com/'; description]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_inline.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_inline.xml deleted file mode 100644 index 06d8ff9c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_inline.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -
safe description
-
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_map_description.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_map_description.xml deleted file mode 100644 index d3ffcc91..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_script_map_description.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_summary_style.xml b/lib/feedparser/tests/wellformed/sanitize/entry_summary_style.xml deleted file mode 100644 index 320de4e3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_summary_style.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<a href="http://www.ragingplatypus.com/" style="display:block; position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; background-color:black; background-image:url(http://www.ragingplatypus.com/i/cam-full.jpg); background-x:center; background-y:center; background-repeat:repeat;">never trust your upstream platypus</a> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_applet.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_applet.xml deleted file mode 100644 index 4a84cf71..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_applet.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<applet code="foo.class" codebase="http://www.example.com/"></applet> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_blink.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_blink.xml deleted file mode 100644 index d7c7618a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_blink.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<blink>safe</blink> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_crazy.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_crazy.xml deleted file mode 100644 index 4d6929a0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_crazy.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title>Crazy HTML -- Can Your Regex Parse This?</title> - -</head> -<body notRealAttribute="value"onload="executeMe();"foo="bar" - -> -<!-- <script> --> - -<!-- - <script> ---> - -</script> - - -<script - - -> - -function executeMe() -{ - - - - -/* <script> -function am_i_javascript() -{ - var str = "Some innocuously commented out stuff"; -} -< /script> -*/ - - - - - - - - - - alert("Executed"); -} - - </script - - - -> -<h1>Did The Javascript Execute?</h1> -<div notRealAttribute="value -"onmouseover=" -executeMe(); -"foo="bar"> -I will execute here, too, if you mouse over me -</div> - -</body> - -</html> - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_embed.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_embed.xml deleted file mode 100644 index cc56f982..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_embed.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<embed src="http://www.example.com/"> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_frame.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_frame.xml deleted file mode 100644 index eb5f80f9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_frame.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<frameset rows="*"><frame src="http://example.com/"></frameset> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_iframe.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_iframe.xml deleted file mode 100644 index d3dd7b70..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_iframe.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<iframe src="http://www.example.com/"></iframe> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_link.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_link.xml deleted file mode 100644 index 28fa2fa9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_link.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<link rel="stylesheet" type="text/css" href="http://example.com/evil.css"> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_meta.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_meta.xml deleted file mode 100644 index c707fe2e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_meta.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<meta http-equiv="Refresh" content="0; URL=http://example.com/"> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_object.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_object.xml deleted file mode 100644 index 06ba3788..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_object.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<object classid="clsid:C932BA85-4374-101B-A56C-00AA003668DC"> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onabort.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onabort.xml deleted file mode 100644 index 6669690e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onabort.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onabort="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onblur.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onblur.xml deleted file mode 100644 index a5a09c9b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onblur.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onblur="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onchange.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onchange.xml deleted file mode 100644 index 9b5e22a4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onchange.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onchange="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onclick.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onclick.xml deleted file mode 100644 index 1e7c20c2..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onclick.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onclick="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_ondblclick.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_ondblclick.xml deleted file mode 100644 index 800904bb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_ondblclick.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" ondblclick="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onerror.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onerror.xml deleted file mode 100644 index d60cc44b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onerror.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onerror="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onfocus.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onfocus.xml deleted file mode 100644 index b1218955..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onfocus.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onfocus="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onkeydown.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onkeydown.xml deleted file mode 100644 index dfd3c227..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onkeydown.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeydown="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onkeypress.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onkeypress.xml deleted file mode 100644 index 5343e948..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onkeypress.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeypress="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onkeyup.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onkeyup.xml deleted file mode 100644 index 587d616d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onkeyup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeyup="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onload.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onload.xml deleted file mode 100644 index 7b71552d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onload.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onload="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onmousedown.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onmousedown.xml deleted file mode 100644 index 69681fd9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onmousedown.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmousedown="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onmouseout.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onmouseout.xml deleted file mode 100644 index fc25b8a8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onmouseout.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseout="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onmouseover.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onmouseover.xml deleted file mode 100644 index 4dde5f37..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onmouseover.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseover="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onmouseup.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onmouseup.xml deleted file mode 100644 index 81cfdfce..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onmouseup.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseup="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onreset.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onreset.xml deleted file mode 100644 index e2bc481b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onreset.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onreset="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onresize.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onresize.xml deleted file mode 100644 index f96a76b2..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onresize.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onresize="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onsubmit.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onsubmit.xml deleted file mode 100644 index b07628ac..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onsubmit.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onsubmit="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_onunload.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_onunload.xml deleted file mode 100644 index 0a6f998b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_onunload.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onunload="location.href='http://www.ragingplatypus.com/';" /> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_script.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_script.xml deleted file mode 100644 index 86855886..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_script.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_script_cdata.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_script_cdata.xml deleted file mode 100644 index e315d623..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_script_cdata.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<![CDATA[safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description]]> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_script_inline.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_script_inline.xml deleted file mode 100644 index 790cfd5c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_script_inline.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<div xmlns="http://www.w3.org/1999/xhtml">safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description</div> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/entry_title_style.xml b/lib/feedparser/tests/wellformed/sanitize/entry_title_style.xml deleted file mode 100644 index f1fb8d66..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/entry_title_style.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - -<a href="http://www.ragingplatypus.com/" style="display:block; position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; background-color:black; background-image:url(http://www.ragingplatypus.com/i/cam-full.jpg); background-x:center; background-y:center; background-repeat:repeat;">never trust your upstream platypus</a> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_applet.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_applet.xml deleted file mode 100644 index bc1aacb3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_applet.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<applet code="foo.class" codebase="http://www.example.com/"></applet> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_blink.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_blink.xml deleted file mode 100644 index 4018115f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_blink.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<blink>safe</blink> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_crazy.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_crazy.xml deleted file mode 100644 index 70ef93fc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_crazy.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title>Crazy HTML -- Can Your Regex Parse This?</title> - -</head> -<body notRealAttribute="value"onload="executeMe();"foo="bar" - -> -<!-- <script> --> - -<!-- - <script> ---> - -</script> - - -<script - - -> - -function executeMe() -{ - - - - -/* <script> -function am_i_javascript() -{ - var str = "Some innocuously commented out stuff"; -} -< /script> -*/ - - - - - - - - - - alert("Executed"); -} - - </script - - - -> -<h1>Did The Javascript Execute?</h1> -<div notRealAttribute="value -"onmouseover=" -executeMe(); -"foo="bar"> -I will execute here, too, if you mouse over me -</div> - -</body> - -</html> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_embed.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_embed.xml deleted file mode 100644 index 1e73ef5f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_embed.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<embed src="http://www.example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_frame.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_frame.xml deleted file mode 100644 index 4c6f8105..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_frame.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<frameset rows="*"><frame src="http://example.com/"></frameset> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_iframe.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_iframe.xml deleted file mode 100644 index 3cefdfc5..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_iframe.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<iframe src="http://www.example.com/"></iframe> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_link.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_link.xml deleted file mode 100644 index 3cdec2e5..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_link.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<link rel="stylesheet" type="text/css" href="http://example.com/evil.css"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_meta.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_meta.xml deleted file mode 100644 index 6974afb3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_meta.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<meta http-equiv="Refresh" content="0; URL=http://example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_object.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_object.xml deleted file mode 100644 index 9beabb6b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_object.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<object classid="clsid:C932BA85-4374-101B-A56C-00AA003668DC"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onabort.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onabort.xml deleted file mode 100644 index 264e99a5..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onabort.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onabort="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onblur.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onblur.xml deleted file mode 100644 index 0f39eba0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onblur.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onblur="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onchange.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onchange.xml deleted file mode 100644 index 8e33cb90..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onchange.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onchange="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onclick.xml deleted file mode 100644 index 37eeb8a1..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_ondblclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_ondblclick.xml deleted file mode 100644 index c2636fed..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_ondblclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" ondblclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onerror.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onerror.xml deleted file mode 100644 index 7f79e671..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onerror.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onerror="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onfocus.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onfocus.xml deleted file mode 100644 index 73c97e0e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onfocus.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onfocus="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onkeydown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onkeydown.xml deleted file mode 100644 index f0a6fd24..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onkeydown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeydown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onkeypress.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onkeypress.xml deleted file mode 100644 index 762819cd..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onkeypress.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeypress="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onkeyup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onkeyup.xml deleted file mode 100644 index 3bb08dc0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onkeyup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeyup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onload.xml deleted file mode 100644 index 41078416..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmousedown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmousedown.xml deleted file mode 100644 index 9d4f709a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmousedown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmousedown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmouseout.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmouseout.xml deleted file mode 100644 index 008e9074..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmouseout.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseout="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmouseover.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmouseover.xml deleted file mode 100644 index b77c3912..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmouseover.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseover="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmouseup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmouseup.xml deleted file mode 100644 index 5a5d42bf..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onmouseup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onreset.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onreset.xml deleted file mode 100644 index 99062f47..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onreset.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onreset="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onresize.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onresize.xml deleted file mode 100644 index b7b5e1a8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onresize.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onresize="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onsubmit.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onsubmit.xml deleted file mode 100644 index b09b8e8b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onsubmit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onsubmit="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onunload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onunload.xml deleted file mode 100644 index 17aa1f34..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_onunload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onunload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_script.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_script.xml deleted file mode 100644 index 842e93f2..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_script.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_script_cdata.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_script_cdata.xml deleted file mode 100644 index 0113b7ef..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_script_cdata.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -location.href='http:/'+'/example.com/'; description]]> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_script_inline.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_script_inline.xml deleted file mode 100644 index fcae4f06..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_script_inline.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
safe description
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_style.xml b/lib/feedparser/tests/wellformed/sanitize/feed_copyright_style.xml deleted file mode 100644 index a9dc4e5b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_copyright_style.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<a href="http://www.ragingplatypus.com/" style="display:block; position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; background-color:black; background-image:url(http://www.ragingplatypus.com/i/cam-full.jpg); background-x:center; background-y:center; background-repeat:repeat;">never trust your upstream platypus</a> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_applet.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_applet.xml deleted file mode 100644 index ed783f53..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_applet.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<applet code="foo.class" codebase="http://example.com/"></applet> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_blink.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_blink.xml deleted file mode 100644 index 0a94622b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_blink.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<blink>safe</blink> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_crazy.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_crazy.xml deleted file mode 100644 index b8bc995d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_crazy.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title>Crazy HTML -- Can Your Regex Parse This?</title> - -</head> -<body notRealAttribute="value"onload="executeMe();"foo="bar" - -> -<!-- <script> --> - -<!-- - <script> ---> - -</script> - - -<script - - -> - -function executeMe() -{ - - - - -/* <script> -function am_i_javascript() -{ - var str = "Some innocuously commented out stuff"; -} -< /script> -*/ - - - - - - - - - - alert("Executed"); -} - - </script - - - -> -<h1>Did The Javascript Execute?</h1> -<div notRealAttribute="value -"onmouseover=" -executeMe(); -"foo="bar"> -I will execute here, too, if you mouse over me -</div> - -</body> - -</html> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_embed.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_embed.xml deleted file mode 100644 index 82b0e3d4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_embed.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<embed src="http://example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_frame.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_frame.xml deleted file mode 100644 index de61c2fc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_frame.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<frameset rows="*"><frame src="http://example.com/"></frameset> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_iframe.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_iframe.xml deleted file mode 100644 index 49f1edc6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_iframe.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<iframe src="http://example.com/"> description</iframe> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_link.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_link.xml deleted file mode 100644 index 4ef66897..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_link.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<link rel="stylesheet" type="text/css" href="http://example.com/evil.css"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_meta.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_meta.xml deleted file mode 100644 index 85ca4780..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_meta.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<meta http-equiv="Refresh" content="0; URL=http://example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_object.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_object.xml deleted file mode 100644 index a32f5124..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_object.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<object classid="clsid:C932BA85-4374-101B-A56C-00AA003668DC"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onabort.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onabort.xml deleted file mode 100644 index c6f2a96a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onabort.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onabort="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onblur.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onblur.xml deleted file mode 100644 index b10c4e8f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onblur.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onblur="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onchange.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onchange.xml deleted file mode 100644 index 653af579..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onchange.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onchange="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onclick.xml deleted file mode 100644 index 93644d6d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_ondblclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_ondblclick.xml deleted file mode 100644 index 1776c913..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_ondblclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" ondblclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onerror.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onerror.xml deleted file mode 100644 index 9b8dd9cf..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onerror.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onerror="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onfocus.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onfocus.xml deleted file mode 100644 index 51a390bb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onfocus.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onfocus="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onkeydown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onkeydown.xml deleted file mode 100644 index 4674d0e3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onkeydown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeydown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onkeypress.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onkeypress.xml deleted file mode 100644 index cc2af96a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onkeypress.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeypress="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onkeyup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onkeyup.xml deleted file mode 100644 index cde7c423..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onkeyup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeyup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onload.xml deleted file mode 100644 index 7763fbf3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onmousedown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onmousedown.xml deleted file mode 100644 index 45651554..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onmousedown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmousedown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onmouseout.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onmouseout.xml deleted file mode 100644 index e2de0c6c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onmouseout.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseout="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onmouseover.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onmouseover.xml deleted file mode 100644 index 9e520079..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onmouseover.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseover="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onmouseup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onmouseup.xml deleted file mode 100644 index 15b0aac6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onmouseup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onreset.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onreset.xml deleted file mode 100644 index be8bdc4c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onreset.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onreset="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onresize.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onresize.xml deleted file mode 100644 index f2429be6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onresize.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onresize="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onsubmit.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onsubmit.xml deleted file mode 100644 index c230a400..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onsubmit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onsubmit="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_onunload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_onunload.xml deleted file mode 100644 index 9c66418c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_onunload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onunload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_script.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_script.xml deleted file mode 100644 index 34d20bd5..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_script.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_script_cdata.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_script_cdata.xml deleted file mode 100644 index ae3fb8e5..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_script_cdata.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -location.href='http:/'+'/example.com/'; description]]> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_script_inline.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_script_inline.xml deleted file mode 100644 index dafc46a7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_script_inline.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
safe description
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_info_style.xml b/lib/feedparser/tests/wellformed/sanitize/feed_info_style.xml deleted file mode 100644 index d1aac49a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_info_style.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<a href="http://www.ragingplatypus.com/" style="display:block; position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; background-color:black; background-image:url(http://www.ragingplatypus.com/i/cam-full.jpg); background-x:center; background-y:center; background-repeat:repeat;">never trust your upstream platypus</a> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_applet.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_applet.xml deleted file mode 100644 index 30d75af1..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_applet.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<applet code="foo.class" codebase="http://example.com/"></applet> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_blink.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_blink.xml deleted file mode 100644 index 89e14e36..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_blink.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<blink>safe</blink> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_crazy.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_crazy.xml deleted file mode 100644 index 2c286dd8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_crazy.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title>Crazy HTML -- Can Your Regex Parse This?</title> - -</head> -<body notRealAttribute="value"onload="executeMe();"foo="bar" - -> -<!-- <script> --> - -<!-- - <script> ---> - -</script> - - -<script - - -> - -function executeMe() -{ - - - - -/* <script> -function am_i_javascript() -{ - var str = "Some innocuously commented out stuff"; -} -< /script> -*/ - - - - - - - - - - alert("Executed"); -} - - </script - - - -> -<h1>Did The Javascript Execute?</h1> -<div notRealAttribute="value -"onmouseover=" -executeMe(); -"foo="bar"> -I will execute here, too, if you mouse over me -</div> - -</body> - -</html> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_embed.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_embed.xml deleted file mode 100644 index c83d6dab..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_embed.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<embed src="http://example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_frame.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_frame.xml deleted file mode 100644 index 0f165f0e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_frame.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<frameset rows="*"><frame src="http://example.com/"></frameset> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_iframe.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_iframe.xml deleted file mode 100644 index f3c14bfc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_iframe.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<iframe src="http://example.com/"> description</iframe> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_link.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_link.xml deleted file mode 100644 index 2daccf30..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_link.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<link rel="stylesheet" type="text/css" href="http://example.com/evil.css"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_meta.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_meta.xml deleted file mode 100644 index bb530e35..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_meta.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<meta http-equiv="Refresh" content="0; URL=http://example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_object.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_object.xml deleted file mode 100644 index 4116bff8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_object.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<object classid="clsid:C932BA85-4374-101B-A56C-00AA003668DC"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onabort.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onabort.xml deleted file mode 100644 index 597c482e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onabort.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onabort="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onblur.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onblur.xml deleted file mode 100644 index 5a1301f8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onblur.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onblur="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onchange.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onchange.xml deleted file mode 100644 index cec13dc7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onchange.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onchange="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onclick.xml deleted file mode 100644 index 18bd7a76..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_ondblclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_ondblclick.xml deleted file mode 100644 index b3e0fea5..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_ondblclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" ondblclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onerror.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onerror.xml deleted file mode 100644 index 9693ee51..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onerror.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onerror="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onfocus.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onfocus.xml deleted file mode 100644 index 315c8649..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onfocus.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onfocus="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onkeydown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onkeydown.xml deleted file mode 100644 index 8290367f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onkeydown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeydown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onkeypress.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onkeypress.xml deleted file mode 100644 index 6def555e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onkeypress.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeypress="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onkeyup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onkeyup.xml deleted file mode 100644 index 618a0c2f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onkeyup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeyup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onload.xml deleted file mode 100644 index 78a45b9e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmousedown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmousedown.xml deleted file mode 100644 index 77010aae..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmousedown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmousedown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseout.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseout.xml deleted file mode 100644 index 5e353ee0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseout.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseout="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseover.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseover.xml deleted file mode 100644 index 8d20666c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseover.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseover="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseup.xml deleted file mode 100644 index 4c689315..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onmouseup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onreset.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onreset.xml deleted file mode 100644 index f7f2abae..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onreset.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onreset="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onresize.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onresize.xml deleted file mode 100644 index eb7ebda0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onresize.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onresize="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onsubmit.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onsubmit.xml deleted file mode 100644 index 5bb7dd6b..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onsubmit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onsubmit="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onunload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onunload.xml deleted file mode 100644 index 57824a3a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_onunload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onunload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_script.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_script.xml deleted file mode 100644 index 59e76db1..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_script.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_script_cdata.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_script_cdata.xml deleted file mode 100644 index b7ee3f4f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_script_cdata.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -location.href='http:/'+'/example.com/'; description]]> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_script_inline.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_script_inline.xml deleted file mode 100644 index 61c7c7b1..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_script_inline.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
safe description
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_style.xml b/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_style.xml deleted file mode 100644 index 332a65b9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_subtitle_style.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<a href="http://www.ragingplatypus.com/" style="display:block; position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; background-color:black; background-image:url(http://www.ragingplatypus.com/i/cam-full.jpg); background-x:center; background-y:center; background-repeat:repeat;">never trust your upstream platypus</a> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_applet.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_applet.xml deleted file mode 100644 index 6bcca5d9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_applet.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<applet code="foo.class" codebase="http://example.com/"></applet> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_blink.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_blink.xml deleted file mode 100644 index cd758dd6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_blink.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<blink>safe</blink> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_crazy.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_crazy.xml deleted file mode 100644 index 63617d33..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_crazy.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title>Crazy HTML -- Can Your Regex Parse This?</title> - -</head> -<body notRealAttribute="value"onload="executeMe();"foo="bar" - -> -<!-- <script> --> - -<!-- - <script> ---> - -</script> - - -<script - - -> - -function executeMe() -{ - - - - -/* <script> -function am_i_javascript() -{ - var str = "Some innocuously commented out stuff"; -} -< /script> -*/ - - - - - - - - - - alert("Executed"); -} - - </script - - - -> -<h1>Did The Javascript Execute?</h1> -<div notRealAttribute="value -"onmouseover=" -executeMe(); -"foo="bar"> -I will execute here, too, if you mouse over me -</div> - -</body> - -</html> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_embed.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_embed.xml deleted file mode 100644 index 68fca0f0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_embed.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<embed src="http://example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_frame.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_frame.xml deleted file mode 100644 index 9a3a14fb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_frame.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<frameset rows="*"><frame src="http://example.com/"></frameset> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_iframe.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_iframe.xml deleted file mode 100644 index 6863469c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_iframe.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<iframe src="http://example.com/"></iframe> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_link.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_link.xml deleted file mode 100644 index f46ac8e7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_link.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<link rel="stylesheet" type="text/css" href="http://example.com/evil.css"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_meta.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_meta.xml deleted file mode 100644 index 21efed77..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_meta.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<meta http-equiv="Refresh" content="0; URL=http://example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_object.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_object.xml deleted file mode 100644 index 114c6256..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_object.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<object classid="clsid:C932BA85-4374-101B-A56C-00AA003668DC"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onabort.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onabort.xml deleted file mode 100644 index a4ce8001..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onabort.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onabort="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onblur.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onblur.xml deleted file mode 100644 index 2f2958e9..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onblur.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onblur="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onchange.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onchange.xml deleted file mode 100644 index 2afe2267..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onchange.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onchange="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onclick.xml deleted file mode 100644 index fa104ca6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_ondblclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_ondblclick.xml deleted file mode 100644 index 6b72d9fa..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_ondblclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" ondblclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onerror.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onerror.xml deleted file mode 100644 index 3744e11d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onerror.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onerror="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onfocus.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onfocus.xml deleted file mode 100644 index a11a3030..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onfocus.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onfocus="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onkeydown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onkeydown.xml deleted file mode 100644 index 46ddf0ca..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onkeydown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeydown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onkeypress.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onkeypress.xml deleted file mode 100644 index 5703a1fc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onkeypress.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeypress="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onkeyup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onkeyup.xml deleted file mode 100644 index dc78e672..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onkeyup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeyup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onload.xml deleted file mode 100644 index 97265537..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmousedown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmousedown.xml deleted file mode 100644 index a25f3f21..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmousedown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmousedown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmouseout.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmouseout.xml deleted file mode 100644 index ef7c5063..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmouseout.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseout="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmouseover.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmouseover.xml deleted file mode 100644 index aac3d54e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmouseover.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseover="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmouseup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmouseup.xml deleted file mode 100644 index 41ab39e7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onmouseup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onreset.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onreset.xml deleted file mode 100644 index 17932f36..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onreset.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onreset="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onresize.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onresize.xml deleted file mode 100644 index bf712f87..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onresize.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onresize="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onsubmit.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onsubmit.xml deleted file mode 100644 index a33ebf45..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onsubmit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onsubmit="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onunload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onunload.xml deleted file mode 100644 index 2d155055..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_onunload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onunload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script.xml deleted file mode 100644 index b818be55..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script_cdata.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script_cdata.xml deleted file mode 100644 index 943c8d61..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script_cdata.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -location.href='http:/'+'/example.com/'; description]]> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script_inline.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script_inline.xml deleted file mode 100644 index 90294651..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script_inline.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -
safe description
-
\ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script_map_description.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script_map_description.xml deleted file mode 100644 index fb9d0ef6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_script_map_description.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_style.xml b/lib/feedparser/tests/wellformed/sanitize/feed_tagline_style.xml deleted file mode 100644 index abc68f35..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_tagline_style.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<a href="http://www.ragingplatypus.com/" style="display:block; position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; background-color:black; background-image:url(http://www.ragingplatypus.com/i/cam-full.jpg); background-x:center; background-y:center; background-repeat:repeat;">never trust your upstream platypus</a> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_applet.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_applet.xml deleted file mode 100644 index 7d6156bc..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_applet.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<applet code="foo.class" codebase="http://example.com/"></applet> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_blink.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_blink.xml deleted file mode 100644 index e9fb536c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_blink.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<blink>safe</blink> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_crazy.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_crazy.xml deleted file mode 100644 index dfca8a2c..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_crazy.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> -<title>Crazy HTML -- Can Your Regex Parse This?</title> - -</head> -<body notRealAttribute="value"onload="executeMe();"foo="bar" - -> -<!-- <script> --> - -<!-- - <script> ---> - -</script> - - -<script - - -> - -function executeMe() -{ - - - - -/* <script> -function am_i_javascript() -{ - var str = "Some innocuously commented out stuff"; -} -< /script> -*/ - - - - - - - - - - alert("Executed"); -} - - </script - - - -> -<h1>Did The Javascript Execute?</h1> -<div notRealAttribute="value -"onmouseover=" -executeMe(); -"foo="bar"> -I will execute here, too, if you mouse over me -</div> - -</body> - -</html> - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_embed.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_embed.xml deleted file mode 100644 index 0ae3167d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_embed.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<embed src="http://example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_frame.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_frame.xml deleted file mode 100644 index c6df6c00..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_frame.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<frameset rows="*"><frame src="http://example.com/"></frameset> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_iframe.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_iframe.xml deleted file mode 100644 index 9422d368..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_iframe.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<iframe src="http://example.com/"></iframe> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_link.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_link.xml deleted file mode 100644 index d540cc41..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_link.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<link rel="stylesheet" type="text/css" href="http://example.com/evil.css"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_meta.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_meta.xml deleted file mode 100644 index 801c4df3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_meta.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<meta http-equiv="Refresh" content="0; URL=http://example.com/"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_object.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_object.xml deleted file mode 100644 index 312cc841..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_object.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<object classid="clsid:C932BA85-4374-101B-A56C-00AA003668DC"> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onabort.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onabort.xml deleted file mode 100644 index 36f5e913..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onabort.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onabort="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onblur.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onblur.xml deleted file mode 100644 index dbf5f3af..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onblur.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onblur="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onchange.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onchange.xml deleted file mode 100644 index 26ba2385..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onchange.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onchange="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onclick.xml deleted file mode 100644 index 76be05c8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_ondblclick.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_ondblclick.xml deleted file mode 100644 index 69df1cd2..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_ondblclick.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" ondblclick="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onerror.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onerror.xml deleted file mode 100644 index 254a630a..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onerror.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onerror="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onfocus.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onfocus.xml deleted file mode 100644 index 0f2cfa7e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onfocus.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onfocus="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onkeydown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onkeydown.xml deleted file mode 100644 index 66577130..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onkeydown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeydown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onkeypress.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onkeypress.xml deleted file mode 100644 index dc3e3bd4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onkeypress.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeypress="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onkeyup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onkeyup.xml deleted file mode 100644 index 5f2e98a4..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onkeyup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onkeyup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onload.xml deleted file mode 100644 index 066a375e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onmousedown.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onmousedown.xml deleted file mode 100644 index a4a9281d..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onmousedown.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmousedown="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onmouseout.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onmouseout.xml deleted file mode 100644 index 6edc7e3e..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onmouseout.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseout="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onmouseover.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onmouseover.xml deleted file mode 100644 index 6da205b8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onmouseover.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseover="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onmouseup.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onmouseup.xml deleted file mode 100644 index b7693102..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onmouseup.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onmouseup="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onreset.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onreset.xml deleted file mode 100644 index cd3422e2..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onreset.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onreset="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onresize.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onresize.xml deleted file mode 100644 index 9d6bcee7..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onresize.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onresize="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onsubmit.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onsubmit.xml deleted file mode 100644 index 153d6f2f..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onsubmit.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onsubmit="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_onunload.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_onunload.xml deleted file mode 100644 index 77866f89..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_onunload.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<img src="http://www.ragingplatypus.com/i/cam-full.jpg" onunload="location.href='http://www.ragingplatypus.com/';" /> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_script.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_script.xml deleted file mode 100644 index 63284163..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_script.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_script_cdata.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_script_cdata.xml deleted file mode 100644 index a37085f3..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_script_cdata.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<![CDATA[safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description]]> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_script_inline.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_script_inline.xml deleted file mode 100644 index 889667e6..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_script_inline.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<div xmlns="http://www.w3.org/1999/xhtml">safe<script type="text/javascript">location.href='http:/'+'/example.com/';</script> description</div> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_style.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_style.xml deleted file mode 100644 index c1aeaec8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_style.xml +++ /dev/null @@ -1,7 +0,0 @@ - - -<a href="http://www.ragingplatypus.com/" style="display:block; position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; background-color:black; background-image:url(http://www.ragingplatypus.com/i/cam-full.jpg); background-x:center; background-y:center; background-repeat:repeat;">never trust your upstream platypus</a> - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/feed_title_unacceptable_uri.xml b/lib/feedparser/tests/wellformed/sanitize/feed_title_unacceptable_uri.xml deleted file mode 100644 index 7d66c5a8..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/feed_title_unacceptable_uri.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - <a href="javascript:alert(1)">safe</a> - diff --git a/lib/feedparser/tests/wellformed/sanitize/item_body_applet.xml b/lib/feedparser/tests/wellformed/sanitize/item_body_applet.xml deleted file mode 100644 index 10dea8b0..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/item_body_applet.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -safe description - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/item_body_blink.xml b/lib/feedparser/tests/wellformed/sanitize/item_body_blink.xml deleted file mode 100644 index b570ff20..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/item_body_blink.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -safe description - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/item_body_embed.xml b/lib/feedparser/tests/wellformed/sanitize/item_body_embed.xml deleted file mode 100644 index 2f2a2db1..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/item_body_embed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -safe description - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/item_body_frame.xml b/lib/feedparser/tests/wellformed/sanitize/item_body_frame.xml deleted file mode 100644 index 7228ecfb..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/item_body_frame.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -safe description - - - \ No newline at end of file diff --git a/lib/feedparser/tests/wellformed/sanitize/item_body_iframe.xml b/lib/feedparser/tests/wellformed/sanitize/item_body_iframe.xml deleted file mode 100644 index 561fe312..00000000 --- a/lib/feedparser/tests/wellformed/sanitize/item_body_iframe.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - -safe