[Zope3-checkins] CVS: Zope3/src/zope/app/browser/content - file_upload.hlp:1.1 configure.zcml:1.10

Stephan Richter srichter@cbu.edu
Tue, 7 Jan 2003 07:28:16 -0500


Update of /cvs-repository/Zope3/src/zope/app/browser/content
In directory cvs.zope.org:/tmp/cvs-serv14439/app/browser/content

Modified Files:
	configure.zcml 
Added Files:
	file_upload.hlp 
Log Message:
Implementation of the OnlineHelp proposal. Since we do not have STX yet,
it works only with regular Text or HTML files at the moment. 

I added a box to the Rotterdam skin which shows all relevant Help Topics.
Currently you can only see a Help Topic for the File Upload screen. 

To Do:

  - Clean up code a bit.

  - Write Documentation (ZCML, Recipe, ...)

  - Implement STX or ReST support.

  - Writing Help File for the various screens!


=== Added File Zope3/src/zope/app/browser/content/file_upload.hlp ===
This screen allows to upload new file data.

=== Zope3/src/zope/app/browser/content/configure.zcml 1.9 => 1.10 ===
--- Zope3/src/zope/app/browser/content/configure.zcml:1.9	Tue Dec 31 13:26:52 2002
+++ Zope3/src/zope/app/browser/content/configure.zcml	Tue Jan  7 07:27:43 2003
@@ -1,6 +1,7 @@
 <zopeConfigure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:browser="http://namespaces.zope.org/browser"
+   xmlns:help="http://namespaces.zope.org/help"
    >
 
 <!-- File View Directives -->
@@ -56,6 +57,15 @@
      for="zope.app.interfaces.content.file.IFile"
      file="file_icon.gif"
      />
+
+<help:register 
+    id = "file_upload"
+    title = "File Upload Screen"
+    parent = "ui"
+    for = "zope.app.interfaces.content.file.IFile"
+    view = ".file.FileUpload."
+    doc_path = "./file_upload.hlp" />
+
 
 <!-- I18n File View Directives -->