Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Romain Courteaud
erp5
Commits
832947e2
Commit
832947e2
authored
Mar 16, 2020
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5: fix duplicate discoverable interface
it seems
de2545fc
was supposed to be a rename.
parent
d165e196
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
98 deletions
+1
-98
product/ERP5/interfaces/discoverable.py
product/ERP5/interfaces/discoverable.py
+1
-1
product/ERP5/interfaces/metadata_discoverable.py
product/ERP5/interfaces/metadata_discoverable.py
+0
-97
No files found.
product/ERP5/interfaces/discoverable.py
View file @
832947e2
...
...
@@ -33,7 +33,7 @@ class IDiscoverable(Interface):
"""
Discoverable interface specification
Documents which implement I
Metadata
Discoverable provides
Documents which implement IDiscoverable provides
methods to discover and update metadata properties
from content, user input, file name, etc.
"""
...
...
product/ERP5/interfaces/metadata_discoverable.py
deleted
100644 → 0
View file @
d165e196
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2009 Nexedi SA and Contributors. All Rights Reserved.
# Jean-Paul Smets-Solanes <jp@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from
zope.interface
import
Interface
class
IMetadataDiscoverable
(
Interface
):
"""
Metadata Discoverable interface specification
Documents which implement IMetadataDiscoverable provides
methods to discover and update metadata properties
from content, user input, file name, etc.
"""
def
getContentInformation
():
"""
Returns a dictionnary of possible metadata which can be extracted from the
document content (ex. title from an HTML file, creation date from a PDF
document, etc.)
"""
def
getPropertyDictFromUserLogin
(
user_login
=
None
):
"""
Based on the user_login, find out all properties which
can be discovered to later update document metadata.
user_login -- optional user login ID
"""
def
getPropertyDictFromContent
():
"""
Based on the result of getContentInformation, find out all
properties which can be discovered to later update document metadata.
"""
def
getPropertyDictFromFileName
(
file_name
):
"""
Based on the file name, find out all properties which
can be discovered to later update document metadata.
file_name -- file name to use in discovery process
"""
def
getPropertyDictFromInput
():
"""
Based on the user input, find out all properties which
can be discovered to later update document metadata.
"""
def
discoverMetadata
(
file_name
=
None
,
user_login
=
None
):
"""
Updates the document metadata by discovering metadata from
the user login, the document content, the file name and the
user input. The order of discovery should be set in system
preferences.
file_name - optionnal file name (ex. AA-BBB-CCC-223-en.doc)
user_login -- optional user login ID
XXX - it is unclear if this method should also trigger finishIngestion
and whether this should be documented here or not
"""
def
finishIngestion
():
"""
Finish the ingestion process (ex. allocate a reference number automatically if
no reference was defined.)
XXX - it is unclear if this method should be part of the interface
"""
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment