factor/extra/webapps/mason/make-release/make-release.factor

22 lines
603 B
Factor
Raw Normal View History

2010-02-14 07:03:15 -05:00
! Copyright (C) 2010 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
USING: accessors furnace.actions html.forms
http.server.responses validators webapps.mason.backend
webapps.mason.version ;
2010-02-14 07:03:15 -05:00
IN: webapps.mason.make-release
: <make-release-action> ( -- action )
<action>
2010-04-16 18:32:19 -04:00
[
{
{ "version" [ v-one-line ] }
{ "announcement-url" [ v-url ] }
} validate-params
] >>validate
2010-02-14 07:03:15 -05:00
[
[
"version" value "announcement-url" value do-release
2010-02-14 07:03:15 -05:00
"OK" "text/html" <content>
] with-mason-db
] >>submit ;