Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Mapserver REST API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Miscellaneous
Mapserver REST API
Commits
8d5ab728
Commit
8d5ab728
authored
11 years ago
by
Maël Méliani
Browse files
Options
Downloads
Patches
Plain Diff
Removed some comment
parent
4d19b4f9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools.py
+0
-104
0 additions, 104 deletions
src/tools.py
with
0 additions
and
104 deletions
src/tools.py
+
0
−
104
View file @
8d5ab728
...
...
@@ -38,37 +38,6 @@ from osgeo import osr
__config
=
None
# def get_config(key=None, mode='r'):
# """This reads the YAML configuration file."""
# global __config
# if not __config:
# try:
# __config = yaml.load(open(os.path.join(sys.path[0], 'mra.yaml'), mode))
# except yaml.YAMLError, exc:
# exit('Error in configuration file: %s' % exc)
# return __config if key == None else __config[key] if key in __config else {}
# def get_mapfile_paths():
# """Generates a list of mapfile paths managed by Mapserver REST API."""
# for (root, subFolders, files) in os.walk(get_config('storage')['mapfiles']):
# for f in files:
# if f.endswith('.map') and not f.startswith('.'):
# yield os.path.join(root, f)
# def get_mapfile(name):
# with webapp.mightNotFound(message="Could not find mapfile '%s'." % name, exceptions=(IOError, OSError, KeyError)):
# mf = mapfile.Mapfile(name, get_config('storage')['mapfiles'])
# return mf
# def get_mapfile_workspace(mf_name, ws_name):
# mf = get_mapfile(mf_name)
# with webapp.mightNotFound("workspace", mapfile=mf_name):
# ws = mf.get_workspace(ws_name)
# return mf, ws
def
assert_is_empty
(
generator
,
tname
,
iname
):
try
:
next
(
generator
)
...
...
@@ -86,79 +55,6 @@ def safe_path_join(root, *args):
raise
webapp
.
Forbidden
(
message
=
"
path
'
%s
'
outside root directory.
"
%
(
args
))
return
full_path
# def get_mapfile_path(*args):
# return safe_path_join(get_config('storage')['mapfiles'], *args)
# def get_resource_path(*args):
# return safe_path_join(get_config('storage')['resources'], *args)
# def get_st_data_path(ws_name, st_type, name, *args):
# return get_resource_path("workspaces", ws_name, st_type, name, *args)
# def get_ds_data_path(ws_name, name, *args):
# return get_st_data_path(ws_name, "datastores", name, *args)
# def get_cs_data_path(ws_name, name, *args):
# return get_st_data_path(ws_name, "coveragestores", name, *args)
# def get_style_path(name, *args):
# return safe_path_join(get_config('storage')['resources'], "styles", name, *args)
# def iter_styles(mapfile=None):
# """Generates a list of style paths managed by Mapserver REST API."""
# used_styles = list(mapfile.iter_styles()) if mapfile else []
# for s in used_styles:
# yield s
# styles_dir = os.path.join(get_config('storage')['resources'], "styles")
# if not os.path.isdir(styles_dir):
# return
# for (root, subFolders, files) in os.walk(styles_dir):
# for f in files:
# if f not in used_styles:
# yield f
# def mk_path(path):
# dirs = os.path.dirname(path)
# if not os.path.isdir(dirs):
# os.makedirs(dirs)
# def mk_mapfile_path(name, *args):
# path = get_mapfile_path(name, *args)
# mk_path(path)
# return path
# def mk_ds_data_path(ws_name, name, *args):
# path = get_ds_data_path(name, *args)
# mk_path(path)
# return path
# def mk_cs_data_path(ws_name, name, *args):
# path = get_cs_data_path(ws_name, name, *args)
# mk_path(path)
# return path
# def mk_st_data_path(ws_name, st_type, name, *args):
# path = get_st_data_path(ws_name, st_type, name, *args)
# mk_path(path)
# return path
# def mk_style_path(name, *args):
# path = get_style_path(name, *args)
# mk_path(path)
# return path
# def no_root(root, path):
# path = os.path.abspath(path)
# root = os.path.abspath(root)
# return path[len(root):] if path.startswith(root) else path
# def no_res_root(path):
# return os.path.relpath(path, get_config('storage')['resources'])
def
is_hidden
(
path
):
# TODO Add a lot of checks, recursive option (to check folders)
# MacOSX has at least four ways to hide files...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment