Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
szarp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
Newterm
szarp
Commits
6dc5fed6
Commit
6dc5fed6
authored
2 years ago
by
Aleksy Barcz
Browse files
Options
Downloads
Patches
Plain Diff
xslt fixes
parent
0fd8db94
No related branches found
Tags
custom-nopy30
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
isl/python/xslt_handler.wsgi
+11
-8
11 additions, 8 deletions
isl/python/xslt_handler.wsgi
resources/xsltd/apache2-szarp
+5
-5
5 additions, 5 deletions
resources/xsltd/apache2-szarp
with
16 additions
and
13 deletions
isl/python/xslt_handler.wsgi
+
11
−
8
View file @
6dc5fed6
...
...
@@ -45,19 +45,23 @@ class XsltHandler:
Request handler - checks for
'
type
'
and serves document using
proper stylesheet.
"""
def
__init__
(
self
,
uri
,
paramd_uri
,
query_string
):
def
__init__
(
self
,
environ
,
uri
,
paramd_uri
,
query_string
):
"""
Initialization - save request object
"""
self
.
environ
=
environ
self
.
uri
=
uri
self
.
paramd_uri
=
paramd_uri
self
.
query_string
=
query_string
self
.
timeout
=
2.0
self
.
got_timeout
=
False
def
__log_error
(
self
,
error_string
):
print
(
error_string
,
file
=
self
.
environ
[
'
wsgi.errors
'
]))
def
isl_vu
(
self
,
context
,
args
):
if
self
.
got_timeout
:
#
self.
req.
log_error('isl_vu: already got timeout - not doing request'
, apache.APLOG_WARNING
)
self
.
__
log_error
(
'
isl_vu: already got timeout - not doing request
'
)
return
u
'
----
'
url
=
args
[
0
]
...
...
@@ -66,7 +70,7 @@ class XsltHandler:
r
=
requests
.
get
(
url
,
timeout
=
self
.
timeout
)
if
(
r
.
status_code
!=
200
):
#
self.
req.
log_error('isl_vu status_code: %d' % r.status_code
, apache.APLOG_WARNING
)
self
.
__
log_error
(
'
isl_vu status_code: %d
'
%
r
.
status_code
)
return
u
'
----
'
doc
=
etree
.
fromstring
(
r
.
content
,
parser
)
...
...
@@ -75,11 +79,10 @@ class XsltHandler:
return
vu
except
requests
.
exceptions
.
Timeout
as
e
:
#
self.
req.
log_error('isl_vu http timeout for url: %s' % url
, apache.APLOG_WARNING
)
self
.
__
log_error
(
'
isl_vu http timeout for url: %s
'
%
url
)
self
.
got_timeout
=
True
except
Exception
as
e
:
#self.req.log_error('isl_vu url: %s get error: %s' % (url, str(e)), apache.APLOG_ERR)
pass
self
.
__log_error
(
'
isl_vu url: %s get error: %s
'
%
(
url
,
str
(
e
)))
return
u
'
----
'
...
...
@@ -115,7 +118,7 @@ class XsltHandler:
try
:
r
=
stylesheet
(
doc
,
uri
=
"'"
+
self
.
paramd_uri
+
"'"
)
except
Exception
as
e
:
#
self.
req.
log_error('content: stylesheet failed %s' % str(e)
, apache.APLOG_ERR
)
self
.
__
log_error
(
'
content: stylesheet failed %s
'
%
str
(
e
))
r
=
stylesheet
.
error_log
return
str
(
r
)
...
...
@@ -141,7 +144,7 @@ def application(environ, start_response):
response_headers
=
[(
'
Content-type
'
,
'
image/svg+xml
'
)]
start_response
(
status
,
response_headers
)
# paramd.uri should be set in Apache configuration file using SetEnv
h
=
XsltHandler
(
requested_path
,
environ
[
'
szarp.paramd.uri
'
],
parse_qs
(
environ
[
'
QUERY_STRING
'
]))
h
=
XsltHandler
(
environ
,
requested_path
,
environ
[
'
szarp.paramd.uri
'
],
parse_qs
(
environ
[
'
QUERY_STRING
'
]))
ret
=
h
.
content
()
return
[
ret
.
encode
(
'
utf-8
'
)]
else
:
...
...
This diff is collapsed.
Click to expand it.
resources/xsltd/apache2-szarp
+
5
−
5
View file @
6dc5fed6
...
...
@@ -20,7 +20,7 @@ NameVirtualHost *:8084
ExpiresDefault
"access plus 9 seconds"
#RewriteEngine On
# Include user supplied configuration files
IncludeOptional
/etc/szarp/default/config/*.apache
...
...
@@ -31,7 +31,7 @@ NameVirtualHost *:8084
# Everything else is forbidden
#RewriteRule .* / [F]
# 'Deny all' rule if something slips through above rewrite rule
<
Directory
/
>
Require
all
denied
...
...
@@ -42,7 +42,7 @@ NameVirtualHost *:8084
<
Directory
/etc/szarp/default/config/isl
>
Require
all
granted
</
Directory
>
# CGI directory
ScriptAlias
/cgi-bin /opt/szarp/bin
<
Directory
/opt/szarp/bin
>
...
...
@@ -51,7 +51,7 @@ NameVirtualHost *:8084
Require
all
granted
SetEnv
szarp.paramd.uri "http://localhost:8081/"
</
Directory
>
ErrorLog
/var/log/szarp/apache-error.log
CustomLog
/var/log/szarp/apache-access.log combined
...
...
@@ -62,7 +62,7 @@ NameVirtualHost *:8084
LogLevel
debug
ScriptLog
/var/log/szarp/apache-cgi.log
</
IfDefine
>
ServerSignature
Off
</
VirtualHost
>
...
...
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