Skip to content

Commit

Permalink
export initialize-wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
cgay committed Jun 30, 2011
1 parent 3c8092d commit e871076
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dylan/library.dylan
Expand Up @@ -51,8 +51,8 @@ end library wiki;
///
define module wiki
create
add-wiki-responders,
handle-markup;
handle-markup,
initialize-wiki;
end;

/// Internal module, for test suite
Expand Down
2 changes: 0 additions & 2 deletions dylan/main.dylan
Expand Up @@ -93,7 +93,6 @@ end method process-config-element;

define method process-administrator-configuration
(admin-element :: xml/<element>)
log-debug("process-administrator-configuration");
let password = get-attr(admin-element, #"password");
let email = get-attr(admin-element, #"email");
if (~(password & email))
Expand Down Expand Up @@ -354,7 +353,6 @@ add-option-parser-by-type(*argument-list-parser*,

define function initialize-wiki
(server :: <http-server>)
log-debug("initialize-wiki");
let directory = option-value-by-long-name(*argument-list-parser*,
"static-directory");
if (directory)
Expand Down
2 changes: 1 addition & 1 deletion dylan/rst-parser.dylan
Expand Up @@ -81,7 +81,7 @@ end function parse-wiki-markup;
/// then the reference may contain RST markup when rendered as a string.
/// epos - The index within 'markup-text' of *markup-suffix*.
/// Signals:
/// <parse-error>
/// <parse-error> TODO:
///
define function parse-markup-element
(markup-text :: <string>, bpos :: <integer>)
Expand Down

0 comments on commit e871076

Please sign in to comment.