[Bps-public-commit] r14351 - in Prophet/trunk: .
sartak at bestpractical.com
sartak at bestpractical.com
Mon Jul 21 20:30:22 EDT 2008
Author: sartak
Date: Mon Jul 21 20:30:16 2008
New Revision: 14351
Modified:
Prophet/trunk/ (props changed)
Prophet/trunk/lib/Prophet/Server/View.pm
Log:
r64699 at onn: sartak | 2008-07-21 20:29:55 -0400
Stick each atom into a table (don't groan, it's tabular data! :))
Modified: Prophet/trunk/lib/Prophet/Server/View.pm
==============================================================================
--- Prophet/trunk/lib/Prophet/Server/View.pm (original)
+++ Prophet/trunk/lib/Prophet/Server/View.pm Mon Jul 21 20:30:16 2008
@@ -11,9 +11,12 @@
html {
body {
- ul {
+ table {
for ( sort { $a->luid <=> $b->luid } $records->items ) {
- li { $_->format_summary }
+ my @atoms = $_->format_summary;
+ row {
+ cell { $_ } for @atoms;
+ }
}
}
}
More information about the Bps-public-commit
mailing list