Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
c363e1b5
Commit
c363e1b5
authored
Dec 04, 1998
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finished mods & testing for online help
parent
4332e29b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
103 additions
and
54 deletions
+103
-54
lib/python/HelpSys/HelpSys.py
lib/python/HelpSys/HelpSys.py
+4
-2
lib/python/HelpSys/ObjectRef.py
lib/python/HelpSys/ObjectRef.py
+3
-3
lib/python/HelpSys/helpsys.dtml
lib/python/HelpSys/helpsys.dtml
+10
-45
lib/python/HelpSys/helpsys_main.dtml
lib/python/HelpSys/helpsys_main.dtml
+49
-0
lib/python/HelpSys/helpsys_menu.dtml
lib/python/HelpSys/helpsys_menu.dtml
+33
-0
lib/python/HelpSys/objectitem.dtml
lib/python/HelpSys/objectitem.dtml
+2
-2
lib/python/HelpSys/objectref.dtml
lib/python/HelpSys/objectref.dtml
+2
-2
No files found.
lib/python/HelpSys/HelpSys.py
View file @
c363e1b5
"""Help system implementation"""
__version__
=
'$Revision: 1.
3
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
4
$'
[
11
:
-
2
]
import
sys
,
os
,
string
,
Globals
,
Acquisition
...
...
@@ -19,6 +19,8 @@ class HelpSys(HelpBase):
__roles__
=
None
hs_index
=
HTMLFile
(
'helpsys'
,
globals
())
hs_menu
=
HTMLFile
(
'helpsys_menu'
,
globals
())
hs_main
=
HTMLFile
(
'helpsys_main'
,
globals
())
hs_cicon
=
'HelpSys/hs_cbook'
hs_eicon
=
'HelpSys/hs_obook'
...
...
@@ -33,7 +35,7 @@ class HelpSys(HelpBase):
hs_cbook
=
ImageFile
(
'images/hs_cbook.gif'
,
globals
())
hs_id
=
'HelpSys'
hs_title
=
'
Help System
'
hs_title
=
'
Z Help Online
'
ObjectRef
=
ObjectRef
()
...
...
lib/python/HelpSys/ObjectRef.py
View file @
c363e1b5
"""Object Reference implementation"""
__version__
=
'$Revision: 1.
1
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
2
$'
[
11
:
-
2
]
import
sys
,
os
,
string
,
Globals
,
Acquisition
...
...
@@ -16,7 +16,7 @@ class ObjectItem(HelpBase, classobject):
""" """
__roles__
=
None
hs_
index
=
HTMLFile
(
'objectitem'
,
globals
())
hs_
main
=
HTMLFile
(
'objectitem'
,
globals
())
hs_cicon
=
'HelpSys/hs_dnode'
hs_eicon
=
'HelpSys/hs_dnode'
...
...
@@ -74,7 +74,7 @@ class ObjectRef(HelpBase):
__names__
=
None
__roles__
=
None
hs_
index
=
HTMLFile
(
'objectref'
,
globals
())
hs_
main
=
HTMLFile
(
'objectref'
,
globals
())
hs_cicon
=
'HelpSys/hs_cbook'
hs_eicon
=
'HelpSys/hs_obook'
...
...
lib/python/HelpSys/helpsys.dtml
View file @
c363e1b5
<html>
<head>
<title>
ZOPE Help
</title>
<title>
Z Object Publishing Environment Help
</title>
</head>
<body
bgcolor=
"#ffffff"
link=
"#000099"
vlink=
"#555555"
>
<h2>
Zope Help
</h2>
<p>
The Zope online help system provides links to in-depth product guides,
programming references and other resources.
</p>
<h3>
General Documentation
</h3>
<p>
General documentation for the use and management of built-in and
add-on products, as well as an extensive DTML manual are available
on the Zope website at
<a
href=
"http://www.zope.org"
target=
"_top"
>
http://www.zope.org
</a>
.
</p>
<h3>
Programming References
</h3>
<p>
Zope provides an online object reference that documents the
services provided by high-level objects such as Documents
and Folders. Other references will be added soon.
</p>
<ul>
<li>
<a
href=
"<!--#var BASE1-->/HelpSys/ObjectRef/hs_index"
>
Object Reference
</a>
</ul>
<h3>
Other Resources
</h3>
<p>
One of the best resources available is the
<a
href=
"mailto:zope@zope.org"
>
Zope mailing list
</a>
. You can subscribe to the mailing list by sending an
email to
<a
href=
"mailto:zope-request@zope.org"
>
zope-request@zope.org
</a>
and including the word
"
subscribe
"
in the subject line.
</p>
</body>
<frameset
cols=
"180,*"
>
<frame
src=
"<!--#var SCRIPT_NAME-->/HelpSys/hs_menu"
name=
"hs_tframe"
marginwidth=
"2"
marginheight=
"2"
scrolling=
"auto"
>
<frame
src=
"<!--#var SCRIPT_NAME-->/HelpSys/hs_main"
NAME=
"hs_cframe"
marginwidth=
"2"
marginheight=
"2"
scrolling=
"auto"
>
</frameset>
<noframes>
This item requires the use of a
<em>
frames-capable
</em>
web browser.
</noframes>
</html>
lib/python/HelpSys/helpsys_main.dtml
0 → 100644
View file @
c363e1b5
<html>
<head>
<title>
Z Object Publishing Environment Help
</title>
</head>
<body
bgcolor=
"#ffffff"
link=
"#000099"
vlink=
"#555555"
>
<h2>
Z Object Publishing Environment Help
</h2>
<p>
The Z online help system provides links to in-depth product guides,
programming references and other resources.
</p>
<h3>
General Documentation
</h3>
<p>
General documentation for the use and management of built-in and
add-on products, as well as an extensive DTML manual are available
on the Zope website at
<a
href=
"http://www.zope.org"
target=
"_top"
>
http://www.zope.org
</a>
.
</p>
<h3>
Programming References
</h3>
<p>
There is currently an online object reference that documents the
services provided by high-level objects such as Documents
and Folders. Other references will be added soon.
</p>
<ul>
<li>
<a
href=
"<!--#var BASE1-->/HelpSys/ObjectRef/hs_main"
>
Object Reference
</a>
</ul>
<h3>
Other Resources
</h3>
<p>
One of the best resources available is the
<a
href=
"mailto:zope@zope.org"
>
Zope mailing list
</a>
. You can subscribe to the mailing list by sending an
email to
<a
href=
"mailto:zope-request@zope.org"
>
zope-request@zope.org
</a>
and including the word
"
subscribe
"
in the subject line.
</p>
</body>
</html>
lib/python/HelpSys/helpsys_menu.dtml
0 → 100644
View file @
c363e1b5
<html>
<head>
<title>
Z Object Publishing Environment Help
</title>
</head>
<body
bgcolor=
"#ffffff"
link=
"#000099"
vlink=
"#555555"
>
<table
cellspacing=
"0"
>
<tr>
<td
valign=
"top"
nowrap
>
<a
href=
"hs_main"
target=
"hs_cframe"
>
<img
src=
"<!--#var SCRIPT_NAME-->/<!--#var hs_eicon-->"
border=
"0"
alt=
"Z Online Help"
></a>
<strong>
<a
href=
"hs_main"
target=
"hs_cframe"
>
Z Online Help
</a>
</strong>
</td>
</tr>
</table>
<!--#tree id=hs_id url=hs_url branches=hs_objectvalues nowrap=1-->
<a
href=
"<!--#var tree-item-url-->/hs_main"
target=
"hs_cframe"
>
<!--#if tree-item-expanded-->
<img
src=
"<!--#var SCRIPT_NAME-->/<!--#var hs_eicon-->"
border=
"0"
alt=
"click to view this item"
></a>
<!--#else-->
<img
src=
"<!--#var SCRIPT_NAME-->/<!--#var hs_cicon-->"
border=
"0"
alt=
"click to view this item"
></a>
<!--#endif-->
<a
href=
"<!--#var tree-item-url-->/hs_main"
target=
"hs_cframe"
>
<!--#var hs_title-->
</a>
<!--#/tree-->
</body>
</html>
lib/python/HelpSys/objectitem.dtml
View file @
c363e1b5
...
...
@@ -8,7 +8,7 @@ Object Reference
<a
name=
"top"
>
<h2><a
href=
"../hs_
index
"
>
Object Reference
</a></h2>
<h2><a
href=
"../hs_
main
"
>
Object Reference
</a></h2>
...
...
@@ -71,7 +71,7 @@ Object Reference
</dl>
<p>
<a
href=
"../hs_
index
"
>
<a
href=
"../hs_
main
"
>
<img
src=
"<!--#var SCRIPT_NAME-->/HelpSys/hs_larrow"
height=
"9"
width=
"9"
border=
"0"
valign=
"bottom"
alt=
""
>
Back to Object Reference
</a>
</p>
</body>
...
...
lib/python/HelpSys/objectref.dtml
View file @
c363e1b5
...
...
@@ -20,14 +20,14 @@ focuses on those object services useful in
<!--#in hs_objectvalues-->
<!--#with sequence-item-->
<li>
<a
href=
"<!--#var BASE1-->/HelpSys/ObjectRef/<!--#var
meta_type fmt=url-quote-->/hs_
index
"
>
<!--#var meta_type-->
</a>
meta_type fmt=url-quote-->/hs_
main
"
>
<!--#var meta_type-->
</a>
<!--#endwith-->
</li>
<!--#endin-->
</ul>
<p>
<a
href=
"../hs_
index
"
>
<a
href=
"../hs_
main
"
>
<img
src=
"<!--#var SCRIPT_NAME-->/HelpSys/hs_larrow"
height=
"9"
width=
"9"
border=
"0"
valign=
"bottom"
alt=
""
>
Back to Help
</a>
</p>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment