[cad-linux-dev] uber-converter subversion commits list

  • From: Eric Wilhelm <ewilhelm@xxxxxxxxxxxxx>
  • To: cad-linux-dev@xxxxxxxxxxxxx
  • Date: Thu, 23 Sep 2004 16:27:26 -0500

It's not really a mailing list, since I haven't taken the effort to 
setup a listserver.  However, I do have the subversion repository 
setup to send mail about commits.  I don't want to just include 
cad-linux-dev, since that might start to annoy some of you.

Anyway, if you want to be kept right-up-to-the-minute about recent 
developments and don't mind being annoyed by messages about every 
little change, let me know and I'll add you to the list.  This means 
you'll get fun and exciting messages like the below (excerpt.)

--Eric

----------  Forwarded Message:  ----------

Subject: r36 - in trunk: code/perl/scripts data/doc/spec
Date: Thursday 23 September 2004 04:02 pm
From: Subversion Commit <ewilhelm@xxxxxxxxxxxxx>
To: ewilhelm@xxxxxxxxxxxxx, csomerlot@xxxxxxxxx

Author: ewilhelm
Date: 2004-09-23 15:52:54 -0500 (Thu, 23 Sep 2004)
New Revision: 36

Added:
   trunk/code/perl/scripts/rhizopod_stream
   trunk/code/perl/scripts/rhizopod_unstream
   trunk/code/perl/scripts/spec_typeglobs
Modified:
   trunk/data/doc/spec/formatting_conventions.txt
   trunk/data/doc/spec/rhizopod_spec.yml
Log:
added streaming-specific 'filepath:' attribute to spec
created some sample implementations for said streaming/unstreaming
(this also tests the new post-commit e-mail handling (I hope))

Added: trunk/code/perl/scripts/rhizopod_stream
===================================================================
--- trunk/code/perl/scripts/rhizopod_stream     2004-09-23 15:47:00 UTC
 (rev 35) +++ trunk/code/perl/scripts/rhizopod_stream   2004-09-23
 20:52:54 UTC (rev 36) @@ -0,0 +1,82 @@
+#!/usr/bin/perl
+
+use YAML;
+
+# turns a rhizopod directory into a stream
+
+my $dir = shift;
+(-d $dir) or die "usage: $0 <dir>\n";
+
+$dir =~ s#/*$#/#;
+foreach my $file (gather_filenames($dir)) {

Other related posts:

  • » [cad-linux-dev] uber-converter subversion commits list