[Zope] Opening .doc files in zope

2005-05-27 Thread Allen Huang
Is there any way to open a .doc files using dtml or script and print them??
		Yahoo! Mail 
Stay connected, organized, and protected. Take the tour___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] Opening .doc files in zope

2005-05-27 Thread Dennis Allison
On Fri, 27 May 2005, Allen Huang wrote:

 Is there any way to open a .doc files using dtml or script and print them??
 

The short answer is it depends.  To make such files generally available 
you have to convert them to HTML so arbirary browsers can access them.  
You can use MS Word to do the conversion.  If your Zope is running on a 
Windows machine that also has Word, you can manage the conversion 
dynamically using an External Method or a Product (which you'd have to 
write).  Alternatively, you could store the MS Word document in it's XML
form and use that to drive the rendering.   If you are not interested in 
general availability and you users are all running Windows with Word 
installed, you can configure IE, I believe, to render Word documents 
directly.



___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )