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
65055081
Commit
65055081
authored
11 years ago
by
Maël Méliani
Browse files
Options
Downloads
Patches
Plain Diff
Mere restructuring...
parent
bf5ce2e3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/server.py
+35
-35
35 additions, 35 deletions
src/server.py
with
35 additions
and
35 deletions
src/server.py
+
35
−
35
View file @
65055081
...
...
@@ -71,41 +71,6 @@ class index(object):
"
fonts
"
:
href
(
"
fonts
"
),
}
class
fonts
(
object
):
"""
Configure available fonts.
http://hostname/mra/fonts
"""
@HTTPCompatible
()
def
GET
(
self
,
format
):
"""
Returns the list of available fonts.
"""
return
{
"
fonts
"
:
[
f_name
for
f_name
in
mra
.
list_fontset
()]}
@HTTPCompatible
()
def
PUT
(
self
,
format
):
"""
Uploads fonts from a local source.
"""
import
zipfile
ctype
=
web
.
ctx
.
env
.
get
(
"
CONTENT_TYPE
"
,
None
)
if
ctype
==
"
application/zip
"
:
path
=
mra
.
create_font
(
"
archive.zip
"
,
data
=
web
.
data
())
with
zipfile
.
ZipFile
(
path
,
"
r
"
)
as
z
:
z
.
extractall
(
mra
.
get_font_path
())
os
.
remove
(
path
)
mra
.
update_fontset
()
# Then updates (the) mapfile(s) only
# if the fontset path is not specified.
# Should it be done here ?...
mf
=
mra
.
get_available
()
if
mf
.
ms
.
fontset
.
filename
==
None
:
mf
.
ms
.
setFontSet
(
mra
.
get_fontset_path
())
mf
.
save
()
class
workspaces
(
object
):
"""
Workspaces container.
...
...
@@ -762,6 +727,41 @@ class files(object):
else
:
raise
webapp
.
BadRequest
(
message
=
"
configure must be one of
'
first
'
,
'
none
'
or
'
all
'
.
"
)
class
fonts
(
object
):
"""
Configure available fonts.
http://hostname/mra/fonts
"""
@HTTPCompatible
()
def
GET
(
self
,
format
):
"""
Returns the list of available fonts.
"""
return
{
"
fonts
"
:
[
f_name
for
f_name
in
mra
.
list_fontset
()]}
@HTTPCompatible
()
def
PUT
(
self
,
format
):
"""
Uploads fonts from a local source.
"""
import
zipfile
ctype
=
web
.
ctx
.
env
.
get
(
"
CONTENT_TYPE
"
,
None
)
if
ctype
==
"
application/zip
"
:
path
=
mra
.
create_font
(
"
archive.zip
"
,
data
=
web
.
data
())
with
zipfile
.
ZipFile
(
path
,
"
r
"
)
as
z
:
z
.
extractall
(
mra
.
get_font_path
())
os
.
remove
(
path
)
mra
.
update_fontset
()
# Then updates (the) mapfile(s) only
# if the fontset path is not specified.
# Should it be done here ?...
mf
=
mra
.
get_available
()
if
mf
.
ms
.
fontset
.
filename
==
None
:
mf
.
ms
.
setFontSet
(
mra
.
get_fontset_path
())
mf
.
save
()
class
styles
(
object
):
"""
SLD styles container.
...
...
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