Fossil

Check-in [dfe0cf7e]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix the wording on the documentation of the /announce web page.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: dfe0cf7ebf1f6362947378d7dd26e4164f44a42364e94a0eaf74da053b418a01
User & Date: drh 2018-06-28 17:22:19.536
Context
2018-06-29
11:40
Further wording enhancements to the on-line documentation to the "fossil uv" command. ... (check-in: c4ab8834 user: drh tags: trunk)
2018-06-28
17:22
Fix the wording on the documentation of the /announce web page. ... (check-in: dfe0cf7e user: drh tags: trunk)
2018-06-27
17:02
Fix typo in the manpage for the /announce page. ... (check-in: c1bce3f5 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/email.c.
2026
2027
2028
2029
2030
2031
2032
2033
2034

2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
}


/*
** WEBPAGE: announce
**
** A web-form, available to users with the "Send-Announcement" or "A"
** capability, that allows one to send an announcements to whomever
** has subscribed to them.  The administrator can also send an announcement

** to the entire mailing list (including people who have elected to
** receive no announcements or notifications of any kind, or to
** individual email to anyone.
*/
void announce_page(void){
  login_check_credentials();
  if( !g.perm.Announce ){
    login_needed(0);
    return;
  }







|
|
>
|
|
<







2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037

2038
2039
2040
2041
2042
2043
2044
}


/*
** WEBPAGE: announce
**
** A web-form, available to users with the "Send-Announcement" or "A"
** capability, that allows one to send announcements to whomever
** has subscribed to receive announcements.  The administrator can
** also send a message to an arbitrary email address and/or to all
** subscribers regardless of whether or not they have elected to
** receive announcements.

*/
void announce_page(void){
  login_check_credentials();
  if( !g.perm.Announce ){
    login_needed(0);
    return;
  }