[Zope-CVS] CVS: Packages/JobBoardEx - configure.zcml:1.1 JobList.zcml:NONE

Guido van Rossum guido@python.org
Mon, 17 Jun 2002 13:53:29 -0400


Update of /cvs-repository/Packages/JobBoardEx
In directory cvs.zope.org:/tmp/cvs-serv11842

Added Files:
	configure.zcml 
Removed Files:
	JobList.zcml 
Log Message:
Rename config.zcml to configure.zcml

=== Added File Packages/JobBoardEx/configure.zcml ===
<zopeConfigure
         xmlns='http://namespaces.zope.org/zope'
         xmlns:zmi='http://namespaces.zope.org/zmi'
         xmlns:security='http://namespaces.zope.org/security'
         xmlns:browser='http://namespaces.zope.org/browser'
>

<content class=".JobList.">
   <zmi:factory title="Job List"
                permission="Zope.ManageContent" 
                />
   <security:allow interface=".IJobList." />
   <implements interface="Zope.App.OFS.Container.IContainer.IItemContainer" />
</content>

<content class=".Job.">
   <security:allow interface=".IJob." />
</content>

<browser:view name="index.html"
              for=".IJobList."
              template="JobListView.pt"
              permission="Zope.Public" 
              />

<browser:defaultView for=".IJobList."
                     name="index.html"
                     />

<browser:view for=".IJobList."
              factory=".JobCreateView."
              permission="Zope.ManageContent"
              >

  <browser:page name="createForm.html"  attribute="form" />
  <browser:page name="previewForm.html" attribute="form2" />
  <browser:page name="create"           attribute="action" />

</browser:view>

<browser:view name="index.html"
              for=".IJob."
              template="JobView.pt"
              permission="Zope.Public" 
              />

<browser:defaultView for=".IJob."
                     name="index.html"
                     />

<browser:view for=".IJobList."
              factory=".ApproveJobsView."
              permission="Zope.ManageContent"
              >

  <browser:page name="approveForm.html" attribute="form" />
  <browser:page name="approve"          attribute="action" />

</browser:view>


<zmi:icon for=".IJobList." file="joblist.gif" />

</zopeConfigure>

=== Removed File Packages/JobBoardEx/JobList.zcml ===