Timeline
Not logged in

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

54 events for the month beginning 2018-08-01 by user wyoung

Following month ↑
2018-08-29
03:31
Fixed some Markdown-isms just checked into www/forum.wiki. check-in: 34a3bc12b0 user: wyoung tags: trunk
03:25
Assorted improvements to the "Skin Setup" section of forum.wiki. check-in: 04d4bde170 user: wyoung tags: trunk
03:13
Clarity fixes to the Email Alerts capability paragraph of forum.wiki check-in: d6e5754d71 user: wyoung tags: trunk
2018-08-26
03:35
Applied the new CSP nonce to the <script> tags in the header for the Enhanced Original, Eagle, and Xekri skins, else the clock in the upper right breaks and Chrome gives an error about the CSP violation. Closed-Leaf check-in: b9d86ed261 user: wyoung tags: csp-nonce
2018-08-25
20:41
Coloring the hyperlinks to the newest forum posts from /forum with a dimmer and less saturated version of the normal hyperlink color in the default skin, to test the new div.forumPosts selector. Other skins to be updated later if this is approved. check-in: 86ff84dac8 user: wyoung tags: trunk
17:24
Merged forum-skin-links branch to trunk. check-in: 91c2b1b6c5 user: wyoung tags: trunk
16:48 Edit [779eaaae81eeebd5|779eaaae81]: Mark "Closed". Edit check-in comment. artifact: ca85d42ac3 user: wyoung
16:06
Added new CSS class forumPosts to the
containing the list of posts on the /forum page so that skins can target elements of this list differently than others. One immediate use for this is styling read threads differently via a:visited styling. Currently, only one of the stock skins ships with an unconditional a:visited change, so that all l...
check-in: 7778249033 user: wyoung tags: trunk
2018-08-17
01:27
Allow + signs in email addresses. Added a comment to link to a source giving the true limit on legal characters in email addresses, which are currently far less restrictive than our newly-expanded limits. check-in: 1bfd790352 user: wyoung tags: trunk
2018-08-16
07:21
Improved locality of a variable. No functional change. check-in: 09103fd2f0 user: wyoung tags: trunk
07:06
Posts are now hidden on the /forum page if they're marked as private (i.e. needing moderator attention) and they were posted by another user, except when the user is a moderator.

(Closed because a different method was implemented on trunk.) Closed-Leaf check-in: 779eaaae81 user: wyoung tags: hide-post-if-needmod

06:36
Replaced a declare-and-init line pair with a single define-with-value line. No functional change. check-in: 8f47c3f653 user: wyoung tags: trunk
2018-08-14
17:11 Edit [8c0ec30bc3e84013|8c0ec30bc3]: Edit check-in comment. artifact: b4d206465e user: wyoung
17:09 Edit [51740ce45fd4d498|51740ce45f]: Edit check-in comment. artifact: ce69b80a43 user: wyoung
05:59
Changed all of the "sendmail -t" commands to "sendmail -ti" to make it ignore lines containing only a dot; we use EOF to signal "end of message," so we don't need the second signal. This is separate from the smtp.c fix in [51740ce45f]: that's only used when Fossil speaks directly to an SMTP server, where a leading dot is treated somewhat differentl... check-in: 8c0ec30bc3 user: wyoung tags: trunk
04:39
URL fix check-in: 6787aac97f user: wyoung tags: trunk
03:55
The blob-to-SMTP encoding logic was not strictly following RFC 5321 in that it was only dealing with the lone dot on the line case, doubling it to prevent the SMTP server from interpreting that as end-of-message. It missed the case where, if anything follows the dot, SMTP drops the leading dot, so you must also double the leading dot in that case. ... check-in: 51740ce45f user: wyoung tags: trunk
2018-08-13
03:51
Covered capability 7 in the forum.wiki document, and made several improvements to the "Using the Moderation Feature" section. check-in: 31631b756e user: wyoung tags: trunk
03:23
Assorted minor improvements to the www/alerts.md document. The major one is re-emphasizing the need to give capability 7 to some user or user category. Ask me how I came to think this necessary. :) check-in: 3e75a683ef user: wyoung tags: trunk
01:11
Typo fix check-in: c3d9c8e082 user: wyoung tags: trunk
00:59
More forum.wiki tweaks check-in: 26424763c7 user: wyoung tags: trunk
00:31
Assorted improvements to the forum.wiki document, mainly to the new moderation material. check-in: c1be550832 user: wyoung tags: trunk
2018-08-12
23:24
Added the "How Moderation Works" section to www/forum.wiki, and improved the newly-renamed "Using the Moderation Feature" section as a result. check-in: 812dd52c7d user: wyoung tags: trunk
22:27
Added "id"s to every header tag in the forum.wiki document, so you can create links to sub-sections. check-in: 03c298dcb9 user: wyoung tags: trunk
21:40
Fixed a few references to MIME type "text/x-fossil" in the fileformat document. It's "text/x-fossil-wiki" everywhere else. check-in: e00cdbe702 user: wyoung tags: trunk
21:35
Add /forum link to sitemap if user has RdForum capability check-in: 5ad7222f4a user: wyoung tags: trunk
06:11
URL fix in forum.wiki check-in: 542c5576b3 user: wyoung tags: trunk
03:21
Added the "Moderation" section to www/forum.wiki check-in: e06e7f8434 user: wyoung tags: trunk
03:00
Assorted tweaks and improvements to the new email alerts material in www/forum.wiki. check-in: 4326f76f7f user: wyoung tags: trunk
02:47
Added the "Email Notification" section to the forum.wiki document. check-in: 6b2752030d user: wyoung tags: trunk
2018-08-11
21:04
Added forumSel adjustment advice to forum.wiki. check-in: 0194fb6774 user: wyoung tags: trunk
20:49
The periodic "updateClock()" call made in the header for several of the built-in skins (Eagle, Enhanced1, and Xekri) violates the new stricter CSP, since it requires a JS eval. We don't need an eval here: we can pass the function's name literally to window.setTimeout instead, which treats it as a Function object, which doesn't need to be eval'd. check-in: eac15b4c63 user: wyoung tags: trunk
19:43
Added the "Enable Forum Search" section to www/forum.wiki check-in: cc5d2e1f17 user: wyoung tags: trunk
19:28
Zeroed a pointer in its declaration to squish a warning from GCC 4.8.4 on Ubuntu 14.04 about use of a potentially uninitted pointer. I don't think it's actually possible for the current code to use the pointer in the window between its declaration and first use, but I think we can afford the extra machine instruction this will cost us. (I assume ... check-in: 892781cb23 user: wyoung tags: trunk
16:59
Fix to checkin [8c91be8b], which was intended to allow the user to log in with the email found in the contact info field of the user table. That checkin is fine as far as it goes, but it only works if the caller doesn't subsequently try to use the passed user name for anything else, since it isn't actually a user name. This checkin causes the low-... check-in: 33522ff4e6 user: wyoung tags: login-with-email
2018-08-09
06:59
Minor improvements to forum.wiki check-in: 635d2f6317 user: wyoung tags: trunk
06:17
Tightned up the login-groups sub-section of the SSO section in forum.wiki. check-in: 60c586d7d7 user: wyoung tags: trunk
06:13
Tightened up the MTA point in www/forum.wiki, and added a bit about digest delivery. check-in: b51d621223 user: wyoung tags: trunk
06:04
More feature rah-rah in www/forum.wiki, plus better formatting. check-in: cce5da1658 user: wyoung tags: trunk
04:34
Clarity pass on the forum capability names in www/forum.wiki to match nomenclature on the Admin -> Users page. check-in: 2490bfba99 user: wyoung tags: trunk
03:35
Added point about multiple copies of each matching post in web search results to the forum.wiki doc. check-in: 89ab99e380 user: wyoung tags: trunk
2018-08-08
19:43
More SSO discussion improvements in forum.wiki check-in: bc303c0ec0 user: wyoung tags: trunk
19:30
More tweaks to the forum.wiki doc check-in: 5d75504af0 user: wyoung tags: trunk
19:25
Small tweak to the advice for "reader" category capability for forums check-in: ea67aadeee user: wyoung tags: trunk
19:22
Added the "Skin Setup" section to the new forum.wiki document check-in: 3ec8f0a960 user: wyoung tags: trunk
19:09
Expanded the SSO discussion in the new forum.wiki document check-in: dd0a2dd3d3 user: wyoung tags: trunk
18:58
Fixed some incorrect uses of Markdown backticks in a document declared as wiki format. check-in: 76ca1f829f user: wyoung tags: trunk
18:55
Link fix in previous check-in: be74f25902 user: wyoung tags: trunk
18:52
Several improvements to the new forum.wiki document check-in: f85bc32619 user: wyoung tags: trunk
18:32
Typo fix check-in: 15b2034307 user: wyoung tags: trunk
18:29
Fixed some Markdown formatting problems in www/emaildesign.md. Made a few minor grammar tweaks while in there. check-in: 30716e3c7d user: wyoung tags: trunk
17:21
Added initial version of www/forum.wiki document and a link to it from the front page. check-in: 4ed14b1f3f user: wyoung tags: trunk
13:52 Edit [4344f806d6944ed2|4344f806d6]: Edit check-in comment. artifact: 8a0182761b user: wyoung
13:19
Added Forum navbar before Tickets in all skins that had such a link, pointing to /forum if the user is anonymous and has capability 2 or 3, or is logged in and has any capabilities in 2-6 inclusive. Closed-Leaf check-in: 4344f806d6 user: wyoung tags: forum-skin-links
Previous month ↓