Differences From:
File
src/setup.c
part of check-in
[1e9c0e287e]
- Test commands for importing and exporting ticket configurations.
by
drh on
2007-10-03 12:20:00.
[view]
To:
File
src/setup.c
part of check-in
[f3807dbd88]
- Removed unnecessary items from WWW Configuration, also made RSS Title and Description into generic Project Name and Project Description settings, which will be used elsewhere in the web site.
by
jnc on
2007-10-10 02:49:29.
[view]
@@ -538,38 +538,22 @@
style_header("WWW Configuration");
db_begin_transaction();
@ <form action="%s(g.zBaseURL)/setup_config" method="POST">
- @ <hr>
- entry_attribute("Home page", 60, "homepage", "hp", "");
- @ <p>The name of a wiki file that is the homepage for the website.
- @ The home page is the page that is displayed by the "Home" link
- @ at the top of this screen. Omit the path and the ".wiki"
- @ suffix. </p>
+ @ <hr />
+
+ entry_attribute("Project Name", 60, "project-name", "pn", "");
+ @ <p>Give your project a name so visitors know what this site is about.
+ @ The project name will also be used as the RSS feed title.</p>
+
+ @ <hr />
- entry_attribute("Ticket subdirectory", 60, "ticket-subdir", "tsd", "");
- @ <p>A subdirectory in the file hierarchy that contains all trouble
- @ tickets. Leave this blank to disable ticketing. Tickets text
- @ files within this subdirectory containing a particular format
- @ (documented separately) and with the ".tkt" suffix.</p>
+ textarea_attribute("Project Description", 5, 60, "project-description", "pd", "");
+ @ <p>Describe your project. This will be used in page headers for search
+ @ engines as well as a short RSS description.</p>
- entry_attribute("Wiki subdirectory", 60, "wiki-subdir", "wsd", "");
- @ <p>A subdirectory in the file hierarchy that contains wiki pages.
- @ Leave this blank to disable wiki. Wiki pages are
- @ files within this subdirectory whose name is he wiki page title
- @ and with the suffix ".wiki".</p>
-
- entry_attribute("RSS Feed Title", 60, "rss-title", "rst", "");
- @ <p>The title of the RSS feed that publishes the changes to the
- @ repository. If left blank, the system will generate a generic
- @ title that, unfortunantly, not very helpful.</p>
-
- textarea_attribute("RSS Feed Description", 5, 60, "rss-description", "rsd", "");
- @ <p>The description of the RSS feed that publishes the changes to
- @ the repository. If left blank, the system will use the RSS Feed Title.
-
- @ <hr>
+ @ <hr />
@ <p><input type="submit" name="submit" value="Apply Changes"></p>
@ </form>
db_end_transaction(0);
style_footer();
}