Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
3517b548
You need to sign in or sign up before continuing.
Commit
3517b548
authored
Oct 12, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update download external_lib system - download chartist version 0.2.1
parent
9b071fa6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
20 deletions
+31
-20
debomatic-webui/public/javascripts/page_generic.js
debomatic-webui/public/javascripts/page_generic.js
+1
-1
debomatic-webui/scripts/install/download_external_libs.sh
debomatic-webui/scripts/install/download_external_libs.sh
+25
-14
debomatic-webui/views/footer.ejs
debomatic-webui/views/footer.ejs
+2
-2
debomatic-webui/views/header.ejs
debomatic-webui/views/header.ejs
+3
-3
No files found.
debomatic-webui/public/javascripts/page_generic.js
View file @
3517b548
...
...
@@ -127,7 +127,7 @@ function Page_Generic() {
};
this
.
preferences
=
function
()
{
var
bootstrap_theme_css
=
'
/external_libs/bootstrap-3.2.0
-dist
/css/bootstrap-theme.min.css
'
;
var
bootstrap_theme_css
=
'
/external_libs/bootstrap-3.2.0/css/bootstrap-theme.min.css
'
;
if
(
config
.
preferences
.
glossy_theme
)
{
if
(
$
(
'
head
'
).
find
(
'
link[href="
'
+
bootstrap_theme_css
+
'
"]
'
).
length
===
0
)
$
(
'
head
'
).
append
(
'
<link rel="stylesheet" href="
'
+
bootstrap_theme_css
+
'
">
'
);
...
...
debomatic-webui/scripts/install/download_external_libs.sh
View file @
3517b548
...
...
@@ -2,6 +2,25 @@
EXT_LIBS_DIR
=
"
${
SCRIPTS_DIR
}
/../public/external_libs"
get_github
()
{
USER
=
$1
NAME
=
$2
VERSION
=
$3
DIST
=
$4
ARCHIVE
=
v
${
VERSION
}
.zip
URL
=
"https://github.com/
${
USER
}
/
${
NAME
}
/archive/
${
ARCHIVE
}
"
LIB_NAME
=
"
${
NAME
}
-
${
VERSION
}
"
if
[
-d
${
EXT_LIBS_DIR
}
/
${
LIB_NAME
}
]
;
then return
;
fi
echo
"Downloading
${
NAME
}
${
VERSION
}
..."
curl
-s
-O
-L
${
URL
}
&&
\
unzip
-q
${
ARCHIVE
}
&&
rm
${
ARCHIVE
}
if
[
"
$DIST
"
!=
""
]
;
then
mv
${
LIB_NAME
}
tmp
mv
tmp/
${
DIST
}
${
LIB_NAME
}
rm
-r
tmp
fi
}
get_bootstrap
()
{
VERSION
=
"3.2.0"
NAME
=
"bootstrap-
${
VERSION
}
-dist"
...
...
@@ -37,27 +56,19 @@ get_tablesorter() {
cd
..
}
get_chartist
()
{
VERSION
=
"0.1.12"
NAME
=
"chartist-js-
${
VERSION
}
"
if
[
-d
${
EXT_LIBS_DIR
}
/
${
NAME
}
]
;
then return
;
fi
ARCHIVE
=
v
${
VERSION
}
.zip
URL
=
"https://github.com/gionkunz/chartist-js/archive/
${
ARCHIVE
}
"
echo
"Downloading chartist-js
${
VERSION
}
..."
curl
-s
-O
-L
${
URL
}
&&
\
unzip
-q
${
ARCHIVE
}
&&
rm
${
ARCHIVE
}
}
if
[
!
-d
${
EXT_LIBS_DIR
}
]
;
then
mkdir
-p
${
EXT_LIBS_DIR
}
;
fi
TMP_DIR
=
"
`
mktemp
-d
`
"
cd
${
TMP_DIR
}
get_jquery
get_bootstrap
get_tablesorter
get_chartist
# get boostrap
get_github
"twbs"
"bootstrap"
"3.2.0"
"dist"
# get chartist
get_github
"gionkunz"
"chartist-js"
"0.2.1"
"libdist"
if
[
"
`
ls
-1
`
"
!=
""
]
;
then
mv
*
${
EXT_LIBS_DIR
}
;
fi
cd
&&
rm
-r
${
TMP_DIR
}
debomatic-webui/views/footer.ejs
View file @
3517b548
...
...
@@ -18,8 +18,8 @@
<script src="/external_libs/jquery/jquery-1.11.0.min.js"></script>
<script src="/external_libs/tablesorter/jquery.tablesorter.min.js"></script>
<script src="/external_libs/tablesorter/jquery.tablesorter.widgets.min.js"></script>
<script src="/external_libs/bootstrap-3.2.0
-dist
/js/bootstrap.min.js"></script>
<script src="/external_libs/chartist-js-0.
1.12/libdist
/chartist.min.js"></script>
<script src="/external_libs/bootstrap-3.2.0/js/bootstrap.min.js"></script>
<script src="/external_libs/chartist-js-0.
2.1
/chartist.min.js"></script>
<script>
var config = <%- JSON.stringify(web) %>
...
...
debomatic-webui/views/header.ejs
View file @
3517b548
...
...
@@ -4,9 +4,9 @@
<link
rel=
"shortcut icon"
type=
"image/x-icon"
href=
"/images/favicon.png"
/>
<title><
%=
web
.
title
%
></title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<link
rel=
"stylesheet"
href=
"/external_libs/bootstrap-3.2.0
-dist
/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"/external_libs/bootstrap-3.2.0
-dist
/css/bootstrap-theme.min.css"
>
<link
rel=
"stylesheet"
href=
"/external_libs/chartist-js-0.
1.12/libdist
/chartist.min.css"
>
<link
rel=
"stylesheet"
href=
"/external_libs/bootstrap-3.2.0/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"/external_libs/bootstrap-3.2.0/css/bootstrap-theme.min.css"
>
<link
rel=
"stylesheet"
href=
"/external_libs/chartist-js-0.
2.1
/chartist.min.css"
>
<link
rel=
"stylesheet"
href=
"/external_libs/tablesorter/theme.bootstrap.css"
>
<link
rel=
"stylesheet"
href=
"/stylesheets/style.css?<%= version %>"
>
</head>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment