> having lived through a few mailing lists flooded with SCCS/RCS/PVSS/
> CVS/Subversion/etc notices over the years, I vote for a separate
> mailing list
While I appreciate your concern, Paul, I think we should try it here
first; otherwise those messages wouldn't get the exposure we need.
If it turns out to be too noisy, we can always migrate to a dedicated
list. (Also, I made sure the subject line has a clear marker for easy
scanning or filtering).
Here's the post-commit script:
http://trac.tiddlywiki.org/browser/Trunk/subversion/hooks/post-commit
(sample message attached below)
So we're about ready to turn this on. (I just have to flip a switch in
this group's admin section to authorize [email protected].)
Please let me know if there's anything you want me to change beforehand.
-- F.
---------------
From: [email protected]
Date: Mon, 20 Apr 2009 13:14:44 +0000
Subject: [twdev] [commit #9531] ensure consistent use of quote characters
FND
2009-04-18 10:21:09 +0000 (Sat, 18 Apr 2009)
195
ensure consistent use of quote characters
double quotes should be used whenever possible
also using lowercase characters for element names
cf. http://trac.tiddlywiki.org/wiki/CodingConventions
---------------
U Trunk/core/js/Toolbar.js
---------------
Modified: Trunk/core/js/Toolbar.js
===================================================================
--- Trunk/core/js/Toolbar.js 2009-04-17 19:50:44 UTC (rev 9530)
+++ Trunk/core/js/Toolbar.js 2009-04-18 10:21:09 UTC (rev 9531)
-102,7 +102,7 @@
{
var e = this.nextSibling;
e.style.display = "inline";
- this.style.display = 'none';
+ this.style.display = "none";
return false;
};
-110,8 +110,8 @@
{
var e = this.parentNode;
var m = e.previousSibling;
- e.style.display = 'none';
- m.style.display = 'inline';
+ e.style.display = "none";
+ m.style.display = "inline";
return false;
};
[...]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/TiddlyWikiDev?hl=en
-~----------~----~----~----~------~----~------~--~---