Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
b7d83943
Commit
b7d83943
authored
Jul 08, 2003
by
Leigh B. Stoller
Browse files
Fix a couple of ron/all tests that Mac spotted as being broken.
parent
9060b112
Changes
3
Hide whitespace changes
Inline
Side-by-side
www/beginexp.php3
View file @
b7d83943
...
...
@@ -618,9 +618,13 @@ elseif (isset($nsdata) && strcmp($nsdata, "")) {
}
else
{
#
# Not allowed anymore!
# I am going to allow shell experiments to be created (No NS file),
# but only by admin types.
#
RESPIT
(
"NS File"
,
"You must provide an NS file. No nodes is fine."
);
if
(
!
ISADMIN
(
$uid
))
{
RESPIT
(
"NS File"
,
"You must provide an NS file"
);
}
$nonsfile
=
1
;
}
#
...
...
www/explist.php3
View file @
b7d83943
...
...
@@ -73,7 +73,7 @@ $query_result =
"where rs.pnodes>0 and "
.
" e.state='"
.
$TB_EXPTSTATE_ACTIVE
.
"' and "
.
" e.pid!='emulab-ops' and "
.
" (e.pid
!
='ron' and e.eid
!
='all') "
.
"
not
(e.pid='ron' and e.eid='all') "
.
"order by s.swapin_last desc "
);
echo
"<a NAME=active></a>
\n
"
;
...
...
www/showsumstats.php3
View file @
b7d83943
...
...
@@ -276,7 +276,7 @@ function showrange ($showby, $sortby, $range) {
"left join experiment_resources as r on s.rsrcidx=r.idx "
.
"where e.state='"
.
$TB_EXPTSTATE_ACTIVE
.
"'"
.
" and e.pid!='
$TBOPSPID
' and "
.
" (e.pid
!
='ron' and e.eid
!
='all') "
);
"
not
(e.pid='ron' and e.eid='all') "
);
while
(
$row
=
mysql_fetch_assoc
(
$query_result
))
{
$pid
=
$row
[
"pid"
];
...
...
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