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