Merge branch 'master' of git://factorcode.org/git/factor
commit
387db4f849
|
@ -79,7 +79,7 @@ TUPLE: action rest authorize init display validate submit ;
|
|||
|
||||
: revalidate-url ( -- url/f )
|
||||
revalidate-url-key param
|
||||
dup [ >url [ same-host? ] keep and ] when ;
|
||||
dup [ >url ensure-port [ same-host? ] keep and ] when ;
|
||||
|
||||
: validation-failed ( -- * )
|
||||
post-request? revalidate-url and [
|
||||
|
|
|
@ -83,7 +83,7 @@ TUPLE: choice size multiple choices ;
|
|||
choice new ;
|
||||
|
||||
: render-option ( text selected? -- )
|
||||
<option [ "true" =selected ] when option>
|
||||
<option [ "selected" =selected ] when option>
|
||||
present escape-string write
|
||||
</option> ;
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ HELP: [wlet
|
|||
|
||||
HELP: ::
|
||||
{ $syntax ":: word ( bindings... -- outputs... ) body... ;" }
|
||||
{ $description "Defines a word with named inputs; it reads stack values into bindings from left to right, then executes the body with those bindings in lexical scope. Any " { $link POSTPONE: [| } ", " { $link POSTPONE: [let } " or " { $link POSTPONE: [wlet } " forms used in the body of the word definition are automatically closure-converted." }
|
||||
{ $description "Defines a word with named inputs; it reads stack values into bindings from left to right, then executes the body with those bindings in lexical scope." }
|
||||
{ $notes "The output names do not affect the word's behavior, however the compiler attempts to check the stack effect as with other definitions." }
|
||||
{ $examples "See " { $link POSTPONE: [| } ", " { $link POSTPONE: [let } " and " { $link POSTPONE: [wlet } "." } ;
|
||||
|
||||
|
|
|
@ -69,11 +69,15 @@ TUPLE: entry title url description date ;
|
|||
[ "item" tags-named [ rss2.0-entry ] map set-entries ]
|
||||
tri ;
|
||||
|
||||
: atom-entry-link ( tag -- url/f )
|
||||
"link" tags-named [ "rel" swap at "alternate" = ] find nip
|
||||
dup [ "href" swap at >url ] when ;
|
||||
|
||||
: atom1.0-entry ( tag -- entry )
|
||||
entry new
|
||||
swap {
|
||||
[ "title" tag-named children>string >>title ]
|
||||
[ "link" tag-named "href" swap at >url >>url ]
|
||||
[ atom-entry-link >>url ]
|
||||
[
|
||||
{ "content" "summary" } any-tag-named
|
||||
dup children>> [ string? not ] contains?
|
||||
|
|
|
@ -10,7 +10,6 @@ arrays kernel assocs present accessors ;
|
|||
{ host "www.apple.com" }
|
||||
{ port 1234 }
|
||||
{ path "/a/path" }
|
||||
{ raw-query "a=b" }
|
||||
{ query H{ { "a" "b" } } }
|
||||
{ anchor "foo" }
|
||||
}
|
||||
|
@ -21,7 +20,6 @@ arrays kernel assocs present accessors ;
|
|||
{ protocol "http" }
|
||||
{ host "www.apple.com" }
|
||||
{ path "/a/path" }
|
||||
{ raw-query "a=b" }
|
||||
{ query H{ { "a" "b" } } }
|
||||
{ anchor "foo" }
|
||||
}
|
||||
|
@ -59,7 +57,6 @@ arrays kernel assocs present accessors ;
|
|||
{
|
||||
T{ url
|
||||
{ path "bar" }
|
||||
{ raw-query "a=b" }
|
||||
{ query H{ { "a" "b" } } }
|
||||
}
|
||||
"bar?a=b"
|
||||
|
@ -213,7 +210,6 @@ urls [
|
|||
T{ url
|
||||
{ protocol "http" }
|
||||
{ host "localhost" }
|
||||
{ raw-query "foo=bar" }
|
||||
{ query H{ { "foo" "bar" } } }
|
||||
{ path "/" }
|
||||
}
|
||||
|
@ -224,7 +220,6 @@ urls [
|
|||
T{ url
|
||||
{ protocol "http" }
|
||||
{ host "localhost" }
|
||||
{ raw-query "foo=bar" }
|
||||
{ query H{ { "foo" "bar" } } }
|
||||
{ path "/" }
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ strings.parser lexer prettyprint.backend hashtables present
|
|||
peg.ebnf urls.encoding ;
|
||||
IN: urls
|
||||
|
||||
TUPLE: url protocol username password host port path raw-query query anchor ;
|
||||
TUPLE: url protocol username password host port path query anchor ;
|
||||
|
||||
: <url> ( -- url ) url new ;
|
||||
|
||||
|
@ -47,7 +47,7 @@ protocol = [a-z]+ => [[ url-decode ]]
|
|||
username = [^/:@#?]+ => [[ url-decode ]]
|
||||
password = [^/:@#?]+ => [[ url-decode ]]
|
||||
pathname = [^#?]+ => [[ url-decode ]]
|
||||
query = [^#]+ => [[ >string ]]
|
||||
query = [^#]+ => [[ query>assoc ]]
|
||||
anchor = .+ => [[ url-decode ]]
|
||||
|
||||
hostname = [^/#?]+ => [[ url-decode ]]
|
||||
|
@ -80,7 +80,7 @@ M: string >url
|
|||
] [ f f f f f ] if*
|
||||
]
|
||||
[ second ] ! pathname
|
||||
[ third dup query>assoc ] ! query
|
||||
[ third ] ! query
|
||||
[ fourth ] ! anchor
|
||||
} cleave url boa
|
||||
dup host>> [ [ "/" or ] change-path ] when ;
|
||||
|
@ -139,14 +139,14 @@ PRIVATE>
|
|||
|
||||
: derive-url ( base url -- url' )
|
||||
[ clone ] dip over {
|
||||
[ [ protocol>> ] either? >>protocol ]
|
||||
[ [ username>> ] either? >>username ]
|
||||
[ [ password>> ] either? >>password ]
|
||||
[ [ host>> ] either? >>host ]
|
||||
[ [ port>> ] either? >>port ]
|
||||
[ [ path>> ] bi@ swap url-append-path >>path ]
|
||||
[ [ query>> ] either? >>query ]
|
||||
[ [ anchor>> ] either? >>anchor ]
|
||||
[ [ protocol>> ] either? >>protocol ]
|
||||
[ [ username>> ] either? >>username ]
|
||||
[ [ password>> ] either? >>password ]
|
||||
[ [ host>> ] either? >>host ]
|
||||
[ [ port>> ] either? >>port ]
|
||||
[ [ path>> ] bi@ swap url-append-path >>path ]
|
||||
[ [ query>> ] either? >>query ]
|
||||
[ [ anchor>> ] either? >>anchor ]
|
||||
} 2cleave ;
|
||||
|
||||
: relative-url ( url -- url' )
|
||||
|
|
|
@ -573,12 +573,12 @@ $nl
|
|||
} ;
|
||||
|
||||
HELP: initial:
|
||||
{ $syntax "TUPLE: ... { \"slot\" initial: value } ... ;" }
|
||||
{ $syntax "TUPLE: ... { slot initial: value } ... ;" }
|
||||
{ $values { "slot" "a slot name" } { "value" "any literal" } }
|
||||
{ $description "Specifies an initial value for a tuple slot." } ;
|
||||
|
||||
HELP: read-only
|
||||
{ $syntax "TUPLE: ... { \"slot\" read-only } ... ;" }
|
||||
{ $syntax "TUPLE: ... { slot read-only } ... ;" }
|
||||
{ $values { "slot" "a slot name" } }
|
||||
{ $description "Defines a tuple slot to be read-only. If a tuple has read-only slots, instances of the tuple should only be created by calling " { $link boa } ", instead of " { $link new } ". Using " { $link boa } " is the only way to set the value of a read-only slot." } ;
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ TUPLE: help-webapp < dispatcher ;
|
|||
|
||||
[
|
||||
{
|
||||
{ "search" [ 2 v-min-length 50 v-max-length v-one-line ] }
|
||||
{ "search" [ 1 v-min-length 50 v-max-length v-one-line ] }
|
||||
} validate-params
|
||||
|
||||
help-dir set-current-directory
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
|
||||
<p>This is the <a href="http://factorcode.org" target="_top">Factor</a>
|
||||
documentation, generated offline from a
|
||||
<code>load-everything</code> image. The Factor UI also
|
||||
includes a documentation browser tool.</p>
|
||||
<code>load-everything</code> image. If you want, you can also browse the
|
||||
documentation from within the <a href="http://factorcode.org" target="_top">Factor</a> UI.</p>
|
||||
|
||||
<p>You may search article titles below.</p>
|
||||
<p>You may search article titles below; for example, try searching for "HTTP".</p>
|
||||
|
||||
<t:form t:action="$help-webapp/search">
|
||||
<t:field t:name="search" />
|
||||
|
|
|
@ -18,6 +18,6 @@
|
|||
</tr>
|
||||
</table>
|
||||
|
||||
<input type="SUBMIT" value="Submit" />
|
||||
<p> <button>Submit</button> </p>
|
||||
</t:form>
|
||||
</t:chloe>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
<t:bind-each t:name="annotations">
|
||||
|
||||
<a name="@id"><h2>Annotation: <t:label t:name="summary" /></h2></a>
|
||||
<h2><a name="@id">Annotation: <t:label t:name="summary" /></a></h2>
|
||||
|
||||
<table>
|
||||
<tr><th class="field-label">Author: </th><td><t:label t:name="author" /></td></tr>
|
||||
|
@ -52,7 +52,7 @@
|
|||
</tr>
|
||||
</table>
|
||||
|
||||
<input type="SUBMIT" value="Done" />
|
||||
<p> <button>Done</button> </p>
|
||||
|
||||
</t:form>
|
||||
|
||||
|
|
|
@ -166,14 +166,14 @@ posting "POSTINGS"
|
|||
[
|
||||
f <blog>
|
||||
[ deposit-blog-slots ]
|
||||
[ "id" value >>id ]
|
||||
[ update-tuple ]
|
||||
[
|
||||
<url>
|
||||
"$planet/admin" >>path
|
||||
swap id>> "id" set-query-param
|
||||
<redirect>
|
||||
]
|
||||
tri
|
||||
|
||||
<url>
|
||||
"$planet/admin" >>path
|
||||
"id" value "id" set-query-param
|
||||
<redirect>
|
||||
] >>submit ;
|
||||
|
||||
: <planet-admin> ( -- responder )
|
||||
|
|
|
@ -45,14 +45,13 @@ TUPLE: factor-website < dispatcher ;
|
|||
<boilerplate>
|
||||
{ factor-website "page" } >>template ;
|
||||
|
||||
: <configuration> ( responder -- responder' )
|
||||
: <login-config> ( responder -- responder' )
|
||||
"Factor website" <login-realm>
|
||||
"Factor website" >>name
|
||||
allow-registration
|
||||
allow-password-recovery
|
||||
allow-edit-profile
|
||||
allow-deactivation
|
||||
test-db <alloy> ;
|
||||
allow-deactivation ;
|
||||
|
||||
: <factor-website> ( -- responder )
|
||||
factor-website new-dispatcher
|
||||
|
@ -77,11 +76,10 @@ SYMBOL: dh-file
|
|||
"password" key-password set-global
|
||||
common-configuration
|
||||
<factor-website>
|
||||
<pastebin> "pastebin" add-responder
|
||||
<planet> "planet" add-responder
|
||||
<pastebin> <factor-boilerplate> <login-config> "pastebin" add-responder
|
||||
<planet> <factor-boilerplate> <login-config> "planet" add-responder
|
||||
"/tmp/docs/" <help-webapp> "docs" add-responder
|
||||
<factor-boilerplate>
|
||||
<configuration>
|
||||
test-db <alloy>
|
||||
main-responder set-global ;
|
||||
|
||||
: <gitweb> ( path -- responder )
|
||||
|
@ -92,10 +90,10 @@ SYMBOL: dh-file
|
|||
: init-production ( -- )
|
||||
common-configuration
|
||||
<vhost-dispatcher>
|
||||
<factor-website> <factor-boilerplate> <configuration> "concatenative.org" add-responder
|
||||
<pastebin> <factor-boilerplate> <configuration> "paste.factorcode.org" add-responder
|
||||
<planet> <factor-boilerplate> <configuration> "planet.factorcode.org" add-responder
|
||||
home "docs" append-path <help-webapp> <configuration> "docs.factorcode.org" add-responder
|
||||
<factor-website> <login-config> <factor-boilerplate> test-db <alloy> "concatenative.org" add-responder
|
||||
<pastebin> <login-config> <factor-boilerplate> test-db <alloy> "paste.factorcode.org" add-responder
|
||||
<planet> <login-config> <factor-boilerplate> test-db <alloy> "planet.factorcode.org" add-responder
|
||||
home "docs" append-path <help-webapp> test-db <alloy> "docs.factorcode.org" add-responder
|
||||
home "cgi" append-path <gitweb> "gitweb.factorcode.org" add-responder
|
||||
main-responder set-global ;
|
||||
|
||||
|
|
Loading…
Reference in New Issue