User: ben
Date: 05/01/31 03:36:45
Modified: xemacsweb ChangeLog template.html
Added: xemacsweb crlf-filter
Log:
Create home pages for everyone, add list of contributors, update who wrote xemacs
crlf-filter: New script, filter out CRLF's.
template.html: Add section for XEmacs contributors in People/.
devTeam.content: Major overhaul, based on FAQ.
jobs.content: Change links to point to People/ directory.
People/*: home directories for everyone.
People/make-home-page.*: New script and input.
People/photos/: New directory, containing photos from etc/photos.
People/htaccess: Allow all short mail aliases to serve as equivalent
directories for the full names.
Revision Changes Path
1.223 +10 -0 XEmacs/xemacsweb/ChangeLog
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacsweb/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -b -r1.222 -r1.223
--- ChangeLog 2005/01/19 12:26:12 1.222
+++ ChangeLog 2005/01/31 02:36:44 1.223
@@ -1,3 +1,13 @@
+2005-01-30 Ben Wing <ben(a)xemacs.org>
+
+ * People: New directory; home pages for XEmacs developers.
+ * crlf-filter: New script, filter out CRLF's.
+
+2005-01-30 Ben Wing <ben(a)xemacs.org>
+
+ * template.html: Add section for XEmacs contributors in
+ People/.
+
2005-01-19 Norbert Koch <viteno(a)xemacs.org>
* index.content: New packages have been released on 2005-01-18.
1.63 +2 -0 XEmacs/xemacsweb/template.html
(In the diff below, changes in quantity of whitespace are not shown.)
Index: template.html
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacsweb/template.html,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -b -r1.62 -r1.63
--- template.html 2003/11/08 23:05:29 1.62
+++ template.html 2005/01/31 02:36:44 1.63
@@ -99,6 +99,7 @@
<li><a href="<!-- _GP_ relPath(qq{About/created.html})
-->">Sites Created With XEmacs</a></li>
<li><a href="<!-- _GP_
relPath(qq{About/Y2Kstatement.html}) -->">Year 2000
Statement</a></li>
<li><a href="<!-- _GP_ relPath(qq{Develop/devTeam.html})
-->">Who Wrote XEmacs?</a></li>
+ <li><a href="<!-- _GP_ relPath(qq{People/index.html})
-->">XEmacs Contributors</a></li>
<li><a href="<!-- _GP_ relPath(qq{About/Website.html})
-->">Website</a></li>
</ul>
<strong>Getting XEmacs</strong>
@@ -128,6 +129,7 @@
<ul>
<li><a href="<!-- _GP_ relPath(qq{Develop/index.html})
-->">How to help</a></li>
<li><a href="<!-- _GP_ relPath(qq{Develop/devTeam.html})
-->">Who Wrote XEmacs?</a></li>
+ <li><a href="<!-- _GP_ relPath(qq{People/index.html})
-->">XEmacs Contributors</a></li>
<li><a href="<!-- _GP_ relPath(qq{Develop/jobs.html})
-->">Dev team responsibilities</a></li>
<li><a href="<!-- _GP_
relPath(qq{Architecting-XEmacs/index.html}) -->">Architecting
XEmacs</a></li>
<li><a
href="http://www.cs.indiana.edu/elisp/gui-xemacs/">Gtk-XEmac...
1.1 XEmacs/xemacsweb/crlf-filter
Index: crlf-filter
===================================================================
#!/bin/sh
# Change CR-LF's to LF in all files specified.
perl -pe 's/\r\n/\n/g' ${1+"$@"}