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
e8e27ece
Commit
e8e27ece
authored
Mar 19, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do not remove connect style - just use some custom style
parent
558ff925
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
10 deletions
+19
-10
debomatic-webui/scripts/install.sh
debomatic-webui/scripts/install.sh
+2
-2
debomatic-webui/scripts/install/patch_css_directory_listing.sh
...atic-webui/scripts/install/patch_css_directory_listing.sh
+17
-0
debomatic-webui/scripts/install/remove_css_directory_listing.sh
...tic-webui/scripts/install/remove_css_directory_listing.sh
+0
-8
No files found.
debomatic-webui/scripts/install.sh
View file @
e8e27ece
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
export
SCRIPTS_DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
export
SCRIPTS_DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
bash
${
SCRIPTS_DIR
}
/install/
remove
_css_directory_listing.sh
bash
${
SCRIPTS_DIR
}
/install/
patch
_css_directory_listing.sh
bash
${
SCRIPTS_DIR
}
/install/download_external_libs.sh
bash
${
SCRIPTS_DIR
}
/install/download_external_libs.sh
python
${
SCRIPTS_DIR
}
/install/create-user-config.py
python
${
SCRIPTS_DIR
}
/install/create-user-config.py
debomatic-webui/scripts/install/patch_css_directory_listing.sh
0 → 100755
View file @
e8e27ece
#!/bin/bash
CSS
=
"
${
SCRIPTS_DIR
}
/../node_modules/express/node_modules/connect/lib/public/style.css"
if
[
"
`
grep
debomatic-webui
$CSS
`
"
==
""
]
;
then
echo
"Patching directory listing style.css"
cp
$CSS
$CSS
.orig
echo
"
/* debomatic-webui style patch */
ul#files li {
float: none;
}
/* end debomatic-webui patch */
"
>>
$CSS
fi
debomatic-webui/scripts/install/remove_css_directory_listing.sh
deleted
100755 → 0
View file @
558ff925
#!/bin/bash
CSS
=
"
${
SCRIPTS_DIR
}
/../node_modules/express/node_modules/connect/lib/public/style.css"
if
[
"
`
stat
-c
'%s'
"
$CSS
"
`
"
-gt
1
]
;
then
echo
"Removing css from express directory listing ..."
echo
""
>
$CSS
fi
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