/extra/webapps/mason/report/report.factor
http://github.com/abeaumont/factor · Factor · 21 lines · 17 code · 2 blank · 2 comment · 0 complexity · 5d436d419331cb076fc22067caebc992 MD5 · raw file
- ! Copyright (C) 2010 Slava Pestov.
- ! See http://factorcode.org/license.txt for BSD license.
- USING: accessors furnace.actions http.server.responses kernel
- urls xml.syntax webapps.mason.backend webapps.mason.utils ;
- IN: webapps.mason.report
- : <build-report-action> ( -- action )
- <action>
- [ validate-os/cpu ] >>init
- [
- [
- current-builder last-report>>
- "text/html" <content>
- ] with-mason-db
- ] >>display ;
- : report-link ( builder -- xml )
- [ URL" report" ] dip
- [ os>> "os" set-query-param ]
- [ cpu>> "cpu" set-query-param ] bi
- [XML <a href=<->>Latest build report</a> XML] ;