File: AppendixB.stx

package info (click to toggle)
zope-devguide 20011206-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 456 kB
  • ctags: 45
  • sloc: python: 152; makefile: 124; sh: 54
file content (86 lines) | stat: -rw-r--r-- 2,426 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
Appendix B: Zope Directories

  This is a list of some important directories in the Zope source
  code.

    'Extensions' -- Code for External Methods go in this
    directory.

    'ZServer' -- Python code for ZServer and Medusa.

    'ZServer/medusa' -- Sam Rushing's Medusa package upon which
    ZServer is built.

    'doc' -- Miscellaneous documentation. 

    'import' -- Place Zope export files here in order to import them
    into Zope.

    'inst' -- Installation scripts.

    'pcgi' --  C and Python code for PCGI.

    'utilities' -- Miscellaneous utilities.

    'var' -- Contains the ZODB data file (Data.fs) and various other
    files (logs, pids, etc.) This directory should be owned and
    writable by the userid that Zope is run as.

    'lib/Components' -- Python extension modules written in C
    including BTree, ExtensionClass, cPickle, zlib, etc.

    'lib/python' -- Most of the Zope Python code is in here.

    'lib/python/AccessControl' -- Security classes.

    'lib/python/App' -- Zope application classes. Stuff like product
    registration, and the control panel.

    'lib/python/BTrees' -- Btrees package.

    'lib/python/DateTime' -- DateTime package.

    'lib/python/DocumentTemplate' -- DTML templating package. DTML
    Document and DTML Method use this.

    'lib/python/HelpSys' -- Online help system.

    'lib/python/Interface' -- Scarecrow interfaces package.

    'lib/python/OFS' -- Object File System code. Includes basic Zope
    classes (Folder, DTML Document) and interfaces (ObjectManager,
    SimpleItem).

    'lib/python/Products' -- Zope products are installed here.

    'lib/python/Products/OFSP' -- The OFS product. Contains
    initialization code for basic Zope objects like Folder and DTML
    Document.

    'lib/python/RestrictedPython' -- Python security used by DTML and
    Python Scripts.

    'lib/python/SearchIndex' -- Indexes used by ZCatalog.

    'lib/python/Shared' -- Shared code for use by multiple Products.

    'lib/python/StructuredText' -- Structured Text package.

    'lib/python/TreeDisplay' -- Tree tag package.

    'lib/python/ZClasses' -- ZClasses package.

    'lib/python/ZLogger' -- Logging package.

    'lib/python/ZODB' -- ZODB package.

    'lib/python/ZPublisher' -- The Zope ORB.

    'lib/python/Zope' -- The Zope package published by ZPublisher.

    'lib/python/webDAV' -- WebDAV support classes and interfaces.