mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-26 18:38:41 -06:00
Remove invalid docstrings
This commit is contained in:
parent
0bf03f948d
commit
39901ada9e
85
external_file_location/.ropeproject/config.py
Normal file
85
external_file_location/.ropeproject/config.py
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
# The default ``config.py``
|
||||||
|
|
||||||
|
|
||||||
|
def set_prefs(prefs):
|
||||||
|
"""This function is called before opening the project"""
|
||||||
|
|
||||||
|
# Specify which files and folders to ignore in the project.
|
||||||
|
# Changes to ignored resources are not added to the history and
|
||||||
|
# VCSs. Also they are not returned in `Project.get_files()`.
|
||||||
|
# Note that ``?`` and ``*`` match all characters but slashes.
|
||||||
|
# '*.pyc': matches 'test.pyc' and 'pkg/test.pyc'
|
||||||
|
# 'mod*.pyc': matches 'test/mod1.pyc' but not 'mod/1.pyc'
|
||||||
|
# '.svn': matches 'pkg/.svn' and all of its children
|
||||||
|
# 'build/*.o': matches 'build/lib.o' but not 'build/sub/lib.o'
|
||||||
|
# 'build//*.o': matches 'build/lib.o' and 'build/sub/lib.o'
|
||||||
|
prefs['ignored_resources'] = ['*.pyc', '*~', '.ropeproject',
|
||||||
|
'.hg', '.svn', '_svn', '.git']
|
||||||
|
|
||||||
|
# Specifies which files should be considered python files. It is
|
||||||
|
# useful when you have scripts inside your project. Only files
|
||||||
|
# ending with ``.py`` are considered to be python files by
|
||||||
|
# default.
|
||||||
|
#prefs['python_files'] = ['*.py']
|
||||||
|
|
||||||
|
# Custom source folders: By default rope searches the project
|
||||||
|
# for finding source folders (folders that should be searched
|
||||||
|
# for finding modules). You can add paths to that list. Note
|
||||||
|
# that rope guesses project source folders correctly most of the
|
||||||
|
# time; use this if you have any problems.
|
||||||
|
# The folders should be relative to project root and use '/' for
|
||||||
|
# separating folders regardless of the platform rope is running on.
|
||||||
|
# 'src/my_source_folder' for instance.
|
||||||
|
#prefs.add('source_folders', 'src')
|
||||||
|
|
||||||
|
# You can extend python path for looking up modules
|
||||||
|
#prefs.add('python_path', '~/python/')
|
||||||
|
|
||||||
|
# Should rope save object information or not.
|
||||||
|
prefs['save_objectdb'] = True
|
||||||
|
prefs['compress_objectdb'] = False
|
||||||
|
|
||||||
|
# If `True`, rope analyzes each module when it is being saved.
|
||||||
|
prefs['automatic_soa'] = True
|
||||||
|
# The depth of calls to follow in static object analysis
|
||||||
|
prefs['soa_followed_calls'] = 0
|
||||||
|
|
||||||
|
# If `False` when running modules or unit tests "dynamic object
|
||||||
|
# analysis" is turned off. This makes them much faster.
|
||||||
|
prefs['perform_doa'] = True
|
||||||
|
|
||||||
|
# Rope can check the validity of its object DB when running.
|
||||||
|
prefs['validate_objectdb'] = True
|
||||||
|
|
||||||
|
# How many undos to hold?
|
||||||
|
prefs['max_history_items'] = 32
|
||||||
|
|
||||||
|
# Shows whether to save history across sessions.
|
||||||
|
prefs['save_history'] = True
|
||||||
|
prefs['compress_history'] = False
|
||||||
|
|
||||||
|
# Set the number spaces used for indenting. According to
|
||||||
|
# :PEP:`8`, it is best to use 4 spaces. Since most of rope's
|
||||||
|
# unit-tests use 4 spaces it is more reliable, too.
|
||||||
|
prefs['indent_size'] = 4
|
||||||
|
|
||||||
|
# Builtin and c-extension modules that are allowed to be imported
|
||||||
|
# and inspected by rope.
|
||||||
|
prefs['extension_modules'] = []
|
||||||
|
|
||||||
|
# Add all standard c-extensions to extension_modules list.
|
||||||
|
prefs['import_dynload_stdmods'] = True
|
||||||
|
|
||||||
|
# If `True` modules with syntax errors are considered to be empty.
|
||||||
|
# The default value is `False`; When `False` syntax errors raise
|
||||||
|
# `rope.base.exceptions.ModuleSyntaxError` exception.
|
||||||
|
prefs['ignore_syntax_errors'] = False
|
||||||
|
|
||||||
|
# If `True`, rope ignores unresolvable imports. Otherwise, they
|
||||||
|
# appear in the importing namespace.
|
||||||
|
prefs['ignore_bad_imports'] = False
|
||||||
|
|
||||||
|
|
||||||
|
def project_opened(project):
|
||||||
|
"""This function is called after opening the project"""
|
||||||
|
# Do whatever you like here!
|
BIN
external_file_location/.ropeproject/globalnames
Normal file
BIN
external_file_location/.ropeproject/globalnames
Normal file
Binary file not shown.
1
external_file_location/.ropeproject/history
Normal file
1
external_file_location/.ropeproject/history
Normal file
@ -0,0 +1 @@
|
|||||||
|
€]q(]q]qe.
|
1
external_file_location/.ropeproject/objectdb
Normal file
1
external_file_location/.ropeproject/objectdb
Normal file
@ -0,0 +1 @@
|
|||||||
|
<EFBFBD>}q.
|
@ -62,14 +62,14 @@ class AbstractFSTask(AbstractTask):
|
|||||||
return os.path.join(download_directory, file_name)
|
return os.path.join(download_directory, file_name)
|
||||||
|
|
||||||
def _move_file(self, fs_conn, source, target):
|
def _move_file(self, fs_conn, source, target):
|
||||||
"""Moves a file on the FTP server"""
|
"""Moves a file on the server"""
|
||||||
_logger.info('Moving file %s %s' % (source, target))
|
_logger.info('Moving file %s %s' % (source, target))
|
||||||
fs_conn.rename(source, target)
|
fs_conn.rename(source, target)
|
||||||
if self.md5_check:
|
if self.md5_check:
|
||||||
fs_conn.rename(source + '.md5', target + '.md5')
|
fs_conn.rename(source + '.md5', target + '.md5')
|
||||||
|
|
||||||
def _delete_file(self, fs_conn, source):
|
def _delete_file(self, fs_conn, source):
|
||||||
"""Deletes a file from the FTP server"""
|
"""Deletes a file from the server"""
|
||||||
_logger.info('Deleting file %s' % source)
|
_logger.info('Deleting file %s' % source)
|
||||||
fs_conn.remove(source)
|
fs_conn.remove(source)
|
||||||
if self.md5_check:
|
if self.md5_check:
|
||||||
|
@ -38,15 +38,6 @@ class FileStoreTask(AbstractFSTask):
|
|||||||
|
|
||||||
|
|
||||||
class FileStoreImportTask(FileStoreTask):
|
class FileStoreImportTask(FileStoreTask):
|
||||||
"""FTP Configuration options:
|
|
||||||
- host, user, password, port
|
|
||||||
- download_directory: directory on the FTP server where files are
|
|
||||||
downloaded from
|
|
||||||
- move_directory: If present, files will be moved to this directory
|
|
||||||
on the FTP server after download.
|
|
||||||
- delete_files: If true, files will be deleted on the FTP server
|
|
||||||
after download.
|
|
||||||
"""
|
|
||||||
|
|
||||||
_synchronize_type = 'import'
|
_synchronize_type = 'import'
|
||||||
|
|
||||||
@ -58,11 +49,6 @@ class FileStoreImportTask(FileStoreTask):
|
|||||||
|
|
||||||
|
|
||||||
class FileStoreExportTask(FileStoreTask):
|
class FileStoreExportTask(FileStoreTask):
|
||||||
"""FTP Configuration options:
|
|
||||||
- host, user, password, port
|
|
||||||
- upload_directory: directory on the FTP server where files are
|
|
||||||
uploaded to
|
|
||||||
"""
|
|
||||||
|
|
||||||
_synchronize_type = 'export'
|
_synchronize_type = 'export'
|
||||||
|
|
||||||
|
@ -38,15 +38,6 @@ class FtpTask(AbstractFSTask):
|
|||||||
|
|
||||||
|
|
||||||
class FtpImportTask(FtpTask):
|
class FtpImportTask(FtpTask):
|
||||||
"""FTP Configuration options:
|
|
||||||
- host, user, password, port
|
|
||||||
- download_directory: directory on the FTP server where files are
|
|
||||||
downloaded from
|
|
||||||
- move_directory: If present, files will be moved to this directory
|
|
||||||
on the FTP server after download.
|
|
||||||
- delete_files: If true, files will be deleted on the FTP server
|
|
||||||
after download.
|
|
||||||
"""
|
|
||||||
|
|
||||||
_synchronize_type = 'import'
|
_synchronize_type = 'import'
|
||||||
|
|
||||||
@ -58,11 +49,6 @@ class FtpImportTask(FtpTask):
|
|||||||
|
|
||||||
|
|
||||||
class FtpExportTask(FtpTask):
|
class FtpExportTask(FtpTask):
|
||||||
"""FTP Configuration options:
|
|
||||||
- host, user, password, port
|
|
||||||
- upload_directory: directory on the FTP server where files are
|
|
||||||
uploaded to
|
|
||||||
"""
|
|
||||||
|
|
||||||
_synchronize_type = 'export'
|
_synchronize_type = 'export'
|
||||||
|
|
||||||
|
@ -38,15 +38,6 @@ class SftpTask(AbstractFSTask):
|
|||||||
|
|
||||||
|
|
||||||
class SftpImportTask(SftpTask):
|
class SftpImportTask(SftpTask):
|
||||||
"""FTP Configuration options:
|
|
||||||
- host, user, password, port
|
|
||||||
- download_directory: directory on the FTP server where files are
|
|
||||||
downloaded from
|
|
||||||
- move_directory: If present, files will be moved to this directory
|
|
||||||
on the FTP server after download.
|
|
||||||
- delete_files: If true, files will be deleted on the FTP server
|
|
||||||
after download.
|
|
||||||
"""
|
|
||||||
|
|
||||||
_synchronize_type = 'import'
|
_synchronize_type = 'import'
|
||||||
|
|
||||||
@ -61,11 +52,6 @@ class SftpImportTask(SftpTask):
|
|||||||
|
|
||||||
|
|
||||||
class SftpExportTask(SftpTask):
|
class SftpExportTask(SftpTask):
|
||||||
"""FTP Configuration options:
|
|
||||||
- host, user, password, port
|
|
||||||
- upload_directory: directory on the FTP server where files are
|
|
||||||
uploaded to
|
|
||||||
"""
|
|
||||||
|
|
||||||
_synchronize_type = 'export'
|
_synchronize_type = 'export'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user