diff -u lib.orig/python/Products/TinyTablePlus/About.dtml lib/python/Products/TinyTablePlus/About.dtml
--- lib.orig/python/Products/TinyTablePlus/About.dtml 2000-04-14 00:02:42.000000000 +0900
+++ lib/python/Products/TinyTablePlus/About.dtml 2004-04-24 21:27:40.000000000 +0900
@@ -1,5 +1,8 @@
-
About TinyTablePlus...
+
+ ">
+ About TinyTablePlus...
+
diff -u lib.orig/python/Products/TinyTablePlus/Add.dtml lib/python/Products/TinyTablePlus/Add.dtml
--- lib.orig/python/Products/TinyTablePlus/Add.dtml 2000-04-14 00:03:01.000000000 +0900
+++ lib/python/Products/TinyTablePlus/Add.dtml 2004-04-24 21:25:10.000000000 +0900
@@ -1,5 +1,8 @@
- Add TinyTablePlus
+
+ ">
+ Add TinyTablePlus
+
diff -u lib.orig/python/Products/TinyTablePlus/Advanced.dtml lib/python/Products/TinyTablePlus/Advanced.dtml
--- lib.orig/python/Products/TinyTablePlus/Advanced.dtml 2000-04-10 23:10:18.000000000 +0900
+++ lib/python/Products/TinyTablePlus/Advanced.dtml 2004-04-24 21:25:36.000000000 +0900
@@ -1,5 +1,8 @@
- Advanced Options
+
+ Advanced Options
+ ">
+
diff -u lib.orig/python/Products/TinyTablePlus/Edit.dtml lib/python/Products/TinyTablePlus/Edit.dtml
--- lib.orig/python/Products/TinyTablePlus/Edit.dtml 2000-04-10 23:10:18.000000000 +0900
+++ lib/python/Products/TinyTablePlus/Edit.dtml 2004-07-27 21:39:06.000000000 +0900
@@ -1,5 +1,8 @@
- Edit
+
+ ">
+ Edit
+
@@ -27,8 +30,7 @@
| Columns |
-
+
|
@@ -46,8 +48,7 @@
| Data |
-
+
|
diff -u lib.orig/python/Products/TinyTablePlus/ImportExport.py lib/python/Products/TinyTablePlus/ImportExport.py
--- lib.orig/python/Products/TinyTablePlus/ImportExport.py 2000-04-14 00:04:26.000000000 +0900
+++ lib/python/Products/TinyTablePlus/ImportExport.py 2004-04-24 21:13:10.000000000 +0900
@@ -152,8 +152,8 @@
for c in data:
if cval.has_key(c):
s = s + cval[c]
- elif ord(c) <= 31 or ord(c) >= 127:
- s = s + '\\%03o' % ord(c)
+# elif ord(c) <= 31 or ord(c) >= 127:
+# s = s + '\\%03o' % ord(c)
else:
s = s + c
return s + '"'
diff -u lib.orig/python/Products/TinyTablePlus/TinyTablePlus.py lib/python/Products/TinyTablePlus/TinyTablePlus.py
--- lib.orig/python/Products/TinyTablePlus/TinyTablePlus.py 2000-04-14 00:30:00.000000000 +0900
+++ lib/python/Products/TinyTablePlus/TinyTablePlus.py 2005-04-08 14:06:58.000000000 +0900
@@ -39,13 +39,20 @@
from Globals import HTMLFile, MessageDialog, Persistent
from Shared.DC.ZRDB.Results import Results
-from PersistentMapping import PersistentMapping
+#from PersistentMapping import PersistentMapping
from DateTime import DateTime
from App.Extensions import getBrain
import OFS.ObjectManager, OFS.SimpleItem, Acquisition, AccessControl.Role
import Record, Missing, string, types
import ImportExport
+# PersistentMapping is for zope 2.7 or prior
+# persistent.mapping is for zope 2.8
+try:
+ from PersistentMapping import PersistentMapping
+except:
+ from persistent.mapping import PersistentMapping
+
######################### Folder Methods #########################
addItemForm=HTMLFile('Add', globals())
diff -u lib.orig/python/Products/TinyTablePlus/View.dtml lib/python/Products/TinyTablePlus/View.dtml
--- lib.orig/python/Products/TinyTablePlus/View.dtml 2000-04-10 23:10:18.000000000 +0900
+++ lib/python/Products/TinyTablePlus/View.dtml 2004-04-24 21:27:29.000000000 +0900
@@ -1,5 +1,8 @@
- View
+
+ ">
+ View
+