2010-02-10 22:26:12 -05:00
|
|
|
! Copyright (C) 2010 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: accessors furnace.actions http.server.responses kernel
|
2010-09-17 02:52:49 -04:00
|
|
|
urls xml.syntax webapps.mason.backend webapps.mason.utils ;
|
2010-02-10 22:26:12 -05:00
|
|
|
IN: webapps.mason.report
|
|
|
|
|
2015-09-24 05:33:06 -04:00
|
|
|
: build-report ( -- response )
|
|
|
|
[
|
|
|
|
current-builder [
|
|
|
|
last-report>> <html-content>
|
|
|
|
] [ <404> ] if*
|
|
|
|
] with-mason-db ;
|
|
|
|
|
2010-02-10 22:26:12 -05:00
|
|
|
: <build-report-action> ( -- action )
|
|
|
|
<action>
|
2010-02-14 07:03:15 -05:00
|
|
|
[ validate-os/cpu ] >>init
|
2015-09-24 05:33:06 -04:00
|
|
|
[ build-report ] >>display ;
|
2010-02-10 22:26:12 -05:00
|
|
|
|
|
|
|
: report-link ( builder -- xml )
|
2016-12-13 10:31:02 -05:00
|
|
|
[ URL" report" clone ] dip
|
2010-02-10 22:26:12 -05:00
|
|
|
[ os>> "os" set-query-param ]
|
|
|
|
[ cpu>> "cpu" set-query-param ] bi
|
|
|
|
[XML <a href=<->>Latest build report</a> XML] ;
|