[Erp5-report] r40971 nicolas - in /erp5/trunk/products/ERP5: ./ Document/ Tool/ bootstrap/e...
nobody at svn.erp5.org
nobody at svn.erp5.org
Wed Dec 1 15:53:24 CET 2010
Author: nicolas
Date: Wed Dec 1 15:53:24 2010
New Revision: 40971
URL: http://svn.erp5.org?rev=40971&view=rev
Log:
Refactoring of DMS.
- file_name become filename
- filename values are not stored in source_reference
Contribution Tool will not honour id arguments.
Contribution Tool can create any kind of document.
Portal Contribution Registry can read extention, content_type and read content_type from data
to guess what will be the best Portal Type to use.
All discoverable methods (IDiscoverable) can change the portal_type of document.
(migratePortalType)
User can change portal_type of document through UI with simple Action.
Crawling will not hardcode ids of document depending of their URLs thanks to
Portal Url Registry
Added:
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/spreadsheet_by_content.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/text_by_conent_type.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/text_by_content.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/web_page_by_content.xml
erp5/trunk/products/ERP5/interfaces/discoverable.py
erp5/trunk/products/ERP5/interfaces/url.py
erp5/trunk/products/ERP5/interfaces/url_registry_tool.py
erp5/trunk/products/ERP5/mixin/discoverable.py
erp5/trunk/products/ERP5/tests/testWebCrawler.py
Modified:
erp5/trunk/products/ERP5/Document/Document.py
erp5/trunk/products/ERP5/Document/PDFDocument.py
erp5/trunk/products/ERP5/Document/TextDocument.py
erp5/trunk/products/ERP5/Tool/ContributionRegistryTool.py
erp5/trunk/products/ERP5/Tool/ContributionTool.py
erp5/trunk/products/ERP5/__init__.py
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/drawing_extension.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/image_extension.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/pdf_extension.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/pdf_mimetype.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/presentation_extension.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/spreadsheet_extension.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/text_extension.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/webpage_extension.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/webpage_mimetype.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_preferences/default_site_preference.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Base_download.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ContributionPredicate_view/my_criterion_property_list.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ContributionRegistryTool_viewContributionPredicateList/listbox.xml
erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision
erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/template_path_list
erp5/trunk/products/ERP5/interfaces/document.py
erp5/trunk/products/ERP5/interfaces/downloadable.py
erp5/trunk/products/ERP5/mixin/cached_convertable.py
erp5/trunk/products/ERP5/mixin/crawlable.py
erp5/trunk/products/ERP5/mixin/downloadable.py
erp5/trunk/products/ERP5/tests/testBase.py
erp5/trunk/products/ERP5/tests/testCRM.py
erp5/trunk/products/ERP5/tests/testContributionRegistryTool.py
erp5/trunk/products/ERP5/tests/testERP5WebWithDms.py
[This mail would be too long, it was shortened to contain the URLs only.]
Modified: erp5/trunk/products/ERP5/Document/Document.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Document.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/Document/PDFDocument.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/PDFDocument.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/Document/TextDocument.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/TextDocument.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/Tool/ContributionRegistryTool.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Tool/ContributionRegistryTool.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/Tool/ContributionTool.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Tool/ContributionTool.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/__init__.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/__init__.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/drawing_extension.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/drawing_extension.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/image_extension.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/image_extension.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/pdf_extension.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/pdf_extension.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/pdf_mimetype.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/pdf_mimetype.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/presentation_extension.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/presentation_extension.xml?rev=40971&r1=40970&r2=40971&view=diff
Added: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/spreadsheet_by_content.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/spreadsheet_by_content.xml?rev=40971&view=auto
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/spreadsheet_extension.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/spreadsheet_extension.xml?rev=40971&r1=40970&r2=40971&view=diff
Added: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/text_by_conent_type.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/text_by_conent_type.xml?rev=40971&view=auto
Added: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/text_by_content.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/text_by_content.xml?rev=40971&view=auto
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/text_extension.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/text_extension.xml?rev=40971&r1=40970&r2=40971&view=diff
Added: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/web_page_by_content.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/web_page_by_content.xml?rev=40971&view=auto
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/webpage_extension.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/webpage_extension.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/webpage_mimetype.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_contribution_registry/webpage_mimetype.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_preferences/default_site_preference.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/PathTemplateItem/portal_preferences/default_site_preference.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Base_download.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/Base_download.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ContributionPredicate_view/my_criterion_property_list.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ContributionPredicate_view/my_criterion_property_list.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ContributionRegistryTool_viewContributionPredicateList/listbox.xml
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/ContributionRegistryTool_viewContributionPredicateList/listbox.xml?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/revision?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/template_path_list
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/bootstrap/erp5_core/bt/template_path_list?rev=40971&r1=40970&r2=40971&view=diff
Added: erp5/trunk/products/ERP5/interfaces/discoverable.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/discoverable.py?rev=40971&view=auto
Modified: erp5/trunk/products/ERP5/interfaces/document.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/document.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/interfaces/downloadable.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/downloadable.py?rev=40971&r1=40970&r2=40971&view=diff
Added: erp5/trunk/products/ERP5/interfaces/url.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/url.py?rev=40971&view=auto
Added: erp5/trunk/products/ERP5/interfaces/url_registry_tool.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/url_registry_tool.py?rev=40971&view=auto
Modified: erp5/trunk/products/ERP5/mixin/cached_convertable.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/mixin/cached_convertable.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/mixin/crawlable.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/mixin/crawlable.py?rev=40971&r1=40970&r2=40971&view=diff
Added: erp5/trunk/products/ERP5/mixin/discoverable.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/mixin/discoverable.py?rev=40971&view=auto
Modified: erp5/trunk/products/ERP5/mixin/downloadable.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/mixin/downloadable.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/tests/testBase.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testBase.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/tests/testCRM.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testCRM.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/tests/testContributionRegistryTool.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testContributionRegistryTool.py?rev=40971&r1=40970&r2=40971&view=diff
Modified: erp5/trunk/products/ERP5/tests/testERP5WebWithDms.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testERP5WebWithDms.py?rev=40971&r1=40970&r2=40971&view=diff
Added: erp5/trunk/products/ERP5/tests/testWebCrawler.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testWebCrawler.py?rev=40971&view=auto
More information about the Erp5-report
mailing list