Tweaking help webapp
parent
577ee839fd
commit
a75622f813
|
@ -86,6 +86,8 @@ M: topic browser-link-href topic>filename ;
|
||||||
{ "resource:core" "resource:basis" "resource:extra" } vocab-roots [
|
{ "resource:core" "resource:basis" "resource:extra" } vocab-roots [
|
||||||
load-everything
|
load-everything
|
||||||
|
|
||||||
|
"/tmp/docs/" make-directory
|
||||||
|
|
||||||
"/tmp/docs/" [
|
"/tmp/docs/" [
|
||||||
generate-indices
|
generate-indices
|
||||||
generate-help-files
|
generate-help-files
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<t:base t:href="$help-webapp" />
|
<t:base t:href="$help-webapp" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<frameset cols="25%, 75%">
|
<frameset cols="30%, 70%">
|
||||||
<frame src="search" name="search" />
|
<frame src="search" name="search" />
|
||||||
<frame src="content/article-handbook.html" name="content" />
|
<frame src="content/article-handbook.html" name="content" />
|
||||||
</frameset>
|
</frameset>
|
||||||
|
|
|
@ -7,10 +7,24 @@
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<t:base t:href="$help-webapp/content/" />
|
<t:base t:href="$help-webapp/content/" />
|
||||||
|
|
||||||
|
<style>
|
||||||
|
body { font-family: sans-serif; font-size: 85%; }
|
||||||
|
a:link { text-decoration: none; color: #00004c; }
|
||||||
|
a:visited { text-decoration: none; color: #00004c; }
|
||||||
|
a:active { text-decoration: none; color: #00004c; }
|
||||||
|
a:hover { text-decoration: underline; color: #00004c; }
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Factor documentation</h1>
|
<h1><t:a t:href="$help-webapp/content/article-handbook.html"
|
||||||
|
target="content">Factor help</t:a></h1>
|
||||||
|
|
||||||
|
<p>This documentation was generated offline from a Factor
|
||||||
|
image where <code>load-everything</code> was run.</p>
|
||||||
|
|
||||||
|
<p>You may search article titles below.</p>
|
||||||
|
|
||||||
<t:form t:action="$help-webapp/search">
|
<t:form t:action="$help-webapp/search">
|
||||||
<t:field t:name="search" />
|
<t:field t:name="search" />
|
||||||
|
@ -18,7 +32,9 @@
|
||||||
</t:form>
|
</t:form>
|
||||||
|
|
||||||
<t:if t:value="articles">
|
<t:if t:value="articles">
|
||||||
<h1>Articles</h1>
|
<hr/>
|
||||||
|
|
||||||
|
<h2>Articles</h2>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<t:each t:name="articles">
|
<t:each t:name="articles">
|
||||||
|
@ -28,7 +44,9 @@
|
||||||
</t:if>
|
</t:if>
|
||||||
|
|
||||||
<t:if t:value="vocabs">
|
<t:if t:value="vocabs">
|
||||||
<h1>Vocabularies</h1>
|
<hr/>
|
||||||
|
|
||||||
|
<h2>Vocabularies</h2>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<t:each t:name="vocabs">
|
<t:each t:name="vocabs">
|
||||||
|
@ -38,7 +56,9 @@
|
||||||
</t:if>
|
</t:if>
|
||||||
|
|
||||||
<t:if t:value="words">
|
<t:if t:value="words">
|
||||||
<h1>Words</h1>
|
<hr/>
|
||||||
|
|
||||||
|
<h2>Words</h2>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<t:each t:name="words">
|
<t:each t:name="words">
|
||||||
|
|
Loading…
Reference in New Issue