! 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 ( -- response ) [ current-builder [ last-report>> ] [ <404> ] if* ] with-mason-db ; : ( -- action ) [ validate-os/cpu ] >>init [ build-report ] >>display ; : report-link ( builder -- xml ) [ URL" report" clone ] dip [ os>> "os" set-query-param ] [ cpu>> "cpu" set-query-param ] bi [XML >Latest build report XML] ;