[Zope-CVS] CVS: Products/ExternalEditor - CHANGES.txt:1.45
zopeedit.py:1.44
Casey Duncan
casey at zope.com
Fri Apr 23 11:57:36 EDT 2004
Update of /cvs-repository/Products/ExternalEditor
In directory cvs.zope.org:/tmp/cvs-serv6866
Modified Files:
CHANGES.txt zopeedit.py
Log Message:
Checkin bugfixes for 0.7.2 release
=== Products/ExternalEditor/CHANGES.txt 1.44 => 1.45 ===
--- Products/ExternalEditor/CHANGES.txt:1.44 Thu Nov 6 09:18:48 2003
+++ Products/ExternalEditor/CHANGES.txt Fri Apr 23 11:57:05 2004
@@ -1,5 +1,14 @@
External Editor Change Log
+ 4/23/04 - 0.7.2 Release
+
+ - Fixed packaging bug in Windows binary which disabled several plugins.
+ This fixes "Editor did not launch properly" errors for MSOffice
+ among others.
+
+ - Fixed a bug where very short editing sessions where no changes were
+ made could make EE think the editor never launched. Thanks to Maik Ihde.
+
11/7/03 - 0.7.1 Release (affects win32 binary only)
- Fix encoding bug in windows binary. Thanks to Chris McDonough.
=== Products/ExternalEditor/zopeedit.py 1.43 => 1.44 ===
--- Products/ExternalEditor/zopeedit.py:1.43 Fri Apr 4 09:31:53 2003
+++ Products/ExternalEditor/zopeedit.py Fri Apr 23 11:57:05 2004
@@ -309,7 +309,6 @@
sys.exit()
save_interval = float(self.options.get('save_interval'))
- launch_success = 0
last_mtime = os.path.getmtime(self.content_file)
command = self.getEditorCommand()
@@ -351,6 +350,8 @@
if use_locks:
self.lock()
+ launch_success = editor.isAlive()
+
while 1:
editor.wait(save_interval or 2)
mtime = os.path.getmtime(self.content_file)
More information about the Zope-CVS
mailing list