181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
style_finish_page();
}
/*
** WEBPAGE: setup-logmenu
**
** Show a menu of available log renderings accessible to an administrator,
** together with a succinct explanation of each.
**
** This page is only accessible by administrators.
*/
void setup_logmenu_page(void){
Blob desc;
blob_init(&desc, 0, 0);
|
|
|
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
style_finish_page();
}
/*
** WEBPAGE: setup-logmenu
**
** Show a menu of available log renderings accessible to an administrator,
** together with a succinct explanation of each.
**
** This page is only accessible by administrators.
*/
void setup_logmenu_page(void){
Blob desc;
blob_init(&desc, 0, 0);
|
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
|
@ <li><p><b>project-description</b> →
@ A description of project in this repository. This is a verbose form
@ of project-name. This description can be edited in the second entry
@ box on the <a href="./setup_config">Setup/Configuration page</a>.
@
@ <li><p><b>project-name</b> →
@ The human-readable name for the project. The project-name can be
@ modified in the first entry on the
@ <a href="./setup_config">Setup/Configuration page</a>.
@
@ <li><p><b>peer-repo-<i>CODE</i></b> →
@ <i>CODE</i> is 16-character prefix of the project-code for another
@ repository that is part of the same login-group. The value is the
@ filename for the peer repository.
@
|
|
|
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
|
@ <li><p><b>project-description</b> →
@ A description of project in this repository. This is a verbose form
@ of project-name. This description can be edited in the second entry
@ box on the <a href="./setup_config">Setup/Configuration page</a>.
@
@ <li><p><b>project-name</b> →
@ The human-readable name for the project. The project-name can be
@ modified in the first entry on the
@ <a href="./setup_config">Setup/Configuration page</a>.
@
@ <li><p><b>peer-repo-<i>CODE</i></b> →
@ <i>CODE</i> is 16-character prefix of the project-code for another
@ repository that is part of the same login-group. The value is the
@ filename for the peer repository.
@
|
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
|
style_set_current_feature("setup");
style_header("Wiki Configuration");
db_begin_transaction();
@ <form action="%R/setup_wiki" method="post"><div>
login_insert_csrf_secret();
@ <input type="submit" name="submit" value="Apply Changes"></p>
@ <hr>
onoff_attribute("Associate Wiki Pages With Branches, Tags, or Checkins",
"wiki-about", "wiki-about", 1, 0);
@ <p>
@ Associate wiki pages with branches, tags, or checkins, based on
@ the wiki page name. Wiki pages that begin with "branch/", "checkin/"
@ or "tag/" and which continue with the name of an existing branch, check-in
@ or tag are treated specially when this feature is enabled.
@ <ul>
@ <li> <b>branch/</b><i>branch-name</i>
@ <li> <b>checkin/</b><i>full-check-in-hash</i>
@ <li> <b>tag/</b><i>tag-name</i>
@ </ul>
@ (Property: "wiki-about")</p>
@ <hr>
entry_attribute("Allow Unsafe HTML In Markdown", 6,
"safe-html", "safe-html", "", 0);
@ <p>Allow "unsafe" HTML (ex: <script>, <form>, etc) to be
@ generated by <a href="%R/md_rules">Markdown-formatted</a> documents.
|
|
|
|
|
|
>
|
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
|
style_set_current_feature("setup");
style_header("Wiki Configuration");
db_begin_transaction();
@ <form action="%R/setup_wiki" method="post"><div>
login_insert_csrf_secret();
@ <input type="submit" name="submit" value="Apply Changes"></p>
@ <hr>
onoff_attribute("Associate Wiki Pages With Branches, Tags, Tickets, or Checkins",
"wiki-about", "wiki-about", 1, 0);
@ <p>
@ Associate wiki pages with branches, tags, tickets, or checkins, based on
@ the wiki page name. Wiki pages that begin with "branch/", "checkin/",
@ "tag/" or "ticket" and which continue with the name of an existing branch,
@ check-in, tag or ticket are treated specially when this feature is enabled.
@ <ul>
@ <li> <b>branch/</b><i>branch-name</i>
@ <li> <b>checkin/</b><i>full-check-in-hash</i>
@ <li> <b>tag/</b><i>tag-name</i>
@ <li> <b>ticket/</b><i>full-ticket-hash</i>
@ </ul>
@ (Property: "wiki-about")</p>
@ <hr>
entry_attribute("Allow Unsafe HTML In Markdown", 6,
"safe-html", "safe-html", "", 0);
@ <p>Allow "unsafe" HTML (ex: <script>, <form>, etc) to be
@ generated by <a href="%R/md_rules">Markdown-formatted</a> documents.
|