[Zope-CVS] CVS: Products/ExternalEditor - CHANGES.txt:1.46 zopeedit.py:1.45

Casey Duncan casey at zope.com
Fri Apr 23 12:10:13 EDT 2004


Update of /cvs-repository/Products/ExternalEditor
In directory cvs.zope.org:/tmp/cvs-serv9114

Modified Files:
	CHANGES.txt zopeedit.py 
Log Message:
In default config, use .txt for text/plain rather then text/*. Add .css and .js extensions.


=== Products/ExternalEditor/CHANGES.txt 1.45 => 1.46 ===
--- Products/ExternalEditor/CHANGES.txt:1.45	Fri Apr 23 11:57:05 2004
+++ Products/ExternalEditor/CHANGES.txt	Fri Apr 23 12:09:42 2004
@@ -2,6 +2,9 @@
 
   4/23/04 - 0.7.2 Release
 
+    - Change default configuration to use .txt extension for text/plain only. 
+      Add extensions for css and javascript files.
+
     - Fixed packaging bug in Windows binary which disabled several plugins.
       This fixes "Editor did not launch properly" errors for MSOffice
       among others.


=== Products/ExternalEditor/zopeedit.py 1.44 => 1.45 ===
--- Products/ExternalEditor/zopeedit.py:1.44	Fri Apr 23 11:57:05 2004
+++ Products/ExternalEditor/zopeedit.py	Fri Apr 23 12:09:42 2004
@@ -707,7 +707,7 @@
 [meta-type:Z SQL Method]
 extension=.sql
 
-[content-type:text/*]
+[content-type:text/plain]
 extension=.txt
 
 [content-type:text/html]
@@ -715,6 +715,12 @@
 
 [content-type:text/xml]
 extension=.xml
+
+[content-type:text/css]
+extension=.css
+
+[content-type:text/javascript]
+extension=.js
 
 [content-type:image/*]
 editor=gimp




More information about the Zope-CVS mailing list