Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MindSpore
mindinsight
提交
97e980ae
M
mindinsight
项目概览
MindSpore
/
mindinsight
通知
7
Star
3
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindinsight
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
97e980ae
编写于
6月 24, 2020
作者:
M
mindspore-ci-bot
提交者:
Gitee
6月 24, 2020
浏览文件
操作
浏览文件
下载
差异文件
!345 fix bugs of --url-path-prefix parameter [r0.5]
Merge pull request !345 from liangyongxiong/r0.5
上级
b8cefff4
4e0874e1
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
5 deletion
+15
-5
.gitignore
.gitignore
+2
-0
mindinsight/scripts/start.py
mindinsight/scripts/start.py
+12
-4
mindinsight/ui/public/index.html
mindinsight/ui/public/index.html
+1
-1
未找到文件。
.gitignore
浏览文件 @
97e980ae
...
...
@@ -86,3 +86,5 @@ build/*
output/
!output/README.md
mindinsight/ui/public/static/js/graphvizlib.wasm
mindinsight/scripts/start.py
浏览文件 @
97e980ae
...
...
@@ -122,7 +122,8 @@ class PortAction(argparse.Action):
class
UrlPathPrefixAction
(
argparse
.
Action
):
"""Url Path prefix action class definition."""
REGEX
=
r
'^(\/[a-zA-Z0-9-\-\.]+)+$'
INVALID_SEGMENTS
=
(
'.'
,
'..'
)
REGEX
=
r
'^[a-zA-Z0-9_\-\.]+$'
def
__call__
(
self
,
parser
,
namespace
,
values
,
option_string
=
None
):
"""
...
...
@@ -135,8 +136,12 @@ class UrlPathPrefixAction(argparse.Action):
option_string (str): Optional string for specific argument name. Default: None.
"""
prefix
=
values
if
not
re
.
match
(
self
.
REGEX
,
prefix
):
parser
.
error
(
f
'
{
option_string
}
value is invalid url path prefix'
)
segments
=
prefix
.
split
(
'/'
)
for
index
,
segment
in
enumerate
(
segments
):
if
not
segment
and
index
in
(
0
,
len
(
segments
)
-
1
):
continue
if
segment
in
self
.
INVALID_SEGMENTS
or
not
re
.
match
(
self
.
REGEX
,
segment
):
parser
.
error
(
f
'
{
option_string
}
value is invalid url path prefix'
)
setattr
(
namespace
,
self
.
dest
,
prefix
)
...
...
@@ -186,7 +191,10 @@ class Command(BaseCommand):
type
=
str
,
action
=
UrlPathPrefixAction
,
help
=
"""
Custom path prefix for web page address. Default value is ''.
Custom URL path prefix for web page address. URL path prefix
consists of segments separated by slashes. Each segment supports
alphabets / digits / underscores / dashes / dots, but cannot just
be emtpy string / single dot / double dots. Default value is ''.
"""
)
for
hook
in
HookUtils
.
instance
().
hooks
():
...
...
mindinsight/ui/public/index.html
浏览文件 @
97e980ae
...
...
@@ -21,7 +21,7 @@ limitations under the License.
<meta
charset=
"utf-8"
/>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
/>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1.0"
/>
<link
rel=
"icon"
href=
"
<%= BASE_URL %>/
static/img/favicon.png"
/>
<link
rel=
"icon"
href=
"static/img/favicon.png"
/>
<title>
MindInsight
</title>
<style>
.errorInfo
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录