Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
1cf45e38
Commit
1cf45e38
authored
Dec 21, 2011
by
Andrew Gerrand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: delete old build dashboard code
R=rsc CC=golang-dev
https://golang.org/cl/5502063
parent
fa02bac8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
45 deletions
+4
-45
app.yaml
misc/dashboard/godashboard/app.yaml
+4
-3
gobuild.py
misc/dashboard/godashboard/gobuild.py
+0
-0
main.html
misc/dashboard/godashboard/main.html
+0
-42
No files found.
misc/dashboard/godashboard/app.yaml
View file @
1cf45e38
application
:
godashboard
application
:
godashboard
version
:
8
version
:
9
runtime
:
python
runtime
:
python
api_version
:
1
api_version
:
1
...
@@ -21,5 +21,6 @@ handlers:
...
@@ -21,5 +21,6 @@ handlers:
-
url
:
/project.*
-
url
:
/project.*
script
:
package.py
script
:
package.py
-
url
:
/.*
-
url
:
/
script
:
gobuild.py
static_files
:
main.html
upload
:
main.html
misc/dashboard/godashboard/gobuild.py
deleted
100644 → 0
View file @
fa02bac8
This diff is collapsed.
Click to expand it.
misc/dashboard/godashboard/main.html
View file @
1cf45e38
...
@@ -6,8 +6,6 @@
...
@@ -6,8 +6,6 @@
</head>
</head>
<body>
<body>
<a
id=
"top"
></a>
<ul
class=
"menu"
>
<ul
class=
"menu"
>
<li>
Build Status
</li>
<li>
Build Status
</li>
<li><a
href=
"/package"
>
Packages
</a></li>
<li><a
href=
"/package"
>
Packages
</a></li>
...
@@ -21,45 +19,5 @@
...
@@ -21,45 +19,5 @@
<p
class=
"notice"
>
The build status dashboard has moved to
<a
href=
"http://build.golang.org"
>
build.golang.org
</a>
.
</p>
<p
class=
"notice"
>
The build status dashboard has moved to
<a
href=
"http://build.golang.org"
>
build.golang.org
</a>
.
</p>
<table
class=
"alternate"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<th></th>
{% for b in builders %}
<th
class=
"builder"
>
{{b.goos}}
<br>
{{b.goarch}}
<br>
{{b.note}}
</th>
{% endfor %}
<th></th>
<th></th>
<th></th>
</tr>
{% for r in revs %}
<tr>
<td
class=
"revision"
><span
class=
"hash"
><a
href=
"https://code.google.com/p/go/source/detail?r={{r.node}}"
>
{{r.node|slice:":12"}}
</a></span></td>
{% for b in r.builds %}
<td
class=
"result"
>
{% if b.ok %}
<span
class=
"ok"
>
ok
</span>
{% else %}
{% if b.log %}
<a
class=
"fail"
href=
"/log/{{b.log}}"
>
fail
</a>
{% else %}
{% endif %}
{% endif %}
</td>
{% endfor %}
<td
class=
"user"
>
{{r.user|escape}}
</td>
<td
class=
"date"
>
{{r.date|escape}}
</td>
<td
class=
"desc"
>
{{r.shortdesc|escape}}
</td>
</tr>
{% endfor %}
</table>
<div
class=
"paginate"
>
<a
{%
if
prev
%}
href=
"?n={{num}}&p={{prev}}"
{%
else
%}
class=
"inactive"
{%
endif
%}
>
prev
</a>
<a
{%
if
next
%}
href=
"?n={{num}}&p={{next}}"
{%
else
%}
class=
"inactive"
{%
endif
%}
>
next
</a>
<a
{%
if
prev
%}
href=
"?n={{num}}&p=1"
{%
else
%}
class=
"inactive"
{%
endif
%}
>
top
</a>
</div>
</body>
</body>
</html>
</html>
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