Merge lp:~sidnei/zope3/ztk-1.0a1 into lp:~landscape/zope3/trunk

Proposed by Sidnei da Silva
Status: Merged
Approved by: Muharem Hrnjadovic
Approved revision: 16
Merged at revision: 16
Proposed branch: lp:~sidnei/zope3/ztk-1.0a1
Merge into: lp:~landscape/zope3/trunk
Diff against target: 41688 lines (+18120/-9441)
556 files modified
src/ClientForm.py (+0/-3401)
src/ZConfig/__init__.py (+1/-1)
src/ZConfig/cfgparser.py (+1/-1)
src/ZConfig/cmdline.py (+1/-1)
src/ZConfig/components/basic/mapping.py (+1/-1)
src/ZConfig/components/basic/tests/test_mapping.py (+1/-1)
src/ZConfig/components/logger/__init__.py (+1/-1)
src/ZConfig/components/logger/datatypes.py (+1/-1)
src/ZConfig/components/logger/factory.py (+1/-1)
src/ZConfig/components/logger/handlers.py (+15/-2)
src/ZConfig/components/logger/handlers.xml (+2/-0)
src/ZConfig/components/logger/logger.py (+1/-1)
src/ZConfig/components/logger/loghandler.py (+1/-1)
src/ZConfig/components/logger/tests/test_logger.py (+49/-1)
src/ZConfig/datatypes.py (+1/-1)
src/ZConfig/info.py (+1/-1)
src/ZConfig/loader.py (+11/-3)
src/ZConfig/matcher.py (+1/-1)
src/ZConfig/schema.py (+1/-1)
src/ZConfig/schemaless.py (+1/-1)
src/ZConfig/substitution.py (+1/-1)
src/ZConfig/tests/__init__.py (+1/-1)
src/ZConfig/tests/library/thing/__init__.py (+1/-1)
src/ZConfig/tests/support.py (+1/-1)
src/ZConfig/tests/test_cfgimports.py (+1/-1)
src/ZConfig/tests/test_cmdline.py (+1/-1)
src/ZConfig/tests/test_config.py (+1/-1)
src/ZConfig/tests/test_cookbook.py (+1/-1)
src/ZConfig/tests/test_datatypes.py (+1/-1)
src/ZConfig/tests/test_loader.py (+6/-1)
src/ZConfig/tests/test_readme.py (+1/-1)
src/ZConfig/tests/test_schema.py (+1/-1)
src/ZConfig/tests/test_schemaless.py (+1/-1)
src/ZConfig/tests/test_subst.py (+1/-1)
src/ZConfig/url.py (+1/-1)
src/ZEO/cache.py (+31/-20)
src/ZEO/mkzeoinst.py (+9/-227)
src/ZEO/tests/testZEO.py (+4/-1)
src/ZODB/ConflictResolution.py (+5/-1)
src/ZODB/ConflictResolution.txt (+11/-1)
src/ZODB/Connection.py (+3/-2)
src/ZODB/scripts/tests/test_repozo.py (+4/-10)
src/ZODB/serialize.py (+27/-10)
src/ZODB/tests/testConnection.py (+20/-4)
src/ZODB/tests/testConnectionSavepoint.py (+29/-1)
src/Zope3.egg-info/PKG-INFO (+10/-0)
src/Zope3.egg-info/SOURCES.txt (+1924/-0)
src/Zope3.egg-info/dependency_links.txt (+1/-0)
src/Zope3.egg-info/namespace_packages.txt (+3/-0)
src/Zope3.egg-info/not-zip-safe (+1/-0)
src/Zope3.egg-info/top_level.txt (+14/-0)
src/mechanize/__init__.py (+83/-15)
src/mechanize/_auth.py (+4/-458)
src/mechanize/_beautifulsoup.py (+2/-5)
src/mechanize/_clientcookie.py (+14/-21)
src/mechanize/_debug.py (+1/-1)
src/mechanize/_file.py (+0/-60)
src/mechanize/_firefox3cookiejar.py (+4/-5)
src/mechanize/_form.py (+3275/-0)
src/mechanize/_gzip.py (+4/-2)
src/mechanize/_html.py (+43/-53)
src/mechanize/_http.py (+157/-468)
src/mechanize/_markupbase.py (+393/-0)
src/mechanize/_mechanize.py (+14/-20)
src/mechanize/_msiecookiejar.py (+1/-1)
src/mechanize/_opener.py (+73/-67)
src/mechanize/_pullparser.py (+4/-3)
src/mechanize/_request.py (+4/-51)
src/mechanize/_response.py (+6/-8)
src/mechanize/_rfc3986.py (+4/-0)
src/mechanize/_seek.py (+0/-16)
src/mechanize/_sgmllib_copy.py (+559/-0)
src/mechanize/_testcase.py (+89/-1)
src/mechanize/_upgrade.py (+0/-40)
src/mechanize/_urllib2.py (+21/-26)
src/mechanize/_urllib2_fork.py (+1410/-0)
src/mechanize/_useragent.py (+26/-11)
src/mechanize/_util.py (+16/-2)
src/mechanize/_version.py (+2/-0)
src/persistent/cPickleCache.c (+6/-4)
src/persistent/wref.py (+59/-2)
src/transaction/__init__.py (+5/-3)
src/transaction/_manager.py (+46/-59)
src/transaction/_transaction.py (+10/-2)
src/transaction/interfaces.py (+21/-13)
src/transaction/tests/convenience.txt (+183/-0)
src/transaction/tests/sampledm.py (+2/-2)
src/transaction/tests/savepointsample.py (+2/-3)
src/transaction/tests/test_SampleDataManager.py (+2/-4)
src/transaction/tests/test_SampleResourceManager.py (+2/-2)
src/transaction/tests/test_register_compat.py (+2/-3)
src/transaction/tests/test_savepoint.py (+24/-5)
src/transaction/tests/test_transaction.py (+68/-10)
src/transaction/tests/test_weakset.py (+1/-1)
src/transaction/tests/warnhook.py (+1/-1)
src/transaction/weakset.py (+1/-1)
src/wsgi_intercept/__init__.py (+565/-0)
src/wsgi_intercept/httplib2_intercept.py (+50/-0)
src/wsgi_intercept/mechanize_intercept/__init__.py (+6/-0)
src/wsgi_intercept/mechanize_intercept/wsgi_browser.py (+33/-0)
src/wsgi_intercept/mechanoid_intercept/__init__.py (+6/-0)
src/wsgi_intercept/mechanoid_intercept/wsgi_browser.py (+35/-0)
src/wsgi_intercept/mock_http.py (+70/-0)
src/wsgi_intercept/setup_cmd/__init__.py (+1/-0)
src/wsgi_intercept/setup_cmd/build_docs.py (+146/-0)
src/wsgi_intercept/setup_cmd/publish_docs.py (+199/-0)
src/wsgi_intercept/test/test_httplib2.py (+38/-0)
src/wsgi_intercept/test/test_mechanize.py (+47/-0)
src/wsgi_intercept/test/test_mechanoid.py (+34/-0)
src/wsgi_intercept/test/test_webtest.py (+37/-0)
src/wsgi_intercept/test/test_webunit.py (+47/-0)
src/wsgi_intercept/test/test_wsgi_compliance.py (+55/-0)
src/wsgi_intercept/test/test_wsgi_urllib2.py (+40/-0)
src/wsgi_intercept/test/test_zope_testbrowser.py (+41/-0)
src/wsgi_intercept/test_wsgi_app.py (+24/-0)
src/wsgi_intercept/urllib2_intercept/__init__.py (+7/-0)
src/wsgi_intercept/urllib2_intercept/wsgi_urllib2.py (+59/-0)
src/wsgi_intercept/webtest_intercept/__init__.py (+7/-0)
src/wsgi_intercept/webtest_intercept/webtest.py (+418/-0)
src/wsgi_intercept/webunit_intercept/HTMLParser.py (+439/-0)
src/wsgi_intercept/webunit_intercept/IMGSucker.py (+112/-0)
src/wsgi_intercept/webunit_intercept/SimpleDOM.py (+473/-0)
src/wsgi_intercept/webunit_intercept/__init__.py (+8/-0)
src/wsgi_intercept/webunit_intercept/config.py (+33/-0)
src/wsgi_intercept/webunit_intercept/cookie.py (+92/-0)
src/wsgi_intercept/webunit_intercept/utility.py (+85/-0)
src/wsgi_intercept/webunit_intercept/webunittest.py (+743/-0)
src/wsgi_intercept/zope_testbrowser/__init__.py (+6/-0)
src/wsgi_intercept/zope_testbrowser/wsgi_testbrowser.py (+20/-0)
src/zope/app/appsetup/appsetup.py (+7/-4)
src/zope/app/appsetup/bootstrap.txt (+1/-1)
src/zope/app/appsetup/ftesting.zcml (+20/-0)
src/zope/app/appsetup/product.py (+7/-2)
src/zope/app/appsetup/testlayer.py (+82/-0)
src/zope/app/appsetup/testlayer.txt (+62/-0)
src/zope/app/appsetup/testpackage/__init__.py (+1/-0)
src/zope/app/appsetup/testpackage/ftesting.zcml (+6/-0)
src/zope/app/appsetup/testpackage/testobject.py (+5/-0)
src/zope/app/appsetup/tests.py (+50/-44)
src/zope/app/dav/proppatch.py (+29/-14)
src/zope/app/dav/tests/test_proppatch.py (+0/-5)
src/zope/app/http/exception/methodnotallowed.py (+15/-8)
src/zope/app/http/exception/tests/test_methodnotallowed.py (+47/-10)
src/zope/app/http/testing.py (+0/-26)
src/zope/app/http/tests/test_delete.py (+2/-3)
src/zope/app/http/tests/test_functional_put.py (+22/-19)
src/zope/app/http/tests/test_options.py (+2/-3)
src/zope/app/http/tests/test_put.py (+16/-6)
src/zope/app/locales/de/LC_MESSAGES/zope.po (+389/-980)
src/zope/app/locales/nl/LC_MESSAGES/zope.po (+4/-8)
src/zope/app/locales/tests.py (+29/-1)
src/zope/app/localpermission/browser.zcml (+1/-0)
src/zope/app/pagetemplate/meta.zcml (+1/-8)
src/zope/app/pagetemplate/metaconfigure.py (+4/-31)
src/zope/app/pagetemplate/tests/test_directives.py (+0/-60)
src/zope/app/principalannotation/bootstrap.zcml (+1/-1)
src/zope/app/publication/ftesting.zcml (+41/-29)
src/zope/app/publication/httpfactory.txt (+7/-5)
src/zope/app/publication/methodnotallowed.txt (+7/-6)
src/zope/app/publication/testing.py (+15/-7)
src/zope/app/publication/tests/ftest_zcml_dependencies.zcml (+2/-2)
src/zope/app/publication/tests/support.py (+29/-0)
src/zope/app/publication/tests/test_browserpublication.py (+27/-13)
src/zope/app/publication/tests/test_dependencies.py (+12/-15)
src/zope/app/publication/tests/test_functional.py (+14/-10)
src/zope/app/publication/tests/test_http.py (+4/-5)
src/zope/app/publication/tests/test_httpfactory.py (+1/-2)
src/zope/app/publication/tests/test_simplecomponenttraverser.py (+6/-5)
src/zope/app/publication/tests/test_xmlrpcpublication.py (+16/-11)
src/zope/app/publication/tests/test_zopepublication.py (+124/-87)
src/zope/app/testing/dochttp.py (+2/-2)
src/zope/app/testing/functional.py (+3/-4)
src/zope/app/testing/placelesssetup.py (+2/-2)
src/zope/app/testing/setup.py (+2/-2)
src/zope/app/testing/testing.py (+2/-2)
src/zope/app/testing/tests.py (+3/-3)
src/zope/app/testing/xmlrpc.py (+2/-2)
src/zope/app/testing/ztapi.py (+2/-2)
src/zope/app/wsgi/README.txt (+21/-40)
src/zope/app/wsgi/__init__.py (+15/-6)
src/zope/app/wsgi/ftesting.zcml (+22/-10)
src/zope/app/wsgi/testing.py (+6/-7)
src/zope/app/wsgi/testlayer.py (+273/-0)
src/zope/app/wsgi/tests.py (+27/-19)
src/zope/app/zapi/README.txt (+0/-42)
src/zope/app/zapi/__init__.py (+0/-57)
src/zope/app/zapi/configure.zcml (+0/-23)
src/zope/app/zapi/interfaces.py (+0/-67)
src/zope/app/zapi/tests.py (+0/-59)
src/zope/authentication/tests/test_logout.py (+2/-2)
src/zope/authentication/tests/test_principal.py (+2/-2)
src/zope/browser/__init__.py (+1/-1)
src/zope/browser/interfaces.py (+109/-109)
src/zope/browser/tests.py (+32/-32)
src/zope/browsermenu/tests/test_addMenuItem.py (+2/-2)
src/zope/browsermenu/tests/test_directives.py (+2/-2)
src/zope/browsermenu/tests/test_fields.py (+3/-2)
src/zope/browsermenu/tests/test_menu.py (+5/-3)
src/zope/browserpage/meta.zcml (+9/-0)
src/zope/browserpage/metaconfigure.py (+9/-2)
src/zope/browserpage/metadirectives.py (+19/-2)
src/zope/browserpage/namedtemplate.py (+1/-1)
src/zope/browserpage/simpleviewclass.py (+2/-2)
src/zope/browserpage/tests/sample.py (+2/-2)
src/zope/browserpage/tests/simpletestview.py (+2/-2)
src/zope/browserpage/tests/test_boundpagetemplate.py (+2/-2)
src/zope/browserpage/tests/test_expressiontype.py (+60/-0)
src/zope/browserpage/tests/test_namedtemplate.py (+6/-4)
src/zope/browserpage/tests/test_page.py (+3/-3)
src/zope/browserpage/tests/test_simpleviewclass.py (+2/-2)
src/zope/browserpage/tests/test_viewzpt.py (+2/-2)
src/zope/browserpage/viewpagetemplatefile.py (+2/-2)
src/zope/browserresource/tests/test_file.py (+4/-2)
src/zope/browserresource/tests/test_resources.py (+4/-2)
src/zope/cachedescriptors/property.txt (+18/-18)
src/zope/cachedescriptors/tests.py (+2/-7)
src/zope/component/__init__.py (+2/-2)
src/zope/component/_api.py (+2/-2)
src/zope/component/_declaration.py (+2/-2)
src/zope/component/event.py (+2/-2)
src/zope/component/eventtesting.py (+2/-2)
src/zope/component/factory.py (+2/-2)
src/zope/component/globalregistry.py (+2/-2)
src/zope/component/hookable.py (+1/-1)
src/zope/component/hooks.py (+1/-1)
src/zope/component/interface.py (+2/-2)
src/zope/component/interfaces.py (+2/-2)
src/zope/component/nexttesting.py (+2/-2)
src/zope/component/persistentregistry.py (+2/-2)
src/zope/component/registry.py (+2/-2)
src/zope/component/security.py (+1/-1)
src/zope/component/testfiles/adapter.py (+2/-2)
src/zope/component/testfiles/components.py (+2/-2)
src/zope/component/testfiles/views.py (+2/-2)
src/zope/component/testing.py (+2/-2)
src/zope/component/testlayer.py (+1/-1)
src/zope/component/tests.py (+27/-3)
src/zope/component/zcml.py (+3/-3)
src/zope/component/zcml.txt (+2/-2)
src/zope/component/zcml_conditional.txt (+2/-2)
src/zope/configuration/__init__.py (+1/-1)
src/zope/configuration/config.py (+2/-2)
src/zope/configuration/docutils.py (+2/-2)
src/zope/configuration/exceptions.py (+2/-2)
src/zope/configuration/fields.py (+2/-2)
src/zope/configuration/interfaces.py (+2/-2)
src/zope/configuration/name.py (+2/-2)
src/zope/configuration/stxdocs.py (+2/-2)
src/zope/configuration/tests/directives.py (+2/-2)
src/zope/configuration/tests/samplepackage/foo.py (+2/-2)
src/zope/configuration/tests/test_conditions.py (+3/-3)
src/zope/configuration/tests/test_config.py (+3/-3)
src/zope/configuration/tests/test_docutils.py (+3/-3)
src/zope/configuration/tests/test_nested.py (+3/-3)
src/zope/configuration/tests/test_simple.py (+3/-3)
src/zope/configuration/tests/test_xmlconfig.py (+3/-3)
src/zope/configuration/xmlconfig.py (+2/-2)
src/zope/configuration/zopeconfigure.py (+2/-2)
src/zope/container/contained.py (+53/-43)
src/zope/container/tests/test_btree.py (+2/-2)
src/zope/container/tests/test_constraints.py (+4/-2)
src/zope/container/tests/test_contained.py (+94/-5)
src/zope/container/tests/test_directory.py (+5/-3)
src/zope/container/tests/test_ordered.py (+4/-2)
src/zope/contentprovider/__init__.py (+2/-2)
src/zope/contentprovider/configure.zcml (+1/-1)
src/zope/contentprovider/interfaces.py (+2/-2)
src/zope/contentprovider/tales.py (+2/-2)
src/zope/contentprovider/tests.py (+12/-11)
src/zope/contenttype/__init__.py (+14/-18)
src/zope/contenttype/mime.types (+1/-1)
src/zope/contenttype/tests/testContentTypes.py (+47/-39)
src/zope/deferredimport/DEPENDENCIES.cfg (+0/-2)
src/zope/deferredimport/deferredmodule.py (+2/-2)
src/zope/deferredimport/tests.py (+17/-7)
src/zope/event/__init__.py (+2/-2)
src/zope/event/tests.py (+30/-4)
src/zope/exceptions/__init__.py (+2/-2)
src/zope/exceptions/exceptionformatter.py (+2/-2)
src/zope/exceptions/interfaces.py (+2/-2)
src/zope/exceptions/log.py (+2/-2)
src/zope/exceptions/tests/test_exceptionformatter.py (+3/-4)
src/zope/formlib/__init__.py (+2/-2)
src/zope/formlib/boolwidgets.py (+2/-2)
src/zope/formlib/errors.py (+2/-2)
src/zope/formlib/exception.py (+2/-2)
src/zope/formlib/form.py (+53/-39)
src/zope/formlib/form.txt (+12/-6)
src/zope/formlib/interfaces.py (+2/-2)
src/zope/formlib/itemswidgets.py (+7/-7)
src/zope/formlib/namedtemplate.py (+2/-2)
src/zope/formlib/objectwidget.py (+2/-2)
src/zope/formlib/sequencewidget.py (+2/-2)
src/zope/formlib/source.py (+2/-2)
src/zope/formlib/source.txt (+1/-1)
src/zope/formlib/tests/support.py (+2/-2)
src/zope/formlib/tests/test_browserwidget.py (+2/-2)
src/zope/formlib/tests/test_checkboxwidget.py (+2/-2)
src/zope/formlib/tests/test_choicecollections.py (+2/-2)
src/zope/formlib/tests/test_choicewidget.py (+2/-2)
src/zope/formlib/tests/test_datetimewidget.py (+2/-2)
src/zope/formlib/tests/test_datewidget.py (+2/-2)
src/zope/formlib/tests/test_decimalwidget.py (+2/-2)
src/zope/formlib/tests/test_displaywidget.py (+2/-2)
src/zope/formlib/tests/test_exception.py (+2/-2)
src/zope/formlib/tests/test_filewidget.py (+2/-2)
src/zope/formlib/tests/test_floatwidget.py (+2/-2)
src/zope/formlib/tests/test_formlib.py (+2/-11)
src/zope/formlib/tests/test_functional_booleanradiowidget.py (+2/-2)
src/zope/formlib/tests/test_functional_checkboxwidget.py (+2/-2)
src/zope/formlib/tests/test_functional_datetimewidget.py (+2/-2)
src/zope/formlib/tests/test_functional_decimalwidget.py (+2/-2)
src/zope/formlib/tests/test_functional_filewidget.py (+2/-2)
src/zope/formlib/tests/test_functional_floatwidget.py (+2/-2)
src/zope/formlib/tests/test_functional_intwidget.py (+2/-2)
src/zope/formlib/tests/test_functional_objectwidget.py (+2/-2)
src/zope/formlib/tests/test_functional_selectwidget.py (+2/-2)
src/zope/formlib/tests/test_functional_textareawidget.py (+2/-2)
src/zope/formlib/tests/test_functional_textwidget.py (+2/-2)
src/zope/formlib/tests/test_intwidget.py (+2/-2)
src/zope/formlib/tests/test_itemswidget.py (+52/-6)
src/zope/formlib/tests/test_multicheckboxwidget.py (+2/-2)
src/zope/formlib/tests/test_objectwidget.py (+2/-2)
src/zope/formlib/tests/test_passwordwidget.py (+2/-2)
src/zope/formlib/tests/test_radiowidget.py (+2/-2)
src/zope/formlib/tests/test_registrations.py (+2/-2)
src/zope/formlib/tests/test_selectwidget.py (+2/-2)
src/zope/formlib/tests/test_sequencewidget.py (+2/-2)
src/zope/formlib/tests/test_setprefix.py (+2/-2)
src/zope/formlib/tests/test_source.py (+2/-2)
src/zope/formlib/tests/test_textareawidget.py (+2/-2)
src/zope/formlib/tests/test_textwidget.py (+2/-2)
src/zope/formlib/tests/test_widget.py (+2/-2)
src/zope/formlib/tests/test_widgetdocs.py (+2/-2)
src/zope/formlib/textwidgets.py (+2/-2)
src/zope/formlib/utility.py (+1/-1)
src/zope/formlib/widget.py (+2/-2)
src/zope/formlib/widgets.py (+2/-2)
src/zope/i18n/locales/tests/test_docstrings.py (+4/-3)
src/zope/i18n/locales/tests/test_fallbackcollator.py (+1/-1)
src/zope/i18n/tests/test.py (+2/-2)
src/zope/i18n/tests/test_testmessagecatalog.py (+1/-1)
src/zope/i18nmessageid/__init__.py (+2/-2)
src/zope/i18nmessageid/_zope_i18nmessageid_message.c (+3/-3)
src/zope/i18nmessageid/message.py (+2/-2)
src/zope/i18nmessageid/tests.py (+4/-3)
src/zope/interface/README.ru.txt (+22/-16)
src/zope/interface/README.txt (+38/-18)
src/zope/interface/__init__.py (+4/-3)
src/zope/interface/_flatten.py (+1/-1)
src/zope/interface/_zope_interface_coptimizations.c (+85/-45)
src/zope/interface/_zope_interface_coptimizations.py (+7/-0)
src/zope/interface/adapter.py (+11/-1)
src/zope/interface/adapter.ru.txt (+3/-6)
src/zope/interface/adapter.txt (+3/-6)
src/zope/interface/advice.py (+20/-9)
src/zope/interface/common/idatetime.py (+2/-2)
src/zope/interface/common/interfaces.py (+1/-1)
src/zope/interface/common/mapping.py (+2/-2)
src/zope/interface/common/sequence.py (+2/-2)
src/zope/interface/common/tests/basemapping.py (+2/-8)
src/zope/interface/common/tests/test_idatetime.py (+1/-1)
src/zope/interface/common/tests/test_import_interfaces.py (+1/-1)
src/zope/interface/declarations.py (+67/-57)
src/zope/interface/document.py (+2/-2)
src/zope/interface/exceptions.py (+1/-1)
src/zope/interface/interface.py (+38/-29)
src/zope/interface/interfaces.py (+11/-2)
src/zope/interface/ro.py (+1/-1)
src/zope/interface/tests/__init__.py (+13/-2)
src/zope/interface/tests/dummy.py (+2/-3)
src/zope/interface/tests/ifoo.py (+2/-2)
src/zope/interface/tests/m1.py (+1/-1)
src/zope/interface/tests/m2.py (+1/-1)
src/zope/interface/tests/odd.py (+8/-6)
src/zope/interface/tests/test_adapter.py (+3/-4)
src/zope/interface/tests/test_advice.py (+16/-7)
src/zope/interface/tests/test_declarations.py (+34/-37)
src/zope/interface/tests/test_document.py (+2/-2)
src/zope/interface/tests/test_element.py (+1/-1)
src/zope/interface/tests/test_interface.py (+164/-84)
src/zope/interface/tests/test_odd_declarations.py (+30/-18)
src/zope/interface/tests/test_sorting.py (+4/-4)
src/zope/interface/tests/test_verify.py (+6/-7)
src/zope/interface/tests/unitfixtures.py (+2/-2)
src/zope/interface/verify.py (+9/-4)
src/zope/interface/verify.txt (+25/-12)
src/zope/lifecycleevent/tests.py (+5/-2)
src/zope/pagetemplate/engine.py (+6/-6)
src/zope/pagetemplate/tests/test_engine.py (+2/-2)
src/zope/password/__init__.py (+2/-2)
src/zope/password/interfaces.py (+2/-2)
src/zope/password/password.py (+22/-10)
src/zope/password/testing.py (+2/-2)
src/zope/password/tests.py (+0/-28)
src/zope/password/tests/__init__.py (+16/-0)
src/zope/password/tests/test_password.py (+27/-0)
src/zope/password/tests/test_zpasswd.py (+157/-0)
src/zope/password/zpasswd.py (+280/-0)
src/zope/principalannotation/README.txt (+1/-0)
src/zope/principalannotation/interfaces.py (+2/-2)
src/zope/principalannotation/tests.py (+2/-2)
src/zope/principalannotation/utility.py (+8/-5)
src/zope/proxy/DEPENDENCIES.cfg (+0/-2)
src/zope/proxy/SETUP.cfg (+0/-8)
src/zope/proxy/tests/test_decorator.py (+2/-2)
src/zope/proxy/tests/test_proxy.py (+2/-2)
src/zope/publisher/http.py (+9/-8)
src/zope/publisher/publish.py (+7/-2)
src/zope/publisher/skinnable.txt (+330/-330)
src/zope/publisher/tests/test_browser.py (+2/-2)
src/zope/publisher/tests/test_defaultview.py (+1/-1)
src/zope/publisher/tests/test_http.py (+46/-8)
src/zope/publisher/tests/test_paste.py (+2/-1)
src/zope/publisher/tests/test_publisher.py (+41/-3)
src/zope/publisher/tests/test_skinnable.py (+2/-2)
src/zope/publisher/tests/test_xmlrpc.py (+2/-2)
src/zope/publisher/xmlrpc.py (+10/-5)
src/zope/schema/__init__.py (+1/-3)
src/zope/schema/_bootstrapfields.py (+1/-3)
src/zope/schema/_bootstrapinterfaces.py (+2/-5)
src/zope/schema/_field.py (+34/-17)
src/zope/schema/_messageid.py (+20/-0)
src/zope/schema/_schema.py (+1/-3)
src/zope/schema/accessors.py (+1/-3)
src/zope/schema/fieldproperty.py (+6/-8)
src/zope/schema/interfaces.py (+20/-12)
src/zope/schema/tests/states.py (+1/-3)
src/zope/schema/tests/test_accessors.py (+1/-3)
src/zope/schema/tests/test_boolfield.py (+1/-3)
src/zope/schema/tests/test_choice.py (+1/-3)
src/zope/schema/tests/test_containerfield.py (+1/-3)
src/zope/schema/tests/test_date.py (+1/-3)
src/zope/schema/tests/test_datetime.py (+1/-3)
src/zope/schema/tests/test_decimalfield.py (+1/-3)
src/zope/schema/tests/test_dictfield.py (+1/-3)
src/zope/schema/tests/test_docs.py (+5/-8)
src/zope/schema/tests/test_equality.py (+1/-3)
src/zope/schema/tests/test_field.py (+5/-8)
src/zope/schema/tests/test_fieldproperty.py (+1/-3)
src/zope/schema/tests/test_floatfield.py (+1/-3)
src/zope/schema/tests/test_interfacefield.py (+1/-3)
src/zope/schema/tests/test_intfield.py (+1/-3)
src/zope/schema/tests/test_iterablefield.py (+1/-3)
src/zope/schema/tests/test_listfield.py (+1/-3)
src/zope/schema/tests/test_objectfield.py (+121/-6)
src/zope/schema/tests/test_schema.py (+1/-3)
src/zope/schema/tests/test_setfield.py (+1/-3)
src/zope/schema/tests/test_states.py (+1/-3)
src/zope/schema/tests/test_strfield.py (+1/-3)
src/zope/schema/tests/test_timedelta.py (+1/-3)
src/zope/schema/tests/test_tuplefield.py (+1/-3)
src/zope/schema/tests/test_vocabulary.py (+1/-3)
src/zope/schema/vocabulary.py (+1/-3)
src/zope/security/checker.py (+7/-2)
src/zope/security/permission.py (+2/-2)
src/zope/security/tests/test_adapter.py (+2/-6)
src/zope/security/tests/test_decorator.py (+2/-3)
src/zope/security/tests/test_directives.py (+2/-2)
src/zope/security/tests/test_location.py (+1/-2)
src/zope/security/tests/test_module_directives.py (+3/-2)
src/zope/security/tests/test_permission.py (+3/-5)
src/zope/security/tests/test_proxy.py (+3/-7)
src/zope/security/tests/test_set_checkers.py (+3/-6)
src/zope/security/tests/test_standard_checkers.py (+1/-10)
src/zope/security/untrustedpython/tests.py (+12/-12)
src/zope/sendmail/maildir.py (+9/-2)
src/zope/sendmail/tests/test_delivery.py (+2/-2)
src/zope/sendmail/tests/test_maildir.py (+15/-1)
src/zope/sendmail/tests/test_vocabulary.py (+2/-2)
src/zope/server/__init__.py (+1/-3)
src/zope/server/adjustments.py (+1/-3)
src/zope/server/buffers.py (+1/-3)
src/zope/server/dualmodechannel.py (+1/-3)
src/zope/server/fixedstreamreceiver.py (+1/-3)
src/zope/server/ftp/logger.py (+1/-3)
src/zope/server/ftp/publisher.py (+1/-3)
src/zope/server/ftp/server.py (+1/-3)
src/zope/server/ftp/tests/demofs.py (+1/-3)
src/zope/server/ftp/tests/fstests.py (+1/-3)
src/zope/server/ftp/tests/test_demofs.py (+1/-3)
src/zope/server/ftp/tests/test_ftpserver.py (+1/-3)
src/zope/server/ftp/tests/test_publisher.py (+1/-3)
src/zope/server/http/chunking.py (+1/-3)
src/zope/server/http/commonaccesslogger.py (+1/-3)
src/zope/server/http/http_date.py (+1/-3)
src/zope/server/http/httprequestparser.py (+1/-3)
src/zope/server/http/httpserver.py (+1/-3)
src/zope/server/http/httpserverchannel.py (+1/-3)
src/zope/server/http/httptask.py (+1/-3)
src/zope/server/http/publisherhttpserver.py (+1/-3)
src/zope/server/http/tests/test_commonaccesslogger.py (+1/-3)
src/zope/server/http/tests/test_httpdate.py (+1/-3)
src/zope/server/http/tests/test_httprequestparser.py (+1/-3)
src/zope/server/http/tests/test_httpserver.py (+1/-3)
src/zope/server/http/tests/test_wsgiserver.py (+1/-3)
src/zope/server/http/wsgihttpserver.py (+1/-3)
src/zope/server/interfaces/__init__.py (+1/-3)
src/zope/server/interfaces/ftp.py (+1/-3)
src/zope/server/interfaces/logger.py (+1/-3)
src/zope/server/linereceiver/linecommandparser.py (+1/-3)
src/zope/server/linereceiver/lineserverchannel.py (+1/-3)
src/zope/server/linereceiver/linetask.py (+1/-3)
src/zope/server/logger/filelogger.py (+1/-3)
src/zope/server/logger/pythonlogger.py (+1/-3)
src/zope/server/logger/resolvinglogger.py (+1/-3)
src/zope/server/logger/rotatingfilelogger.py (+1/-3)
src/zope/server/logger/socketlogger.py (+1/-3)
src/zope/server/logger/sysloglogger.py (+1/-3)
src/zope/server/logger/taillogger.py (+1/-3)
src/zope/server/logger/tests/test_pythonlogger.py (+1/-3)
src/zope/server/logger/unresolvinglogger.py (+1/-3)
src/zope/server/maxsockets.py (+1/-3)
src/zope/server/serverbase.py (+1/-3)
src/zope/server/serverchannelbase.py (+1/-3)
src/zope/server/taskthreads.py (+6/-5)
src/zope/server/tests/asyncerror.py (+1/-3)
src/zope/server/tests/test_serverbase.py (+1/-3)
src/zope/server/trigger.py (+1/-1)
src/zope/server/utilities.py (+1/-3)
src/zope/server/zlogintegration.py (+1/-3)
src/zope/site/tests/test_folder.py (+2/-3)
src/zope/site/tests/test_registration.py (+6/-5)
src/zope/site/tests/test_site.py (+3/-2)
src/zope/structuredtext/STNG.txt (+0/-111)
src/zope/structuredtext/TODO.txt (+0/-6)
src/zope/structuredtext/__init__.py (+15/-12)
src/zope/structuredtext/docbook.py (+40/-24)
src/zope/structuredtext/document.py (+240/-168)
src/zope/structuredtext/html.py (+81/-49)
src/zope/structuredtext/regressions/Acquisition.ref (+18/-18)
src/zope/structuredtext/regressions/ExtensionClass.ref (+18/-18)
src/zope/structuredtext/regressions/MultiMapping.ref (+10/-10)
src/zope/structuredtext/regressions/examples.ref (+2/-2)
src/zope/structuredtext/regressions/examples1.ref (+2/-2)
src/zope/structuredtext/stdom.py (+1/-3)
src/zope/structuredtext/stletters.py (+2/-3)
src/zope/structuredtext/stng.py (+5/-4)
src/zope/structuredtext/tests.py (+139/-29)
src/zope/tales/tests/test_tales.py (+2/-2)
src/zope/testbrowser/README.txt (+36/-1)
src/zope/testbrowser/__init__.py (+2/-2)
src/zope/testbrowser/browser.py (+14/-14)
src/zope/testbrowser/cookies.py (+1/-1)
src/zope/testbrowser/fixed-bugs.txt (+1/-3)
src/zope/testbrowser/interfaces.py (+4/-4)
src/zope/testbrowser/testing.py (+12/-19)
src/zope/testbrowser/tests.py (+149/-101)
src/zope/traversing/tests/test_namespacetrversal.py (+2/-2)
src/zope/viewlet/__init__.py (+2/-2)
src/zope/viewlet/interfaces.py (+2/-2)
src/zope/viewlet/manager.py (+2/-2)
src/zope/viewlet/metaconfigure.py (+2/-2)
src/zope/viewlet/metadirectives.py (+3/-3)
src/zope/viewlet/tests.py (+10/-3)
src/zope/viewlet/viewlet.py (+2/-2)
To merge this branch: bzr merge lp:~sidnei/zope3/ztk-1.0a1
Reviewer Review Type Date Requested Status
Muharem Hrnjadovic (community) Approve
Thomas Herve (community) Approve
Review via email: mp+29032@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Thomas Herve (therve) wrote :

+1!

review: Approve
Revision history for this message
Muharem Hrnjadovic (al-maisan) wrote :

Looks good, +1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== removed file 'src/ClientForm.py'
--- src/ClientForm.py 2010-03-01 20:29:16 +0000
+++ src/ClientForm.py 1970-01-01 00:00:00 +0000
@@ -1,3401 +0,0 @@
1"""HTML form handling for web clients.
2
3ClientForm is a Python module for handling HTML forms on the client
4side, useful for parsing HTML forms, filling them in and returning the
5completed forms to the server. It has developed from a port of Gisle
6Aas' Perl module HTML::Form, from the libwww-perl library, but the
7interface is not the same.
8
9The most useful docstring is the one for HTMLForm.
10
11RFC 1866: HTML 2.0
12RFC 1867: Form-based File Upload in HTML
13RFC 2388: Returning Values from Forms: multipart/form-data
14HTML 3.2 Specification, W3C Recommendation 14 January 1997 (for ISINDEX)
15HTML 4.01 Specification, W3C Recommendation 24 December 1999
16
17
18Copyright 2002-2007 John J. Lee <jjl@pobox.com>
19Copyright 2005 Gary Poster
20Copyright 2005 Zope Corporation
21Copyright 1998-2000 Gisle Aas.
22
23This code is free software; you can redistribute it and/or modify it
24under the terms of the BSD or ZPL 2.1 licenses (see the file
25COPYING.txt included with the distribution).
26
27"""
28
29# XXX
30# Remove parser testing hack
31# safeUrl()-ize action
32# Switch to unicode throughout (would be 0.3.x)
33# See Wichert Akkerman's 2004-01-22 message to c.l.py.
34# Add charset parameter to Content-type headers? How to find value??
35# Add some more functional tests
36# Especially single and multiple file upload on the internet.
37# Does file upload work when name is missing? Sourceforge tracker form
38# doesn't like it. Check standards, and test with Apache. Test
39# binary upload with Apache.
40# mailto submission & enctype text/plain
41# I'm not going to fix this unless somebody tells me what real servers
42# that want this encoding actually expect: If enctype is
43# application/x-www-form-urlencoded and there's a FILE control present.
44# Strictly, it should be 'name=data' (see HTML 4.01 spec., section
45# 17.13.2), but I send "name=" ATM. What about multiple file upload??
46
47# Would be nice, but I'm not going to do it myself:
48# -------------------------------------------------
49# Maybe a 0.4.x?
50# Replace by_label etc. with moniker / selector concept. Allows, eg.,
51# a choice between selection by value / id / label / element
52# contents. Or choice between matching labels exactly or by
53# substring. Etc.
54# Remove deprecated methods.
55# ...what else?
56# Work on DOMForm.
57# XForms? Don't know if there's a need here.
58
59__all__ = ['AmbiguityError', 'CheckboxControl', 'Control',
60 'ControlNotFoundError', 'FileControl', 'FormParser', 'HTMLForm',
61 'HiddenControl', 'IgnoreControl', 'ImageControl', 'IsindexControl',
62 'Item', 'ItemCountError', 'ItemNotFoundError', 'Label',
63 'ListControl', 'LocateError', 'Missing', 'ParseError', 'ParseFile',
64 'ParseFileEx', 'ParseResponse', 'ParseResponseEx','PasswordControl',
65 'RadioControl', 'ScalarControl', 'SelectControl',
66 'SubmitButtonControl', 'SubmitControl', 'TextControl',
67 'TextareaControl', 'XHTMLCompatibleFormParser']
68
69try: True
70except NameError:
71 True = 1
72 False = 0
73
74try: bool
75except NameError:
76 def bool(expr):
77 if expr: return True
78 else: return False
79
80try:
81 import logging
82 import inspect
83except ImportError:
84 def debug(msg, *args, **kwds):
85 pass
86else:
87 _logger = logging.getLogger("ClientForm")
88 OPTIMIZATION_HACK = True
89
90 def debug(msg, *args, **kwds):
91 if OPTIMIZATION_HACK:
92 return
93
94 caller_name = inspect.stack()[1][3]
95 extended_msg = '%%s %s' % msg
96 extended_args = (caller_name,)+args
97 debug = _logger.debug(extended_msg, *extended_args, **kwds)
98
99 def _show_debug_messages():
100 global OPTIMIZATION_HACK
101 OPTIMIZATION_HACK = False
102 _logger.setLevel(logging.DEBUG)
103 handler = logging.StreamHandler(sys.stdout)
104 handler.setLevel(logging.DEBUG)
105 _logger.addHandler(handler)
106
107import sys, urllib, urllib2, types, mimetools, copy, urlparse, \
108 htmlentitydefs, re, random
109from cStringIO import StringIO
110
111import sgmllib
112# monkeypatch to fix http://www.python.org/sf/803422 :-(
113sgmllib.charref = re.compile("&#(x?[0-9a-fA-F]+)[^0-9a-fA-F]")
114
115# HTMLParser.HTMLParser is recent, so live without it if it's not available
116# (also, sgmllib.SGMLParser is much more tolerant of bad HTML)
117try:
118 import HTMLParser
119except ImportError:
120 HAVE_MODULE_HTMLPARSER = False
121else:
122 HAVE_MODULE_HTMLPARSER = True
123
124try:
125 import warnings
126except ImportError:
127 def deprecation(message, stack_offset=0):
128 pass
129else:
130 def deprecation(message, stack_offset=0):
131 warnings.warn(message, DeprecationWarning, stacklevel=3+stack_offset)
132
133VERSION = "0.2.10"
134
135CHUNK = 1024 # size of chunks fed to parser, in bytes
136
137DEFAULT_ENCODING = "latin-1"
138
139class Missing: pass
140
141_compress_re = re.compile(r"\s+")
142def compress_text(text): return _compress_re.sub(" ", text.strip())
143
144def normalize_line_endings(text):
145 return re.sub(r"(?:(?<!\r)\n)|(?:\r(?!\n))", "\r\n", text)
146
147
148# This version of urlencode is from my Python 1.5.2 back-port of the
149# Python 2.1 CVS maintenance branch of urllib. It will accept a sequence
150# of pairs instead of a mapping -- the 2.0 version only accepts a mapping.
151def urlencode(query,doseq=False,):
152 """Encode a sequence of two-element tuples or dictionary into a URL query \
153string.
154
155 If any values in the query arg are sequences and doseq is true, each
156 sequence element is converted to a separate parameter.
157
158 If the query arg is a sequence of two-element tuples, the order of the
159 parameters in the output will match the order of parameters in the
160 input.
161 """
162
163 if hasattr(query,"items"):
164 # mapping objects
165 query = query.items()
166 else:
167 # it's a bother at times that strings and string-like objects are
168 # sequences...
169 try:
170 # non-sequence items should not work with len()
171 x = len(query)
172 # non-empty strings will fail this
173 if len(query) and type(query[0]) != types.TupleType:
174 raise TypeError()
175 # zero-length sequences of all types will get here and succeed,
176 # but that's a minor nit - since the original implementation
177 # allowed empty dicts that type of behavior probably should be
178 # preserved for consistency
179 except TypeError:
180 ty,va,tb = sys.exc_info()
181 raise TypeError("not a valid non-string sequence or mapping "
182 "object", tb)
183
184 l = []
185 if not doseq:
186 # preserve old behavior
187 for k, v in query:
188 k = urllib.quote_plus(str(k))
189 v = urllib.quote_plus(str(v))
190 l.append(k + '=' + v)
191 else:
192 for k, v in query:
193 k = urllib.quote_plus(str(k))
194 if type(v) == types.StringType:
195 v = urllib.quote_plus(v)
196 l.append(k + '=' + v)
197 elif type(v) == types.UnicodeType:
198 # is there a reasonable way to convert to ASCII?
199 # encode generates a string, but "replace" or "ignore"
200 # lose information and "strict" can raise UnicodeError
201 v = urllib.quote_plus(v.encode("ASCII","replace"))
202 l.append(k + '=' + v)
203 else:
204 try:
205 # is this a sufficient test for sequence-ness?
206 x = len(v)
207 except TypeError:
208 # not a sequence
209 v = urllib.quote_plus(str(v))
210 l.append(k + '=' + v)
211 else:
212 # loop over the sequence
213 for elt in v:
214 l.append(k + '=' + urllib.quote_plus(str(elt)))
215 return '&'.join(l)
216
217def unescape(data, entities, encoding=DEFAULT_ENCODING):
218 if data is None or "&" not in data:
219 return data
220
221 def replace_entities(match, entities=entities, encoding=encoding):
222 ent = match.group()
223 if ent[1] == "#":
224 return unescape_charref(ent[2:-1], encoding)
225
226 repl = entities.get(ent)
227 if repl is not None:
228 if type(repl) != type(""):
229 try:
230 repl = repl.encode(encoding)
231 except UnicodeError:
232 repl = ent
233 else:
234 repl = ent
235
236 return repl
237
238 return re.sub(r"&#?[A-Za-z0-9]+?;", replace_entities, data)
239
240def unescape_charref(data, encoding):
241 name, base = data, 10
242 if name.startswith("x"):
243 name, base= name[1:], 16
244 uc = unichr(int(name, base))
245 if encoding is None:
246 return uc
247 else:
248 try:
249 repl = uc.encode(encoding)
250 except UnicodeError:
251 repl = "&#%s;" % data
252 return repl
253
254def get_entitydefs():
255 import htmlentitydefs
256 from codecs import latin_1_decode
257 entitydefs = {}
258 try:
259 htmlentitydefs.name2codepoint
260 except AttributeError:
261 entitydefs = {}
262 for name, char in htmlentitydefs.entitydefs.items():
263 uc = latin_1_decode(char)[0]
264 if uc.startswith("&#") and uc.endswith(";"):
265 uc = unescape_charref(uc[2:-1], None)
266 entitydefs["&%s;" % name] = uc
267 else:
268 for name, codepoint in htmlentitydefs.name2codepoint.items():
269 entitydefs["&%s;" % name] = unichr(codepoint)
270 return entitydefs
271
272
273def issequence(x):
274 try:
275 x[0]
276 except (TypeError, KeyError):
277 return False
278 except IndexError:
279 pass
280 return True
281
282def isstringlike(x):
283 try: x+""
284 except: return False
285 else: return True
286
287
288def choose_boundary():
289 """Return a string usable as a multipart boundary."""
290 # follow IE and firefox
291 nonce = "".join([str(random.randint(0, sys.maxint-1)) for i in 0,1,2])
292 return "-"*27 + nonce
293
294# This cut-n-pasted MimeWriter from standard library is here so can add
295# to HTTP headers rather than message body when appropriate. It also uses
296# \r\n in place of \n. This is a bit nasty.
297class MimeWriter:
298
299 """Generic MIME writer.
300
301 Methods:
302
303 __init__()
304 addheader()
305 flushheaders()
306 startbody()
307 startmultipartbody()
308 nextpart()
309 lastpart()
310
311 A MIME writer is much more primitive than a MIME parser. It
312 doesn't seek around on the output file, and it doesn't use large
313 amounts of buffer space, so you have to write the parts in the
314 order they should occur on the output file. It does buffer the
315 headers you add, allowing you to rearrange their order.
316
317 General usage is:
318
319 f = <open the output file>
320 w = MimeWriter(f)
321 ...call w.addheader(key, value) 0 or more times...
322
323 followed by either:
324
325 f = w.startbody(content_type)
326 ...call f.write(data) for body data...
327
328 or:
329
330 w.startmultipartbody(subtype)
331 for each part:
332 subwriter = w.nextpart()
333 ...use the subwriter's methods to create the subpart...
334 w.lastpart()
335
336 The subwriter is another MimeWriter instance, and should be
337 treated in the same way as the toplevel MimeWriter. This way,
338 writing recursive body parts is easy.
339
340 Warning: don't forget to call lastpart()!
341
342 XXX There should be more state so calls made in the wrong order
343 are detected.
344
345 Some special cases:
346
347 - startbody() just returns the file passed to the constructor;
348 but don't use this knowledge, as it may be changed.
349
350 - startmultipartbody() actually returns a file as well;
351 this can be used to write the initial 'if you can read this your
352 mailer is not MIME-aware' message.
353
354 - If you call flushheaders(), the headers accumulated so far are
355 written out (and forgotten); this is useful if you don't need a
356 body part at all, e.g. for a subpart of type message/rfc822
357 that's (mis)used to store some header-like information.
358
359 - Passing a keyword argument 'prefix=<flag>' to addheader(),
360 start*body() affects where the header is inserted; 0 means
361 append at the end, 1 means insert at the start; default is
362 append for addheader(), but insert for start*body(), which use
363 it to determine where the Content-type header goes.
364
365 """
366
367 def __init__(self, fp, http_hdrs=None):
368 self._http_hdrs = http_hdrs
369 self._fp = fp
370 self._headers = []
371 self._boundary = []
372 self._first_part = True
373
374 def addheader(self, key, value, prefix=0,
375 add_to_http_hdrs=0):
376 """
377 prefix is ignored if add_to_http_hdrs is true.
378 """
379 lines = value.split("\r\n")
380 while lines and not lines[-1]: del lines[-1]
381 while lines and not lines[0]: del lines[0]
382 if add_to_http_hdrs:
383 value = "".join(lines)
384 # 2.2 urllib2 doesn't normalize header case
385 self._http_hdrs.append((key.capitalize(), value))
386 else:
387 for i in range(1, len(lines)):
388 lines[i] = " " + lines[i].strip()
389 value = "\r\n".join(lines) + "\r\n"
390 line = key.title() + ": " + value
391 if prefix:
392 self._headers.insert(0, line)
393 else:
394 self._headers.append(line)
395
396 def flushheaders(self):
397 self._fp.writelines(self._headers)
398 self._headers = []
399
400 def startbody(self, ctype=None, plist=[], prefix=1,
401 add_to_http_hdrs=0, content_type=1):
402 """
403 prefix is ignored if add_to_http_hdrs is true.
404 """
405 if content_type and ctype:
406 for name, value in plist:
407 ctype = ctype + ';\r\n %s=%s' % (name, value)
408 self.addheader("Content-Type", ctype, prefix=prefix,
409 add_to_http_hdrs=add_to_http_hdrs)
410 self.flushheaders()
411 if not add_to_http_hdrs: self._fp.write("\r\n")
412 self._first_part = True
413 return self._fp
414
415 def startmultipartbody(self, subtype, boundary=None, plist=[], prefix=1,
416 add_to_http_hdrs=0, content_type=1):
417 boundary = boundary or choose_boundary()
418 self._boundary.append(boundary)
419 return self.startbody("multipart/" + subtype,
420 [("boundary", boundary)] + plist,
421 prefix=prefix,
422 add_to_http_hdrs=add_to_http_hdrs,
423 content_type=content_type)
424
425 def nextpart(self):
426 boundary = self._boundary[-1]
427 if self._first_part:
428 self._first_part = False
429 else:
430 self._fp.write("\r\n")
431 self._fp.write("--" + boundary + "\r\n")
432 return self.__class__(self._fp)
433
434 def lastpart(self):
435 if self._first_part:
436 self.nextpart()
437 boundary = self._boundary.pop()
438 self._fp.write("\r\n--" + boundary + "--\r\n")
439
440
441class LocateError(ValueError): pass
442class AmbiguityError(LocateError): pass
443class ControlNotFoundError(LocateError): pass
444class ItemNotFoundError(LocateError): pass
445
446class ItemCountError(ValueError): pass
447
448# for backwards compatibility, ParseError derives from exceptions that were
449# raised by versions of ClientForm <= 0.2.5
450if HAVE_MODULE_HTMLPARSER:
451 SGMLLIB_PARSEERROR = sgmllib.SGMLParseError
452 class ParseError(sgmllib.SGMLParseError,
453 HTMLParser.HTMLParseError,
454 ):
455 pass
456else:
457 if hasattr(sgmllib, "SGMLParseError"):
458 SGMLLIB_PARSEERROR = sgmllib.SGMLParseError
459 class ParseError(sgmllib.SGMLParseError):
460 pass
461 else:
462 SGMLLIB_PARSEERROR = RuntimeError
463 class ParseError(RuntimeError):
464 pass
465
466
467class _AbstractFormParser:
468 """forms attribute contains HTMLForm instances on completion."""
469 # thanks to Moshe Zadka for an example of sgmllib/htmllib usage
470 def __init__(self, entitydefs=None, encoding=DEFAULT_ENCODING):
471 if entitydefs is None:
472 entitydefs = get_entitydefs()
473 self._entitydefs = entitydefs
474 self._encoding = encoding
475
476 self.base = None
477 self.forms = []
478 self.labels = []
479 self._current_label = None
480 self._current_form = None
481 self._select = None
482 self._optgroup = None
483 self._option = None
484 self._textarea = None
485
486 # forms[0] will contain all controls that are outside of any form
487 # self._global_form is an alias for self.forms[0]
488 self._global_form = None
489 self.start_form([])
490 self.end_form()
491 self._current_form = self._global_form = self.forms[0]
492
493 def do_base(self, attrs):
494 debug("%s", attrs)
495 for key, value in attrs:
496 if key == "href":
497 self.base = self.unescape_attr_if_required(value)
498
499 def end_body(self):
500 debug("")
501 if self._current_label is not None:
502 self.end_label()
503 if self._current_form is not self._global_form:
504 self.end_form()
505
506 def start_form(self, attrs):
507 debug("%s", attrs)
508 if self._current_form is not self._global_form:
509 raise ParseError("nested FORMs")
510 name = None
511 action = None
512 enctype = "application/x-www-form-urlencoded"
513 method = "GET"
514 d = {}
515 for key, value in attrs:
516 if key == "name":
517 name = self.unescape_attr_if_required(value)
518 elif key == "action":
519 action = self.unescape_attr_if_required(value)
520 elif key == "method":
521 method = self.unescape_attr_if_required(value.upper())
522 elif key == "enctype":
523 enctype = self.unescape_attr_if_required(value.lower())
524 d[key] = self.unescape_attr_if_required(value)
525 controls = []
526 self._current_form = (name, action, method, enctype), d, controls
527
528 def end_form(self):
529 debug("")
530 if self._current_label is not None:
531 self.end_label()
532 if self._current_form is self._global_form:
533 raise ParseError("end of FORM before start")
534 self.forms.append(self._current_form)
535 self._current_form = self._global_form
536
537 def start_select(self, attrs):
538 debug("%s", attrs)
539 if self._select is not None:
540 raise ParseError("nested SELECTs")
541 if self._textarea is not None:
542 raise ParseError("SELECT inside TEXTAREA")
543 d = {}
544 for key, val in attrs:
545 d[key] = self.unescape_attr_if_required(val)
546
547 self._select = d
548 self._add_label(d)
549
550 self._append_select_control({"__select": d})
551
552 def end_select(self):
553 debug("")
554 if self._select is None:
555 raise ParseError("end of SELECT before start")
556
557 if self._option is not None:
558 self._end_option()
559
560 self._select = None
561
562 def start_optgroup(self, attrs):
563 debug("%s", attrs)
564 if self._select is None:
565 raise ParseError("OPTGROUP outside of SELECT")
566 d = {}
567 for key, val in attrs:
568 d[key] = self.unescape_attr_if_required(val)
569
570 self._optgroup = d
571
572 def end_optgroup(self):
573 debug("")
574 if self._optgroup is None:
575 raise ParseError("end of OPTGROUP before start")
576 self._optgroup = None
577
578 def _start_option(self, attrs):
579 debug("%s", attrs)
580 if self._select is None:
581 raise ParseError("OPTION outside of SELECT")
582 if self._option is not None:
583 self._end_option()
584
585 d = {}
586 for key, val in attrs:
587 d[key] = self.unescape_attr_if_required(val)
588
589 self._option = {}
590 self._option.update(d)
591 if (self._optgroup and self._optgroup.has_key("disabled") and
592 not self._option.has_key("disabled")):
593 self._option["disabled"] = None
594
595 def _end_option(self):
596 debug("")
597 if self._option is None:
598 raise ParseError("end of OPTION before start")
599
600 contents = self._option.get("contents", "").strip()
601 self._option["contents"] = contents
602 if not self._option.has_key("value"):
603 self._option["value"] = contents
604 if not self._option.has_key("label"):
605 self._option["label"] = contents
606 # stuff dict of SELECT HTML attrs into a special private key
607 # (gets deleted again later)
608 self._option["__select"] = self._select
609 self._append_select_control(self._option)
610 self._option = None
611
612 def _append_select_control(self, attrs):
613 debug("%s", attrs)
614 controls = self._current_form[2]
615 name = self._select.get("name")
616 controls.append(("select", name, attrs))
617
618 def start_textarea(self, attrs):
619 debug("%s", attrs)
620 if self._textarea is not None:
621 raise ParseError("nested TEXTAREAs")
622 if self._select is not None:
623 raise ParseError("TEXTAREA inside SELECT")
624 d = {}
625 for key, val in attrs:
626 d[key] = self.unescape_attr_if_required(val)
627 self._add_label(d)
628
629 self._textarea = d
630
631 def end_textarea(self):
632 debug("")
633 if self._textarea is None:
634 raise ParseError("end of TEXTAREA before start")
635 controls = self._current_form[2]
636 name = self._textarea.get("name")
637 controls.append(("textarea", name, self._textarea))
638 self._textarea = None
639
640 def start_label(self, attrs):
641 debug("%s", attrs)
642 if self._current_label:
643 self.end_label()
644 d = {}
645 for key, val in attrs:
646 d[key] = self.unescape_attr_if_required(val)
647 taken = bool(d.get("for")) # empty id is invalid
648 d["__text"] = ""
649 d["__taken"] = taken
650 if taken:
651 self.labels.append(d)
652 self._current_label = d
653
654 def end_label(self):
655 debug("")
656 label = self._current_label
657 if label is None:
658 # something is ugly in the HTML, but we're ignoring it
659 return
660 self._current_label = None
661 # if it is staying around, it is True in all cases
662 del label["__taken"]
663
664 def _add_label(self, d):
665 #debug("%s", d)
666 if self._current_label is not None:
667 if not self._current_label["__taken"]:
668 self._current_label["__taken"] = True
669 d["__label"] = self._current_label
670
671 def handle_data(self, data):
672 debug("%s", data)
673
674 if self._option is not None:
675 # self._option is a dictionary of the OPTION element's HTML
676 # attributes, but it has two special keys, one of which is the
677 # special "contents" key contains text between OPTION tags (the
678 # other is the "__select" key: see the end_option method)
679 map = self._option
680 key = "contents"
681 elif self._textarea is not None:
682 map = self._textarea
683 key = "value"
684 data = normalize_line_endings(data)
685 # not if within option or textarea
686 elif self._current_label is not None:
687 map = self._current_label
688 key = "__text"
689 else:
690 return
691
692 if data and not map.has_key(key):
693 # according to
694 # http://www.w3.org/TR/html4/appendix/notes.html#h-B.3.1 line break
695 # immediately after start tags or immediately before end tags must
696 # be ignored, but real browsers only ignore a line break after a
697 # start tag, so we'll do that.
698 if data[0:2] == "\r\n":
699 data = data[2:]
700 elif data[0:1] in ["\n", "\r"]:
701 data = data[1:]
702 map[key] = data
703 else:
704 map[key] = map[key] + data
705
706 def do_button(self, attrs):
707 debug("%s", attrs)
708 d = {}
709 d["type"] = "submit" # default
710 for key, val in attrs:
711 d[key] = self.unescape_attr_if_required(val)
712 controls = self._current_form[2]
713
714 type = d["type"]
715 name = d.get("name")
716 # we don't want to lose information, so use a type string that
717 # doesn't clash with INPUT TYPE={SUBMIT,RESET,BUTTON}
718 # e.g. type for BUTTON/RESET is "resetbutton"
719 # (type for INPUT/RESET is "reset")
720 type = type+"button"
721 self._add_label(d)
722 controls.append((type, name, d))
723
724 def do_input(self, attrs):
725 debug("%s", attrs)
726 d = {}
727 d["type"] = "text" # default
728 for key, val in attrs:
729 d[key] = self.unescape_attr_if_required(val)
730 controls = self._current_form[2]
731
732 type = d["type"]
733 name = d.get("name")
734 self._add_label(d)
735 controls.append((type, name, d))
736
737 def do_isindex(self, attrs):
738 debug("%s", attrs)
739 d = {}
740 for key, val in attrs:
741 d[key] = self.unescape_attr_if_required(val)
742 controls = self._current_form[2]
743
744 self._add_label(d)
745 # isindex doesn't have type or name HTML attributes
746 controls.append(("isindex", None, d))
747
748 def handle_entityref(self, name):
749 #debug("%s", name)
750 self.handle_data(unescape(
751 '&%s;' % name, self._entitydefs, self._encoding))
752
753 def handle_charref(self, name):
754 #debug("%s", name)
755 self.handle_data(unescape_charref(name, self._encoding))
756
757 def unescape_attr(self, name):
758 #debug("%s", name)
759 return unescape(name, self._entitydefs, self._encoding)
760
761 def unescape_attrs(self, attrs):
762 #debug("%s", attrs)
763 escaped_attrs = {}
764 for key, val in attrs.items():
765 try:
766 val.items
767 except AttributeError:
768 escaped_attrs[key] = self.unescape_attr(val)
769 else:
770 # e.g. "__select" -- yuck!
771 escaped_attrs[key] = self.unescape_attrs(val)
772 return escaped_attrs
773
774 def unknown_entityref(self, ref): self.handle_data("&%s;" % ref)
775 def unknown_charref(self, ref): self.handle_data("&#%s;" % ref)
776
777
778if not HAVE_MODULE_HTMLPARSER:
779 class XHTMLCompatibleFormParser:
780 def __init__(self, entitydefs=None, encoding=DEFAULT_ENCODING):
781 raise ValueError("HTMLParser could not be imported")
782else:
783 class XHTMLCompatibleFormParser(_AbstractFormParser, HTMLParser.HTMLParser):
784 """Good for XHTML, bad for tolerance of incorrect HTML."""
785 # thanks to Michael Howitz for this!
786 def __init__(self, entitydefs=None, encoding=DEFAULT_ENCODING):
787 HTMLParser.HTMLParser.__init__(self)
788 _AbstractFormParser.__init__(self, entitydefs, encoding)
789
790 def feed(self, data):
791 try:
792 HTMLParser.HTMLParser.feed(self, data)
793 except HTMLParser.HTMLParseError, exc:
794 raise ParseError(exc)
795
796 def start_option(self, attrs):
797 _AbstractFormParser._start_option(self, attrs)
798
799 def end_option(self):
800 _AbstractFormParser._end_option(self)
801
802 def handle_starttag(self, tag, attrs):
803 try:
804 method = getattr(self, "start_" + tag)
805 except AttributeError:
806 try:
807 method = getattr(self, "do_" + tag)
808 except AttributeError:
809 pass # unknown tag
810 else:
811 method(attrs)
812 else:
813 method(attrs)
814
815 def handle_endtag(self, tag):
816 try:
817 method = getattr(self, "end_" + tag)
818 except AttributeError:
819 pass # unknown tag
820 else:
821 method()
822
823 def unescape(self, name):
824 # Use the entitydefs passed into constructor, not
825 # HTMLParser.HTMLParser's entitydefs.
826 return self.unescape_attr(name)
827
828 def unescape_attr_if_required(self, name):
829 return name # HTMLParser.HTMLParser already did it
830 def unescape_attrs_if_required(self, attrs):
831 return attrs # ditto
832
833 def close(self):
834 HTMLParser.HTMLParser.close(self)
835 self.end_body()
836
837
838class _AbstractSgmllibParser(_AbstractFormParser):
839
840 def do_option(self, attrs):
841 _AbstractFormParser._start_option(self, attrs)
842
843 if sys.version_info[:2] >= (2,5):
844 # we override this attr to decode hex charrefs
845 entity_or_charref = re.compile(
846 '&(?:([a-zA-Z][-.a-zA-Z0-9]*)|#(x?[0-9a-fA-F]+))(;?)')
847 def convert_entityref(self, name):
848 return unescape("&%s;" % name, self._entitydefs, self._encoding)
849 def convert_charref(self, name):
850 return unescape_charref("%s" % name, self._encoding)
851 def unescape_attr_if_required(self, name):
852 return name # sgmllib already did it
853 def unescape_attrs_if_required(self, attrs):
854 return attrs # ditto
855 else:
856 def unescape_attr_if_required(self, name):
857 return self.unescape_attr(name)
858 def unescape_attrs_if_required(self, attrs):
859 return self.unescape_attrs(attrs)
860
861
862class FormParser(_AbstractSgmllibParser, sgmllib.SGMLParser):
863 """Good for tolerance of incorrect HTML, bad for XHTML."""
864 def __init__(self, entitydefs=None, encoding=DEFAULT_ENCODING):
865 sgmllib.SGMLParser.__init__(self)
866 _AbstractFormParser.__init__(self, entitydefs, encoding)
867
868 def feed(self, data):
869 try:
870 sgmllib.SGMLParser.feed(self, data)
871 except SGMLLIB_PARSEERROR, exc:
872 raise ParseError(exc)
873
874 def close(self):
875 sgmllib.SGMLParser.close(self)
876 self.end_body()
877
878
879# sigh, must support mechanize by allowing dynamic creation of classes based on
880# its bundled copy of BeautifulSoup (which was necessary because of dependency
881# problems)
882
883def _create_bs_classes(bs,
884 icbinbs,
885 ):
886 class _AbstractBSFormParser(_AbstractSgmllibParser):
887 bs_base_class = None
888 def __init__(self, entitydefs=None, encoding=DEFAULT_ENCODING):
889 _AbstractFormParser.__init__(self, entitydefs, encoding)
890 self.bs_base_class.__init__(self)
891 def handle_data(self, data):
892 _AbstractFormParser.handle_data(self, data)
893 self.bs_base_class.handle_data(self, data)
894 def feed(self, data):
895 try:
896 self.bs_base_class.feed(self, data)
897 except SGMLLIB_PARSEERROR, exc:
898 raise ParseError(exc)
899 def close(self):
900 self.bs_base_class.close(self)
901 self.end_body()
902
903 class RobustFormParser(_AbstractBSFormParser, bs):
904 """Tries to be highly tolerant of incorrect HTML."""
905 pass
906 RobustFormParser.bs_base_class = bs
907 class NestingRobustFormParser(_AbstractBSFormParser, icbinbs):
908 """Tries to be highly tolerant of incorrect HTML.
909
910 Different from RobustFormParser in that it more often guesses nesting
911 above missing end tags (see BeautifulSoup docs).
912
913 """
914 pass
915 NestingRobustFormParser.bs_base_class = icbinbs
916
917 return RobustFormParser, NestingRobustFormParser
918
919try:
920 if sys.version_info[:2] < (2, 2):
921 raise ImportError # BeautifulSoup uses generators
922 import BeautifulSoup
923except ImportError:
924 pass
925else:
926 RobustFormParser, NestingRobustFormParser = _create_bs_classes(
927 BeautifulSoup.BeautifulSoup, BeautifulSoup.ICantBelieveItsBeautifulSoup
928 )
929 __all__ += ['RobustFormParser', 'NestingRobustFormParser']
930
931
932#FormParser = XHTMLCompatibleFormParser # testing hack
933#FormParser = RobustFormParser # testing hack
934
935
936def ParseResponseEx(response,
937 select_default=False,
938 form_parser_class=FormParser,
939 request_class=urllib2.Request,
940 entitydefs=None,
941 encoding=DEFAULT_ENCODING,
942
943 # private
944 _urljoin=urlparse.urljoin,
945 _urlparse=urlparse.urlparse,
946 _urlunparse=urlparse.urlunparse,
947 ):
948 """Identical to ParseResponse, except that:
949
950 1. The returned list contains an extra item. The first form in the list
951 contains all controls not contained in any FORM element.
952
953 2. The arguments ignore_errors and backwards_compat have been removed.
954
955 3. Backwards-compatibility mode (backwards_compat=True) is not available.
956 """
957 return _ParseFileEx(response, response.geturl(),
958 select_default,
959 False,
960 form_parser_class,
961 request_class,
962 entitydefs,
963 False,
964 encoding,
965 _urljoin=_urljoin,
966 _urlparse=_urlparse,
967 _urlunparse=_urlunparse,
968 )
969
970def ParseFileEx(file, base_uri,
971 select_default=False,
972 form_parser_class=FormParser,
973 request_class=urllib2.Request,
974 entitydefs=None,
975 encoding=DEFAULT_ENCODING,
976
977 # private
978 _urljoin=urlparse.urljoin,
979 _urlparse=urlparse.urlparse,
980 _urlunparse=urlparse.urlunparse,
981 ):
982 """Identical to ParseFile, except that:
983
984 1. The returned list contains an extra item. The first form in the list
985 contains all controls not contained in any FORM element.
986
987 2. The arguments ignore_errors and backwards_compat have been removed.
988
989 3. Backwards-compatibility mode (backwards_compat=True) is not available.
990 """
991 return _ParseFileEx(file, base_uri,
992 select_default,
993 False,
994 form_parser_class,
995 request_class,
996 entitydefs,
997 False,
998 encoding,
999 _urljoin=_urljoin,
1000 _urlparse=_urlparse,
1001 _urlunparse=_urlunparse,
1002 )
1003
1004def ParseResponse(response, *args, **kwds):
1005 """Parse HTTP response and return a list of HTMLForm instances.
1006
1007 The return value of urllib2.urlopen can be conveniently passed to this
1008 function as the response parameter.
1009
1010 ClientForm.ParseError is raised on parse errors.
1011
1012 response: file-like object (supporting read() method) with a method
1013 geturl(), returning the URI of the HTTP response
1014 select_default: for multiple-selection SELECT controls and RADIO controls,
1015 pick the first item as the default if none are selected in the HTML
1016 form_parser_class: class to instantiate and use to pass
1017 request_class: class to return from .click() method (default is
1018 urllib2.Request)
1019 entitydefs: mapping like {"&amp;": "&", ...} containing HTML entity
1020 definitions (a sensible default is used)
1021 encoding: character encoding used for encoding numeric character references
1022 when matching link text. ClientForm does not attempt to find the encoding
1023 in a META HTTP-EQUIV attribute in the document itself (mechanize, for
1024 example, does do that and will pass the correct value to ClientForm using
1025 this parameter).
1026
1027 backwards_compat: boolean that determines whether the returned HTMLForm
1028 objects are backwards-compatible with old code. If backwards_compat is
1029 true:
1030
1031 - ClientForm 0.1 code will continue to work as before.
1032
1033 - Label searches that do not specify a nr (number or count) will always
1034 get the first match, even if other controls match. If
1035 backwards_compat is False, label searches that have ambiguous results
1036 will raise an AmbiguityError.
1037
1038 - Item label matching is done by strict string comparison rather than
1039 substring matching.
1040
1041 - De-selecting individual list items is allowed even if the Item is
1042 disabled.
1043
1044 The backwards_compat argument will be deprecated in a future release.
1045
1046 Pass a true value for select_default if you want the behaviour specified by
1047 RFC 1866 (the HTML 2.0 standard), which is to select the first item in a
1048 RADIO or multiple-selection SELECT control if none were selected in the
1049 HTML. Most browsers (including Microsoft Internet Explorer (IE) and
1050 Netscape Navigator) instead leave all items unselected in these cases. The
1051 W3C HTML 4.0 standard leaves this behaviour undefined in the case of
1052 multiple-selection SELECT controls, but insists that at least one RADIO
1053 button should be checked at all times, in contradiction to browser
1054 behaviour.
1055
1056 There is a choice of parsers. ClientForm.XHTMLCompatibleFormParser (uses
1057 HTMLParser.HTMLParser) works best for XHTML, ClientForm.FormParser (uses
1058 sgmllib.SGMLParser) (the default) works better for ordinary grubby HTML.
1059 Note that HTMLParser is only available in Python 2.2 and later. You can
1060 pass your own class in here as a hack to work around bad HTML, but at your
1061 own risk: there is no well-defined interface.
1062
1063 """
1064 return _ParseFileEx(response, response.geturl(), *args, **kwds)[1:]
1065
1066def ParseFile(file, base_uri, *args, **kwds):
1067 """Parse HTML and return a list of HTMLForm instances.
1068
1069 ClientForm.ParseError is raised on parse errors.
1070
1071 file: file-like object (supporting read() method) containing HTML with zero
1072 or more forms to be parsed
1073 base_uri: the URI of the document (note that the base URI used to submit
1074 the form will be that given in the BASE element if present, not that of
1075 the document)
1076
1077 For the other arguments and further details, see ParseResponse.__doc__.
1078
1079 """
1080 return _ParseFileEx(file, base_uri, *args, **kwds)[1:]
1081
1082def _ParseFileEx(file, base_uri,
1083 select_default=False,
1084 ignore_errors=False,
1085 form_parser_class=FormParser,
1086 request_class=urllib2.Request,
1087 entitydefs=None,
1088 backwards_compat=True,
1089 encoding=DEFAULT_ENCODING,
1090 _urljoin=urlparse.urljoin,
1091 _urlparse=urlparse.urlparse,
1092 _urlunparse=urlparse.urlunparse,
1093 ):
1094 if backwards_compat:
1095 deprecation("operating in backwards-compatibility mode", 1)
1096 fp = form_parser_class(entitydefs, encoding)
1097 while 1:
1098 data = file.read(CHUNK)
1099 try:
1100 fp.feed(data)
1101 except ParseError, e:
1102 e.base_uri = base_uri
1103 raise
1104 if len(data) != CHUNK: break
1105 fp.close()
1106 if fp.base is not None:
1107 # HTML BASE element takes precedence over document URI
1108 base_uri = fp.base
1109 labels = [] # Label(label) for label in fp.labels]
1110 id_to_labels = {}
1111 for l in fp.labels:
1112 label = Label(l)
1113 labels.append(label)
1114 for_id = l["for"]
1115 coll = id_to_labels.get(for_id)
1116 if coll is None:
1117 id_to_labels[for_id] = [label]
1118 else:
1119 coll.append(label)
1120 forms = []
1121 for (name, action, method, enctype), attrs, controls in fp.forms:
1122 if action is None:
1123 action = base_uri
1124 else:
1125 action = _urljoin(base_uri, action)
1126 # would be nice to make HTMLForm class (form builder) pluggable
1127 form = HTMLForm(
1128 action, method, enctype, name, attrs, request_class,
1129 forms, labels, id_to_labels, backwards_compat)
1130 form._urlparse = _urlparse
1131 form._urlunparse = _urlunparse
1132 for ii in range(len(controls)):
1133 type, name, attrs = controls[ii]
1134 # index=ii*10 allows ImageControl to return multiple ordered pairs
1135 form.new_control(
1136 type, name, attrs, select_default=select_default, index=ii*10)
1137 forms.append(form)
1138 for form in forms:
1139 form.fixup()
1140 return forms
1141
1142
1143class Label:
1144 def __init__(self, attrs):
1145 self.id = attrs.get("for")
1146 self._text = attrs.get("__text").strip()
1147 self._ctext = compress_text(self._text)
1148 self.attrs = attrs
1149 self._backwards_compat = False # maintained by HTMLForm
1150
1151 def __getattr__(self, name):
1152 if name == "text":
1153 if self._backwards_compat:
1154 return self._text
1155 else:
1156 return self._ctext
1157 return getattr(Label, name)
1158
1159 def __setattr__(self, name, value):
1160 if name == "text":
1161 # don't see any need for this, so make it read-only
1162 raise AttributeError("text attribute is read-only")
1163 self.__dict__[name] = value
1164
1165 def __str__(self):
1166 return "<Label(id=%r, text=%r)>" % (self.id, self.text)
1167
1168
1169def _get_label(attrs):
1170 text = attrs.get("__label")
1171 if text is not None:
1172 return Label(text)
1173 else:
1174 return None
1175
1176class Control:
1177 """An HTML form control.
1178
1179 An HTMLForm contains a sequence of Controls. The Controls in an HTMLForm
1180 are accessed using the HTMLForm.find_control method or the
1181 HTMLForm.controls attribute.
1182
1183 Control instances are usually constructed using the ParseFile /
1184 ParseResponse functions. If you use those functions, you can ignore the
1185 rest of this paragraph. A Control is only properly initialised after the
1186 fixup method has been called. In fact, this is only strictly necessary for
1187 ListControl instances. This is necessary because ListControls are built up
1188 from ListControls each containing only a single item, and their initial
1189 value(s) can only be known after the sequence is complete.
1190
1191 The types and values that are acceptable for assignment to the value
1192 attribute are defined by subclasses.
1193
1194 If the disabled attribute is true, this represents the state typically
1195 represented by browsers by 'greying out' a control. If the disabled
1196 attribute is true, the Control will raise AttributeError if an attempt is
1197 made to change its value. In addition, the control will not be considered
1198 'successful' as defined by the W3C HTML 4 standard -- ie. it will
1199 contribute no data to the return value of the HTMLForm.click* methods. To
1200 enable a control, set the disabled attribute to a false value.
1201
1202 If the readonly attribute is true, the Control will raise AttributeError if
1203 an attempt is made to change its value. To make a control writable, set
1204 the readonly attribute to a false value.
1205
1206 All controls have the disabled and readonly attributes, not only those that
1207 may have the HTML attributes of the same names.
1208
1209 On assignment to the value attribute, the following exceptions are raised:
1210 TypeError, AttributeError (if the value attribute should not be assigned
1211 to, because the control is disabled, for example) and ValueError.
1212
1213 If the name or value attributes are None, or the value is an empty list, or
1214 if the control is disabled, the control is not successful.
1215
1216 Public attributes:
1217
1218 type: string describing type of control (see the keys of the
1219 HTMLForm.type2class dictionary for the allowable values) (readonly)
1220 name: name of control (readonly)
1221 value: current value of control (subclasses may allow a single value, a
1222 sequence of values, or either)
1223 disabled: disabled state
1224 readonly: readonly state
1225 id: value of id HTML attribute
1226
1227 """
1228 def __init__(self, type, name, attrs, index=None):
1229 """
1230 type: string describing type of control (see the keys of the
1231 HTMLForm.type2class dictionary for the allowable values)
1232 name: control name
1233 attrs: HTML attributes of control's HTML element
1234
1235 """
1236 raise NotImplementedError()
1237
1238 def add_to_form(self, form):
1239 self._form = form
1240 form.controls.append(self)
1241
1242 def fixup(self):
1243 pass
1244
1245 def is_of_kind(self, kind):
1246 raise NotImplementedError()
1247
1248 def clear(self):
1249 raise NotImplementedError()
1250
1251 def __getattr__(self, name): raise NotImplementedError()
1252 def __setattr__(self, name, value): raise NotImplementedError()
1253
1254 def pairs(self):
1255 """Return list of (key, value) pairs suitable for passing to urlencode.
1256 """
1257 return [(k, v) for (i, k, v) in self._totally_ordered_pairs()]
1258
1259 def _totally_ordered_pairs(self):
1260 """Return list of (key, value, index) tuples.
1261
1262 Like pairs, but allows preserving correct ordering even where several
1263 controls are involved.
1264
1265 """
1266 raise NotImplementedError()
1267
1268 def _write_mime_data(self, mw, name, value):
1269 """Write data for a subitem of this control to a MimeWriter."""
1270 # called by HTMLForm
1271 mw2 = mw.nextpart()
1272 mw2.addheader("Content-Disposition",
1273 'form-data; name="%s"' % name, 1)
1274 f = mw2.startbody(prefix=0)
1275 f.write(value)
1276
1277 def __str__(self):
1278 raise NotImplementedError()
1279
1280 def get_labels(self):
1281 """Return all labels (Label instances) for this control.
1282
1283 If the control was surrounded by a <label> tag, that will be the first
1284 label; all other labels, connected by 'for' and 'id', are in the order
1285 that appear in the HTML.
1286
1287 """
1288 res = []
1289 if self._label:
1290 res.append(self._label)
1291 if self.id:
1292 res.extend(self._form._id_to_labels.get(self.id, ()))
1293 return res
1294
1295
1296#---------------------------------------------------
1297class ScalarControl(Control):
1298 """Control whose value is not restricted to one of a prescribed set.
1299
1300 Some ScalarControls don't accept any value attribute. Otherwise, takes a
1301 single value, which must be string-like.
1302
1303 Additional read-only public attribute:
1304
1305 attrs: dictionary mapping the names of original HTML attributes of the
1306 control to their values
1307
1308 """
1309 def __init__(self, type, name, attrs, index=None):
1310 self._index = index
1311 self._label = _get_label(attrs)
1312 self.__dict__["type"] = type.lower()
1313 self.__dict__["name"] = name
1314 self._value = attrs.get("value")
1315 self.disabled = attrs.has_key("disabled")
1316 self.readonly = attrs.has_key("readonly")
1317 self.id = attrs.get("id")
1318
1319 self.attrs = attrs.copy()
1320
1321 self._clicked = False
1322
1323 self._urlparse = urlparse.urlparse
1324 self._urlunparse = urlparse.urlunparse
1325
1326 def __getattr__(self, name):
1327 if name == "value":
1328 return self.__dict__["_value"]
1329 else:
1330 raise AttributeError("%s instance has no attribute '%s'" %
1331 (self.__class__.__name__, name))
1332
1333 def __setattr__(self, name, value):
1334 if name == "value":
1335 if not isstringlike(value):
1336 raise TypeError("must assign a string")
1337 elif self.readonly:
1338 raise AttributeError("control '%s' is readonly" % self.name)
1339 elif self.disabled:
1340 raise AttributeError("control '%s' is disabled" % self.name)
1341 self.__dict__["_value"] = value
1342 elif name in ("name", "type"):
1343 raise AttributeError("%s attribute is readonly" % name)
1344 else:
1345 self.__dict__[name] = value
1346
1347 def _totally_ordered_pairs(self):
1348 name = self.name
1349 value = self.value
1350 if name is None or value is None or self.disabled:
1351 return []
1352 return [(self._index, name, value)]
1353
1354 def clear(self):
1355 if self.readonly:
1356 raise AttributeError("control '%s' is readonly" % self.name)
1357 self.__dict__["_value"] = None
1358
1359 def __str__(self):
1360 name = self.name
1361 value = self.value
1362 if name is None: name = "<None>"
1363 if value is None: value = "<None>"
1364
1365 infos = []
1366 if self.disabled: infos.append("disabled")
1367 if self.readonly: infos.append("readonly")
1368 info = ", ".join(infos)
1369 if info: info = " (%s)" % info
1370
1371 return "<%s(%s=%s)%s>" % (self.__class__.__name__, name, value, info)
1372
1373
1374#---------------------------------------------------
1375class TextControl(ScalarControl):
1376 """Textual input control.
1377
1378 Covers:
1379
1380 INPUT/TEXT
1381 INPUT/PASSWORD
1382 INPUT/HIDDEN
1383 TEXTAREA
1384
1385 """
1386 def __init__(self, type, name, attrs, index=None):
1387 ScalarControl.__init__(self, type, name, attrs, index)
1388 if self.type == "hidden": self.readonly = True
1389 if self._value is None:
1390 self._value = ""
1391
1392 def is_of_kind(self, kind): return kind == "text"
1393
1394#---------------------------------------------------
1395class FileControl(ScalarControl):
1396 """File upload with INPUT TYPE=FILE.
1397
1398 The value attribute of a FileControl is always None. Use add_file instead.
1399
1400 Additional public method: add_file
1401
1402 """
1403
1404 def __init__(self, type, name, attrs, index=None):
1405 ScalarControl.__init__(self, type, name, attrs, index)
1406 self._value = None
1407 self._upload_data = []
1408
1409 def is_of_kind(self, kind): return kind == "file"
1410
1411 def clear(self):
1412 if self.readonly:
1413 raise AttributeError("control '%s' is readonly" % self.name)
1414 self._upload_data = []
1415
1416 def __setattr__(self, name, value):
1417 if name in ("value", "name", "type"):
1418 raise AttributeError("%s attribute is readonly" % name)
1419 else:
1420 self.__dict__[name] = value
1421
1422 def add_file(self, file_object, content_type=None, filename=None):
1423 if not hasattr(file_object, "read"):
1424 raise TypeError("file-like object must have read method")
1425 if content_type is not None and not isstringlike(content_type):
1426 raise TypeError("content type must be None or string-like")
1427 if filename is not None and not isstringlike(filename):
1428 raise TypeError("filename must be None or string-like")
1429 if content_type is None:
1430 content_type = "application/octet-stream"
1431 self._upload_data.append((file_object, content_type, filename))
1432
1433 def _totally_ordered_pairs(self):
1434 # XXX should it be successful even if unnamed?
1435 if self.name is None or self.disabled:
1436 return []
1437 return [(self._index, self.name, "")]
1438
1439 def _write_mime_data(self, mw, _name, _value):
1440 # called by HTMLForm
1441 # assert _name == self.name and _value == ''
1442 if len(self._upload_data) < 2:
1443 if len(self._upload_data) == 0:
1444 file_object = StringIO()
1445 content_type = "application/octet-stream"
1446 filename = ""
1447 else:
1448 file_object, content_type, filename = self._upload_data[0]
1449 if filename is None:
1450 filename = ""
1451 mw2 = mw.nextpart()
1452 fn_part = '; filename="%s"' % filename
1453 disp = 'form-data; name="%s"%s' % (self.name, fn_part)
1454 mw2.addheader("Content-Disposition", disp, prefix=1)
1455 fh = mw2.startbody(content_type, prefix=0)
1456 fh.write(file_object.read())
1457 else:
1458 # multiple files
1459 mw2 = mw.nextpart()
1460 disp = 'form-data; name="%s"' % self.name
1461 mw2.addheader("Content-Disposition", disp, prefix=1)
1462 fh = mw2.startmultipartbody("mixed", prefix=0)
1463 for file_object, content_type, filename in self._upload_data:
1464 mw3 = mw2.nextpart()
1465 if filename is None:
1466 filename = ""
1467 fn_part = '; filename="%s"' % filename
1468 disp = "file%s" % fn_part
1469 mw3.addheader("Content-Disposition", disp, prefix=1)
1470 fh2 = mw3.startbody(content_type, prefix=0)
1471 fh2.write(file_object.read())
1472 mw2.lastpart()
1473
1474 def __str__(self):
1475 name = self.name
1476 if name is None: name = "<None>"
1477
1478 if not self._upload_data:
1479 value = "<No files added>"
1480 else:
1481 value = []
1482 for file, ctype, filename in self._upload_data:
1483 if filename is None:
1484 value.append("<Unnamed file>")
1485 else:
1486 value.append(filename)
1487 value = ", ".join(value)
1488
1489 info = []
1490 if self.disabled: info.append("disabled")
1491 if self.readonly: info.append("readonly")
1492 info = ", ".join(info)
1493 if info: info = " (%s)" % info
1494
1495 return "<%s(%s=%s)%s>" % (self.__class__.__name__, name, value, info)
1496
1497
1498#---------------------------------------------------
1499class IsindexControl(ScalarControl):
1500 """ISINDEX control.
1501
1502 ISINDEX is the odd-one-out of HTML form controls. In fact, it isn't really
1503 part of regular HTML forms at all, and predates it. You're only allowed
1504 one ISINDEX per HTML document. ISINDEX and regular form submission are
1505 mutually exclusive -- either submit a form, or the ISINDEX.
1506
1507 Having said this, since ISINDEX controls may appear in forms (which is
1508 probably bad HTML), ParseFile / ParseResponse will include them in the
1509 HTMLForm instances it returns. You can set the ISINDEX's value, as with
1510 any other control (but note that ISINDEX controls have no name, so you'll
1511 need to use the type argument of set_value!). When you submit the form,
1512 the ISINDEX will not be successful (ie., no data will get returned to the
1513 server as a result of its presence), unless you click on the ISINDEX
1514 control, in which case the ISINDEX gets submitted instead of the form:
1515
1516 form.set_value("my isindex value", type="isindex")
1517 urllib2.urlopen(form.click(type="isindex"))
1518
1519 ISINDEX elements outside of FORMs are ignored. If you want to submit one
1520 by hand, do it like so:
1521
1522 url = urlparse.urljoin(page_uri, "?"+urllib.quote_plus("my isindex value"))
1523 result = urllib2.urlopen(url)
1524
1525 """
1526 def __init__(self, type, name, attrs, index=None):
1527 ScalarControl.__init__(self, type, name, attrs, index)
1528 if self._value is None:
1529 self._value = ""
1530
1531 def is_of_kind(self, kind): return kind in ["text", "clickable"]
1532
1533 def _totally_ordered_pairs(self):
1534 return []
1535
1536 def _click(self, form, coord, return_type, request_class=urllib2.Request):
1537 # Relative URL for ISINDEX submission: instead of "foo=bar+baz",
1538 # want "bar+baz".
1539 # This doesn't seem to be specified in HTML 4.01 spec. (ISINDEX is
1540 # deprecated in 4.01, but it should still say how to submit it).
1541 # Submission of ISINDEX is explained in the HTML 3.2 spec, though.
1542 parts = self._urlparse(form.action)
1543 rest, (query, frag) = parts[:-2], parts[-2:]
1544 parts = rest + (urllib.quote_plus(self.value), None)
1545 url = self._urlunparse(parts)
1546 req_data = url, None, []
1547
1548 if return_type == "pairs":
1549 return []
1550 elif return_type == "request_data":
1551 return req_data
1552 else:
1553 return request_class(url)
1554
1555 def __str__(self):
1556 value = self.value
1557 if value is None: value = "<None>"
1558
1559 infos = []
1560 if self.disabled: infos.append("disabled")
1561 if self.readonly: infos.append("readonly")
1562 info = ", ".join(infos)
1563 if info: info = " (%s)" % info
1564
1565 return "<%s(%s)%s>" % (self.__class__.__name__, value, info)
1566
1567
1568#---------------------------------------------------
1569class IgnoreControl(ScalarControl):
1570 """Control that we're not interested in.
1571
1572 Covers:
1573
1574 INPUT/RESET
1575 BUTTON/RESET
1576 INPUT/BUTTON
1577 BUTTON/BUTTON
1578
1579 These controls are always unsuccessful, in the terminology of HTML 4 (ie.
1580 they never require any information to be returned to the server).
1581
1582 BUTTON/BUTTON is used to generate events for script embedded in HTML.
1583
1584 The value attribute of IgnoreControl is always None.
1585
1586 """
1587 def __init__(self, type, name, attrs, index=None):
1588 ScalarControl.__init__(self, type, name, attrs, index)
1589 self._value = None
1590
1591 def is_of_kind(self, kind): return False
1592
1593 def __setattr__(self, name, value):
1594 if name == "value":
1595 raise AttributeError(
1596 "control '%s' is ignored, hence read-only" % self.name)
1597 elif name in ("name", "type"):
1598 raise AttributeError("%s attribute is readonly" % name)
1599 else:
1600 self.__dict__[name] = value
1601
1602
1603#---------------------------------------------------
1604# ListControls
1605
1606# helpers and subsidiary classes
1607
1608class Item:
1609 def __init__(self, control, attrs, index=None):
1610 label = _get_label(attrs)
1611 self.__dict__.update({
1612 "name": attrs["value"],
1613 "_labels": label and [label] or [],
1614 "attrs": attrs,
1615 "_control": control,
1616 "disabled": attrs.has_key("disabled"),
1617 "_selected": False,
1618 "id": attrs.get("id"),
1619 "_index": index,
1620 })
1621 control.items.append(self)
1622
1623 def get_labels(self):
1624 """Return all labels (Label instances) for this item.
1625
1626 For items that represent radio buttons or checkboxes, if the item was
1627 surrounded by a <label> tag, that will be the first label; all other
1628 labels, connected by 'for' and 'id', are in the order that appear in
1629 the HTML.
1630
1631 For items that represent select options, if the option had a label
1632 attribute, that will be the first label. If the option has contents
1633 (text within the option tags) and it is not the same as the label
1634 attribute (if any), that will be a label. There is nothing in the
1635 spec to my knowledge that makes an option with an id unable to be the
1636 target of a label's for attribute, so those are included, if any, for
1637 the sake of consistency and completeness.
1638
1639 """
1640 res = []
1641 res.extend(self._labels)
1642 if self.id:
1643 res.extend(self._control._form._id_to_labels.get(self.id, ()))
1644 return res
1645
1646 def __getattr__(self, name):
1647 if name=="selected":
1648 return self._selected
1649 raise AttributeError(name)
1650
1651 def __setattr__(self, name, value):
1652 if name == "selected":
1653 self._control._set_selected_state(self, value)
1654 elif name == "disabled":
1655 self.__dict__["disabled"] = bool(value)
1656 else:
1657 raise AttributeError(name)
1658
1659 def __str__(self):
1660 res = self.name
1661 if self.selected:
1662 res = "*" + res
1663 if self.disabled:
1664 res = "(%s)" % res
1665 return res
1666
1667 def __repr__(self):
1668 # XXX appending the attrs without distinguishing them from name and id
1669 # is silly
1670 attrs = [("name", self.name), ("id", self.id)]+self.attrs.items()
1671 return "<%s %s>" % (
1672 self.__class__.__name__,
1673 " ".join(["%s=%r" % (k, v) for k, v in attrs])
1674 )
1675
1676def disambiguate(items, nr, **kwds):
1677 msgs = []
1678 for key, value in kwds.items():
1679 msgs.append("%s=%r" % (key, value))
1680 msg = " ".join(msgs)
1681 if not items:
1682 raise ItemNotFoundError(msg)
1683 if nr is None:
1684 if len(items) > 1:
1685 raise AmbiguityError(msg)
1686 nr = 0
1687 if len(items) <= nr:
1688 raise ItemNotFoundError(msg)
1689 return items[nr]
1690
1691class ListControl(Control):
1692 """Control representing a sequence of items.
1693
1694 The value attribute of a ListControl represents the successful list items
1695 in the control. The successful list items are those that are selected and
1696 not disabled.
1697
1698 ListControl implements both list controls that take a length-1 value
1699 (single-selection) and those that take length >1 values
1700 (multiple-selection).
1701
1702 ListControls accept sequence values only. Some controls only accept
1703 sequences of length 0 or 1 (RADIO, and single-selection SELECT).
1704 In those cases, ItemCountError is raised if len(sequence) > 1. CHECKBOXes
1705 and multiple-selection SELECTs (those having the "multiple" HTML attribute)
1706 accept sequences of any length.
1707
1708 Note the following mistake:
1709
1710 control.value = some_value
1711 assert control.value == some_value # not necessarily true
1712
1713 The reason for this is that the value attribute always gives the list items
1714 in the order they were listed in the HTML.
1715
1716 ListControl items can also be referred to by their labels instead of names.
1717 Use the label argument to .get(), and the .set_value_by_label(),
1718 .get_value_by_label() methods.
1719
1720 Note that, rather confusingly, though SELECT controls are represented in
1721 HTML by SELECT elements (which contain OPTION elements, representing
1722 individual list items), CHECKBOXes and RADIOs are not represented by *any*
1723 element. Instead, those controls are represented by a collection of INPUT
1724 elements. For example, this is a SELECT control, named "control1":
1725
1726 <select name="control1">
1727 <option>foo</option>
1728 <option value="1">bar</option>
1729 </select>
1730
1731 and this is a CHECKBOX control, named "control2":
1732
1733 <input type="checkbox" name="control2" value="foo" id="cbe1">
1734 <input type="checkbox" name="control2" value="bar" id="cbe2">
1735
1736 The id attribute of a CHECKBOX or RADIO ListControl is always that of its
1737 first element (for example, "cbe1" above).
1738
1739
1740 Additional read-only public attribute: multiple.
1741
1742 """
1743
1744 # ListControls are built up by the parser from their component items by
1745 # creating one ListControl per item, consolidating them into a single
1746 # master ListControl held by the HTMLForm:
1747
1748 # -User calls form.new_control(...)
1749 # -Form creates Control, and calls control.add_to_form(self).
1750 # -Control looks for a Control with the same name and type in the form,
1751 # and if it finds one, merges itself with that control by calling
1752 # control.merge_control(self). The first Control added to the form, of
1753 # a particular name and type, is the only one that survives in the
1754 # form.
1755 # -Form calls control.fixup for all its controls. ListControls in the
1756 # form know they can now safely pick their default values.
1757
1758 # To create a ListControl without an HTMLForm, use:
1759
1760 # control.merge_control(new_control)
1761
1762 # (actually, it's much easier just to use ParseFile)
1763
1764 _label = None
1765
1766 def __init__(self, type, name, attrs={}, select_default=False,
1767 called_as_base_class=False, index=None):
1768 """
1769 select_default: for RADIO and multiple-selection SELECT controls, pick
1770 the first item as the default if no 'selected' HTML attribute is
1771 present
1772
1773 """
1774 if not called_as_base_class:
1775 raise NotImplementedError()
1776
1777 self.__dict__["type"] = type.lower()
1778 self.__dict__["name"] = name
1779 self._value = attrs.get("value")
1780 self.disabled = False
1781 self.readonly = False
1782 self.id = attrs.get("id")
1783 self._closed = False
1784
1785 # As Controls are merged in with .merge_control(), self.attrs will
1786 # refer to each Control in turn -- always the most recently merged
1787 # control. Each merged-in Control instance corresponds to a single
1788 # list item: see ListControl.__doc__.
1789 self.items = []
1790 self._form = None
1791
1792 self._select_default = select_default
1793 self._clicked = False
1794
1795 def clear(self):
1796 self.value = []
1797
1798 def is_of_kind(self, kind):
1799 if kind == "list":
1800 return True
1801 elif kind == "multilist":
1802 return bool(self.multiple)
1803 elif kind == "singlelist":
1804 return not self.multiple
1805 else:
1806 return False
1807
1808 def get_items(self, name=None, label=None, id=None,
1809 exclude_disabled=False):
1810 """Return matching items by name or label.
1811
1812 For argument docs, see the docstring for .get()
1813
1814 """
1815 if name is not None and not isstringlike(name):
1816 raise TypeError("item name must be string-like")
1817 if label is not None and not isstringlike(label):
1818 raise TypeError("item label must be string-like")
1819 if id is not None and not isstringlike(id):
1820 raise TypeError("item id must be string-like")
1821 items = [] # order is important
1822 compat = self._form.backwards_compat
1823 for o in self.items:
1824 if exclude_disabled and o.disabled:
1825 continue
1826 if name is not None and o.name != name:
1827 continue
1828 if label is not None:
1829 for l in o.get_labels():
1830 if ((compat and l.text == label) or
1831 (not compat and l.text.find(label) > -1)):
1832 break
1833 else:
1834 continue
1835 if id is not None and o.id != id:
1836 continue
1837 items.append(o)
1838 return items
1839
1840 def get(self, name=None, label=None, id=None, nr=None,
1841 exclude_disabled=False):
1842 """Return item by name or label, disambiguating if necessary with nr.
1843
1844 All arguments must be passed by name, with the exception of 'name',
1845 which may be used as a positional argument.
1846
1847 If name is specified, then the item must have the indicated name.
1848
1849 If label is specified, then the item must have a label whose
1850 whitespace-compressed, stripped, text substring-matches the indicated
1851 label string (eg. label="please choose" will match
1852 " Do please choose an item ").
1853
1854 If id is specified, then the item must have the indicated id.
1855
1856 nr is an optional 0-based index of the items matching the query.
1857
1858 If nr is the default None value and more than item is found, raises
1859 AmbiguityError (unless the HTMLForm instance's backwards_compat
1860 attribute is true).
1861
1862 If no item is found, or if items are found but nr is specified and not
1863 found, raises ItemNotFoundError.
1864
1865 Optionally excludes disabled items.
1866
1867 """
1868 if nr is None and self._form.backwards_compat:
1869 nr = 0 # :-/
1870 items = self.get_items(name, label, id, exclude_disabled)
1871 return disambiguate(items, nr, name=name, label=label, id=id)
1872
1873 def _get(self, name, by_label=False, nr=None, exclude_disabled=False):
1874 # strictly for use by deprecated methods
1875 if by_label:
1876 name, label = None, name
1877 else:
1878 name, label = name, None
1879 return self.get(name, label, nr, exclude_disabled)
1880
1881 def toggle(self, name, by_label=False, nr=None):
1882 """Deprecated: given a name or label and optional disambiguating index
1883 nr, toggle the matching item's selection.
1884
1885 Selecting items follows the behavior described in the docstring of the
1886 'get' method.
1887
1888 if the item is disabled, or this control is disabled or readonly,
1889 raise AttributeError.
1890
1891 """
1892 deprecation(
1893 "item = control.get(...); item.selected = not item.selected")
1894 o = self._get(name, by_label, nr)
1895 self._set_selected_state(o, not o.selected)
1896
1897 def set(self, selected, name, by_label=False, nr=None):
1898 """Deprecated: given a name or label and optional disambiguating index
1899 nr, set the matching item's selection to the bool value of selected.
1900
1901 Selecting items follows the behavior described in the docstring of the
1902 'get' method.
1903
1904 if the item is disabled, or this control is disabled or readonly,
1905 raise AttributeError.
1906
1907 """
1908 deprecation(
1909 "control.get(...).selected = <boolean>")
1910 self._set_selected_state(self._get(name, by_label, nr), selected)
1911
1912 def _set_selected_state(self, item, action):
1913 # action:
1914 # bool False: off
1915 # bool True: on
1916 if self.disabled:
1917 raise AttributeError("control '%s' is disabled" % self.name)
1918 if self.readonly:
1919 raise AttributeError("control '%s' is readonly" % self.name)
1920 action == bool(action)
1921 compat = self._form.backwards_compat
1922 if not compat and item.disabled:
1923 raise AttributeError("item is disabled")
1924 else:
1925 if compat and item.disabled and action:
1926 raise AttributeError("item is disabled")
1927 if self.multiple:
1928 item.__dict__["_selected"] = action
1929 else:
1930 if not action:
1931 item.__dict__["_selected"] = False
1932 else:
1933 for o in self.items:
1934 o.__dict__["_selected"] = False
1935 item.__dict__["_selected"] = True
1936
1937 def toggle_single(self, by_label=None):
1938 """Deprecated: toggle the selection of the single item in this control.
1939
1940 Raises ItemCountError if the control does not contain only one item.
1941
1942 by_label argument is ignored, and included only for backwards
1943 compatibility.
1944
1945 """
1946 deprecation(
1947 "control.items[0].selected = not control.items[0].selected")
1948 if len(self.items) != 1:
1949 raise ItemCountError(
1950 "'%s' is not a single-item control" % self.name)
1951 item = self.items[0]
1952 self._set_selected_state(item, not item.selected)
1953
1954 def set_single(self, selected, by_label=None):
1955 """Deprecated: set the selection of the single item in this control.
1956
1957 Raises ItemCountError if the control does not contain only one item.
1958
1959 by_label argument is ignored, and included only for backwards
1960 compatibility.
1961
1962 """
1963 deprecation(
1964 "control.items[0].selected = <boolean>")
1965 if len(self.items) != 1:
1966 raise ItemCountError(
1967 "'%s' is not a single-item control" % self.name)
1968 self._set_selected_state(self.items[0], selected)
1969
1970 def get_item_disabled(self, name, by_label=False, nr=None):
1971 """Get disabled state of named list item in a ListControl."""
1972 deprecation(
1973 "control.get(...).disabled")
1974 return self._get(name, by_label, nr).disabled
1975
1976 def set_item_disabled(self, disabled, name, by_label=False, nr=None):
1977 """Set disabled state of named list item in a ListControl.
1978
1979 disabled: boolean disabled state
1980
1981 """
1982 deprecation(
1983 "control.get(...).disabled = <boolean>")
1984 self._get(name, by_label, nr).disabled = disabled
1985
1986 def set_all_items_disabled(self, disabled):
1987 """Set disabled state of all list items in a ListControl.
1988
1989 disabled: boolean disabled state
1990
1991 """
1992 for o in self.items:
1993 o.disabled = disabled
1994
1995 def get_item_attrs(self, name, by_label=False, nr=None):
1996 """Return dictionary of HTML attributes for a single ListControl item.
1997
1998 The HTML element types that describe list items are: OPTION for SELECT
1999 controls, INPUT for the rest. These elements have HTML attributes that
2000 you may occasionally want to know about -- for example, the "alt" HTML
2001 attribute gives a text string describing the item (graphical browsers
2002 usually display this as a tooltip).
2003
2004 The returned dictionary maps HTML attribute names to values. The names
2005 and values are taken from the original HTML.
2006
2007 """
2008 deprecation(
2009 "control.get(...).attrs")
2010 return self._get(name, by_label, nr).attrs
2011
2012 def close_control(self):
2013 self._closed = True
2014
2015 def add_to_form(self, form):
2016 assert self._form is None or form == self._form, (
2017 "can't add control to more than one form")
2018 self._form = form
2019 if self.name is None:
2020 # always count nameless elements as separate controls
2021 Control.add_to_form(self, form)
2022 else:
2023 for ii in range(len(form.controls)-1, -1, -1):
2024 control = form.controls[ii]
2025 if control.name == self.name and control.type == self.type:
2026 if control._closed:
2027 Control.add_to_form(self, form)
2028 else:
2029 control.merge_control(self)
2030 break
2031 else:
2032 Control.add_to_form(self, form)
2033
2034 def merge_control(self, control):
2035 assert bool(control.multiple) == bool(self.multiple)
2036 # usually, isinstance(control, self.__class__)
2037 self.items.extend(control.items)
2038
2039 def fixup(self):
2040 """
2041 ListControls are built up from component list items (which are also
2042 ListControls) during parsing. This method should be called after all
2043 items have been added. See ListControl.__doc__ for the reason this is
2044 required.
2045
2046 """
2047 # Need to set default selection where no item was indicated as being
2048 # selected by the HTML:
2049
2050 # CHECKBOX:
2051 # Nothing should be selected.
2052 # SELECT/single, SELECT/multiple and RADIO:
2053 # RFC 1866 (HTML 2.0): says first item should be selected.
2054 # W3C HTML 4.01 Specification: says that client behaviour is
2055 # undefined in this case. For RADIO, exactly one must be selected,
2056 # though which one is undefined.
2057 # Both Netscape and Microsoft Internet Explorer (IE) choose first
2058 # item for SELECT/single. However, both IE5 and Mozilla (both 1.0
2059 # and Firebird 0.6) leave all items unselected for RADIO and
2060 # SELECT/multiple.
2061
2062 # Since both Netscape and IE all choose the first item for
2063 # SELECT/single, we do the same. OTOH, both Netscape and IE
2064 # leave SELECT/multiple with nothing selected, in violation of RFC 1866
2065 # (but not in violation of the W3C HTML 4 standard); the same is true
2066 # of RADIO (which *is* in violation of the HTML 4 standard). We follow
2067 # RFC 1866 if the _select_default attribute is set, and Netscape and IE
2068 # otherwise. RFC 1866 and HTML 4 are always violated insofar as you
2069 # can deselect all items in a RadioControl.
2070
2071 for o in self.items:
2072 # set items' controls to self, now that we've merged
2073 o.__dict__["_control"] = self
2074
2075 def __getattr__(self, name):
2076 if name == "value":
2077 compat = self._form.backwards_compat
2078 if self.name is None:
2079 return []
2080 return [o.name for o in self.items if o.selected and
2081 (not o.disabled or compat)]
2082 else:
2083 raise AttributeError("%s instance has no attribute '%s'" %
2084 (self.__class__.__name__, name))
2085
2086 def __setattr__(self, name, value):
2087 if name == "value":
2088 if self.disabled:
2089 raise AttributeError("control '%s' is disabled" % self.name)
2090 if self.readonly:
2091 raise AttributeError("control '%s' is readonly" % self.name)
2092 self._set_value(value)
2093 elif name in ("name", "type", "multiple"):
2094 raise AttributeError("%s attribute is readonly" % name)
2095 else:
2096 self.__dict__[name] = value
2097
2098 def _set_value(self, value):
2099 if value is None or isstringlike(value):
2100 raise TypeError("ListControl, must set a sequence")
2101 if not value:
2102 compat = self._form.backwards_compat
2103 for o in self.items:
2104 if not o.disabled or compat:
2105 o.selected = False
2106 elif self.multiple:
2107 self._multiple_set_value(value)
2108 elif len(value) > 1:
2109 raise ItemCountError(
2110 "single selection list, must set sequence of "
2111 "length 0 or 1")
2112 else:
2113 self._single_set_value(value)
2114
2115 def _get_items(self, name, target=1):
2116 all_items = self.get_items(name)
2117 items = [o for o in all_items if not o.disabled]
2118 if len(items) < target:
2119 if len(all_items) < target:
2120 raise ItemNotFoundError(
2121 "insufficient items with name %r" % name)
2122 else:
2123 raise AttributeError(
2124 "insufficient non-disabled items with name %s" % name)
2125 on = []
2126 off = []
2127 for o in items:
2128 if o.selected:
2129 on.append(o)
2130 else:
2131 off.append(o)
2132 return on, off
2133
2134 def _single_set_value(self, value):
2135 assert len(value) == 1
2136 on, off = self._get_items(value[0])
2137 assert len(on) <= 1
2138 if not on:
2139 off[0].selected = True
2140
2141 def _multiple_set_value(self, value):
2142 compat = self._form.backwards_compat
2143 turn_on = [] # transactional-ish
2144 turn_off = [item for item in self.items if
2145 item.selected and (not item.disabled or compat)]
2146 names = {}
2147 for nn in value:
2148 if nn in names.keys():
2149 names[nn] += 1
2150 else:
2151 names[nn] = 1
2152 for name, count in names.items():
2153 on, off = self._get_items(name, count)
2154 for i in range(count):
2155 if on:
2156 item = on[0]
2157 del on[0]
2158 del turn_off[turn_off.index(item)]
2159 else:
2160 item = off[0]
2161 del off[0]
2162 turn_on.append(item)
2163 for item in turn_off:
2164 item.selected = False
2165 for item in turn_on:
2166 item.selected = True
2167
2168 def set_value_by_label(self, value):
2169 """Set the value of control by item labels.
2170
2171 value is expected to be an iterable of strings that are substrings of
2172 the item labels that should be selected. Before substring matching is
2173 performed, the original label text is whitespace-compressed
2174 (consecutive whitespace characters are converted to a single space
2175 character) and leading and trailing whitespace is stripped. Ambiguous
2176 labels are accepted without complaint if the form's backwards_compat is
2177 True; otherwise, it will not complain as long as all ambiguous labels
2178 share the same item name (e.g. OPTION value).
2179
2180 """
2181 if isstringlike(value):
2182 raise TypeError(value)
2183 if not self.multiple and len(value) > 1:
2184 raise ItemCountError(
2185 "single selection list, must set sequence of "
2186 "length 0 or 1")
2187 items = []
2188 for nn in value:
2189 found = self.get_items(label=nn)
2190 if len(found) > 1:
2191 if not self._form.backwards_compat:
2192 # ambiguous labels are fine as long as item names (e.g.
2193 # OPTION values) are same
2194 opt_name = found[0].name
2195 if [o for o in found[1:] if o.name != opt_name]:
2196 raise AmbiguityError(nn)
2197 else:
2198 # OK, we'll guess :-( Assume first available item.
2199 found = found[:1]
2200 for o in found:
2201 # For the multiple-item case, we could try to be smarter,
2202 # saving them up and trying to resolve, but that's too much.
2203 if self._form.backwards_compat or o not in items:
2204 items.append(o)
2205 break
2206 else: # all of them are used
2207 raise ItemNotFoundError(nn)
2208 # now we have all the items that should be on
2209 # let's just turn everything off and then back on.
2210 self.value = []
2211 for o in items:
2212 o.selected = True
2213
2214 def get_value_by_label(self):
2215 """Return the value of the control as given by normalized labels."""
2216 res = []
2217 compat = self._form.backwards_compat
2218 for o in self.items:
2219 if (not o.disabled or compat) and o.selected:
2220 for l in o.get_labels():
2221 if l.text:
2222 res.append(l.text)
2223 break
2224 else:
2225 res.append(None)
2226 return res
2227
2228 def possible_items(self, by_label=False):
2229 """Deprecated: return the names or labels of all possible items.
2230
2231 Includes disabled items, which may be misleading for some use cases.
2232
2233 """
2234 deprecation(
2235 "[item.name for item in self.items]")
2236 if by_label:
2237 res = []
2238 for o in self.items:
2239 for l in o.get_labels():
2240 if l.text:
2241 res.append(l.text)
2242 break
2243 else:
2244 res.append(None)
2245 return res
2246 return [o.name for o in self.items]
2247
2248 def _totally_ordered_pairs(self):
2249 if self.disabled or self.name is None:
2250 return []
2251 else:
2252 return [(o._index, self.name, o.name) for o in self.items
2253 if o.selected and not o.disabled]
2254
2255 def __str__(self):
2256 name = self.name
2257 if name is None: name = "<None>"
2258
2259 display = [str(o) for o in self.items]
2260
2261 infos = []
2262 if self.disabled: infos.append("disabled")
2263 if self.readonly: infos.append("readonly")
2264 info = ", ".join(infos)
2265 if info: info = " (%s)" % info
2266
2267 return "<%s(%s=[%s])%s>" % (self.__class__.__name__,
2268 name, ", ".join(display), info)
2269
2270
2271class RadioControl(ListControl):
2272 """
2273 Covers:
2274
2275 INPUT/RADIO
2276
2277 """
2278 def __init__(self, type, name, attrs, select_default=False, index=None):
2279 attrs.setdefault("value", "on")
2280 ListControl.__init__(self, type, name, attrs, select_default,
2281 called_as_base_class=True, index=index)
2282 self.__dict__["multiple"] = False
2283 o = Item(self, attrs, index)
2284 o.__dict__["_selected"] = attrs.has_key("checked")
2285
2286 def fixup(self):
2287 ListControl.fixup(self)
2288 found = [o for o in self.items if o.selected and not o.disabled]
2289 if not found:
2290 if self._select_default:
2291 for o in self.items:
2292 if not o.disabled:
2293 o.selected = True
2294 break
2295 else:
2296 # Ensure only one item selected. Choose the last one,
2297 # following IE and Firefox.
2298 for o in found[:-1]:
2299 o.selected = False
2300
2301 def get_labels(self):
2302 return []
2303
2304class CheckboxControl(ListControl):
2305 """
2306 Covers:
2307
2308 INPUT/CHECKBOX
2309
2310 """
2311 def __init__(self, type, name, attrs, select_default=False, index=None):
2312 attrs.setdefault("value", "on")
2313 ListControl.__init__(self, type, name, attrs, select_default,
2314 called_as_base_class=True, index=index)
2315 self.__dict__["multiple"] = True
2316 o = Item(self, attrs, index)
2317 o.__dict__["_selected"] = attrs.has_key("checked")
2318
2319 def get_labels(self):
2320 return []
2321
2322
2323class SelectControl(ListControl):
2324 """
2325 Covers:
2326
2327 SELECT (and OPTION)
2328
2329
2330 OPTION 'values', in HTML parlance, are Item 'names' in ClientForm parlance.
2331
2332 SELECT control values and labels are subject to some messy defaulting
2333 rules. For example, if the HTML representation of the control is:
2334
2335 <SELECT name=year>
2336 <OPTION value=0 label="2002">current year</OPTION>
2337 <OPTION value=1>2001</OPTION>
2338 <OPTION>2000</OPTION>
2339 </SELECT>
2340
2341 The items, in order, have labels "2002", "2001" and "2000", whereas their
2342 names (the OPTION values) are "0", "1" and "2000" respectively. Note that
2343 the value of the last OPTION in this example defaults to its contents, as
2344 specified by RFC 1866, as do the labels of the second and third OPTIONs.
2345
2346 The OPTION labels are sometimes more meaningful than the OPTION values,
2347 which can make for more maintainable code.
2348
2349 Additional read-only public attribute: attrs
2350
2351 The attrs attribute is a dictionary of the original HTML attributes of the
2352 SELECT element. Other ListControls do not have this attribute, because in
2353 other cases the control as a whole does not correspond to any single HTML
2354 element. control.get(...).attrs may be used as usual to get at the HTML
2355 attributes of the HTML elements corresponding to individual list items (for
2356 SELECT controls, these are OPTION elements).
2357
2358 Another special case is that the Item.attrs dictionaries have a special key
2359 "contents" which does not correspond to any real HTML attribute, but rather
2360 contains the contents of the OPTION element:
2361
2362 <OPTION>this bit</OPTION>
2363
2364 """
2365 # HTML attributes here are treated slightly differently from other list
2366 # controls:
2367 # -The SELECT HTML attributes dictionary is stuffed into the OPTION
2368 # HTML attributes dictionary under the "__select" key.
2369 # -The content of each OPTION element is stored under the special
2370 # "contents" key of the dictionary.
2371 # After all this, the dictionary is passed to the SelectControl constructor
2372 # as the attrs argument, as usual. However:
2373 # -The first SelectControl constructed when building up a SELECT control
2374 # has a constructor attrs argument containing only the __select key -- so
2375 # this SelectControl represents an empty SELECT control.
2376 # -Subsequent SelectControls have both OPTION HTML-attribute in attrs and
2377 # the __select dictionary containing the SELECT HTML-attributes.
2378
2379 def __init__(self, type, name, attrs, select_default=False, index=None):
2380 # fish out the SELECT HTML attributes from the OPTION HTML attributes
2381 # dictionary
2382 self.attrs = attrs["__select"].copy()
2383 self.__dict__["_label"] = _get_label(self.attrs)
2384 self.__dict__["id"] = self.attrs.get("id")
2385 self.__dict__["multiple"] = self.attrs.has_key("multiple")
2386 # the majority of the contents, label, and value dance already happened
2387 contents = attrs.get("contents")
2388 attrs = attrs.copy()
2389 del attrs["__select"]
2390
2391 ListControl.__init__(self, type, name, self.attrs, select_default,
2392 called_as_base_class=True, index=index)
2393 self.disabled = self.attrs.has_key("disabled")
2394 self.readonly = self.attrs.has_key("readonly")
2395 if attrs.has_key("value"):
2396 # otherwise it is a marker 'select started' token
2397 o = Item(self, attrs, index)
2398 o.__dict__["_selected"] = attrs.has_key("selected")
2399 # add 'label' label and contents label, if different. If both are
2400 # provided, the 'label' label is used for display in HTML
2401 # 4.0-compliant browsers (and any lower spec? not sure) while the
2402 # contents are used for display in older or less-compliant
2403 # browsers. We make label objects for both, if the values are
2404 # different.
2405 label = attrs.get("label")
2406 if label:
2407 o._labels.append(Label({"__text": label}))
2408 if contents and contents != label:
2409 o._labels.append(Label({"__text": contents}))
2410 elif contents:
2411 o._labels.append(Label({"__text": contents}))
2412
2413 def fixup(self):
2414 ListControl.fixup(self)
2415 # Firefox doesn't exclude disabled items from those considered here
2416 # (i.e. from 'found', for both branches of the if below). Note that
2417 # IE6 doesn't support the disabled attribute on OPTIONs at all.
2418 found = [o for o in self.items if o.selected]
2419 if not found:
2420 if not self.multiple or self._select_default:
2421 for o in self.items:
2422 if not o.disabled:
2423 was_disabled = self.disabled
2424 self.disabled = False
2425 try:
2426 o.selected = True
2427 finally:
2428 o.disabled = was_disabled
2429 break
2430 elif not self.multiple:
2431 # Ensure only one item selected. Choose the last one,
2432 # following IE and Firefox.
2433 for o in found[:-1]:
2434 o.selected = False
2435
2436
2437#---------------------------------------------------
2438class SubmitControl(ScalarControl):
2439 """
2440 Covers:
2441
2442 INPUT/SUBMIT
2443 BUTTON/SUBMIT
2444
2445 """
2446 def __init__(self, type, name, attrs, index=None):
2447 ScalarControl.__init__(self, type, name, attrs, index)
2448 # IE5 defaults SUBMIT value to "Submit Query"; Firebird 0.6 leaves it
2449 # blank, Konqueror 3.1 defaults to "Submit". HTML spec. doesn't seem
2450 # to define this.
2451 if self.value is None: self.value = ""
2452 self.readonly = True
2453
2454 def get_labels(self):
2455 res = []
2456 if self.value:
2457 res.append(Label({"__text": self.value}))
2458 res.extend(ScalarControl.get_labels(self))
2459 return res
2460
2461 def is_of_kind(self, kind): return kind == "clickable"
2462
2463 def _click(self, form, coord, return_type, request_class=urllib2.Request):
2464 self._clicked = coord
2465 r = form._switch_click(return_type, request_class)
2466 self._clicked = False
2467 return r
2468
2469 def _totally_ordered_pairs(self):
2470 if not self._clicked:
2471 return []
2472 return ScalarControl._totally_ordered_pairs(self)
2473
2474
2475#---------------------------------------------------
2476class ImageControl(SubmitControl):
2477 """
2478 Covers:
2479
2480 INPUT/IMAGE
2481
2482 Coordinates are specified using one of the HTMLForm.click* methods.
2483
2484 """
2485 def __init__(self, type, name, attrs, index=None):
2486 SubmitControl.__init__(self, type, name, attrs, index)
2487 self.readonly = False
2488
2489 def _totally_ordered_pairs(self):
2490 clicked = self._clicked
2491 if self.disabled or not clicked:
2492 return []
2493 name = self.name
2494 if name is None: return []
2495 pairs = [
2496 (self._index, "%s.x" % name, str(clicked[0])),
2497 (self._index+1, "%s.y" % name, str(clicked[1])),
2498 ]
2499 value = self._value
2500 if value:
2501 pairs.append((self._index+2, name, value))
2502 return pairs
2503
2504 get_labels = ScalarControl.get_labels
2505
2506# aliases, just to make str(control) and str(form) clearer
2507class PasswordControl(TextControl): pass
2508class HiddenControl(TextControl): pass
2509class TextareaControl(TextControl): pass
2510class SubmitButtonControl(SubmitControl): pass
2511
2512
2513def is_listcontrol(control): return control.is_of_kind("list")
2514
2515
2516class HTMLForm:
2517 """Represents a single HTML <form> ... </form> element.
2518
2519 A form consists of a sequence of controls that usually have names, and
2520 which can take on various values. The values of the various types of
2521 controls represent variously: text, zero-or-one-of-many or many-of-many
2522 choices, and files to be uploaded. Some controls can be clicked on to
2523 submit the form, and clickable controls' values sometimes include the
2524 coordinates of the click.
2525
2526 Forms can be filled in with data to be returned to the server, and then
2527 submitted, using the click method to generate a request object suitable for
2528 passing to urllib2.urlopen (or the click_request_data or click_pairs
2529 methods if you're not using urllib2).
2530
2531 import ClientForm
2532 forms = ClientForm.ParseFile(html, base_uri)
2533 form = forms[0]
2534
2535 form["query"] = "Python"
2536 form.find_control("nr_results").get("lots").selected = True
2537
2538 response = urllib2.urlopen(form.click())
2539
2540 Usually, HTMLForm instances are not created directly. Instead, the
2541 ParseFile or ParseResponse factory functions are used. If you do construct
2542 HTMLForm objects yourself, however, note that an HTMLForm instance is only
2543 properly initialised after the fixup method has been called (ParseFile and
2544 ParseResponse do this for you). See ListControl.__doc__ for the reason
2545 this is required.
2546
2547 Indexing a form (form["control_name"]) returns the named Control's value
2548 attribute. Assignment to a form index (form["control_name"] = something)
2549 is equivalent to assignment to the named Control's value attribute. If you
2550 need to be more specific than just supplying the control's name, use the
2551 set_value and get_value methods.
2552
2553 ListControl values are lists of item names (specifically, the names of the
2554 items that are selected and not disabled, and hence are "successful" -- ie.
2555 cause data to be returned to the server). The list item's name is the
2556 value of the corresponding HTML element's"value" attribute.
2557
2558 Example:
2559
2560 <INPUT type="CHECKBOX" name="cheeses" value="leicester"></INPUT>
2561 <INPUT type="CHECKBOX" name="cheeses" value="cheddar"></INPUT>
2562
2563 defines a CHECKBOX control with name "cheeses" which has two items, named
2564 "leicester" and "cheddar".
2565
2566 Another example:
2567
2568 <SELECT name="more_cheeses">
2569 <OPTION>1</OPTION>
2570 <OPTION value="2" label="CHEDDAR">cheddar</OPTION>
2571 </SELECT>
2572
2573 defines a SELECT control with name "more_cheeses" which has two items,
2574 named "1" and "2" (because the OPTION element's value HTML attribute
2575 defaults to the element contents -- see SelectControl.__doc__ for more on
2576 these defaulting rules).
2577
2578 To select, deselect or otherwise manipulate individual list items, use the
2579 HTMLForm.find_control() and ListControl.get() methods. To set the whole
2580 value, do as for any other control: use indexing or the set_/get_value
2581 methods.
2582
2583 Example:
2584
2585 # select *only* the item named "cheddar"
2586 form["cheeses"] = ["cheddar"]
2587 # select "cheddar", leave other items unaffected
2588 form.find_control("cheeses").get("cheddar").selected = True
2589
2590 Some controls (RADIO and SELECT without the multiple attribute) can only
2591 have zero or one items selected at a time. Some controls (CHECKBOX and
2592 SELECT with the multiple attribute) can have multiple items selected at a
2593 time. To set the whole value of a ListControl, assign a sequence to a form
2594 index:
2595
2596 form["cheeses"] = ["cheddar", "leicester"]
2597
2598 If the ListControl is not multiple-selection, the assigned list must be of
2599 length one.
2600
2601 To check if a control has an item, if an item is selected, or if an item is
2602 successful (selected and not disabled), respectively:
2603
2604 "cheddar" in [item.name for item in form.find_control("cheeses").items]
2605 "cheddar" in [item.name for item in form.find_control("cheeses").items and
2606 item.selected]
2607 "cheddar" in form["cheeses"] # (or "cheddar" in form.get_value("cheeses"))
2608
2609 Note that some list items may be disabled (see below).
2610
2611 Note the following mistake:
2612
2613 form[control_name] = control_value
2614 assert form[control_name] == control_value # not necessarily true
2615
2616 The reason for this is that form[control_name] always gives the list items
2617 in the order they were listed in the HTML.
2618
2619 List items (hence list values, too) can be referred to in terms of list
2620 item labels rather than list item names using the appropriate label
2621 arguments. Note that each item may have several labels.
2622
2623 The question of default values of OPTION contents, labels and values is
2624 somewhat complicated: see SelectControl.__doc__ and
2625 ListControl.get_item_attrs.__doc__ if you think you need to know.
2626
2627 Controls can be disabled or readonly. In either case, the control's value
2628 cannot be changed until you clear those flags (see example below).
2629 Disabled is the state typically represented by browsers by 'greying out' a
2630 control. Disabled controls are not 'successful' -- they don't cause data
2631 to get returned to the server. Readonly controls usually appear in
2632 browsers as read-only text boxes. Readonly controls are successful. List
2633 items can also be disabled. Attempts to select or deselect disabled items
2634 fail with AttributeError.
2635
2636 If a lot of controls are readonly, it can be useful to do this:
2637
2638 form.set_all_readonly(False)
2639
2640 To clear a control's value attribute, so that it is not successful (until a
2641 value is subsequently set):
2642
2643 form.clear("cheeses")
2644
2645 More examples:
2646
2647 control = form.find_control("cheeses")
2648 control.disabled = False
2649 control.readonly = False
2650 control.get("gruyere").disabled = True
2651 control.items[0].selected = True
2652
2653 See the various Control classes for further documentation. Many methods
2654 take name, type, kind, id, label and nr arguments to specify the control to
2655 be operated on: see HTMLForm.find_control.__doc__.
2656
2657 ControlNotFoundError (subclass of ValueError) is raised if the specified
2658 control can't be found. This includes occasions where a non-ListControl
2659 is found, but the method (set, for example) requires a ListControl.
2660 ItemNotFoundError (subclass of ValueError) is raised if a list item can't
2661 be found. ItemCountError (subclass of ValueError) is raised if an attempt
2662 is made to select more than one item and the control doesn't allow that, or
2663 set/get_single are called and the control contains more than one item.
2664 AttributeError is raised if a control or item is readonly or disabled and
2665 an attempt is made to alter its value.
2666
2667 Security note: Remember that any passwords you store in HTMLForm instances
2668 will be saved to disk in the clear if you pickle them (directly or
2669 indirectly). The simplest solution to this is to avoid pickling HTMLForm
2670 objects. You could also pickle before filling in any password, or just set
2671 the password to "" before pickling.
2672
2673
2674 Public attributes:
2675
2676 action: full (absolute URI) form action
2677 method: "GET" or "POST"
2678 enctype: form transfer encoding MIME type
2679 name: name of form (None if no name was specified)
2680 attrs: dictionary mapping original HTML form attributes to their values
2681
2682 controls: list of Control instances; do not alter this list
2683 (instead, call form.new_control to make a Control and add it to the
2684 form, or control.add_to_form if you already have a Control instance)
2685
2686
2687
2688 Methods for form filling:
2689 -------------------------
2690
2691 Most of the these methods have very similar arguments. See
2692 HTMLForm.find_control.__doc__ for details of the name, type, kind, label
2693 and nr arguments.
2694
2695 def find_control(self,
2696 name=None, type=None, kind=None, id=None, predicate=None,
2697 nr=None, label=None)
2698
2699 get_value(name=None, type=None, kind=None, id=None, nr=None,
2700 by_label=False, # by_label is deprecated
2701 label=None)
2702 set_value(value,
2703 name=None, type=None, kind=None, id=None, nr=None,
2704 by_label=False, # by_label is deprecated
2705 label=None)
2706
2707 clear_all()
2708 clear(name=None, type=None, kind=None, id=None, nr=None, label=None)
2709
2710 set_all_readonly(readonly)
2711
2712
2713 Method applying only to FileControls:
2714
2715 add_file(file_object,
2716 content_type="application/octet-stream", filename=None,
2717 name=None, id=None, nr=None, label=None)
2718
2719
2720 Methods applying only to clickable controls:
2721
2722 click(name=None, type=None, id=None, nr=0, coord=(1,1), label=None)
2723 click_request_data(name=None, type=None, id=None, nr=0, coord=(1,1),
2724 label=None)
2725 click_pairs(name=None, type=None, id=None, nr=0, coord=(1,1), label=None)
2726
2727 """
2728
2729 type2class = {
2730 "text": TextControl,
2731 "password": PasswordControl,
2732 "hidden": HiddenControl,
2733 "textarea": TextareaControl,
2734
2735 "isindex": IsindexControl,
2736
2737 "file": FileControl,
2738
2739 "button": IgnoreControl,
2740 "buttonbutton": IgnoreControl,
2741 "reset": IgnoreControl,
2742 "resetbutton": IgnoreControl,
2743
2744 "submit": SubmitControl,
2745 "submitbutton": SubmitButtonControl,
2746 "image": ImageControl,
2747
2748 "radio": RadioControl,
2749 "checkbox": CheckboxControl,
2750 "select": SelectControl,
2751 }
2752
2753#---------------------------------------------------
2754# Initialisation. Use ParseResponse / ParseFile instead.
2755
2756 def __init__(self, action, method="GET",
2757 enctype="application/x-www-form-urlencoded",
2758 name=None, attrs=None,
2759 request_class=urllib2.Request,
2760 forms=None, labels=None, id_to_labels=None,
2761 backwards_compat=True):
2762 """
2763 In the usual case, use ParseResponse (or ParseFile) to create new
2764 HTMLForm objects.
2765
2766 action: full (absolute URI) form action
2767 method: "GET" or "POST"
2768 enctype: form transfer encoding MIME type
2769 name: name of form
2770 attrs: dictionary mapping original HTML form attributes to their values
2771
2772 """
2773 self.action = action
2774 self.method = method
2775 self.enctype = enctype
2776 self.name = name
2777 if attrs is not None:
2778 self.attrs = attrs.copy()
2779 else:
2780 self.attrs = {}
2781 self.controls = []
2782 self._request_class = request_class
2783
2784 # these attributes are used by zope.testbrowser
2785 self._forms = forms # this is a semi-public API!
2786 self._labels = labels # this is a semi-public API!
2787 self._id_to_labels = id_to_labels # this is a semi-public API!
2788
2789 self.backwards_compat = backwards_compat # note __setattr__
2790
2791 self._urlunparse = urlparse.urlunparse
2792 self._urlparse = urlparse.urlparse
2793
2794 def __getattr__(self, name):
2795 if name == "backwards_compat":
2796 return self._backwards_compat
2797 return getattr(HTMLForm, name)
2798
2799 def __setattr__(self, name, value):
2800 # yuck
2801 if name == "backwards_compat":
2802 name = "_backwards_compat"
2803 value = bool(value)
2804 for cc in self.controls:
2805 try:
2806 items = cc.items
2807 except AttributeError:
2808 continue
2809 else:
2810 for ii in items:
2811 for ll in ii.get_labels():
2812 ll._backwards_compat = value
2813 self.__dict__[name] = value
2814
2815 def new_control(self, type, name, attrs,
2816 ignore_unknown=False, select_default=False, index=None):
2817 """Adds a new control to the form.
2818
2819 This is usually called by ParseFile and ParseResponse. Don't call it
2820 youself unless you're building your own Control instances.
2821
2822 Note that controls representing lists of items are built up from
2823 controls holding only a single list item. See ListControl.__doc__ for
2824 further information.
2825
2826 type: type of control (see Control.__doc__ for a list)
2827 attrs: HTML attributes of control
2828 ignore_unknown: if true, use a dummy Control instance for controls of
2829 unknown type; otherwise, use a TextControl
2830 select_default: for RADIO and multiple-selection SELECT controls, pick
2831 the first item as the default if no 'selected' HTML attribute is
2832 present (this defaulting happens when the HTMLForm.fixup method is
2833 called)
2834 index: index of corresponding element in HTML (see
2835 MoreFormTests.test_interspersed_controls for motivation)
2836
2837 """
2838 type = type.lower()
2839 klass = self.type2class.get(type)
2840 if klass is None:
2841 if ignore_unknown:
2842 klass = IgnoreControl
2843 else:
2844 klass = TextControl
2845
2846 a = attrs.copy()
2847 if issubclass(klass, ListControl):
2848 control = klass(type, name, a, select_default, index)
2849 else:
2850 control = klass(type, name, a, index)
2851
2852 if type == "select" and len(attrs) == 1:
2853 for ii in range(len(self.controls)-1, -1, -1):
2854 ctl = self.controls[ii]
2855 if ctl.type == "select":
2856 ctl.close_control()
2857 break
2858
2859 control.add_to_form(self)
2860 control._urlparse = self._urlparse
2861 control._urlunparse = self._urlunparse
2862
2863 def fixup(self):
2864 """Normalise form after all controls have been added.
2865
2866 This is usually called by ParseFile and ParseResponse. Don't call it
2867 youself unless you're building your own Control instances.
2868
2869 This method should only be called once, after all controls have been
2870 added to the form.
2871
2872 """
2873 for control in self.controls:
2874 control.fixup()
2875 self.backwards_compat = self._backwards_compat
2876
2877#---------------------------------------------------
2878 def __str__(self):
2879 header = "%s%s %s %s" % (
2880 (self.name and self.name+" " or ""),
2881 self.method, self.action, self.enctype)
2882 rep = [header]
2883 for control in self.controls:
2884 rep.append(" %s" % str(control))
2885 return "<%s>" % "\n".join(rep)
2886
2887#---------------------------------------------------
2888# Form-filling methods.
2889
2890 def __getitem__(self, name):
2891 return self.find_control(name).value
2892 def __contains__(self, name):
2893 return bool(self.find_control(name))
2894 def __setitem__(self, name, value):
2895 control = self.find_control(name)
2896 try:
2897 control.value = value
2898 except AttributeError, e:
2899 raise ValueError(str(e))
2900
2901 def get_value(self,
2902 name=None, type=None, kind=None, id=None, nr=None,
2903 by_label=False, # by_label is deprecated
2904 label=None):
2905 """Return value of control.
2906
2907 If only name and value arguments are supplied, equivalent to
2908
2909 form[name]
2910
2911 """
2912 if by_label:
2913 deprecation("form.get_value_by_label(...)")
2914 c = self.find_control(name, type, kind, id, label=label, nr=nr)
2915 if by_label:
2916 try:
2917 meth = c.get_value_by_label
2918 except AttributeError:
2919 raise NotImplementedError(
2920 "control '%s' does not yet support by_label" % c.name)
2921 else:
2922 return meth()
2923 else:
2924 return c.value
2925 def set_value(self, value,
2926 name=None, type=None, kind=None, id=None, nr=None,
2927 by_label=False, # by_label is deprecated
2928 label=None):
2929 """Set value of control.
2930
2931 If only name and value arguments are supplied, equivalent to
2932
2933 form[name] = value
2934
2935 """
2936 if by_label:
2937 deprecation("form.get_value_by_label(...)")
2938 c = self.find_control(name, type, kind, id, label=label, nr=nr)
2939 if by_label:
2940 try:
2941 meth = c.set_value_by_label
2942 except AttributeError:
2943 raise NotImplementedError(
2944 "control '%s' does not yet support by_label" % c.name)
2945 else:
2946 meth(value)
2947 else:
2948 c.value = value
2949 def get_value_by_label(
2950 self, name=None, type=None, kind=None, id=None, label=None, nr=None):
2951 """
2952
2953 All arguments should be passed by name.
2954
2955 """
2956 c = self.find_control(name, type, kind, id, label=label, nr=nr)
2957 return c.get_value_by_label()
2958
2959 def set_value_by_label(
2960 self, value,
2961 name=None, type=None, kind=None, id=None, label=None, nr=None):
2962 """
2963
2964 All arguments should be passed by name.
2965
2966 """
2967 c = self.find_control(name, type, kind, id, label=label, nr=nr)
2968 c.set_value_by_label(value)
2969
2970 def set_all_readonly(self, readonly):
2971 for control in self.controls:
2972 control.readonly = bool(readonly)
2973
2974 def clear_all(self):
2975 """Clear the value attributes of all controls in the form.
2976
2977 See HTMLForm.clear.__doc__.
2978
2979 """
2980 for control in self.controls:
2981 control.clear()
2982
2983 def clear(self,
2984 name=None, type=None, kind=None, id=None, nr=None, label=None):
2985 """Clear the value attribute of a control.
2986
2987 As a result, the affected control will not be successful until a value
2988 is subsequently set. AttributeError is raised on readonly controls.
2989
2990 """
2991 c = self.find_control(name, type, kind, id, label=label, nr=nr)
2992 c.clear()
2993
2994
2995#---------------------------------------------------
2996# Form-filling methods applying only to ListControls.
2997
2998 def possible_items(self, # deprecated
2999 name=None, type=None, kind=None, id=None,
3000 nr=None, by_label=False, label=None):
3001 """Return a list of all values that the specified control can take."""
3002 c = self._find_list_control(name, type, kind, id, label, nr)
3003 return c.possible_items(by_label)
3004
3005 def set(self, selected, item_name, # deprecated
3006 name=None, type=None, kind=None, id=None, nr=None,
3007 by_label=False, label=None):
3008 """Select / deselect named list item.
3009
3010 selected: boolean selected state
3011
3012 """
3013 self._find_list_control(name, type, kind, id, label, nr).set(
3014 selected, item_name, by_label)
3015 def toggle(self, item_name, # deprecated
3016 name=None, type=None, kind=None, id=None, nr=None,
3017 by_label=False, label=None):
3018 """Toggle selected state of named list item."""
3019 self._find_list_control(name, type, kind, id, label, nr).toggle(
3020 item_name, by_label)
3021
3022 def set_single(self, selected, # deprecated
3023 name=None, type=None, kind=None, id=None,
3024 nr=None, by_label=None, label=None):
3025 """Select / deselect list item in a control having only one item.
3026
3027 If the control has multiple list items, ItemCountError is raised.
3028
3029 This is just a convenience method, so you don't need to know the item's
3030 name -- the item name in these single-item controls is usually
3031 something meaningless like "1" or "on".
3032
3033 For example, if a checkbox has a single item named "on", the following
3034 two calls are equivalent:
3035
3036 control.toggle("on")
3037 control.toggle_single()
3038
3039 """ # by_label ignored and deprecated
3040 self._find_list_control(
3041 name, type, kind, id, label, nr).set_single(selected)
3042 def toggle_single(self, name=None, type=None, kind=None, id=None,
3043 nr=None, by_label=None, label=None): # deprecated
3044 """Toggle selected state of list item in control having only one item.
3045
3046 The rest is as for HTMLForm.set_single.__doc__.
3047
3048 """ # by_label ignored and deprecated
3049 self._find_list_control(name, type, kind, id, label, nr).toggle_single()
3050
3051#---------------------------------------------------
3052# Form-filling method applying only to FileControls.
3053
3054 def add_file(self, file_object, content_type=None, filename=None,
3055 name=None, id=None, nr=None, label=None):
3056 """Add a file to be uploaded.
3057
3058 file_object: file-like object (with read method) from which to read
3059 data to upload
3060 content_type: MIME content type of data to upload
3061 filename: filename to pass to server
3062
3063 If filename is None, no filename is sent to the server.
3064
3065 If content_type is None, the content type is guessed based on the
3066 filename and the data from read from the file object.
3067
3068 XXX
3069 At the moment, guessed content type is always application/octet-stream.
3070 Use sndhdr, imghdr modules. Should also try to guess HTML, XML, and
3071 plain text.
3072
3073 Note the following useful HTML attributes of file upload controls (see
3074 HTML 4.01 spec, section 17):
3075
3076 accept: comma-separated list of content types that the server will
3077 handle correctly; you can use this to filter out non-conforming files
3078 size: XXX IIRC, this is indicative of whether form wants multiple or
3079 single files
3080 maxlength: XXX hint of max content length in bytes?
3081
3082 """
3083 self.find_control(name, "file", id=id, label=label, nr=nr).add_file(
3084 file_object, content_type, filename)
3085
3086#---------------------------------------------------
3087# Form submission methods, applying only to clickable controls.
3088
3089 def click(self, name=None, type=None, id=None, nr=0, coord=(1,1),
3090 request_class=urllib2.Request,
3091 label=None):
3092 """Return request that would result from clicking on a control.
3093
3094 The request object is a urllib2.Request instance, which you can pass to
3095 urllib2.urlopen (or ClientCookie.urlopen).
3096
3097 Only some control types (INPUT/SUBMIT & BUTTON/SUBMIT buttons and
3098 IMAGEs) can be clicked.
3099
3100 Will click on the first clickable control, subject to the name, type
3101 and nr arguments (as for find_control). If no name, type, id or number
3102 is specified and there are no clickable controls, a request will be
3103 returned for the form in its current, un-clicked, state.
3104
3105 IndexError is raised if any of name, type, id or nr is specified but no
3106 matching control is found. ValueError is raised if the HTMLForm has an
3107 enctype attribute that is not recognised.
3108
3109 You can optionally specify a coordinate to click at, which only makes a
3110 difference if you clicked on an image.
3111
3112 """
3113 return self._click(name, type, id, label, nr, coord, "request",
3114 self._request_class)
3115
3116 def click_request_data(self,
3117 name=None, type=None, id=None,
3118 nr=0, coord=(1,1),
3119 request_class=urllib2.Request,
3120 label=None):
3121 """As for click method, but return a tuple (url, data, headers).
3122
3123 You can use this data to send a request to the server. This is useful
3124 if you're using httplib or urllib rather than urllib2. Otherwise, use
3125 the click method.
3126
3127 # Untested. Have to subclass to add headers, I think -- so use urllib2
3128 # instead!
3129 import urllib
3130 url, data, hdrs = form.click_request_data()
3131 r = urllib.urlopen(url, data)
3132
3133 # Untested. I don't know of any reason to use httplib -- you can get
3134 # just as much control with urllib2.
3135 import httplib, urlparse
3136 url, data, hdrs = form.click_request_data()
3137 tup = urlparse(url)
3138 host, path = tup[1], urlparse.urlunparse((None, None)+tup[2:])
3139 conn = httplib.HTTPConnection(host)
3140 if data:
3141 httplib.request("POST", path, data, hdrs)
3142 else:
3143 httplib.request("GET", path, headers=hdrs)
3144 r = conn.getresponse()
3145
3146 """
3147 return self._click(name, type, id, label, nr, coord, "request_data",
3148 self._request_class)
3149
3150 def click_pairs(self, name=None, type=None, id=None,
3151 nr=0, coord=(1,1),
3152 label=None):
3153 """As for click_request_data, but returns a list of (key, value) pairs.
3154
3155 You can use this list as an argument to ClientForm.urlencode. This is
3156 usually only useful if you're using httplib or urllib rather than
3157 urllib2 or ClientCookie. It may also be useful if you want to manually
3158 tweak the keys and/or values, but this should not be necessary.
3159 Otherwise, use the click method.
3160
3161 Note that this method is only useful for forms of MIME type
3162 x-www-form-urlencoded. In particular, it does not return the
3163 information required for file upload. If you need file upload and are
3164 not using urllib2, use click_request_data.
3165
3166 Also note that Python 2.0's urllib.urlencode is slightly broken: it
3167 only accepts a mapping, not a sequence of pairs, as an argument. This
3168 messes up any ordering in the argument. Use ClientForm.urlencode
3169 instead.
3170
3171 """
3172 return self._click(name, type, id, label, nr, coord, "pairs",
3173 self._request_class)
3174
3175#---------------------------------------------------
3176
3177 def find_control(self,
3178 name=None, type=None, kind=None, id=None,
3179 predicate=None, nr=None,
3180 label=None):
3181 """Locate and return some specific control within the form.
3182
3183 At least one of the name, type, kind, predicate and nr arguments must
3184 be supplied. If no matching control is found, ControlNotFoundError is
3185 raised.
3186
3187 If name is specified, then the control must have the indicated name.
3188
3189 If type is specified then the control must have the specified type (in
3190 addition to the types possible for <input> HTML tags: "text",
3191 "password", "hidden", "submit", "image", "button", "radio", "checkbox",
3192 "file" we also have "reset", "buttonbutton", "submitbutton",
3193 "resetbutton", "textarea", "select" and "isindex").
3194
3195 If kind is specified, then the control must fall into the specified
3196 group, each of which satisfies a particular interface. The types are
3197 "text", "list", "multilist", "singlelist", "clickable" and "file".
3198
3199 If id is specified, then the control must have the indicated id.
3200
3201 If predicate is specified, then the control must match that function.
3202 The predicate function is passed the control as its single argument,
3203 and should return a boolean value indicating whether the control
3204 matched.
3205
3206 nr, if supplied, is the sequence number of the control (where 0 is the
3207 first). Note that control 0 is the first control matching all the
3208 other arguments (if supplied); it is not necessarily the first control
3209 in the form. If no nr is supplied, AmbiguityError is raised if
3210 multiple controls match the other arguments (unless the
3211 .backwards-compat attribute is true).
3212
3213 If label is specified, then the control must have this label. Note
3214 that radio controls and checkboxes never have labels: their items do.
3215
3216 """
3217 if ((name is None) and (type is None) and (kind is None) and
3218 (id is None) and (label is None) and (predicate is None) and
3219 (nr is None)):
3220 raise ValueError(
3221 "at least one argument must be supplied to specify control")
3222 return self._find_control(name, type, kind, id, label, predicate, nr)
3223
3224#---------------------------------------------------
3225# Private methods.
3226
3227 def _find_list_control(self,
3228 name=None, type=None, kind=None, id=None,
3229 label=None, nr=None):
3230 if ((name is None) and (type is None) and (kind is None) and
3231 (id is None) and (label is None) and (nr is None)):
3232 raise ValueError(
3233 "at least one argument must be supplied to specify control")
3234
3235 return self._find_control(name, type, kind, id, label,
3236 is_listcontrol, nr)
3237
3238 def _find_control(self, name, type, kind, id, label, predicate, nr):
3239 if ((name is not None) and (name is not Missing) and
3240 not isstringlike(name)):
3241 raise TypeError("control name must be string-like")
3242 if (type is not None) and not isstringlike(type):
3243 raise TypeError("control type must be string-like")
3244 if (kind is not None) and not isstringlike(kind):
3245 raise TypeError("control kind must be string-like")
3246 if (id is not None) and not isstringlike(id):
3247 raise TypeError("control id must be string-like")
3248 if (label is not None) and not isstringlike(label):
3249 raise TypeError("control label must be string-like")
3250 if (predicate is not None) and not callable(predicate):
3251 raise TypeError("control predicate must be callable")
3252 if (nr is not None) and nr < 0:
3253 raise ValueError("control number must be a positive integer")
3254
3255 orig_nr = nr
3256 found = None
3257 ambiguous = False
3258 if nr is None and self.backwards_compat:
3259 nr = 0
3260
3261 for control in self.controls:
3262 if ((name is not None and name != control.name) and
3263 (name is not Missing or control.name is not None)):
3264 continue
3265 if type is not None and type != control.type:
3266 continue
3267 if kind is not None and not control.is_of_kind(kind):
3268 continue
3269 if id is not None and id != control.id:
3270 continue
3271 if predicate and not predicate(control):
3272 continue
3273 if label:
3274 for l in control.get_labels():
3275 if l.text.find(label) > -1:
3276 break
3277 else:
3278 continue
3279 if nr is not None:
3280 if nr == 0:
3281 return control # early exit: unambiguous due to nr
3282 nr -= 1
3283 continue
3284 if found:
3285 ambiguous = True
3286 break
3287 found = control
3288
3289 if found and not ambiguous:
3290 return found
3291
3292 description = []
3293 if name is not None: description.append("name %s" % repr(name))
3294 if type is not None: description.append("type '%s'" % type)
3295 if kind is not None: description.append("kind '%s'" % kind)
3296 if id is not None: description.append("id '%s'" % id)
3297 if label is not None: description.append("label '%s'" % label)
3298 if predicate is not None:
3299 description.append("predicate %s" % predicate)
3300 if orig_nr: description.append("nr %d" % orig_nr)
3301 description = ", ".join(description)
3302
3303 if ambiguous:
3304 raise AmbiguityError("more than one control matching "+description)
3305 elif not found:
3306 raise ControlNotFoundError("no control matching "+description)
3307 assert False
3308
3309 def _click(self, name, type, id, label, nr, coord, return_type,
3310 request_class=urllib2.Request):
3311 try:
3312 control = self._find_control(
3313 name, type, "clickable", id, label, None, nr)
3314 except ControlNotFoundError:
3315 if ((name is not None) or (type is not None) or (id is not None) or
3316 (nr != 0)):
3317 raise
3318 # no clickable controls, but no control was explicitly requested,
3319 # so return state without clicking any control
3320 return self._switch_click(return_type, request_class)
3321 else:
3322 return control._click(self, coord, return_type, request_class)
3323
3324 def _pairs(self):
3325 """Return sequence of (key, value) pairs suitable for urlencoding."""
3326 return [(k, v) for (i, k, v, c_i) in self._pairs_and_controls()]
3327
3328
3329 def _pairs_and_controls(self):
3330 """Return sequence of (index, key, value, control_index)
3331 of totally ordered pairs suitable for urlencoding.
3332
3333 control_index is the index of the control in self.controls
3334 """
3335 pairs = []
3336 for control_index in range(len(self.controls)):
3337 control = self.controls[control_index]
3338 for ii, key, val in control._totally_ordered_pairs():
3339 pairs.append((ii, key, val, control_index))
3340
3341 # stable sort by ONLY first item in tuple
3342 pairs.sort()
3343
3344 return pairs
3345
3346 def _request_data(self):
3347 """Return a tuple (url, data, headers)."""
3348 method = self.method.upper()
3349 #scheme, netloc, path, parameters, query, frag = urlparse.urlparse(self.action)
3350 parts = self._urlparse(self.action)
3351 rest, (query, frag) = parts[:-2], parts[-2:]
3352
3353 if method == "GET":
3354 if self.enctype != "application/x-www-form-urlencoded":
3355 raise ValueError(
3356 "unknown GET form encoding type '%s'" % self.enctype)
3357 parts = rest + (urlencode(self._pairs()), None)
3358 uri = self._urlunparse(parts)
3359 return uri, None, []
3360 elif method == "POST":
3361 parts = rest + (query, None)
3362 uri = self._urlunparse(parts)
3363 if self.enctype == "application/x-www-form-urlencoded":
3364 return (uri, urlencode(self._pairs()),
3365 [("Content-Type", self.enctype)])
3366 elif self.enctype == "multipart/form-data":
3367 data = StringIO()
3368 http_hdrs = []
3369 mw = MimeWriter(data, http_hdrs)
3370 f = mw.startmultipartbody("form-data", add_to_http_hdrs=True,
3371 prefix=0)
3372 for ii, k, v, control_index in self._pairs_and_controls():
3373 self.controls[control_index]._write_mime_data(mw, k, v)
3374 mw.lastpart()
3375 return uri, data.getvalue(), http_hdrs
3376 else:
3377 raise ValueError(
3378 "unknown POST form encoding type '%s'" % self.enctype)
3379 else:
3380 raise ValueError("Unknown method '%s'" % method)
3381
3382 def _switch_click(self, return_type, request_class=urllib2.Request):
3383 # This is called by HTMLForm and clickable Controls to hide switching
3384 # on return_type.
3385 if return_type == "pairs":
3386 return self._pairs()
3387 elif return_type == "request_data":
3388 return self._request_data()
3389 else:
3390 req_data = self._request_data()
3391 req = request_class(req_data[0], req_data[1])
3392 for key, val in req_data[2]:
3393 add_hdr = req.add_header
3394 if key.lower() == "content-type":
3395 try:
3396 add_hdr = req.add_unredirected_header
3397 except AttributeError:
3398 # pre-2.4 and not using ClientCookie
3399 pass
3400 add_hdr(key, val)
3401 return req
34020
=== modified file 'src/ZConfig/__init__.py'
--- src/ZConfig/__init__.py 2010-03-01 20:29:16 +0000
+++ src/ZConfig/__init__.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/cfgparser.py'
--- src/ZConfig/cfgparser.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/cfgparser.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/cmdline.py'
--- src/ZConfig/cmdline.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/cmdline.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/components/basic/mapping.py'
--- src/ZConfig/components/basic/mapping.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/components/basic/mapping.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/components/basic/tests/test_mapping.py'
--- src/ZConfig/components/basic/tests/test_mapping.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/components/basic/tests/test_mapping.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/components/logger/__init__.py'
--- src/ZConfig/components/logger/__init__.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/components/logger/__init__.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/components/logger/datatypes.py'
--- src/ZConfig/components/logger/datatypes.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/components/logger/datatypes.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.3# Copyright (c) 2002 Zope Foundation and Contributors.
4#4#
5# This software is subject to the provisions of the Zope Public License,5# This software is subject to the provisions of the Zope Public License,
6# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.6# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
77
=== modified file 'src/ZConfig/components/logger/factory.py'
--- src/ZConfig/components/logger/factory.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/components/logger/factory.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002 Zope Corporation and Contributors.3# Copyright (c) 2002 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/components/logger/handlers.py'
--- src/ZConfig/components/logger/handlers.py 2010-03-01 20:29:16 +0000
+++ src/ZConfig/components/logger/handlers.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
@@ -212,7 +212,20 @@
212 mailhost = host212 mailhost = host
213 else:213 else:
214 mailhost = host, port214 mailhost = host, port
215 kwargs = {}
216 if self.section.smtp_username and self.section.smtp_password:
217 # Since credentials were only added in py2.6 we use a kwarg to not
218 # break compatibility with older py
219 if sys.version_info < (2, 6):
220 raise ValueError('SMTP auth requires at least Python 2.6.')
221 kwargs['credentials'] = (self.section.smtp_username,
222 self.section.smtp_password)
223 elif (self.section.smtp_username or self.section.smtp_password):
224 raise ValueError(
225 'Either both smtp-username and smtp-password or none must be '
226 'given')
215 return loghandler.SMTPHandler(mailhost,227 return loghandler.SMTPHandler(mailhost,
216 self.section.fromaddr,228 self.section.fromaddr,
217 self.section.toaddrs,229 self.section.toaddrs,
218 self.section.subject)230 self.section.subject,
231 **kwargs)
219232
=== modified file 'src/ZConfig/components/logger/handlers.xml'
--- src/ZConfig/components/logger/handlers.xml 2010-03-01 20:29:16 +0000
+++ src/ZConfig/components/logger/handlers.xml 2010-07-01 19:15:41 +0000
@@ -79,6 +79,8 @@
79 <multikey name="to" required="yes" attribute="toaddrs"/>79 <multikey name="to" required="yes" attribute="toaddrs"/>
80 <key name="subject" default="Message from Zope"/>80 <key name="subject" default="Message from Zope"/>
81 <key name="smtp-server" default="localhost" datatype="inet-address"/>81 <key name="smtp-server" default="localhost" datatype="inet-address"/>
82 <key name="smtp-username" default="" datatype="string"/>
83 <key name="smtp-password" default="" datatype="string"/>
82 <key name="format"84 <key name="format"
83 default="%(asctime)s %(levelname)s %(name)s %(message)s"85 default="%(asctime)s %(levelname)s %(name)s %(message)s"
84 datatype=".log_format"/>86 datatype=".log_format"/>
8587
=== modified file 'src/ZConfig/components/logger/logger.py'
--- src/ZConfig/components/logger/logger.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/components/logger/logger.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/components/logger/loghandler.py'
--- src/ZConfig/components/logger/loghandler.py 2010-03-01 20:29:16 +0000
+++ src/ZConfig/components/logger/loghandler.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.3# Copyright (c) 2001 Zope Foundation and Contributors.
4#4#
5# This software is subject to the provisions of the Zope Public License,5# This software is subject to the provisions of the Zope Public License,
6# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.6# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
77
=== modified file 'src/ZConfig/components/logger/tests/test_logger.py'
--- src/ZConfig/components/logger/tests/test_logger.py 2010-03-01 20:29:16 +0000
+++ src/ZConfig/components/logger/tests/test_logger.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002 Zope Corporation and Contributors.3# Copyright (c) 2002 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
@@ -346,6 +346,54 @@
346 self.assertEqual(handler.fromaddr, "zlog-user@example.com")346 self.assertEqual(handler.fromaddr, "zlog-user@example.com")
347 self.assertEqual(handler.level, logging.FATAL)347 self.assertEqual(handler.level, logging.FATAL)
348348
349 def test_with_email_notifier_with_credentials(self):
350 try:
351 logger = self.check_simple_logger("<eventlog>\n"
352 " <email-notifier>\n"
353 " to sysadmin@example.com\n"
354 " from zlog-user@example.com\n"
355 " level fatal\n"
356 " smtp-username john\n"
357 " smtp-password johnpw\n"
358 " </email-notifier>\n"
359 "</eventlog>")
360 except ValueError:
361 if sys.version_info >= (2, 6):
362 # For python 2.6 no ValueError must be raised.
363 raise
364 else:
365 # This path must only be reached with python >=2.6
366 self.assert_(sys.version_info >= (2, 6))
367 handler = logger.handlers[0]
368 self.assertEqual(handler.toaddrs, ["sysadmin@example.com"])
369 self.assertEqual(handler.fromaddr, "zlog-user@example.com")
370 self.assertEqual(handler.fromaddr, "zlog-user@example.com")
371 self.assertEqual(handler.level, logging.FATAL)
372 self.assertEqual(handler.username, 'john')
373 self.assertEqual(handler.password, 'johnpw')
374
375 def test_with_email_notifier_with_invalid_credentials(self):
376 self.assertRaises(ValueError,
377 self.check_simple_logger,
378 "<eventlog>\n"
379 " <email-notifier>\n"
380 " to sysadmin@example.com\n"
381 " from zlog-user@example.com\n"
382 " level fatal\n"
383 " smtp-username john\n"
384 " </email-notifier>\n"
385 "</eventlog>")
386 self.assertRaises(ValueError,
387 self.check_simple_logger,
388 "<eventlog>\n"
389 " <email-notifier>\n"
390 " to sysadmin@example.com\n"
391 " from zlog-user@example.com\n"
392 " level fatal\n"
393 " smtp-password john\n"
394 " </email-notifier>\n"
395 "</eventlog>")
396
349 def check_simple_logger(self, text, level=logging.INFO):397 def check_simple_logger(self, text, level=logging.INFO):
350 conf = self.get_config(text)398 conf = self.get_config(text)
351 self.assert_(conf.eventlog is not None)399 self.assert_(conf.eventlog is not None)
352400
=== modified file 'src/ZConfig/datatypes.py'
--- src/ZConfig/datatypes.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/datatypes.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/info.py'
--- src/ZConfig/info.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/info.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/loader.py'
--- src/ZConfig/loader.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/loader.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
@@ -15,6 +15,7 @@
1515
16import cStringIO16import cStringIO
17import os.path17import os.path
18import re
18import sys19import sys
19import urllib20import urllib
20import urllib221import urllib2
@@ -128,14 +129,21 @@
128 url)129 url)
129 return newurl130 return newurl
130131
132 # from RFC 3986:
133 # schema = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
134 _pathsep_rx = re.compile(r"[a-zA-Z][-+.a-zA-Z0-9]*:")
135
131 def isPath(self, s):136 def isPath(self, s):
132 """Return True iff 's' should be handled as a filesystem path."""137 """Return True iff 's' should be handled as a filesystem path."""
133 if ":" in s:138 if ":" in s:
134 # XXX This assumes that one-character scheme identifiers139 # XXX This assumes that one-character scheme identifiers
135 # are always Windows drive letters; I don't know of any140 # are always Windows drive letters; I don't know of any
136 # one-character scheme identifiers.141 # one-character scheme identifiers.
137 scheme, rest = urllib.splittype(s)142 m = self._pathsep_rx.match(s)
138 return len(scheme) == 1143 if m is None:
144 return True
145 # Does it look like a drive letter?
146 return len(m.group(0)) == 2
139 else:147 else:
140 return True148 return True
141149
142150
=== modified file 'src/ZConfig/matcher.py'
--- src/ZConfig/matcher.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/matcher.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/schema.py'
--- src/ZConfig/schema.py 2010-03-01 20:29:16 +0000
+++ src/ZConfig/schema.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/schemaless.py'
--- src/ZConfig/schemaless.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/schemaless.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2007 Zope Corporation and Contributors.3# Copyright (c) 2007 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/substitution.py'
--- src/ZConfig/substitution.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/substitution.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/__init__.py'
--- src/ZConfig/tests/__init__.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/__init__.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/library/thing/__init__.py'
--- src/ZConfig/tests/library/thing/__init__.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/library/thing/__init__.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/support.py'
--- src/ZConfig/tests/support.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/support.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/test_cfgimports.py'
--- src/ZConfig/tests/test_cfgimports.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/test_cfgimports.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/test_cmdline.py'
--- src/ZConfig/tests/test_cmdline.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/test_cmdline.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2003 Zope Corporation and Contributors.3# Copyright (c) 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/test_config.py'
--- src/ZConfig/tests/test_config.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/test_config.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/test_cookbook.py'
--- src/ZConfig/tests/test_cookbook.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/test_cookbook.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2004 Zope Corporation and Contributors.3# Copyright (c) 2004 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/test_datatypes.py'
--- src/ZConfig/tests/test_datatypes.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/test_datatypes.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/test_loader.py'
--- src/ZConfig/tests/test_loader.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/test_loader.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
@@ -230,6 +230,11 @@
230 assert_(isPath(r"\abc"))230 assert_(isPath(r"\abc"))
231 assert_(isPath(r"\abc\def"))231 assert_(isPath(r"\abc\def"))
232 assert_(isPath(r"c:\abc\def"))232 assert_(isPath(r"c:\abc\def"))
233 assert_(isPath("/ab:cd"))
234 assert_(isPath(r"\ab:cd"))
235 assert_(isPath("long name with spaces"))
236 assert_(isPath("long name:with spaces"))
237 assert_(not isPath("ab:cd"))
233 assert_(not isPath("http://www.example.com/"))238 assert_(not isPath("http://www.example.com/"))
234 assert_(not isPath("http://www.example.com/sample.conf"))239 assert_(not isPath("http://www.example.com/sample.conf"))
235 assert_(not isPath("file:///etc/zope/zope.conf"))240 assert_(not isPath("file:///etc/zope/zope.conf"))
236241
=== modified file 'src/ZConfig/tests/test_readme.py'
--- src/ZConfig/tests/test_readme.py 2010-03-01 20:29:16 +0000
+++ src/ZConfig/tests/test_readme.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2009 Zope Corporation and Contributors.3# Copyright (c) 2009 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/test_schema.py'
--- src/ZConfig/tests/test_schema.py 2010-03-01 20:29:16 +0000
+++ src/ZConfig/tests/test_schema.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/test_schemaless.py'
--- src/ZConfig/tests/test_schemaless.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/test_schemaless.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2007 Zope Corporation and Contributors.3# Copyright (c) 2007 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/tests/test_subst.py'
--- src/ZConfig/tests/test_subst.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/tests/test_subst.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZConfig/url.py'
--- src/ZConfig/url.py 2009-04-23 15:12:18 +0000
+++ src/ZConfig/url.py 2010-07-01 19:15:41 +0000
@@ -1,6 +1,6 @@
1##############################################################################1##############################################################################
2#2#
3# Copyright (c) 2002, 2003 Zope Corporation and Contributors.3# Copyright (c) 2002, 2003 Zope Foundation and Contributors.
4# All Rights Reserved.4# All Rights Reserved.
5#5#
6# This software is subject to the provisions of the Zope Public License,6# This software is subject to the provisions of the Zope Public License,
77
=== modified file 'src/ZEO/cache.py'
--- src/ZEO/cache.py 2010-03-01 20:29:16 +0000
+++ src/ZEO/cache.py 2010-07-01 19:15:41 +0000
@@ -39,19 +39,19 @@
39logger = logging.getLogger("ZEO.cache")39logger = logging.getLogger("ZEO.cache")
4040
41# A disk-based cache for ZEO clients.41# A disk-based cache for ZEO clients.
42# 42#
43# This class provides an interface to a persistent, disk-based cache43# This class provides an interface to a persistent, disk-based cache
44# used by ZEO clients to store copies of database records from the44# used by ZEO clients to store copies of database records from the
45# server.45# server.
46# 46#
47# The details of the constructor as unspecified at this point.47# The details of the constructor as unspecified at this point.
48# 48#
49# Each entry in the cache is valid for a particular range of transaction49# Each entry in the cache is valid for a particular range of transaction
50# ids. The lower bound is the transaction that wrote the data. The50# ids. The lower bound is the transaction that wrote the data. The
51# upper bound is the next transaction that wrote a revision of the51# upper bound is the next transaction that wrote a revision of the
52# object. If the data is current, the upper bound is stored as None;52# object. If the data is current, the upper bound is stored as None;
53# the data is considered current until an invalidate() call is made.53# the data is considered current until an invalidate() call is made.
54# 54#
55# It is an error to call store() twice with the same object without an55# It is an error to call store() twice with the same object without an
56# intervening invalidate() to set the upper bound on the first cache56# intervening invalidate() to set the upper bound on the first cache
57# entry. Perhaps it will be necessary to have a call the removes57# entry. Perhaps it will be necessary to have a call the removes
@@ -59,12 +59,12 @@
59# entry.59# entry.
6060
61# Cache verification61# Cache verification
62# 62#
63# When the client is connected to the server, it receives63# When the client is connected to the server, it receives
64# invalidations every time an object is modified. When the client is64# invalidations every time an object is modified. When the client is
65# disconnected then reconnects, it must perform cache verification to make65# disconnected then reconnects, it must perform cache verification to make
66# sure its cached data is synchronized with the storage's current state.66# sure its cached data is synchronized with the storage's current state.
67# 67#
68# quick verification68# quick verification
69# full verification69# full verification
70#70#
@@ -206,7 +206,7 @@
206 self.f = tempfile.TemporaryFile()206 self.f = tempfile.TemporaryFile()
207 self.f.write(magic+z64)207 self.f.write(magic+z64)
208 logger.info("created temporary cache file %r", self.f.name)208 logger.info("created temporary cache file %r", self.f.name)
209 209
210 self._initfile(fsize)210 self._initfile(fsize)
211211
212 # Statistics: _n_adds, _n_added_bytes,212 # Statistics: _n_adds, _n_added_bytes,
@@ -328,7 +328,7 @@
328 seek(block_size-5, 1)328 seek(block_size-5, 1)
329 sync(self.f)329 sync(self.f)
330330
331 # There is always data to read and 331 # There is always data to read and
332 assert last and status in ' f1234'332 assert last and status in ' f1234'
333 first_free_offset = last333 first_free_offset = last
334 else:334 else:
@@ -358,7 +358,7 @@
358 except KeyError:358 except KeyError:
359 logger.error("Couldn't find non-current %r", (oid, tid))359 logger.error("Couldn't find non-current %r", (oid, tid))
360360
361 361
362 def clearStats(self):362 def clearStats(self):
363 self._n_adds = self._n_added_bytes = 0363 self._n_adds = self._n_added_bytes = 0
364 self._n_evicts = self._n_evicted_bytes = 0364 self._n_evicts = self._n_evicted_bytes = 0
@@ -471,7 +471,8 @@
471 return None471 return None
472 self.f.seek(ofs)472 self.f.seek(ofs)
473 read = self.f.read473 read = self.f.read
474 assert read(1) == 'a', (ofs, self.f.tell(), oid)474 status = read(1)
475 assert status == 'a', (ofs, self.f.tell(), oid)
475 size, saved_oid, tid, end_tid, lver, ldata = unpack(476 size, saved_oid, tid, end_tid, lver, ldata = unpack(
476 ">I8s8s8sHI", read(34))477 ">I8s8s8sHI", read(34))
477 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)478 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)
@@ -479,7 +480,10 @@
479480
480 data = read(ldata)481 data = read(ldata)
481 assert len(data) == ldata, (ofs, self.f.tell(), oid, len(data), ldata)482 assert len(data) == ldata, (ofs, self.f.tell(), oid, len(data), ldata)
482 assert read(8) == oid, (ofs, self.f.tell(), oid) 483
484 # WARNING: The following assert changes the file position.
485 # We must not depend on ths below or we'll fail in optimized mode.
486 assert read(8) == oid, (ofs, self.f.tell(), oid)
483487
484 self._n_accesses += 1488 self._n_accesses += 1
485 self._trace(0x22, oid, tid, end_tid, ldata)489 self._trace(0x22, oid, tid, end_tid, ldata)
@@ -507,7 +511,8 @@
507511
508 self.f.seek(ofs)512 self.f.seek(ofs)
509 read = self.f.read513 read = self.f.read
510 assert read(1) == 'a', (ofs, self.f.tell(), oid, before_tid)514 status = read(1)
515 assert status == 'a', (ofs, self.f.tell(), oid, before_tid)
511 size, saved_oid, saved_tid, end_tid, lver, ldata = unpack(516 size, saved_oid, saved_tid, end_tid, lver, ldata = unpack(
512 ">I8s8s8sHI", read(34))517 ">I8s8s8sHI", read(34))
513 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)518 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)
@@ -516,12 +521,15 @@
516 assert lver == 0, "Versions aren't supported"521 assert lver == 0, "Versions aren't supported"
517 data = read(ldata)522 data = read(ldata)
518 assert len(data) == ldata, (ofs, self.f.tell())523 assert len(data) == ldata, (ofs, self.f.tell())
524
525 # WARNING: The following assert changes the file position.
526 # We must not depend on ths below or we'll fail in optimized mode.
519 assert read(8) == oid, (ofs, self.f.tell(), oid)527 assert read(8) == oid, (ofs, self.f.tell(), oid)
520 528
521 if end_tid < before_tid:529 if end_tid < before_tid:
522 self._trace(0x24, oid, "", before_tid)530 self._trace(0x24, oid, "", before_tid)
523 return None531 return None
524 532
525 self._n_accesses += 1533 self._n_accesses += 1
526 self._trace(0x26, oid, "", saved_tid)534 self._trace(0x26, oid, "", saved_tid)
527 return data, saved_tid, end_tid535 return data, saved_tid, end_tid
@@ -543,7 +551,8 @@
543 if ofs:551 if ofs:
544 seek(ofs)552 seek(ofs)
545 read = self.f.read553 read = self.f.read
546 assert read(1) == 'a', (ofs, self.f.tell(), oid)554 status = read(1)
555 assert status == 'a', (ofs, self.f.tell(), oid)
547 size, saved_oid, saved_tid, end_tid = unpack(556 size, saved_oid, saved_tid, end_tid = unpack(
548 ">I8s8s8s", read(28))557 ">I8s8s8s", read(28))
549 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)558 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)
@@ -613,7 +622,7 @@
613 else:622 else:
614 self.current[oid] = ofs623 self.current[oid] = ofs
615 self._trace(0x52, oid, start_tid, dlen=len(data))624 self._trace(0x52, oid, start_tid, dlen=len(data))
616 625
617 self.currentofs += size626 self.currentofs += size
618627
619 ##628 ##
@@ -635,7 +644,7 @@
635 # to threading issues, that when applying a local644 # to threading issues, that when applying a local
636 # invalidation after a store, that later invalidations from645 # invalidation after a store, that later invalidations from
637 # the server may already have arrived.646 # the server may already have arrived.
638 647
639 @locked648 @locked
640 def invalidate(self, oid, tid, server_invalidation=True):649 def invalidate(self, oid, tid, server_invalidation=True):
641 if tid is not None:650 if tid is not None:
@@ -655,7 +664,8 @@
655664
656 self.f.seek(ofs)665 self.f.seek(ofs)
657 read = self.f.read666 read = self.f.read
658 assert read(1) == 'a', (ofs, self.f.tell(), oid)667 status = read(1)
668 assert status == 'a', (ofs, self.f.tell(), oid)
659 size, saved_oid, saved_tid, end_tid = unpack(">I8s8s8s", read(28))669 size, saved_oid, saved_tid, end_tid = unpack(">I8s8s8s", read(28))
660 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)670 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)
661 assert end_tid == z64, (ofs, self.f.tell(), oid)671 assert end_tid == z64, (ofs, self.f.tell(), oid)
@@ -685,7 +695,8 @@
685 self._lock.acquire()695 self._lock.acquire()
686 try:696 try:
687 seek(ofs)697 seek(ofs)
688 assert read(1) == 'a', (ofs, self.f.tell(), oid)698 status = read(1)
699 assert status == 'a', (ofs, self.f.tell(), oid)
689 size, saved_oid, tid, end_tid = unpack(">I8s8s8s", read(28))700 size, saved_oid, tid, end_tid = unpack(">I8s8s8s", read(28))
690 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)701 assert saved_oid == oid, (ofs, self.f.tell(), oid, saved_oid)
691 assert end_tid == z64, (ofs, self.f.tell(), oid)702 assert end_tid == z64, (ofs, self.f.tell(), oid)
@@ -750,7 +761,7 @@
750 except:761 except:
751 print `tid`, `end_tid`762 print `tid`, `end_tid`
752 raise763 raise
753 764
754 self._trace = _trace765 self._trace = _trace
755 _trace(0x00)766 _trace(0x00)
756767
757768
=== modified file 'src/ZEO/mkzeoinst.py'
--- src/ZEO/mkzeoinst.py 2009-04-23 15:12:18 +0000
+++ src/ZEO/mkzeoinst.py 2010-07-01 19:15:41 +0000
@@ -11,233 +11,15 @@
11# FOR A PARTICULAR PURPOSE.11# FOR A PARTICULAR PURPOSE.
12#12#
13##############################################################################13##############################################################################
14"""%(program)s -- create a ZEO instance.14print """
1515The mkzeoinst script is no longer supported.
16Usage: %(program)s home [port]16
1717Install the zope.mkzeoinstance package:
18Given an "instance home directory" <home> and some configuration18
19options (all of which have default values), create the following:19 http://pypi.python.org/pypi/zope.mkzeoinstance
2020
21<home>/etc/zeo.conf -- ZEO config file21and use the installed mkzeointance script that is installed by that package.
22<home>/var/ -- Directory for data files: Data.fs etc.
23<home>/log/ -- Directory for log files: zeo.log and zeoctl.log
24<home>/bin/runzeo -- the zeo server runner
25<home>/bin/zeoctl -- start/stop script (a shim for zeoctl.py)
26
27The script will not overwrite existing files; instead, it will issue a
28warning if an existing file is found that differs from the file that
29would be written if it didn't exist.
30"""22"""
3123
32# WARNING! Several templates and functions here are reused by ZRS.
33# So be careful with changes.
34
35import os
36import sys24import sys
37import stat25sys.exit(1)
38import getopt
39
40zeo_conf_template = """\
41# ZEO configuration file
42
43%%define INSTANCE %(instance_home)s
44
45<zeo>
46 address %(port)d
47 read-only false
48 invalidation-queue-size 100
49 # pid-filename $INSTANCE/var/ZEO.pid
50 # monitor-address PORT
51 # transaction-timeout SECONDS
52</zeo>
53
54<filestorage 1>
55 path $INSTANCE/var/Data.fs
56</filestorage>
57
58<eventlog>
59 level info
60 <logfile>
61 path $INSTANCE/log/zeo.log
62 </logfile>
63</eventlog>
64
65<runner>
66 program $INSTANCE/bin/runzeo
67 socket-name $INSTANCE/etc/%(package)s.zdsock
68 daemon true
69 forever false
70 backoff-limit 10
71 exit-codes 0, 2
72 directory $INSTANCE
73 default-to-interactive true
74 # user zope
75 python %(python)s
76 zdrun %(zodb3_home)s/zdaemon/zdrun.py
77
78 # This logfile should match the one in the %(package)s.conf file.
79 # It is used by zdctl's logtail command, zdrun/zdctl doesn't write it.
80 logfile $INSTANCE/log/%(package)s.log
81</runner>
82"""
83
84zeoctl_template = """\
85#!/bin/sh
86# %(PACKAGE)s instance control script
87
88# The following two lines are for chkconfig. On Red Hat Linux (and
89# some other systems), you can copy or symlink this script into
90# /etc/rc.d/init.d/ and then use chkconfig(8) to automatically start
91# %(PACKAGE)s at boot time.
92
93# chkconfig: 345 90 10
94# description: start a %(PACKAGE)s server
95
96PYTHON="%(python)s"
97INSTANCE_HOME="%(instance_home)s"
98ZODB3_HOME="%(zodb3_home)s"
99
100CONFIG_FILE="%(instance_home)s/etc/%(package)s.conf"
101
102PYTHONPATH="$ZODB3_HOME"
103export PYTHONPATH INSTANCE_HOME
104
105ZEOCTL="$ZODB3_HOME/ZEO/zeoctl.py"
106
107exec "$PYTHON" "$ZEOCTL" -C "$CONFIG_FILE" ${1+"$@"}
108"""
109
110runzeo_template = """\
111#!/bin/sh
112# %(PACKAGE)s instance start script
113
114PYTHON="%(python)s"
115INSTANCE_HOME="%(instance_home)s"
116ZODB3_HOME="%(zodb3_home)s"
117
118CONFIG_FILE="%(instance_home)s/etc/%(package)s.conf"
119
120PYTHONPATH="$ZODB3_HOME"
121export PYTHONPATH INSTANCE_HOME
122
123RUNZEO="$ZODB3_HOME/ZEO/runzeo.py"
124
125exec "$PYTHON" "$RUNZEO" -C "$CONFIG_FILE" ${1+"$@"}
126"""
127
128def main():
129 ZEOInstanceBuilder().run()
130 print "All done."
131
132class ZEOInstanceBuilder:
133 def run(self):
134 try:
135 opts, args = getopt.getopt(sys.argv[1:], "h", ["help"])
136 except getopt.error, msg:
137 print msg
138 sys.exit(2)
139 program = os.path.basename(sys.argv[0])
140 if opts:
141 # There's only the help options, so just dump some help:
142 msg = __doc__ % {"program": program}
143 print msg
144 sys.exit()
145 if len(args) not in [1, 2]:
146 print "Usage: %s home [port]" % program
147 sys.exit(2)
148
149 instance_home = args[0]
150 if not os.path.isabs(instance_home):
151 instance_home = os.path.abspath(instance_home)
152
153 for entry in sys.path:
154 if os.path.exists(os.path.join(entry, 'ZODB')):
155 zodb3_home = entry
156 break
157 else:
158 print "Can't find the Zope home (not in sys.path)"
159 sys.exit(2)
160
161 if args[1:]:
162 port = int(args[1])
163 else:
164 port = 8100 # match example in zope.conf
165
166 params = self.get_params(zodb3_home, instance_home, port)
167 self.create(instance_home, params)
168
169 def get_params(self, zodb3_home, instance_home, port):
170 return {
171 "package": "zeo",
172 "PACKAGE": "ZEO",
173 "zodb3_home": zodb3_home,
174 "instance_home": instance_home,
175 "port": port,
176 "python": sys.executable,
177 }
178
179 def create(self, home, params):
180 makedir(home)
181 makedir(home, "etc")
182 makedir(home, "var")
183 makedir(home, "log")
184 makedir(home, "bin")
185 makefile(zeo_conf_template, home, "etc", "zeo.conf", **params)
186 makexfile(zeoctl_template, home, "bin", "zeoctl", **params)
187 makexfile(runzeo_template, home, "bin", "runzeo", **params)
188
189
190def which(program):
191 strpath = os.getenv("PATH")
192 binpath = strpath.split(os.pathsep)
193 for dir in binpath:
194 path = os.path.join(dir, program)
195 if os.path.isfile(path) and os.access(path, os.X_OK):
196 if not os.path.isabs(path):
197 path = os.path.abspath(path)
198 return path
199 raise IOError("can't find %r on path %r" % (program, strpath))
200
201def makedir(*args):
202 path = ""
203 for arg in args:
204 path = os.path.join(path, arg)
205 mkdirs(path)
206 return path
207
208def mkdirs(path):
209 if os.path.isdir(path):
210 return
211 head, tail = os.path.split(path)
212 if head and tail and not os.path.isdir(head):
213 mkdirs(head)
214 os.mkdir(path)
215 print "Created directory", path
216
217def makefile(template, *args, **kwds):
218 path = makedir(*args[:-1])
219 path = os.path.join(path, args[-1])
220 data = template % kwds
221 if os.path.exists(path):
222 f = open(path)
223 olddata = f.read().strip()
224 f.close()
225 if olddata:
226 if olddata != data.strip():
227 print "Warning: not overwriting existing file %r" % path
228 return path
229 f = open(path, "w")
230 f.write(data)
231 f.close()
232 print "Wrote file", path
233 return path
234
235def makexfile(template, *args, **kwds):
236 path = makefile(template, *args, **kwds)
237 umask = os.umask(022)
238 os.umask(umask)
239 mode = 0777 & ~umask
240 if stat.S_IMODE(os.stat(path)[stat.ST_MODE]) != mode:
241 os.chmod(path, mode)
242 print "Changed mode for %s to %o" % (path, mode)
243 return path
24426
=== modified file 'src/ZEO/tests/testZEO.py'
--- src/ZEO/tests/testZEO.py 2010-03-01 20:29:16 +0000
+++ src/ZEO/tests/testZEO.py 2010-07-01 19:15:41 +0000
@@ -486,7 +486,10 @@
486 # logged486 # logged
487 self._storage._connection.handle_request('foo',0,'history',(1,2,3,4))487 self._storage._connection.handle_request('foo',0,'history',(1,2,3,4))
488 # test logging488 # test logging
489 level,message,kw = log[1]489 if __debug__:
490 level,message,kw = log[1]
491 else:
492 level,message,kw = log[0]
490 self.assertEqual(level,logging.ERROR)493 self.assertEqual(level,logging.ERROR)
491 self.failUnless(message.endswith(494 self.failUnless(message.endswith(
492 ') history() raised exception: history() takes at'495 ') history() raised exception: history() takes at'
493496
=== modified file 'src/ZODB/ConflictResolution.py'
--- src/ZODB/ConflictResolution.py 2010-03-01 20:29:16 +0000
+++ src/ZODB/ConflictResolution.py 2010-07-01 19:15:41 +0000
@@ -116,13 +116,17 @@
116 # 'm' = multi_persistent: (database_name, oid, klass)116 # 'm' = multi_persistent: (database_name, oid, klass)
117 # 'n' = multi_oid: (database_name, oid)117 # 'n' = multi_oid: (database_name, oid)
118 # 'w' = persistent weakref: (oid)118 # 'w' = persistent weakref: (oid)
119 # or persistent weakref: (oid, database_name)
119 # else it is a weakref: reference_type120 # else it is a weakref: reference_type
120 if reference_type == 'm':121 if reference_type == 'm':
121 self.database_name, self.oid, self.klass = data[1]122 self.database_name, self.oid, self.klass = data[1]
122 elif reference_type == 'n':123 elif reference_type == 'n':
123 self.database_name, self.oid = data[1]124 self.database_name, self.oid = data[1]
124 elif reference_type == 'w':125 elif reference_type == 'w':
125 self.oid, = data[1]126 try:
127 self.oid, = data[1]
128 except ValueError:
129 self.oid, self.database_name = data[1]
126 self.weak = True130 self.weak = True
127 else:131 else:
128 assert len(data) == 1, 'unknown reference format'132 assert len(data) == 1, 'unknown reference format'
129133
=== modified file 'src/ZODB/ConflictResolution.txt'
--- src/ZODB/ConflictResolution.txt 2010-03-01 20:29:16 +0000
+++ src/ZODB/ConflictResolution.txt 2010-07-01 19:15:41 +0000
@@ -474,6 +474,16 @@
474 >>> ref3.weak474 >>> ref3.weak
475 True475 True
476476
477 >>> ref3a = PersistentReference(['w', ('my_oid', 'other_db')])
478 >>> ref3a.oid
479 'my_oid'
480 >>> print ref3a.klass
481 None
482 >>> ref3a.database_name
483 'other_db'
484 >>> ref3a.weak
485 True
486
477 >>> ref4 = PersistentReference(['m', ('other_db', 'my_oid', 'my_class')])487 >>> ref4 = PersistentReference(['m', ('other_db', 'my_oid', 'my_class')])
478 >>> ref4.oid488 >>> ref4.oid
479 'my_oid'489 'my_oid'
@@ -508,7 +518,7 @@
508518
509 >>> ref1 == ref1 and ref2 == ref2 and ref4 == ref4 and ref5 == ref5519 >>> ref1 == ref1 and ref2 == ref2 and ref4 == ref4 and ref5 == ref5
510 True520 True
511 >>> ref3 == ref3 and ref6 == ref6 # weak references521 >>> ref3 == ref3 and ref3a == ref3a and ref6 == ref6 # weak references
512 True522 True
513523
514 Non-weak references with the same oid and database_name are equal.524 Non-weak references with the same oid and database_name are equal.
515525
=== modified file 'src/ZODB/Connection.py'
--- src/ZODB/Connection.py 2010-03-01 20:29:16 +0000
+++ src/ZODB/Connection.py 2010-07-01 19:15:41 +0000
@@ -13,7 +13,7 @@
13##############################################################################13##############################################################################
14"""Database connection support14"""Database connection support
1515
16$Id: Connection.py 106502 2009-12-14 19:27:08Z jim $"""16$Id: Connection.py 111314 2010-04-23 17:30:12Z jim $"""
1717
18import logging18import logging
19import sys19import sys
@@ -1143,8 +1143,9 @@
1143 self._abort()1143 self._abort()
1144 self._registered_objects = []1144 self._registered_objects = []
1145 src = self._storage1145 src = self._storage
1146 self._cache.invalidate(src.index)1146 index = src.index
1147 src.reset(*state)1147 src.reset(*state)
1148 self._cache.invalidate(index)
11481149
1149 def _commit_savepoint(self, transaction):1150 def _commit_savepoint(self, transaction):
1150 """Commit all changes made in savepoints and begin 2-phase commit1151 """Commit all changes made in savepoints and begin 2-phase commit
11511152
=== modified file 'src/ZODB/scripts/tests/test_repozo.py'
--- src/ZODB/scripts/tests/test_repozo.py 2010-03-01 20:29:16 +0000
+++ src/ZODB/scripts/tests/test_repozo.py 2010-07-01 19:15:41 +0000
@@ -1,4 +1,3 @@
1#!/usr/bin/env python
2##############################################################################1##############################################################################
3#2#
4# Copyright (c) 2004-2009 Zope Corporation and Contributors.3# Copyright (c) 2004-2009 Zope Corporation and Contributors.
@@ -12,10 +11,9 @@
12# FOR A PARTICULAR PURPOSE.11# FOR A PARTICULAR PURPOSE.
13#12#
14##############################################################################13##############################################################################
15
16import unittest14import unittest
17import os15import os
18import ZODB.tests.util16import ZODB.tests.util # layer used at class scope
1917
20_NOISY = os.environ.get('NOISY_REPOZO_TEST_OUTPUT')18_NOISY = os.environ.get('NOISY_REPOZO_TEST_OUTPUT')
2119
@@ -172,10 +170,6 @@
172170
173171
174def test_suite():172def test_suite():
175 suite = unittest.TestSuite()173 return unittest.TestSuite([
176 suite.addTest(unittest.makeSuite(RepozoTests))174 unittest.makeSuite(RepozoTests),
177 return suite175 ])
178
179
180if __name__ == '__main__':
181 unittest.main(defaultTest='test_suite')
182176
=== modified file 'src/ZODB/serialize.py'
--- src/ZODB/serialize.py 2010-03-01 20:29:16 +0000
+++ src/ZODB/serialize.py 2010-07-01 19:15:41 +0000
@@ -100,7 +100,8 @@
100 The following reference types are defined:100 The following reference types are defined:
101101
102 'w'102 'w'
103 Persistent weak reference. The arguments consist of an oid.103 Persistent weak reference. The arguments consist of an oid
104 and optionally a database name.
104105
105 The following are planned for the future:106 The following are planned for the future:
106107
@@ -298,8 +299,8 @@
298299
299 oid = obj.oid300 oid = obj.oid
300 if oid is None:301 if oid is None:
301 obj = obj() # get the referenced object302 target = obj() # get the referenced object
302 oid = obj._p_oid303 oid = target._p_oid
303 if oid is None:304 if oid is None:
304 # Here we are causing the object to be saved in305 # Here we are causing the object to be saved in
305 # the database. One could argue that we shouldn't306 # the database. One could argue that we shouldn't
@@ -308,10 +309,16 @@
308 # assume that the object will be added eventually.309 # assume that the object will be added eventually.
309310
310 oid = self._jar.new_oid()311 oid = self._jar.new_oid()
311 obj._p_jar = self._jar312 target._p_jar = self._jar
312 obj._p_oid = oid313 target._p_oid = oid
313 self._stack.append(obj)314 self._stack.append(target)
314 return ['w', (oid, )]315 obj.oid = oid
316 obj.dm = target._p_jar
317 obj.database_name = obj.dm.db().database_name
318 if obj.dm is self._jar:
319 return ['w', (oid, )]
320 else:
321 return ['w', (oid, obj.database_name)]
315322
316323
317 # Since we have an oid, we have either a persistent instance324 # Since we have an oid, we have either a persistent instance
@@ -530,10 +537,20 @@
530 loaders['m'] = load_multi_persistent537 loaders['m'] = load_multi_persistent
531538
532539
533 def load_persistent_weakref(self, oid):540 def load_persistent_weakref(self, oid, database_name=None):
534 obj = WeakRef.__new__(WeakRef)541 obj = WeakRef.__new__(WeakRef)
535 obj.oid = oid542 obj.oid = oid
536 obj.dm = self._conn543 if database_name is None:
544 obj.dm = self._conn
545 else:
546 obj.database_name = database_name
547 try:
548 obj.dm = self._conn.get_connection(database_name)
549 except KeyError:
550 # XXX Not sure what to do here. It seems wrong to
551 # fail since this is a weak reference. For now we'll
552 # just pretend that the target object has gone.
553 pass
537 return obj554 return obj
538555
539 loaders['w'] = load_persistent_weakref556 loaders['w'] = load_persistent_weakref
@@ -649,7 +666,7 @@
649 return oids666 return oids
650667
651oid_klass_loaders = {668oid_klass_loaders = {
652 'w': lambda oid: None,669 'w': lambda oid, database_name=None: None,
653 }670 }
654671
655def get_refs(a_pickle):672def get_refs(a_pickle):
656673
=== modified file 'src/ZODB/tests/testConnection.py'
--- src/ZODB/tests/testConnection.py 2010-03-01 20:29:16 +0000
+++ src/ZODB/tests/testConnection.py 2010-07-01 19:15:41 +0000
@@ -662,10 +662,26 @@
662 # sanity check662 # sanity check
663 self.assert_(cache.total_estimated_size >= 0)663 self.assert_(cache.total_estimated_size >= 0)
664664
665665 def test_cache_garbage_collection_shrinking_object(self):
666666 db = self.db
667667 # activate size based cache garbage collection
668668 db.setCacheSizeBytes(1000)
669 obj, conn, cache = self.obj, self.conn, self.conn._cache
670 # verify the change worked as expected
671 self.assertEqual(cache.cache_size_bytes, 1000)
672 # verify our entrance assumption is fullfilled
673 self.assert_(cache.total_estimated_size > 1)
674 # give the objects some size
675 obj.setValueWithSize(500)
676 transaction.savepoint()
677 self.assert_(cache.total_estimated_size > 500)
678 # make the object smaller
679 obj.setValueWithSize(100)
680 transaction.savepoint()
681 # make sure there was no overflow
682 self.assert_(cache.total_estimated_size != 0)
683 # the size is not larger than the allowed maximum
684 self.assert_(cache.total_estimated_size <= 1000)
669685
670# ---- stubs686# ---- stubs
671687
672688
=== modified file 'src/ZODB/tests/testConnectionSavepoint.py'
--- src/ZODB/tests/testConnectionSavepoint.py 2010-03-01 20:29:16 +0000
+++ src/ZODB/tests/testConnectionSavepoint.py 2010-07-01 19:15:41 +0000
@@ -13,7 +13,7 @@
13##############################################################################13##############################################################################
14"""Tests of savepoint feature14"""Tests of savepoint feature
1515
16$Id: testConnectionSavepoint.py 103082 2009-08-22 13:36:27Z jim $16$Id: testConnectionSavepoint.py 111314 2010-04-23 17:30:12Z jim $
17"""17"""
18import unittest18import unittest
19from zope.testing import doctest19from zope.testing import doctest
@@ -154,6 +154,34 @@
154 False154 False
155"""155"""
156156
157class SelfActivatingObject(persistent.Persistent):
158
159 def _p_invalidate(self):
160 super(SelfActivatingObject, self)._p_invalidate()
161 self._p_activate()
162
163def testInvalidateAfterRollback():
164 """\
165The rollback used to invalidate objects before resetting the TmpStore.
166This caused problems for custom _p_invalidate methods that would load
167the wrong state.
168
169 >>> import ZODB.tests.util
170 >>> db = ZODB.tests.util.DB()
171 >>> connection = db.open()
172 >>> root = connection.root()
173
174 >>> root['p'] = p = SelfActivatingObject()
175 >>> transaction.commit()
176 >>> p.foo = 1
177 >>> sp = transaction.savepoint()
178 >>> p.foo = 2
179 >>> sp2 = transaction.savepoint()
180 >>> sp.rollback()
181 >>> p.foo # This used to wrongly return 2
182 1
183 """
184
157def tearDown(test):185def tearDown(test):
158 transaction.abort()186 transaction.abort()
159187
160188
=== added directory 'src/Zope3.egg-info'
=== added file 'src/Zope3.egg-info/PKG-INFO'
--- src/Zope3.egg-info/PKG-INFO 1970-01-01 00:00:00 +0000
+++ src/Zope3.egg-info/PKG-INFO 2010-07-01 19:15:41 +0000
@@ -0,0 +1,10 @@
1Metadata-Version: 1.0
2Name: Zope3
3Version: 3.5dev
4Summary: Zope3
5Home-page: UNKNOWN
6Author: Zope Corporation and Contributors
7Author-email: zope-dev@zope.org
8License: UNKNOWN
9Description: UNKNOWN
10Platform: UNKNOWN
011
=== added file 'src/Zope3.egg-info/SOURCES.txt'
--- src/Zope3.egg-info/SOURCES.txt 1970-01-01 00:00:00 +0000
+++ src/Zope3.egg-info/SOURCES.txt 2010-07-01 19:15:41 +0000
@@ -0,0 +1,1924 @@
1README.txt
2setup.py
3src/BTrees/IFBTree.py
4src/BTrees/IIBTree.py
5src/BTrees/IOBTree.py
6src/BTrees/Interfaces.py
7src/BTrees/LFBTree.py
8src/BTrees/LLBTree.py
9src/BTrees/LOBTree.py
10src/BTrees/Length.py
11src/BTrees/OIBTree.py
12src/BTrees/OLBTree.py
13src/BTrees/OOBTree.py
14src/BTrees/_IFBTree.c
15src/BTrees/_IFBTree.py
16src/BTrees/_IIBTree.c
17src/BTrees/_IIBTree.py
18src/BTrees/_IOBTree.c
19src/BTrees/_IOBTree.py
20src/BTrees/_LFBTree.c
21src/BTrees/_LFBTree.py
22src/BTrees/_LLBTree.c
23src/BTrees/_LLBTree.py
24src/BTrees/_LOBTree.c
25src/BTrees/_LOBTree.py
26src/BTrees/_OIBTree.c
27src/BTrees/_OIBTree.py
28src/BTrees/_OLBTree.c
29src/BTrees/_OLBTree.py
30src/BTrees/_OOBTree.c
31src/BTrees/_OOBTree.py
32src/BTrees/__init__.py
33src/BTrees/_fsBTree.c
34src/BTrees/_fsBTree.py
35src/BTrees/check.py
36src/BTrees/fsBTree.py
37src/BTrees/tests/__init__.py
38src/BTrees/tests/testBTrees.py
39src/BTrees/tests/testBTreesUnicode.py
40src/BTrees/tests/testConflict.py
41src/BTrees/tests/testLength.py
42src/BTrees/tests/testSetOps.py
43src/BTrees/tests/test_btreesubclass.py
44src/BTrees/tests/test_check.py
45src/BTrees/tests/test_compare.py
46src/RestrictedPython/Eval.py
47src/RestrictedPython/Guards.py
48src/RestrictedPython/Limits.py
49src/RestrictedPython/MutatingWalker.py
50src/RestrictedPython/PrintCollector.py
51src/RestrictedPython/RCompile.py
52src/RestrictedPython/RestrictionMutator.py
53src/RestrictedPython/SelectCompiler.py
54src/RestrictedPython/Utilities.py
55src/RestrictedPython/__init__.py
56src/RestrictedPython/tests/__init__.py
57src/RestrictedPython/tests/before_and_after.py
58src/RestrictedPython/tests/before_and_after24.py
59src/RestrictedPython/tests/before_and_after25.py
60src/RestrictedPython/tests/before_and_after26.py
61src/RestrictedPython/tests/class.py
62src/RestrictedPython/tests/lambda.py
63src/RestrictedPython/tests/restricted_module.py
64src/RestrictedPython/tests/security_in_syntax.py
65src/RestrictedPython/tests/security_in_syntax26.py
66src/RestrictedPython/tests/testCompile.py
67src/RestrictedPython/tests/testREADME.py
68src/RestrictedPython/tests/testRestrictions.py
69src/RestrictedPython/tests/testUtiliities.py
70src/RestrictedPython/tests/unpack.py
71src/RestrictedPython/tests/verify.py
72src/ZConfig/__init__.py
73src/ZConfig/cfgparser.py
74src/ZConfig/cmdline.py
75src/ZConfig/datatypes.py
76src/ZConfig/info.py
77src/ZConfig/loader.py
78src/ZConfig/matcher.py
79src/ZConfig/schema.py
80src/ZConfig/schemaless.py
81src/ZConfig/substitution.py
82src/ZConfig/url.py
83src/ZConfig/components/__init__.py
84src/ZConfig/components/basic/__init__.py
85src/ZConfig/components/basic/mapping.py
86src/ZConfig/components/basic/tests/__init__.py
87src/ZConfig/components/basic/tests/test_mapping.py
88src/ZConfig/components/logger/__init__.py
89src/ZConfig/components/logger/datatypes.py
90src/ZConfig/components/logger/factory.py
91src/ZConfig/components/logger/handlers.py
92src/ZConfig/components/logger/logger.py
93src/ZConfig/components/logger/loghandler.py
94src/ZConfig/components/logger/tests/__init__.py
95src/ZConfig/components/logger/tests/test_logger.py
96src/ZConfig/tests/__init__.py
97src/ZConfig/tests/support.py
98src/ZConfig/tests/test_cfgimports.py
99src/ZConfig/tests/test_cmdline.py
100src/ZConfig/tests/test_config.py
101src/ZConfig/tests/test_cookbook.py
102src/ZConfig/tests/test_datatypes.py
103src/ZConfig/tests/test_loader.py
104src/ZConfig/tests/test_readme.py
105src/ZConfig/tests/test_schema.py
106src/ZConfig/tests/test_schemaless.py
107src/ZConfig/tests/test_subst.py
108src/ZConfig/tests/library/__init__.py
109src/ZConfig/tests/library/thing/__init__.py
110src/ZConfig/tests/library/widget/__init__.py
111src/ZEO/ClientStorage.py
112src/ZEO/CommitLog.py
113src/ZEO/Exceptions.py
114src/ZEO/ServerStub.py
115src/ZEO/StorageServer.py
116src/ZEO/TransactionBuffer.py
117src/ZEO/__init__.py
118src/ZEO/cache.py
119src/ZEO/hash.py
120src/ZEO/interfaces.py
121src/ZEO/mkzeoinst.py
122src/ZEO/monitor.py
123src/ZEO/runzeo.py
124src/ZEO/util.py
125src/ZEO/zeoctl.py
126src/ZEO/zeopasswd.py
127src/ZEO/auth/__init__.py
128src/ZEO/auth/auth_digest.py
129src/ZEO/auth/base.py
130src/ZEO/auth/hmac.py
131src/ZEO/scripts/__init__.py
132src/ZEO/scripts/parsezeolog.py
133src/ZEO/scripts/tests.py
134src/ZEO/scripts/timeout.py
135src/ZEO/scripts/zeopack.py
136src/ZEO/scripts/zeoqueue.py
137src/ZEO/scripts/zeoreplay.py
138src/ZEO/scripts/zeoserverlog.py
139src/ZEO/scripts/zeoup.py
140src/ZEO/tests/Cache.py
141src/ZEO/tests/CommitLockTests.py
142src/ZEO/tests/ConnectionTests.py
143src/ZEO/tests/InvalidationTests.py
144src/ZEO/tests/IterationTests.py
145src/ZEO/tests/TestThread.py
146src/ZEO/tests/ThreadTests.py
147src/ZEO/tests/__init__.py
148src/ZEO/tests/auth_plaintext.py
149src/ZEO/tests/deadlock.py
150src/ZEO/tests/forker.py
151src/ZEO/tests/servertesting.py
152src/ZEO/tests/speed.py
153src/ZEO/tests/stress.py
154src/ZEO/tests/testAuth.py
155src/ZEO/tests/testConnection.py
156src/ZEO/tests/testConversionSupport.py
157src/ZEO/tests/testMonitor.py
158src/ZEO/tests/testTransactionBuffer.py
159src/ZEO/tests/testZEO.py
160src/ZEO/tests/testZEO2.py
161src/ZEO/tests/testZEOOptions.py
162src/ZEO/tests/test_cache.py
163src/ZEO/tests/zeoserver.py
164src/ZEO/zrpc/__init__.py
165src/ZEO/zrpc/_hmac.py
166src/ZEO/zrpc/client.py
167src/ZEO/zrpc/connection.py
168src/ZEO/zrpc/error.py
169src/ZEO/zrpc/log.py
170src/ZEO/zrpc/marshal.py
171src/ZEO/zrpc/server.py
172src/ZEO/zrpc/smac.py
173src/ZEO/zrpc/trigger.py
174src/ZODB/ActivityMonitor.py
175src/ZODB/BaseStorage.py
176src/ZODB/ConflictResolution.py
177src/ZODB/Connection.py
178src/ZODB/DB.py
179src/ZODB/DemoStorage.py
180src/ZODB/ExportImport.py
181src/ZODB/MappingStorage.py
182src/ZODB/POSException.py
183src/ZODB/UndoLogCompatible.py
184src/ZODB/__init__.py
185src/ZODB/blob.py
186src/ZODB/broken.py
187src/ZODB/config.py
188src/ZODB/conversionhack.py
189src/ZODB/dbmStorage.py
190src/ZODB/fsIndex.py
191src/ZODB/fsrecover.py
192src/ZODB/fstools.py
193src/ZODB/interfaces.py
194src/ZODB/loglevels.py
195src/ZODB/persistentclass.py
196src/ZODB/serialize.py
197src/ZODB/transact.py
198src/ZODB/utils.py
199src/ZODB/FileStorage/FileStorage.py
200src/ZODB/FileStorage/__init__.py
201src/ZODB/FileStorage/format.py
202src/ZODB/FileStorage/fsdump.py
203src/ZODB/FileStorage/fsoids.py
204src/ZODB/FileStorage/fspack.py
205src/ZODB/FileStorage/interfaces.py
206src/ZODB/FileStorage/tests.py
207src/ZODB/scripts/__init__.py
208src/ZODB/scripts/analyze.py
209src/ZODB/scripts/checkbtrees.py
210src/ZODB/scripts/fsoids.py
211src/ZODB/scripts/fsrefs.py
212src/ZODB/scripts/fsstats.py
213src/ZODB/scripts/fstail.py
214src/ZODB/scripts/fstest.py
215src/ZODB/scripts/migrate.py
216src/ZODB/scripts/migrateblobs.py
217src/ZODB/scripts/netspace.py
218src/ZODB/scripts/referrers.py
219src/ZODB/scripts/repozo.py
220src/ZODB/scripts/simul.py
221src/ZODB/scripts/space.py
222src/ZODB/scripts/stats.py
223src/ZODB/scripts/zodbload.py
224src/ZODB/scripts/tests/__init__.py
225src/ZODB/scripts/tests/test_doc.py
226src/ZODB/scripts/tests/test_repozo.py
227src/ZODB/tests/BasicStorage.py
228src/ZODB/tests/ConflictResolution.py
229src/ZODB/tests/Corruption.py
230src/ZODB/tests/HistoryStorage.py
231src/ZODB/tests/IteratorStorage.py
232src/ZODB/tests/MTStorage.py
233src/ZODB/tests/MVCCMappingStorage.py
234src/ZODB/tests/MinPO.py
235src/ZODB/tests/PackableStorage.py
236src/ZODB/tests/PersistentStorage.py
237src/ZODB/tests/ReadOnlyStorage.py
238src/ZODB/tests/RecoveryStorage.py
239src/ZODB/tests/RevisionStorage.py
240src/ZODB/tests/StorageTestBase.py
241src/ZODB/tests/Synchronization.py
242src/ZODB/tests/TransactionalUndoStorage.py
243src/ZODB/tests/__init__.py
244src/ZODB/tests/dangle.py
245src/ZODB/tests/loggingsupport.py
246src/ZODB/tests/sampledm.py
247src/ZODB/tests/speed.py
248src/ZODB/tests/testActivityMonitor.py
249src/ZODB/tests/testBroken.py
250src/ZODB/tests/testCache.py
251src/ZODB/tests/testConfig.py
252src/ZODB/tests/testConnection.py
253src/ZODB/tests/testConnectionSavepoint.py
254src/ZODB/tests/testDB.py
255src/ZODB/tests/testDemoStorage.py
256src/ZODB/tests/testFileStorage.py
257src/ZODB/tests/testMVCCMappingStorage.py
258src/ZODB/tests/testMappingStorage.py
259src/ZODB/tests/testPersistentList.py
260src/ZODB/tests/testPersistentMapping.py
261src/ZODB/tests/testRecover.py
262src/ZODB/tests/testSerialize.py
263src/ZODB/tests/testTimeStamp.py
264src/ZODB/tests/testUtils.py
265src/ZODB/tests/testZODB.py
266src/ZODB/tests/test_cache.py
267src/ZODB/tests/test_datamanageradapter.py
268src/ZODB/tests/test_doctest_files.py
269src/ZODB/tests/test_fsdump.py
270src/ZODB/tests/test_storage.py
271src/ZODB/tests/testblob.py
272src/ZODB/tests/testconflictresolution.py
273src/ZODB/tests/testcrossdatabasereferences.py
274src/ZODB/tests/testfsIndex.py
275src/ZODB/tests/testfsoids.py
276src/ZODB/tests/testhistoricalconnections.py
277src/ZODB/tests/testmvcc.py
278src/ZODB/tests/testpersistentclass.py
279src/ZODB/tests/util.py
280src/ZODB/tests/warnhook.py
281src/Zope3.egg-info/PKG-INFO
282src/Zope3.egg-info/SOURCES.txt
283src/Zope3.egg-info/dependency_links.txt
284src/Zope3.egg-info/namespace_packages.txt
285src/Zope3.egg-info/not-zip-safe
286src/Zope3.egg-info/top_level.txt
287src/docutils/__init__.py
288src/docutils/_compat.py
289src/docutils/_string_template_compat.py
290src/docutils/core.py
291src/docutils/examples.py
292src/docutils/frontend.py
293src/docutils/io.py
294src/docutils/nodes.py
295src/docutils/statemachine.py
296src/docutils/urischemes.py
297src/docutils/utils.py
298src/docutils/languages/__init__.py
299src/docutils/languages/af.py
300src/docutils/languages/ca.py
301src/docutils/languages/cs.py
302src/docutils/languages/de.py
303src/docutils/languages/en.py
304src/docutils/languages/eo.py
305src/docutils/languages/es.py
306src/docutils/languages/fi.py
307src/docutils/languages/fr.py
308src/docutils/languages/gl.py
309src/docutils/languages/he.py
310src/docutils/languages/it.py
311src/docutils/languages/ja.py
312src/docutils/languages/nl.py
313src/docutils/languages/pl.py
314src/docutils/languages/pt_br.py
315src/docutils/languages/ru.py
316src/docutils/languages/sk.py
317src/docutils/languages/sv.py
318src/docutils/languages/zh_cn.py
319src/docutils/languages/zh_tw.py
320src/docutils/parsers/__init__.py
321src/docutils/parsers/null.py
322src/docutils/parsers/rst/__init__.py
323src/docutils/parsers/rst/roles.py
324src/docutils/parsers/rst/states.py
325src/docutils/parsers/rst/tableparser.py
326src/docutils/parsers/rst/directives/__init__.py
327src/docutils/parsers/rst/directives/admonitions.py
328src/docutils/parsers/rst/directives/body.py
329src/docutils/parsers/rst/directives/html.py
330src/docutils/parsers/rst/directives/images.py
331src/docutils/parsers/rst/directives/misc.py
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: