Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@sugarlabs.org>2011-05-12 14:07:36 (GMT)
committer Gonzalo Odiard <godiard@sugarlabs.org>2011-05-12 14:07:36 (GMT)
commit8486b98ec56a17da9dfe6b3f8a8099f2459ca20d (patch)
tree1534bd7cd10fe7f60ae3ea500385762cdc8a55e2
parent9209bb4526be842e3ac72a532e7c267983248357 (diff)
Add links to usefull reports
-rw-r--r--statistics/bugs_index.html21
-rwxr-xr-xstatistics/create-bugs-index.sh27
-rw-r--r--statistics/query-links.txt2
3 files changed, 36 insertions, 14 deletions
diff --git a/statistics/bugs_index.html b/statistics/bugs_index.html
index c6b5de8..81fe96f 100644
--- a/statistics/bugs_index.html
+++ b/statistics/bugs_index.html
@@ -1,24 +1,31 @@
<head>
<style type=text/css>
-body
-{
+body {
background-color:#d0e4fe;
font-family:Arial;
font-size:10px;
}
-th
-{
+
+p {
+font-size:14px;
+color:orange;
+}
+
+th {
background-color:grey;
color:orange;
text-align:center;
}
-td
-{
+
+td {
background-color:white;
}
</style>
</head>
-<body><table>
+<body>
+<p><a href='http://dev.laptop.org/query?status=assigned&status=new&status=reopened&summary=~has+old+toolbar&col=id&col=summary&col=status&col=type&col=priority&col=milestone&col=component&order=priority' target='_blank'>New&nbsp;toolbars</a></p>
+<p><a href='http://dev.laptop.org/query?status=assigned&status=new&status=reopened&group=next_action&max=1000&order=priority&col=id&col=summary&col=owner&col=priority&col=component&milestone=11.2.0-M3&milestone=11.2.0-M4&milestone=11.2.0-final&report=43#no1' target='_blank'>11.2</a></p>
+<table>
<tr><th>Actividad</th><th>Bugs en Sugarlabs</th><th>Bugs en OLPC</th></tr>
<tr><td>abacus</td><td>
<a href='http://bugs.sugarlabs.org/query?status=accepted&status=assigned&status=new&status=reopened&component=Abacus&order=priority&col=id&col=summary&col=priority&col=status&col=owner&col=type&col=milestone' target='_blank'>Abacus</a>
diff --git a/statistics/create-bugs-index.sh b/statistics/create-bugs-index.sh
index 3e0bc9b..396cbde 100755
--- a/statistics/create-bugs-index.sh
+++ b/statistics/create-bugs-index.sh
@@ -3,25 +3,38 @@ INDEX_FILE="./bugs_index.html"
echo "<html>" > $INDEX_FILE
echo "<head>
<style type="text/css">
-body
-{
+body {
background-color:#d0e4fe;
font-family:"Arial";
font-size:10px;
}
-th
-{
+
+p {
+font-size:14px;
+color:orange;
+}
+
+th {
background-color:grey;
color:orange;
text-align:center;
}
-td
-{
+
+td {
background-color:white;
}
</style>
</head>" > $INDEX_FILE
-echo "<body><table>" >> $INDEX_FILE
+echo "<body>" >> $INDEX_FILE
+
+for LINE in `cat ./query-links.txt`
+do
+ LABEL=`echo $LINE | awk -F '|' '{printf("%s",$1)}'`
+ URL=`echo $LINE | awk -F '|' '{printf("%s",$2)}'`
+ echo "<p><a href='$URL' target='_blank'>$LABEL</a></p>" >> $INDEX_FILE
+done
+
+echo "<table>" >> $INDEX_FILE
echo "<tr><th>Actividad</th><th>Bugs en Sugarlabs</th><th>Bugs en OLPC</th></tr>" >> $INDEX_FILE
for LINE in `cat ./activities-data.txt`
diff --git a/statistics/query-links.txt b/statistics/query-links.txt
new file mode 100644
index 0000000..4ad9ce6
--- /dev/null
+++ b/statistics/query-links.txt
@@ -0,0 +1,2 @@
+New&nbsp;toolbars|http://dev.laptop.org/query?status=assigned&status=new&status=reopened&summary=~has+old+toolbar&col=id&col=summary&col=status&col=type&col=priority&col=milestone&col=component&order=priority
+11.2|http://dev.laptop.org/query?status=assigned&status=new&status=reopened&group=next_action&max=1000&order=priority&col=id&col=summary&col=owner&col=priority&col=component&milestone=11.2.0-M3&milestone=11.2.0-M4&milestone=11.2.0-final&report=43#no1