Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
jlopez
wicopa
Commits
5eabdae7
Commit
5eabdae7
authored
Mar 12, 2020
by
jlopez
Browse files
Add more fix
parent
203f875f
Changes
3
Hide whitespace changes
Inline
Side-by-side
inc/php/printPanel.php
View file @
5eabdae7
...
...
@@ -25,6 +25,7 @@ function printSection($name, $db) {
<label for="selectedR" class="font-weight-bold">R version :</label>
<select class="custom-select" id="selectedR">
<option value="0" selected="selected" >None</option>
<option value="3.6.3">3.6.3</option>
<option value="3.5">3.5</option>
</select>
</div>
...
...
@@ -69,7 +70,7 @@ function printSection($name, $db) {
function
printPanel
(
$name
)
{
echo
'
<label for="find'
.
$name
.
'Packages">Find packages
with pattern
:</label>
<label for="find'
.
$name
.
'Packages">Find packages
containing substring
:</label>
<input type="email" class="form-control" id="find'
.
$name
.
'Packages">'
;
...
...
index.php
View file @
5eabdae7
...
...
@@ -50,6 +50,13 @@ require_once "./inc/php/buildHeader.php";
</select>
</div>
<div
class=
"form-group"
>
<p
class=
"font-weight-bold"
>
OR
</p>
</div>
<div
class=
"form-group"
>
<label
for=
"baseNameInput"
class=
"font-weight-bold"
>
From Image :
</label>
...
...
@@ -230,7 +237,7 @@ require_once "./inc/php/buildHeader.php";
</div>
<div
class=
"card-body"
>
<div
class=
"form-group"
>
<label
for=
"ExecLineInput"
class=
"font-weight-bold"
>
Exec Line (
%Runscript / CMD
) :
</label>
<label
for=
"ExecLineInput"
class=
"font-weight-bold"
>
Exec Line (
<a
href=
"https://singularity.lbl.gov/docs-docker#how-does-the-runscript-work"
>
%Runscript
</a>
/
<a
href=
"https://docs.docker.com/engine/reference/builder/#cmd"
>
CMD
</a>
) :
</label>
<input
type=
"text"
class=
"form-control"
id=
"ExecLineInput"
value=
'exec /bin/bash "$@"'
>
</div>
...
...
@@ -243,7 +250,7 @@ require_once "./inc/php/buildHeader.php";
<div
class=
"col-8"
>
<div
class=
"card border border-dark"
>
<div
class=
"card-header bg-dark text-light"
>
Tools packages :
Tools
from
packages
manager
:
</div>
<div
class=
"card-body"
>
<nav>
...
...
@@ -253,7 +260,7 @@ require_once "./inc/php/buildHeader.php";
$index
=
0
;
foreach
(
$section
as
$s
)
{
if
(
$index
==
0
)
{
echo
'<a class="nav-item nav-link active" id="nav-'
.
$s
->
name
.
'-tab" data-toggle="tab" href="#nav-'
.
$s
->
name
.
'" role="tab" aria-controls="nav-'
.
$s
->
name
.
'" aria-selected="false">'
.
$s
->
visual
.
'</a>'
;
echo
'<a class="nav-item nav-link active" id="nav-'
.
$s
->
name
.
'-tab" data-toggle="tab" href="#nav-'
.
$s
->
name
.
'" role="tab" aria-controls="nav-'
.
$s
->
name
.
'" aria-selected="false">'
.
$s
->
visual
.
'
packages manager
</a>'
;
}
else
{
echo
'<a class="nav-item nav-link" id="nav-'
.
$s
->
name
.
'-tab" data-toggle="tab" href="#nav-'
.
$s
->
name
.
'" role="tab" aria-controls="nav-'
.
$s
->
name
.
'" aria-selected="false">'
.
$s
->
visual
.
'</a>'
;
}
...
...
packages/bioconductor_packages.R
deleted
100644 → 0
View file @
203f875f
Write
Preview
Supports
Markdown
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