Description
Hi, we currently can easily check for broken packages using:
http://bioconductor.org/checkResults/devel/bioc-LATEST/index.html#show=timeout,error
It would be great to also subset the packages:
http://bioconductor.org/checkResults/devel/bioc-LATEST/index.html#package=mzR,MSnbase,xcms,CAMERA
to easily show the status of packages I am interested in.
For a start, it might be sufficient to add tha package name as id
attribute
to each table row of a package
out.write('<TR class="%s" id="%s">' % (classes, pkg) )
to the HTML generator in
Line 429 in 8e89a17
and then add some JS called when showing the page, to call
changecss("TABLE.mainrep ....", element, "none");
or changecss("TABLE.mainrep ....", element, "table-row");
depending whether the TR.id
is in the pkgs
of the URL GET package=a,b,c,...
params.
This might be very slow, because it will have to iterate over ca. 1500*4 <TR>
in the package table,
while the class=err,OK
uses some cool bit-string encoding in the function toggle
in report.js#L57. Yours, Steffen