You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by st...@apache.org on 2005/06/08 08:49:57 UTC

svn commit: r189538 - /perl/modperl/docs/trunk/MAINTAINER

Author: stas
Date: Tue Jun  7 23:49:56 2005
New Revision: 189538

URL: http://svn.apache.org/viewcvs?rev=189538&view=rev
Log:
maintainer notes

Added:
    perl/modperl/docs/trunk/MAINTAINER

Added: perl/modperl/docs/trunk/MAINTAINER
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/MAINTAINER?rev=189538&view=auto
==============================================================================
--- perl/modperl/docs/trunk/MAINTAINER (added)
+++ perl/modperl/docs/trunk/MAINTAINER Tue Jun  7 23:49:56 2005
@@ -0,0 +1,25 @@
+Various maintainer notes:
+
+############
+# Diagrams #
+############
+
+the .dia files are source diagrams as generated by dia(1). It's a must
+to store these files in the binary format when using svn, as they
+contain xml and binary chunks . Automatically svn will store those as
+text which will break binary strings making those files unusable.
+
+So you either need to manually add the mime type property on each new
+.dia file you add or adjust your ~/.subversion/config, to have:
+
+[auto-props]
+*.dia = svn:mime-type=application/octet-stream 
+
+dia generates .png files via its export method. As older browsers
+won't recognize .png or crash, we want to use gifs instead. Here is
+how to convert png files to gif files:
+
+  perl -le 'for (@ARGV) { print STDERR "converting $_\n"; \ s/\.\w+$//;
+system "pngtopnm $_.png | pnmquant 256 | ppmtogif > $_.gif" } ' *.png
+
+



---------------------------------------------------------------------
To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-cvs-help@perl.apache.org