aboutsummaryrefslogtreecommitdiff
path: root/www/pyjamas
diff options
context:
space:
mode:
authorNicola Vitale <nivit@FreeBSD.org>2009-03-16 22:17:36 +0000
committerNicola Vitale <nivit@FreeBSD.org>2009-03-16 22:17:36 +0000
commit4de0a8b078fa2775e3ec0947e60835e2dc9aa29f (patch)
tree4adedbee8722ab40a0afe5cd12618d0a157c7ed2 /www/pyjamas
parent02bfe4f02e7c0e056267d0071ebab1702f7bd28d (diff)
downloadports-4de0a8b078fa2775e3ec0947e60835e2dc9aa29f.tar.gz
ports-4de0a8b078fa2775e3ec0947e60835e2dc9aa29f.zip
Notes
Diffstat (limited to 'www/pyjamas')
-rw-r--r--www/pyjamas/Makefile38
-rw-r--r--www/pyjamas/distinfo6
-rw-r--r--www/pyjamas/files/patch-setup.py107
-rw-r--r--www/pyjamas/pkg-plist991
4 files changed, 953 insertions, 189 deletions
diff --git a/www/pyjamas/Makefile b/www/pyjamas/Makefile
index 385307430e20..252a968a0ef4 100644
--- a/www/pyjamas/Makefile
+++ b/www/pyjamas/Makefile
@@ -6,43 +6,37 @@
#
PORTNAME= pyjamas
-PORTVERSION= 0.4
-#PORTREVISION= 0
+PORTVERSION= 0.5
+PORTREVISION= 0
CATEGORIES= www python
MASTER_SITES= SF
-EXTRACT_SUFX= .tgz
+DISTNAME= ${PYDISTUTILS_PKGNAME}-${PORTVERSION}
MAINTAINER= nivit@FreeBSD.org
COMMENT= A port of Google Web Toolkit to Python
USE_PYTHON= yes
+# install/require some libraries in sys.prefix
+USE_PYTHON_PREFIX= yes
+USE_PYDISTUTILS= easy_install
-RM_OPTS= -R
+PYDISTUTILS_PKGNAME= Pyjamas
-REINPLACE_ARGS= -i '' -e 's,../../builder,${DATADIR}/builder,'
+REINPLACE_ARGS= -i '' -e 's,../../bin,${PREFIX}/bin,'
post-patch:
${FIND} ${WRKSRC}/examples -type f -name "build.sh" -print0 | ${XARGS} -0 ${REINPLACE_CMD}
-do-build:
- cd ${WRKSRC} && ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py addons builder library pyjs stubs
-
-do-install:
- cd ${WRKSRC} && ${COPYTREE_SHARE} . ${DATADIR}
-
-.if !defined(NOPORTDOCS)
- ${MV} ${DATADIR}/doc ${DOCSDIR}
-.else
- ${RM} ${RM_OPTS} ${DATADIR}/doc
-.endif
-
post-install:
- ${CHMOD} a+x ${DATADIR}/builder/build.py ${DATADIR}/pyjs/pyjs.py
.if !defined(NOPORTEXAMPLES)
- ${MV} ${DATADIR}/examples ${EXAMPLESDIR}
- ${FIND} ${EXAMPLESDIR} -type f -name "*.sh" -print0 | ${XARGS} -0 ${CHMOD} a+x
-.else
- ${RM} ${RM_OPTS} ${DATADIR}/examples
+ ${MV} ${PYTHONPREFIX_SITELIBDIR}/${PYEASYINSTALL_EGG}/share/pyjamas/examples ${EXAMPLESDIR}
+.endif
+ ${MV} ${PYTHONPREFIX_SITELIBDIR}/${PYEASYINSTALL_EGG}/share/pyjamas ${DATADIR}
+ ${RMDIR} ${PYTHONPREFIX_SITELIBDIR}/${PYEASYINSTALL_EGG}/share
+
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}/img
+ cd ${WRKSRC}/doc && ${CP} *.html ${DOCSDIR} && ${CP} img/* ${DOCSDIR}/img
.endif
.include <bsd.port.mk>
diff --git a/www/pyjamas/distinfo b/www/pyjamas/distinfo
index 4e39c545d633..7df55099f3a8 100644
--- a/www/pyjamas/distinfo
+++ b/www/pyjamas/distinfo
@@ -1,3 +1,3 @@
-MD5 (pyjamas-0.4.tgz) = d1be8540cd34055aed3fc7c3a6450534
-SHA256 (pyjamas-0.4.tgz) = bb3b411f914530c2e19ad6e459d428b81346eaf956b9a95574e65a97d3be4304
-SIZE (pyjamas-0.4.tgz) = 1793205
+MD5 (Pyjamas-0.5.tar.gz) = f2cdc77dc168943efc88dd72c0475ab3
+SHA256 (Pyjamas-0.5.tar.gz) = eef81dceee8fa78066f57c2e767c93b59ad497edd72c18700f396ee06b9759b7
+SIZE (Pyjamas-0.5.tar.gz) = 1960692
diff --git a/www/pyjamas/files/patch-setup.py b/www/pyjamas/files/patch-setup.py
new file mode 100644
index 000000000000..1c42c1744f08
--- /dev/null
+++ b/www/pyjamas/files/patch-setup.py
@@ -0,0 +1,107 @@
+--- setup.py 2009-03-12 11:30:01.000000000 +0100
++++ setup.py.port 2009-03-16 22:25:32.000000000 +0100
+@@ -8,6 +8,7 @@
+ import glob
+ from setuptools import setup, find_packages
+ from setuptools.command import test
++from setuptools.command.install import install
+
+ import sys
+ import os
+@@ -17,27 +18,27 @@
+ keyw = """\
+ """
+
+-lib_data_files = glob.glob("library/*.py")
+-lib_ui_data_files = glob.glob("library/ui/*.py")
+-bp_data_files = glob.glob("builder/boilerplate/*")
+-test_files = glob.glob("pyjs/tests/*")
+-stub_files = glob.glob("stubs/*")
+-lib_data_files += glob.glob("library/*.js")
+-builtin_data_files = glob.glob("library/builtins/*.py")
+-platform_data_files = glob.glob("library/platform/*.py")
+-pyjamas_data_files = glob.glob("library/pyjamas/*.py")
+-addons_data_files = glob.glob("addons/*.py")
+-
+-data_files = [("/usr/share/pyjamas/library", lib_data_files),
+- ("/usr/share/pyjamas/library/builtins", builtin_data_files),
+- ("/usr/share/pyjamas/library/ui", lib_ui_data_files),
+- ("/usr/share/pyjamas/builder/boilerplate", bp_data_files),
+- ("/usr/share/pyjamas/pyjs/tests", test_files),
+- ("/usr/share/pyjamas/stubs", stub_files),
+- ("/usr/share/pyjamas/library/platform", platform_data_files),
+- ("/usr/share/pyjamas/library/pyjamas", pyjamas_data_files),
+- ("/usr/share/pyjamas/addons", addons_data_files)
+- ]
++# yuk, spew, hurl. but it works. anyone got any better ideas?
++if sys.platform == "win32" or sys.platform.startswith("freebsd"):
++ datadir = os.path.join("share", "pyjamas")
++else:
++ # last thing we want on unix systems is the data files ending
++ # up in a random egg subdirectory, where no-one can find them.
++ # windows platform, i couldn't care less where they end up but
++ # it musn't be a fixed path, it must be a relative path.
++ datadir = "/usr/share/pyjamas"
++
++bp_data_files = glob.glob(os.path.join("builder", "boilerplate", "*"))
++test_files = glob.glob(os.path.join("pyjs", "tests", "*"))
++stub_files = glob.glob(os.path.join("stubs", "*"))
++addons_data_files = glob.glob(os.path.join("addons", "*.py"))
++
++data_files = [
++ (os.path.join(datadir, "builder", "boilerplate"), bp_data_files),
++ (os.path.join(datadir, "pyjs", "tests"), test_files),
++ (os.path.join(datadir, "stubs"), stub_files),
++ (os.path.join(datadir, "addons"), addons_data_files)
++]
+
+ # main purpose of this function is to exclude "output" which
+ # could have been built by a developer.
+@@ -52,21 +53,28 @@
+ if fname[-4:] == ".pyc": # ehmm.. noooo.
+ continue
+ if os.path.isdir(p):
+- res += get_files(p)
++ get_dir(p)
+ else:
+ res.append(p)
+ return res
+
+-# ok - examples is a bit of a pain.
+-for d in glob.glob("examples/*"):
+- if os.path.isdir(d):
+- (pth, fname) = os.path.split(d)
+- expath = get_files(d)
+- pth = os.path.join("/usr/share/pyjamas/examples", fname)
+- #print pth, expath
+- data_files.append((pth, expath))
+- else:
+- data_files.append(("/usr/share/pyjamas/examples", [d]))
++def get_dir(dirname):
++ for d in glob.glob("%s/*" % dirname):
++ if os.path.isdir(d):
++ (pth, fname) = os.path.split(d)
++ expath = get_files(d)
++ pth = os.path.join(os.path.join(datadir, dirname), fname)
++ data_files.append((pth, expath))
++ else:
++ data_files.append((os.path.join(datadir, dirname), [d]))
++
++# recursively grab the library and the examples subdirectories - all contents
++get_dir("library")
++if not os.environ.has_key("NOPORTEXAMPLES"):
++ get_dir("examples")
++
++from pprint import pprint
++pprint(data_files)
+
+ if __name__ == '__main__':
+ setup(name = "Pyjamas",
+@@ -77,7 +85,6 @@
+ author = "The Pyjamas Project",
+ author_email = "lkcl@lkcl.net",
+ keywords = keyw,
+- #scripts = ["bin/pyjscompile", "bin/pyjsbuild"],
+ entry_points = {'console_scripts':[
+ 'pyjsbuild=pyjs.build:main',
+ 'pyjscompile=pyjs:main',
diff --git a/www/pyjamas/pkg-plist b/www/pyjamas/pkg-plist
index 3f68ca4149c4..da3a3adcf755 100644
--- a/www/pyjamas/pkg-plist
+++ b/www/pyjamas/pkg-plist
@@ -1,125 +1,52 @@
@comment $FreeBSD$
-%%PORTDOCS%%%%DOCSDIR%%/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/book/BookLoader.py
-%%PORTDOCS%%%%DOCSDIR%%/book/Bookreader.py
-%%PORTDOCS%%%%DOCSDIR%%/book/Chapter.py
-%%PORTDOCS%%%%DOCSDIR%%/book/Sink.py
-%%PORTDOCS%%%%DOCSDIR%%/book/SinkList.py
-%%PORTDOCS%%%%DOCSDIR%%/book/public/Bookreader.css
-%%PORTDOCS%%%%DOCSDIR%%/book/public/Bookreader.html
-%%PORTDOCS%%%%DOCSDIR%%/book/public/CREDITS
-%%PORTDOCS%%%%DOCSDIR%%/book/public/contents.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/getting_started.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/information.png
-%%PORTDOCS%%%%DOCSDIR%%/book/public/introduction.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/javascripting.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/rest_of_the_world.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/splitPanelThumb.png
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_contents.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_module.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_absolutepanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_button.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_buttonbase.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_cellformatter.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_cellpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_checkbox.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_clickdelegatepanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_complexpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_composite.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_deckpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_dialogbox.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_dockpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_dockpaneltmprow.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_event.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_eventobject.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_fileupload.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_flexcellformatter.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_flextable.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_flowpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_focus.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_focuslistener.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_focuspanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_focuswidget.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_formpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_formsubmitcompleteevent.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_formsubmitevent.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_frame.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_grid.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_hasalignment.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_hashorizontalalignment.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_hasverticalalignment.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_hidden.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_horizontalpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_html.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_htmlpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_htmltable.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_hyperlink.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_image.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_keyboardlistener.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_label.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_layoutdata.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_listbox.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_menubar.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_menubarpopuppanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_menuitem.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_mouselistener.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_namedframe.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_panel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_passwordtextbox.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_popuppanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_radiobutton.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_rootpanelcls.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_roottreeitem.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_rowformatter.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_scrollpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_simplepanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_stackpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_tabbar.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_tabpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_textarea.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_textbox.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_textboxbase.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_tree.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_treecontentpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_treeitem.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_uiobject.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_verticalpanel.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/ui_reference_widget.txt
-%%PORTDOCS%%%%DOCSDIR%%/book/public/writing_widgets.txt
-%%PORTDOCS%%%%DOCSDIR%%/gendocs.py
+bin/pyjsbuild
+bin/pyjscompile
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/entry_points.txt
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs/__init__.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs/__init__.pyc
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs/__init__.pyo
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs/build.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs/build.pyc
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs/build.pyo
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs/pyjs.py
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs/pyjs.pyc
+%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs/pyjs.pyo
%%PORTDOCS%%%%DOCSDIR%%/getting_started.html
+%%PORTDOCS%%%%DOCSDIR%%/index.html
%%PORTDOCS%%%%DOCSDIR%%/img/UIClassHierarchy.png
%%PORTDOCS%%%%DOCSDIR%%/img/num1.png
%%PORTDOCS%%%%DOCSDIR%%/img/num2.png
%%PORTDOCS%%%%DOCSDIR%%/img/num3.png
%%PORTDOCS%%%%DOCSDIR%%/img/num4.png
%%PORTDOCS%%%%DOCSDIR%%/img/overview.png
-%%PORTDOCS%%%%DOCSDIR%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/showcase/IE6.cache.html
-%%PORTDOCS%%%%DOCSDIR%%/showcase/Mozilla.cache.html
-%%PORTDOCS%%%%DOCSDIR%%/showcase/OldMoz.cache.html
-%%PORTDOCS%%%%DOCSDIR%%/showcase/Opera.cache.html
-%%PORTDOCS%%%%DOCSDIR%%/showcase/Safari.cache.html
-%%PORTDOCS%%%%DOCSDIR%%/showcase/Showcase.css
-%%PORTDOCS%%%%DOCSDIR%%/showcase/Showcase.html
-%%PORTDOCS%%%%DOCSDIR%%/showcase/Showcase.nocache.html
-%%PORTDOCS%%%%DOCSDIR%%/showcase/history.html
-%%PORTDOCS%%%%DOCSDIR%%/showcase/images/myImage.jpg
-%%PORTDOCS%%%%DOCSDIR%%/showcase/pygwt.js
-%%PORTDOCS%%%%DOCSDIR%%/showcase/tree_closed.gif
-%%PORTDOCS%%%%DOCSDIR%%/showcase/tree_open.gif
-%%PORTDOCS%%%%DOCSDIR%%/showcase/tree_white.gif
-%%PORTDOCS%%%%DOCSDIR%%/showcase/z.Showcase.css
%%PORTDOCS%%%%DOCSDIR%%/uiHierarchy.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/AddonsGallery.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/AddonsGallery.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/AddonsGallery.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/AutoCompleteTab.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/AutoCompleteTab.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/AutoCompleteTab.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/CanvasTab.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/CanvasTab.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/CanvasTab.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/IntroTab.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/IntroTab.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/IntroTab.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/Sink.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/Sink.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/Sink.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/SinkList.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/SinkList.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/SinkList.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/TooltipTab.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/TooltipTab.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/TooltipTab.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/public/AddonsGallery.css
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/public/AddonsGallery.html
@@ -130,28 +57,68 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/public/images/num2.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/public/images/sun.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addonsgallery/public/images/wallpaper.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ajaxlibtest/AjaxTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ajaxlibtest/AjaxTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ajaxlibtest/AjaxTest.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ajaxlibtest/build.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ajaxlibtest/public/AjaxTest.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ajaxlibtest/public/test.cache.js
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/BrowserDetect.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/BrowserDetect.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/BrowserDetect.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/BrowserDetect.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectIE6.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectIE6.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectIE6.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectMozilla.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectMozilla.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectMozilla.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectOldMoz.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectOldMoz.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectOldMoz.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectOpera.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectOpera.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectOpera.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectSafari.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectSafari.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/browserdetect/platform/BrowserDetectSafari.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/buildall.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/controls/ControlDemo.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/controls/ControlDemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/controls/ControlDemo.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/controls/ControlDemo.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/controls/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/DayFilterWidget.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/DayFilterWidget.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/DayFilterWidget.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/DynaTable.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/DynaTable.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/DynaTable.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/DynaTableWidget.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/DynaTableWidget.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/DynaTableWidget.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Person.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Person.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Person.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Professor.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Professor.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Professor.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Schedule.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Schedule.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Schedule.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/SchoolCalendarService.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/SchoolCalendarService.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/SchoolCalendarService.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/SchoolCalendarWidget.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/SchoolCalendarWidget.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/SchoolCalendarWidget.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Student.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Student.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/Student.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/TimeSlot.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/TimeSlot.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/TimeSlot.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/public/DynaTable.css
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/public/DynaTable.html
@@ -174,41 +141,127 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/public/phpolait/rpcproxy.php5
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/public/phpolait/rpcproxy_call_method.php
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/public/phpolait/rpcproxy_constructor.php
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/testjsonservice.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/testjsonservice.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dynamictable/testjsonservice.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formpanel/FormPanelExample.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formpanel/FormPanelExample.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formpanel/FormPanelExample.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formpanel/FormPanelExample.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formpanel/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/getattr/MainTest.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/getattr/MainTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/getattr/MainTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/getattr/MainTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/getattr/build.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridedit/GridEdit.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridedit/GridEdit.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridedit/GridEdit.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridedit/GridEdit.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridedit/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridtest/GridTest.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridtest/GridTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridtest/GridTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridtest/GridTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridtest/build.sh
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helloworld/Hello.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helloworld/Hello.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helloworld/Hello.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helloworld/Hello.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helloworld/README
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helloworld/build.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helloworld/public/Hello.css
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/index.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/InfoDirectory.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/InfoDirectory.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/InfoDirectory.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/Trees.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/Trees.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/Trees.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/build.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/InfoDirectory.css
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/InfoDirectory.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/images/cancel.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/images/hborder.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/images/vborder.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/EchoService.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/EchoService.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/EchoService.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset1/001.text1.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset1/002.data1.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset1/004.data2.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset2/data4.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset2/test1.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset2/test2.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset3/test1.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/__init__.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/__init__.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/__init__.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/apacheServiceHandler.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/apacheServiceHandler.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/apacheServiceHandler.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/cgihandler.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/cgihandler.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/cgihandler.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/errors.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/errors.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/errors.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/http.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/http.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/http.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/proxy.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/proxy.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/proxy.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/socketserver.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/socketserver.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc/socketserver.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/structure/info2/Test1
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/services/structure/test2/test3/Test1
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infohierarchy/public/splitPanelThumb.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/TestDict.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/TestDict.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/TestDict.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/TestRect.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/TestRect.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/TestRect.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/horribletest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/horribletest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/horribletest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/jsdicttest.js
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/jsrecttest.js
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/public/TestDict.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsobject/public/TestRect.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/JSONRPCExample.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/JSONRPCExample.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/JSONRPCExample.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/JSONRPCExample.html
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/.htaccess
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/EchoService.php
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/EchoService.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/EchoService.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/EchoService.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/__init__.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/__init__.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/__init__.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/apacheServiceHandler.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/apacheServiceHandler.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/apacheServiceHandler.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/cgihandler.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/cgihandler.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/cgihandler.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/errors.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/errors.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/errors.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/http.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/http.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/http.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/proxy.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/proxy.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/proxy.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/socketserver.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/socketserver.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/jsonrpc/socketserver.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/phpolait/JSON.php
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/phpolait/copying.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/phpolait/httpwrap.php
@@ -228,26 +281,68 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/phpolait/rpcproxy_call_method.php
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/phpolait/rpcproxy_constructor.php
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/__init__.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/__init__.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/__init__.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/decoder.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/decoder.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/decoder.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/encoder.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/encoder.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/encoder.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/jsonfilter.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/jsonfilter.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/jsonfilter.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/scanner.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/scanner.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jsonrpc/public/services/simplejson/scanner.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Buttons.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Buttons.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Buttons.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Frames.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Frames.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Frames.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Images.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Images.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Images.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Info.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Info.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Info.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/KitchenSink.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/KitchenSink.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/KitchenSink.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Layouts.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Layouts.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Layouts.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Lists.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Lists.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Lists.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Logger.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Logger.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Logger.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Menus.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Menus.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Menus.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Popups.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Popups.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Popups.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Sink.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Sink.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Sink.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/SinkList.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/SinkList.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/SinkList.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Tables.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Tables.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Tables.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Tabs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Tabs.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Tabs.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Text.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Text.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Text.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Trees.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Trees.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/Trees.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/public/KitchenSink.css
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/public/KitchenSink.html
@@ -269,41 +364,248 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/public/rembrandt/forward.gif
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kitchensink/public/rembrandt/rembrandt.css
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ArgsTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ArgsTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ArgsTest.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/AttributeTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/AttributeTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/AttributeTest.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/BoolTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/BoolTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/BoolTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ClassTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ClassTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ClassTest.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/DictTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/DictTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/DictTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ExceptionTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ExceptionTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ExceptionTest.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/FunctionTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/FunctionTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/FunctionTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/LibTest.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/LibTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/LibTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/LibTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ListTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ListTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/ListTest.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/NameTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/NameTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/NameTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/SetTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/SetTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/SetTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/StringTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/StringTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/StringTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/UnitTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/UnitTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/UnitTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/VarsTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/VarsTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/VarsTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/build.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/foo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/foo.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/foo.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/write.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/write.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/libtest/write.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/AboutDialog.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/AboutDialog.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/AboutDialog.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Contacts.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Contacts.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Contacts.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Logger.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Logger.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Logger.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Mail.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Mail.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Mail.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailDetail.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailDetail.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailDetail.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailItem.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailItem.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailItem.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailItems.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailItems.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailItems.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailList.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailList.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/MailList.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Mailboxes.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Mailboxes.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Mailboxes.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Shortcuts.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Shortcuts.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Shortcuts.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Tasks.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Tasks.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/Tasks.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/TopPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/TopPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/TopPanel.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/Mail.css
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/Mail.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/contactsgroup.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/default_photo.jpg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/drafts.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/gradient.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/home.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/inbox.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/leftCorner.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/mailgroup.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/rightCorner.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/sent.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/tasksgroup.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/templates.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail/public/trash.gif
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/onclicktest/OnClickTest.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/onclicktest/OnClickTest.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/onclicktest/OnClickTest.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/onclicktest/OnClickTest.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/onclicktest/build.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scoping/Foo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scoping/Foo.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scoping/Foo.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scoping/Scope.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scoping/Scope.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scoping/Scope.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scoping/Scope.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scoping/build.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/README.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/compile.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/compile.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/compile.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/pyColourize.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/pyColourize.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/pyColourize.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/Showcase.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/Showcase.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/Showcase.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/absolutePanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/absolutePanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/absolutePanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/captionPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/captionPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/captionPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/dialogBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/dialogBox.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/dialogBox.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/dockPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/dockPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/dockPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/flexTable.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/flexTable.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/flexTable.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/flowPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/flowPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/flowPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/formPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/formPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/formPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/grid.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/grid.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/grid.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/horizontalPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/horizontalPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/horizontalPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/htmlPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/htmlPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/htmlPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/popupPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/popupPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/popupPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/scrollPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/scrollPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/scrollPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/stackPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/stackPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/stackPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/tabPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/tabPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/tabPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/verticalPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/verticalPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_panels/verticalPanel.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/button.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/button.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/button.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/checkBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/checkBox.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/checkBox.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/fileUpload.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/fileUpload.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/fileUpload.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/frame.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/frame.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/frame.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/hidden.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/hidden.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/hidden.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/html.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/html.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/html.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/hyperlink.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/hyperlink.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/hyperlink.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/image.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/image.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/image.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/label.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/label.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/label.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/listBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/listBox.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/listBox.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/menubar.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/menubar.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/menubar.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/namedFrame.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/namedFrame.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/namedFrame.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/passwordTextBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/passwordTextBox.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/passwordTextBox.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/radioButton.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/radioButton.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/radioButton.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/textArea.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/textArea.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/textArea.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/textBox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/textBox.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/textBox.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/tree.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/tree.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/demos_widgets/tree.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/public/Showcase.css
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/public/Showcase.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/public/images/myImage.jpg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/uiHelpers.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/uiHelpers.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showcase/src/uiHelpers.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/README.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/Sink.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/Sink.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/Sink.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/SinkList.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/SinkList.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/SinkList.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/Slide.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/Slide.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/Slide.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/SlideLoader.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/SlideLoader.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/SlideLoader.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/Slideshow.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/Slideshow.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/Slideshow.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/public/Slideshow.css
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/public/Slideshow.html
@@ -331,14 +633,18 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/public/what_is_pyjw.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/public/whats_in_it.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slideshow/public/xulrunner.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/.SplitPanel.py.swp
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/SplitPanel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/SplitPanel.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/SplitPanel.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/public/SplitPanel.css
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/public/SplitPanel.html
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/public/images/hborder.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/public/images/vborder.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/splitpanel/public/splitPanelThumb.png
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tabpanelwidget/Tabs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tabpanelwidget/Tabs.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tabpanelwidget/Tabs.pyo
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tabpanelwidget/build.sh
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tabpanelwidget/public/Tabs.css
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tabpanelwidget/public/Tabs.html
@@ -392,28 +698,45 @@
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tabpanelwidget/public/rembrandt/back.gif
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tabpanelwidget/public/rembrandt/forward.gif
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tabpanelwidget/public/rembrandt/rembrandt.css
-%%DATADIR%%/CHANGELOG
-%%DATADIR%%/COPYING
-%%DATADIR%%/CREDITS
-%%DATADIR%%/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/Widgets.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/Widgets.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/Widgets.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/Widgets.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/build.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/public/Widgets.css
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/public/images/Clock.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/widgets/public/images/chrome_clock.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xmldoc/XMLload.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xmldoc/XMLload.pyc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xmldoc/XMLload.pyo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xmldoc/build.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xmldoc/public/XMLload.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xmldoc/public/contacts.xml
%%DATADIR%%/addons/AutoComplete.py
%%DATADIR%%/addons/AutoComplete.pyc
+%%DATADIR%%/addons/AutoComplete.pyo
%%DATADIR%%/addons/BoundMethod.py
%%DATADIR%%/addons/BoundMethod.pyc
+%%DATADIR%%/addons/BoundMethod.pyo
%%DATADIR%%/addons/Canvas.py
%%DATADIR%%/addons/Canvas.pyc
-%%DATADIR%%/addons/Controls.py
-%%DATADIR%%/addons/Controls.pyc
+%%DATADIR%%/addons/Canvas.pyo
%%DATADIR%%/addons/CountryListBox.py
%%DATADIR%%/addons/CountryListBox.pyc
+%%DATADIR%%/addons/CountryListBox.pyo
%%DATADIR%%/addons/EventDelegate.py
%%DATADIR%%/addons/EventDelegate.pyc
+%%DATADIR%%/addons/EventDelegate.pyo
%%DATADIR%%/addons/RichTextEditor.py
%%DATADIR%%/addons/RichTextEditor.pyc
+%%DATADIR%%/addons/RichTextEditor.pyo
%%DATADIR%%/addons/TemplatePanel.py
%%DATADIR%%/addons/TemplatePanel.pyc
+%%DATADIR%%/addons/TemplatePanel.pyo
%%DATADIR%%/addons/Tooltip.py
%%DATADIR%%/addons/Tooltip.pyc
+%%DATADIR%%/addons/Tooltip.pyo
%%DATADIR%%/builder/boilerplate/all.cache.html
%%DATADIR%%/builder/boilerplate/app.html
%%DATADIR%%/builder/boilerplate/corner_dialog_bottomleft.png
@@ -429,274 +752,602 @@
%%DATADIR%%/builder/boilerplate/history.html
%%DATADIR%%/builder/boilerplate/home.nocache.html
%%DATADIR%%/builder/boilerplate/index.html
+%%DATADIR%%/builder/boilerplate/mod.cache.html
%%DATADIR%%/builder/boilerplate/pygwt.js
%%DATADIR%%/builder/boilerplate/tree_closed.gif
%%DATADIR%%/builder/boilerplate/tree_open.gif
%%DATADIR%%/builder/boilerplate/tree_white.gif
-%%DATADIR%%/builder/build.py
-%%DATADIR%%/builder/build.pyc
-%%DATADIR%%/contrib/gtk_converter/README.txt
-%%DATADIR%%/contrib/gtk_converter/convert.glade
-%%DATADIR%%/contrib/gtk_converter/converter.py
%%DATADIR%%/library/Cookies.py
%%DATADIR%%/library/Cookies.pyc
+%%DATADIR%%/library/Cookies.pyo
%%DATADIR%%/library/DOM.py
%%DATADIR%%/library/DOM.pyc
+%%DATADIR%%/library/DOM.pyo
%%DATADIR%%/library/DeferredCommand.py
%%DATADIR%%/library/DeferredCommand.pyc
+%%DATADIR%%/library/DeferredCommand.pyo
%%DATADIR%%/library/HTTPRequest.py
%%DATADIR%%/library/HTTPRequest.pyc
+%%DATADIR%%/library/HTTPRequest.pyo
%%DATADIR%%/library/History.py
%%DATADIR%%/library/History.pyc
+%%DATADIR%%/library/History.pyo
%%DATADIR%%/library/JSONParser.py
%%DATADIR%%/library/JSONParser.pyc
+%%DATADIR%%/library/JSONParser.pyo
%%DATADIR%%/library/JSONService.py
%%DATADIR%%/library/JSONService.pyc
+%%DATADIR%%/library/JSONService.pyo
%%DATADIR%%/library/Location.py
%%DATADIR%%/library/Location.pyc
+%%DATADIR%%/library/Location.pyo
%%DATADIR%%/library/PyExternalMod.py
%%DATADIR%%/library/PyExternalMod.pyc
+%%DATADIR%%/library/PyExternalMod.pyo
%%DATADIR%%/library/Timer.py
%%DATADIR%%/library/Timer.pyc
+%%DATADIR%%/library/Timer.pyo
%%DATADIR%%/library/Window.py
%%DATADIR%%/library/Window.pyc
+%%DATADIR%%/library/Window.pyo
%%DATADIR%%/library/__pyjamas__.py
%%DATADIR%%/library/__pyjamas__.pyc
+%%DATADIR%%/library/__pyjamas__.pyo
+%%DATADIR%%/library/_pyjs.js
%%DATADIR%%/library/browser.py
%%DATADIR%%/library/browser.pyc
-%%DATADIR%%/library/builtins/builtins.py
-%%DATADIR%%/library/builtins/builtins.pyc
-%%DATADIR%%/library/builtins/builtins_moz.py
-%%DATADIR%%/library/builtins/builtins_moz.pyc
+%%DATADIR%%/library/browser.pyo
%%DATADIR%%/library/builtins/math.py
%%DATADIR%%/library/builtins/math.pyc
+%%DATADIR%%/library/builtins/math.pyo
%%DATADIR%%/library/builtins/sets.py
%%DATADIR%%/library/builtins/sets.pyc
+%%DATADIR%%/library/builtins/sets.pyo
%%DATADIR%%/library/datetime.py
%%DATADIR%%/library/datetime.pyc
-%%DATADIR%%/library/decoratorpanel.py
-%%DATADIR%%/library/decoratorpanel.pyc
+%%DATADIR%%/library/datetime.pyo
+%%DATADIR%%/library/dynamicajax.js
%%DATADIR%%/library/gdk.py
%%DATADIR%%/library/gdk.pyc
+%%DATADIR%%/library/gdk.pyo
%%DATADIR%%/library/gtk.py
%%DATADIR%%/library/gtk.pyc
+%%DATADIR%%/library/gtk.pyo
+%%DATADIR%%/library/loader.py
+%%DATADIR%%/library/loader.pyc
+%%DATADIR%%/library/loader.pyo
%%DATADIR%%/library/platform/DOMIE6.py
%%DATADIR%%/library/platform/DOMIE6.pyc
+%%DATADIR%%/library/platform/DOMIE6.pyo
%%DATADIR%%/library/platform/DOMMozilla.py
%%DATADIR%%/library/platform/DOMMozilla.pyc
+%%DATADIR%%/library/platform/DOMMozilla.pyo
%%DATADIR%%/library/platform/DOMOldMoz.py
%%DATADIR%%/library/platform/DOMOldMoz.pyc
+%%DATADIR%%/library/platform/DOMOldMoz.pyo
%%DATADIR%%/library/platform/DOMOpera.py
%%DATADIR%%/library/platform/DOMOpera.pyc
+%%DATADIR%%/library/platform/DOMOpera.pyo
%%DATADIR%%/library/platform/DOMSafari.py
%%DATADIR%%/library/platform/DOMSafari.pyc
+%%DATADIR%%/library/platform/DOMSafari.pyo
%%DATADIR%%/library/platform/HTTPRequestIE6.py
%%DATADIR%%/library/platform/HTTPRequestIE6.pyc
+%%DATADIR%%/library/platform/HTTPRequestIE6.pyo
%%DATADIR%%/library/platform/HistoryIE6.py
%%DATADIR%%/library/platform/HistoryIE6.pyc
+%%DATADIR%%/library/platform/HistoryIE6.pyo
%%DATADIR%%/library/platform/HistorySafari.py
%%DATADIR%%/library/platform/HistorySafari.pyc
+%%DATADIR%%/library/platform/HistorySafari.pyo
%%DATADIR%%/library/platform/LocationIE6.py
%%DATADIR%%/library/platform/LocationIE6.pyc
+%%DATADIR%%/library/platform/LocationIE6.pyo
%%DATADIR%%/library/platform/LocationOpera.py
%%DATADIR%%/library/platform/LocationOpera.pyc
+%%DATADIR%%/library/platform/LocationOpera.pyo
%%DATADIR%%/library/platform/pyjslibMozilla.py
%%DATADIR%%/library/platform/pyjslibMozilla.pyc
-%%DATADIR%%/library/platform/uiIE6.py
-%%DATADIR%%/library/platform/uiIE6.pyc
-%%DATADIR%%/library/platform/uiOldMoz.py
-%%DATADIR%%/library/platform/uiOldMoz.pyc
-%%DATADIR%%/library/platform/uiOpera.py
-%%DATADIR%%/library/platform/uiOpera.pyc
-%%DATADIR%%/library/platform/uiSafari.py
-%%DATADIR%%/library/platform/uiSafari.pyc
+%%DATADIR%%/library/platform/pyjslibMozilla.pyo
+%%DATADIR%%/library/platform/pyjslibPyV8.py
+%%DATADIR%%/library/platform/pyjslibPyV8.pyc
+%%DATADIR%%/library/platform/pyjslibPyV8.pyo
%%DATADIR%%/library/pygtk.py
%%DATADIR%%/library/pygtk.pyc
+%%DATADIR%%/library/pygtk.pyo
%%DATADIR%%/library/pygwt.py
%%DATADIR%%/library/pygwt.pyc
+%%DATADIR%%/library/pygwt.pyo
%%DATADIR%%/library/pyjamas.py
%%DATADIR%%/library/pyjamas.pyc
+%%DATADIR%%/library/pyjamas.pyo
%%DATADIR%%/library/pyjamas/__init__.py
%%DATADIR%%/library/pyjamas/__init__.pyc
+%%DATADIR%%/library/pyjamas/__init__.pyo
%%DATADIR%%/library/pyjslib.py
%%DATADIR%%/library/pyjslib.pyc
-%%DATADIR%%/library/splitpanel.py
-%%DATADIR%%/library/splitpanel.pyc
+%%DATADIR%%/library/pyjslib.pyo
%%DATADIR%%/library/sprintf.js
-%%DATADIR%%/library/tags
-%%DATADIR%%/library/ui.py
-%%DATADIR%%/library/ui.pyc
-%%DATADIR%%/library/vertsplitpanel.py
-%%DATADIR%%/library/vertsplitpanel.pyc
-%%DATADIR%%/pyjs/pyjs.py
-%%DATADIR%%/pyjs/pyjs.pyc
+%%DATADIR%%/library/sys.py
+%%DATADIR%%/library/sys.pyc
+%%DATADIR%%/library/sys.pyo
+%%DATADIR%%/library/ui/AbsolutePanel.py
+%%DATADIR%%/library/ui/AbsolutePanel.pyc
+%%DATADIR%%/library/ui/AbsolutePanel.pyo
+%%DATADIR%%/library/ui/Button.py
+%%DATADIR%%/library/ui/Button.pyc
+%%DATADIR%%/library/ui/Button.pyo
+%%DATADIR%%/library/ui/ButtonBase.py
+%%DATADIR%%/library/ui/ButtonBase.pyc
+%%DATADIR%%/library/ui/ButtonBase.pyo
+%%DATADIR%%/library/ui/CaptionPanel.py
+%%DATADIR%%/library/ui/CaptionPanel.pyc
+%%DATADIR%%/library/ui/CaptionPanel.pyo
+%%DATADIR%%/library/ui/CellFormatter.py
+%%DATADIR%%/library/ui/CellFormatter.pyc
+%%DATADIR%%/library/ui/CellFormatter.pyo
+%%DATADIR%%/library/ui/CellPanel.py
+%%DATADIR%%/library/ui/CellPanel.pyc
+%%DATADIR%%/library/ui/CellPanel.pyo
+%%DATADIR%%/library/ui/CheckBox.py
+%%DATADIR%%/library/ui/CheckBox.pyc
+%%DATADIR%%/library/ui/CheckBox.pyo
+%%DATADIR%%/library/ui/ClickDelegatePanel.py
+%%DATADIR%%/library/ui/ClickDelegatePanel.pyc
+%%DATADIR%%/library/ui/ClickDelegatePanel.pyo
+%%DATADIR%%/library/ui/ClickableHeader.py
+%%DATADIR%%/library/ui/ClickableHeader.pyc
+%%DATADIR%%/library/ui/ClickableHeader.pyo
+%%DATADIR%%/library/ui/ComplexPanel.py
+%%DATADIR%%/library/ui/ComplexPanel.pyc
+%%DATADIR%%/library/ui/ComplexPanel.pyo
+%%DATADIR%%/library/ui/Composite.py
+%%DATADIR%%/library/ui/Composite.pyc
+%%DATADIR%%/library/ui/Composite.pyo
+%%DATADIR%%/library/ui/Controls.py
+%%DATADIR%%/library/ui/Controls.pyc
+%%DATADIR%%/library/ui/Controls.pyo
+%%DATADIR%%/library/ui/DeckPanel.py
+%%DATADIR%%/library/ui/DeckPanel.pyc
+%%DATADIR%%/library/ui/DeckPanel.pyo
+%%DATADIR%%/library/ui/DefaultHeader.py
+%%DATADIR%%/library/ui/DefaultHeader.pyc
+%%DATADIR%%/library/ui/DefaultHeader.pyo
+%%DATADIR%%/library/ui/DialogBox.py
+%%DATADIR%%/library/ui/DialogBox.pyc
+%%DATADIR%%/library/ui/DialogBox.pyo
+%%DATADIR%%/library/ui/DisclosurePanel.py
+%%DATADIR%%/library/ui/DisclosurePanel.pyc
+%%DATADIR%%/library/ui/DisclosurePanel.pyo
+%%DATADIR%%/library/ui/DockPanel.py
+%%DATADIR%%/library/ui/DockPanel.pyc
+%%DATADIR%%/library/ui/DockPanel.pyo
+%%DATADIR%%/library/ui/Event.py
+%%DATADIR%%/library/ui/Event.pyc
+%%DATADIR%%/library/ui/Event.pyo
+%%DATADIR%%/library/ui/EventObject.py
+%%DATADIR%%/library/ui/EventObject.pyc
+%%DATADIR%%/library/ui/EventObject.pyo
+%%DATADIR%%/library/ui/FileUpload.py
+%%DATADIR%%/library/ui/FileUpload.pyc
+%%DATADIR%%/library/ui/FileUpload.pyo
+%%DATADIR%%/library/ui/FlexCellFormatter.py
+%%DATADIR%%/library/ui/FlexCellFormatter.pyc
+%%DATADIR%%/library/ui/FlexCellFormatter.pyo
+%%DATADIR%%/library/ui/FlexTable.py
+%%DATADIR%%/library/ui/FlexTable.pyc
+%%DATADIR%%/library/ui/FlexTable.pyo
+%%DATADIR%%/library/ui/FlowPanel.py
+%%DATADIR%%/library/ui/FlowPanel.pyc
+%%DATADIR%%/library/ui/FlowPanel.pyo
+%%DATADIR%%/library/ui/Focus.py
+%%DATADIR%%/library/ui/Focus.pyc
+%%DATADIR%%/library/ui/Focus.pyo
+%%DATADIR%%/library/ui/FocusListener.py
+%%DATADIR%%/library/ui/FocusListener.pyc
+%%DATADIR%%/library/ui/FocusListener.pyo
+%%DATADIR%%/library/ui/FocusPanel.py
+%%DATADIR%%/library/ui/FocusPanel.pyc
+%%DATADIR%%/library/ui/FocusPanel.pyo
+%%DATADIR%%/library/ui/FocusWidget.py
+%%DATADIR%%/library/ui/FocusWidget.pyc
+%%DATADIR%%/library/ui/FocusWidget.pyo
+%%DATADIR%%/library/ui/FormPanel.py
+%%DATADIR%%/library/ui/FormPanel.pyc
+%%DATADIR%%/library/ui/FormPanel.pyo
+%%DATADIR%%/library/ui/Frame.py
+%%DATADIR%%/library/ui/Frame.pyc
+%%DATADIR%%/library/ui/Frame.pyo
+%%DATADIR%%/library/ui/Grid.py
+%%DATADIR%%/library/ui/Grid.pyc
+%%DATADIR%%/library/ui/Grid.pyo
+%%DATADIR%%/library/ui/HTML.py
+%%DATADIR%%/library/ui/HTML.pyc
+%%DATADIR%%/library/ui/HTML.pyo
+%%DATADIR%%/library/ui/HTMLPanel.py
+%%DATADIR%%/library/ui/HTMLPanel.pyc
+%%DATADIR%%/library/ui/HTMLPanel.pyo
+%%DATADIR%%/library/ui/HTMLTable.py
+%%DATADIR%%/library/ui/HTMLTable.pyc
+%%DATADIR%%/library/ui/HTMLTable.pyo
+%%DATADIR%%/library/ui/Hidden.py
+%%DATADIR%%/library/ui/Hidden.pyc
+%%DATADIR%%/library/ui/Hidden.pyo
+%%DATADIR%%/library/ui/HorizontalPanel.py
+%%DATADIR%%/library/ui/HorizontalPanel.pyc
+%%DATADIR%%/library/ui/HorizontalPanel.pyo
+%%DATADIR%%/library/ui/Hyperlink.py
+%%DATADIR%%/library/ui/Hyperlink.pyc
+%%DATADIR%%/library/ui/Hyperlink.pyo
+%%DATADIR%%/library/ui/Image.py
+%%DATADIR%%/library/ui/Image.pyc
+%%DATADIR%%/library/ui/Image.pyo
+%%DATADIR%%/library/ui/KeyboardListener.py
+%%DATADIR%%/library/ui/KeyboardListener.pyc
+%%DATADIR%%/library/ui/KeyboardListener.pyo
+%%DATADIR%%/library/ui/Label.py
+%%DATADIR%%/library/ui/Label.pyc
+%%DATADIR%%/library/ui/Label.pyo
+%%DATADIR%%/library/ui/ListBox.py
+%%DATADIR%%/library/ui/ListBox.pyc
+%%DATADIR%%/library/ui/ListBox.pyo
+%%DATADIR%%/library/ui/MenuBar.py
+%%DATADIR%%/library/ui/MenuBar.pyc
+%%DATADIR%%/library/ui/MenuBar.pyo
+%%DATADIR%%/library/ui/MenuBarPopupPanel.py
+%%DATADIR%%/library/ui/MenuBarPopupPanel.pyc
+%%DATADIR%%/library/ui/MenuBarPopupPanel.pyo
+%%DATADIR%%/library/ui/MenuItem.py
+%%DATADIR%%/library/ui/MenuItem.pyc
+%%DATADIR%%/library/ui/MenuItem.pyo
+%%DATADIR%%/library/ui/MouseListener.py
+%%DATADIR%%/library/ui/MouseListener.pyc
+%%DATADIR%%/library/ui/MouseListener.pyo
+%%DATADIR%%/library/ui/NamedFrame.py
+%%DATADIR%%/library/ui/NamedFrame.pyc
+%%DATADIR%%/library/ui/NamedFrame.pyo
+%%DATADIR%%/library/ui/Panel.py
+%%DATADIR%%/library/ui/Panel.pyc
+%%DATADIR%%/library/ui/Panel.pyo
+%%DATADIR%%/library/ui/PasswordTextBox.py
+%%DATADIR%%/library/ui/PasswordTextBox.pyc
+%%DATADIR%%/library/ui/PasswordTextBox.pyo
+%%DATADIR%%/library/ui/PopupPanel.py
+%%DATADIR%%/library/ui/PopupPanel.pyc
+%%DATADIR%%/library/ui/PopupPanel.pyo
+%%DATADIR%%/library/ui/RadioButton.py
+%%DATADIR%%/library/ui/RadioButton.pyc
+%%DATADIR%%/library/ui/RadioButton.pyo
+%%DATADIR%%/library/ui/RootPanel.py
+%%DATADIR%%/library/ui/RootPanel.pyc
+%%DATADIR%%/library/ui/RootPanel.pyo
+%%DATADIR%%/library/ui/RowFormatter.py
+%%DATADIR%%/library/ui/RowFormatter.pyc
+%%DATADIR%%/library/ui/RowFormatter.pyo
+%%DATADIR%%/library/ui/ScrollPanel.py
+%%DATADIR%%/library/ui/ScrollPanel.pyc
+%%DATADIR%%/library/ui/ScrollPanel.pyo
+%%DATADIR%%/library/ui/SimplePanel.py
+%%DATADIR%%/library/ui/SimplePanel.pyc
+%%DATADIR%%/library/ui/SimplePanel.pyo
+%%DATADIR%%/library/ui/StackPanel.py
+%%DATADIR%%/library/ui/StackPanel.pyc
+%%DATADIR%%/library/ui/StackPanel.pyo
+%%DATADIR%%/library/ui/TabBar.py
+%%DATADIR%%/library/ui/TabBar.pyc
+%%DATADIR%%/library/ui/TabBar.pyo
+%%DATADIR%%/library/ui/TabPanel.py
+%%DATADIR%%/library/ui/TabPanel.pyc
+%%DATADIR%%/library/ui/TabPanel.pyo
+%%DATADIR%%/library/ui/TextArea.py
+%%DATADIR%%/library/ui/TextArea.pyc
+%%DATADIR%%/library/ui/TextArea.pyo
+%%DATADIR%%/library/ui/TextBox.py
+%%DATADIR%%/library/ui/TextBox.pyc
+%%DATADIR%%/library/ui/TextBox.pyo
+%%DATADIR%%/library/ui/TextBoxBase.py
+%%DATADIR%%/library/ui/TextBoxBase.pyc
+%%DATADIR%%/library/ui/TextBoxBase.pyo
+%%DATADIR%%/library/ui/Tree.py
+%%DATADIR%%/library/ui/Tree.pyc
+%%DATADIR%%/library/ui/Tree.pyo
+%%DATADIR%%/library/ui/TreeContentPanel.py
+%%DATADIR%%/library/ui/TreeContentPanel.pyc
+%%DATADIR%%/library/ui/TreeContentPanel.pyo
+%%DATADIR%%/library/ui/TreeItem.py
+%%DATADIR%%/library/ui/TreeItem.pyc
+%%DATADIR%%/library/ui/TreeItem.pyo
+%%DATADIR%%/library/ui/UIObject.py
+%%DATADIR%%/library/ui/UIObject.pyc
+%%DATADIR%%/library/ui/UIObject.pyo
+%%DATADIR%%/library/ui/VerticalPanel.py
+%%DATADIR%%/library/ui/VerticalPanel.pyc
+%%DATADIR%%/library/ui/VerticalPanel.pyo
+%%DATADIR%%/library/ui/Widget.py
+%%DATADIR%%/library/ui/Widget.pyc
+%%DATADIR%%/library/ui/Widget.pyo
+%%DATADIR%%/library/ui/__init__.py
+%%DATADIR%%/library/ui/__init__.pyc
+%%DATADIR%%/library/ui/__init__.pyo
+%%DATADIR%%/library/ui/decoratorpanel.py
+%%DATADIR%%/library/ui/decoratorpanel.pyc
+%%DATADIR%%/library/ui/decoratorpanel.pyo
+%%DATADIR%%/library/ui/horizsplitpanel.py
+%%DATADIR%%/library/ui/horizsplitpanel.pyc
+%%DATADIR%%/library/ui/horizsplitpanel.pyo
+%%DATADIR%%/library/ui/platform/FocusOldMoz.py
+%%DATADIR%%/library/ui/platform/FocusOldMoz.pyc
+%%DATADIR%%/library/ui/platform/FocusOldMoz.pyo
+%%DATADIR%%/library/ui/platform/FocusOpera.py
+%%DATADIR%%/library/ui/platform/FocusOpera.pyc
+%%DATADIR%%/library/ui/platform/FocusOpera.pyo
+%%DATADIR%%/library/ui/platform/FocusSafari.py
+%%DATADIR%%/library/ui/platform/FocusSafari.pyc
+%%DATADIR%%/library/ui/platform/FocusSafari.pyo
+%%DATADIR%%/library/ui/platform/FormPanelIE6.py
+%%DATADIR%%/library/ui/platform/FormPanelIE6.pyc
+%%DATADIR%%/library/ui/platform/FormPanelIE6.pyo
+%%DATADIR%%/library/ui/platform/FormPanelOpera.py
+%%DATADIR%%/library/ui/platform/FormPanelOpera.pyc
+%%DATADIR%%/library/ui/platform/FormPanelOpera.pyo
+%%DATADIR%%/library/ui/platform/FormPanelSafari.py
+%%DATADIR%%/library/ui/platform/FormPanelSafari.pyc
+%%DATADIR%%/library/ui/platform/FormPanelSafari.pyo
+%%DATADIR%%/library/ui/platform/PopupPanelIE6.py
+%%DATADIR%%/library/ui/platform/PopupPanelIE6.pyc
+%%DATADIR%%/library/ui/platform/PopupPanelIE6.pyo
+%%DATADIR%%/library/ui/platform/TextAreaIE6.py
+%%DATADIR%%/library/ui/platform/TextAreaIE6.pyc
+%%DATADIR%%/library/ui/platform/TextAreaIE6.pyo
+%%DATADIR%%/library/ui/platform/TextBoxBaseIE6.py
+%%DATADIR%%/library/ui/platform/TextBoxBaseIE6.pyc
+%%DATADIR%%/library/ui/platform/TextBoxBaseIE6.pyo
+%%DATADIR%%/library/ui/platform/horizsplitpanelIE6.py
+%%DATADIR%%/library/ui/platform/horizsplitpanelIE6.pyc
+%%DATADIR%%/library/ui/platform/horizsplitpanelIE6.pyo
+%%DATADIR%%/library/ui/platform/horizsplitpanelSafari.py
+%%DATADIR%%/library/ui/platform/horizsplitpanelSafari.pyc
+%%DATADIR%%/library/ui/platform/horizsplitpanelSafari.pyo
+%%DATADIR%%/library/ui/platform/uiIE6.py
+%%DATADIR%%/library/ui/platform/uiIE6.pyc
+%%DATADIR%%/library/ui/platform/uiIE6.pyo
+%%DATADIR%%/library/ui/platform/uiOldMoz.py
+%%DATADIR%%/library/ui/platform/uiOldMoz.pyc
+%%DATADIR%%/library/ui/platform/uiOldMoz.pyo
+%%DATADIR%%/library/ui/platform/uiOpera.py
+%%DATADIR%%/library/ui/platform/uiOpera.pyc
+%%DATADIR%%/library/ui/platform/uiOpera.pyo
+%%DATADIR%%/library/ui/platform/uiSafari.py
+%%DATADIR%%/library/ui/platform/uiSafari.pyc
+%%DATADIR%%/library/ui/platform/uiSafari.pyo
+%%DATADIR%%/library/ui/splitpanel.py
+%%DATADIR%%/library/ui/splitpanel.pyc
+%%DATADIR%%/library/ui/splitpanel.pyo
+%%DATADIR%%/library/ui/vertsplitpanel.py
+%%DATADIR%%/library/ui/vertsplitpanel.pyc
+%%DATADIR%%/library/ui/vertsplitpanel.pyo
%%DATADIR%%/pyjs/tests/basics.py
%%DATADIR%%/pyjs/tests/basics.pyc
+%%DATADIR%%/pyjs/tests/basics.pyo
%%DATADIR%%/pyjs/tests/pyjamas.operator_precedence.test.py
%%DATADIR%%/pyjs/tests/pyjamas.operator_precedence.test.pyc
+%%DATADIR%%/pyjs/tests/pyjamas.operator_precedence.test.pyo
%%DATADIR%%/pyjs/tests/test-coverage.py
%%DATADIR%%/pyjs/tests/test-coverage.pyc
+%%DATADIR%%/pyjs/tests/test-coverage.pyo
%%DATADIR%%/pyjs/tests/test-report.py
%%DATADIR%%/pyjs/tests/test-report.pyc
+%%DATADIR%%/pyjs/tests/test-report.pyo
%%DATADIR%%/pyjs/tests/test.sh
%%DATADIR%%/pyjs/tests/test001.js
%%DATADIR%%/pyjs/tests/test001.py
%%DATADIR%%/pyjs/tests/test001.pyc
+%%DATADIR%%/pyjs/tests/test001.pyo
%%DATADIR%%/pyjs/tests/test002.js
%%DATADIR%%/pyjs/tests/test002.py
%%DATADIR%%/pyjs/tests/test002.pyc
+%%DATADIR%%/pyjs/tests/test002.pyo
%%DATADIR%%/pyjs/tests/test003.js
%%DATADIR%%/pyjs/tests/test003.py
%%DATADIR%%/pyjs/tests/test003.pyc
+%%DATADIR%%/pyjs/tests/test003.pyo
%%DATADIR%%/pyjs/tests/test004.js
%%DATADIR%%/pyjs/tests/test004.py
%%DATADIR%%/pyjs/tests/test004.pyc
+%%DATADIR%%/pyjs/tests/test004.pyo
%%DATADIR%%/pyjs/tests/test005.js
%%DATADIR%%/pyjs/tests/test005.py
%%DATADIR%%/pyjs/tests/test005.pyc
+%%DATADIR%%/pyjs/tests/test005.pyo
%%DATADIR%%/pyjs/tests/test006.js
%%DATADIR%%/pyjs/tests/test006.py
%%DATADIR%%/pyjs/tests/test006.pyc
+%%DATADIR%%/pyjs/tests/test006.pyo
%%DATADIR%%/pyjs/tests/test007.js
%%DATADIR%%/pyjs/tests/test007.py
%%DATADIR%%/pyjs/tests/test007.pyc
+%%DATADIR%%/pyjs/tests/test007.pyo
%%DATADIR%%/pyjs/tests/test008.js
%%DATADIR%%/pyjs/tests/test008.py
%%DATADIR%%/pyjs/tests/test008.pyc
+%%DATADIR%%/pyjs/tests/test008.pyo
%%DATADIR%%/pyjs/tests/test009.js
%%DATADIR%%/pyjs/tests/test009.py
%%DATADIR%%/pyjs/tests/test009.pyc
+%%DATADIR%%/pyjs/tests/test009.pyo
%%DATADIR%%/pyjs/tests/test010.js
%%DATADIR%%/pyjs/tests/test010.py
%%DATADIR%%/pyjs/tests/test010.pyc
+%%DATADIR%%/pyjs/tests/test010.pyo
%%DATADIR%%/pyjs/tests/test011.js
%%DATADIR%%/pyjs/tests/test011.py
%%DATADIR%%/pyjs/tests/test011.pyc
+%%DATADIR%%/pyjs/tests/test011.pyo
%%DATADIR%%/pyjs/tests/test012.js
%%DATADIR%%/pyjs/tests/test012.py
%%DATADIR%%/pyjs/tests/test012.pyc
+%%DATADIR%%/pyjs/tests/test012.pyo
%%DATADIR%%/pyjs/tests/test013.js
%%DATADIR%%/pyjs/tests/test013.py
%%DATADIR%%/pyjs/tests/test013.pyc
+%%DATADIR%%/pyjs/tests/test013.pyo
%%DATADIR%%/pyjs/tests/test014.js
%%DATADIR%%/pyjs/tests/test014.py
%%DATADIR%%/pyjs/tests/test014.pyc
+%%DATADIR%%/pyjs/tests/test014.pyo
%%DATADIR%%/pyjs/tests/test015.js
%%DATADIR%%/pyjs/tests/test015.py
%%DATADIR%%/pyjs/tests/test015.pyc
+%%DATADIR%%/pyjs/tests/test015.pyo
%%DATADIR%%/pyjs/tests/test016.js
%%DATADIR%%/pyjs/tests/test016.py
%%DATADIR%%/pyjs/tests/test016.pyc
+%%DATADIR%%/pyjs/tests/test016.pyo
%%DATADIR%%/pyjs/tests/test017.js
%%DATADIR%%/pyjs/tests/test017.py
%%DATADIR%%/pyjs/tests/test017.pyc
+%%DATADIR%%/pyjs/tests/test017.pyo
%%DATADIR%%/pyjs/tests/test018.js
%%DATADIR%%/pyjs/tests/test018.py
%%DATADIR%%/pyjs/tests/test018.pyc
+%%DATADIR%%/pyjs/tests/test018.pyo
%%DATADIR%%/pyjs/tests/test019.js
%%DATADIR%%/pyjs/tests/test019.py
%%DATADIR%%/pyjs/tests/test019.pyc
+%%DATADIR%%/pyjs/tests/test019.pyo
%%DATADIR%%/pyjs/tests/test020.js
%%DATADIR%%/pyjs/tests/test020.py
%%DATADIR%%/pyjs/tests/test020.pyc
+%%DATADIR%%/pyjs/tests/test020.pyo
%%DATADIR%%/pyjs/tests/test021.js
%%DATADIR%%/pyjs/tests/test021.py
%%DATADIR%%/pyjs/tests/test021.pyc
+%%DATADIR%%/pyjs/tests/test021.pyo
%%DATADIR%%/pyjs/tests/test022.js
%%DATADIR%%/pyjs/tests/test022.py
%%DATADIR%%/pyjs/tests/test022.pyc
+%%DATADIR%%/pyjs/tests/test022.pyo
%%DATADIR%%/pyjs/tests/test023.js
%%DATADIR%%/pyjs/tests/test023.py
%%DATADIR%%/pyjs/tests/test023.pyc
+%%DATADIR%%/pyjs/tests/test023.pyo
%%DATADIR%%/pyjs/tests/test024.js
%%DATADIR%%/pyjs/tests/test024.py
%%DATADIR%%/pyjs/tests/test024.pyc
+%%DATADIR%%/pyjs/tests/test024.pyo
%%DATADIR%%/pyjs/tests/test025.js
%%DATADIR%%/pyjs/tests/test025.py
%%DATADIR%%/pyjs/tests/test025.pyc
+%%DATADIR%%/pyjs/tests/test025.pyo
%%DATADIR%%/pyjs/tests/test026.js
%%DATADIR%%/pyjs/tests/test026.py
%%DATADIR%%/pyjs/tests/test026.pyc
+%%DATADIR%%/pyjs/tests/test026.pyo
%%DATADIR%%/pyjs/tests/test027.js
%%DATADIR%%/pyjs/tests/test027.py
%%DATADIR%%/pyjs/tests/test027.pyc
+%%DATADIR%%/pyjs/tests/test027.pyo
%%DATADIR%%/pyjs/tests/test028.js
%%DATADIR%%/pyjs/tests/test028.py
%%DATADIR%%/pyjs/tests/test028.pyc
+%%DATADIR%%/pyjs/tests/test028.pyo
%%DATADIR%%/pyjs/tests/test029.js
%%DATADIR%%/pyjs/tests/test029.py
%%DATADIR%%/pyjs/tests/test029.pyc
+%%DATADIR%%/pyjs/tests/test029.pyo
%%DATADIR%%/pyjs/tests/test030.js
%%DATADIR%%/pyjs/tests/test030.py
%%DATADIR%%/pyjs/tests/test030.pyc
+%%DATADIR%%/pyjs/tests/test030.pyo
%%DATADIR%%/pyjs/tests/test031.js
%%DATADIR%%/pyjs/tests/test031.py
%%DATADIR%%/pyjs/tests/test031.pyc
+%%DATADIR%%/pyjs/tests/test031.pyo
%%DATADIR%%/pyjs/tests/test032.js
%%DATADIR%%/pyjs/tests/test032.py
%%DATADIR%%/pyjs/tests/test032.pyc
+%%DATADIR%%/pyjs/tests/test032.pyo
%%DATADIR%%/pyjs/tests/test033.js
%%DATADIR%%/pyjs/tests/test033.py
%%DATADIR%%/pyjs/tests/test033.pyc
+%%DATADIR%%/pyjs/tests/test033.pyo
%%DATADIR%%/pyjs/tests/test034.js
%%DATADIR%%/pyjs/tests/test034.py
%%DATADIR%%/pyjs/tests/test034.pyc
+%%DATADIR%%/pyjs/tests/test034.pyo
%%DATADIR%%/pyjs/tests/test035.js
%%DATADIR%%/pyjs/tests/test035.py
%%DATADIR%%/pyjs/tests/test035.pyc
+%%DATADIR%%/pyjs/tests/test035.pyo
%%DATADIR%%/pyjs/tests/test036.js
%%DATADIR%%/pyjs/tests/test036.py
%%DATADIR%%/pyjs/tests/test036.pyc
+%%DATADIR%%/pyjs/tests/test036.pyo
%%DATADIR%%/pyjs/tests/test037.js
%%DATADIR%%/pyjs/tests/test037.py
%%DATADIR%%/pyjs/tests/test037.pyc
+%%DATADIR%%/pyjs/tests/test037.pyo
%%DATADIR%%/pyjs/tests/test038.js
%%DATADIR%%/pyjs/tests/test038.py
%%DATADIR%%/pyjs/tests/test038.pyc
+%%DATADIR%%/pyjs/tests/test038.pyo
%%DATADIR%%/pyjs/tests/test039.js
%%DATADIR%%/pyjs/tests/test039.py
%%DATADIR%%/pyjs/tests/test039.pyc
+%%DATADIR%%/pyjs/tests/test039.pyo
%%DATADIR%%/pyjs/tests/test040.js
%%DATADIR%%/pyjs/tests/test040.py
%%DATADIR%%/pyjs/tests/test040.pyc
+%%DATADIR%%/pyjs/tests/test040.pyo
%%DATADIR%%/pyjs/tests/test041.js
%%DATADIR%%/pyjs/tests/test041.py
%%DATADIR%%/pyjs/tests/test041.pyc
+%%DATADIR%%/pyjs/tests/test041.pyo
%%DATADIR%%/pyjs/tests/test042.js
%%DATADIR%%/pyjs/tests/test042.py
%%DATADIR%%/pyjs/tests/test042.pyc
+%%DATADIR%%/pyjs/tests/test042.pyo
%%DATADIR%%/pyjs/tests/test043.js
%%DATADIR%%/pyjs/tests/test043.py
%%DATADIR%%/pyjs/tests/test043.pyc
+%%DATADIR%%/pyjs/tests/test043.pyo
%%DATADIR%%/pyjs/tests/test044.js
%%DATADIR%%/pyjs/tests/test044.py
%%DATADIR%%/pyjs/tests/test044.pyc
+%%DATADIR%%/pyjs/tests/test044.pyo
%%DATADIR%%/pyjs/tests/test045.js
%%DATADIR%%/pyjs/tests/test045.py
%%DATADIR%%/pyjs/tests/test045.pyc
+%%DATADIR%%/pyjs/tests/test045.pyo
%%DATADIR%%/pyjs/tests/test046.js
%%DATADIR%%/pyjs/tests/test046.py
%%DATADIR%%/pyjs/tests/test046.pyc
+%%DATADIR%%/pyjs/tests/test046.pyo
+%%DATADIR%%/pyjs/tests/test047.js
+%%DATADIR%%/pyjs/tests/test047.py
+%%DATADIR%%/pyjs/tests/test047.pyc
+%%DATADIR%%/pyjs/tests/test047.pyo
%%DATADIR%%/stubs/__pyjamas__.py
%%DATADIR%%/stubs/__pyjamas__.pyc
+%%DATADIR%%/stubs/__pyjamas__.pyo
@dirrm %%DATADIR%%/stubs
@dirrm %%DATADIR%%/pyjs/tests
@dirrm %%DATADIR%%/pyjs
-@dirrm %%DATADIR%%/pygtkweb/simplejson
-@dirrm %%DATADIR%%/pygtkweb/jsonrpc
-@dirrm %%DATADIR%%/pygtkweb/examples
-@dirrm %%DATADIR%%/pygtkweb/boilerplate
-@dirrm %%DATADIR%%/pygtkweb
+@dirrm %%DATADIR%%/library/ui/platform
+@dirrm %%DATADIR%%/library/ui
@dirrm %%DATADIR%%/library/pyjamas
@dirrm %%DATADIR%%/library/platform
@dirrm %%DATADIR%%/library/builtins
@dirrm %%DATADIR%%/library
-@dirrm %%DATADIR%%/contrib/gtk_converter
-@dirrm %%DATADIR%%/contrib
@dirrm %%DATADIR%%/builder/boilerplate
@dirrm %%DATADIR%%/builder
@dirrm %%DATADIR%%/addons
@dirrm %%DATADIR%%
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xmldoc/public
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xmldoc
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/widgets/public/images
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/widgets/public
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/widgets
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tabpanelwidget/public/rembrandt
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tabpanelwidget/public/images
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tabpanelwidget/public
@@ -706,6 +1357,13 @@
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/splitpanel
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/slideshow/public
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/slideshow
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/showcase/src/public/images
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/showcase/src/public
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/showcase/src/demos_widgets
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/showcase/src/demos_panels
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/showcase/src
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/showcase
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/scoping
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/onclicktest
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mail/public
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mail
@@ -724,8 +1382,23 @@
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/jsonrpc
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/jsobject/public
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/jsobject
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services/structure/test2/test3
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services/structure/test2
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services/structure/info2
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services/structure
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services/jsonrpc
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset3
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset2
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services/data/dataset1
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services/data
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/services
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public/images
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy/public
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/infohierarchy
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/helloworld/public
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/helloworld
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/gridtest
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/gridedit
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/getattr
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/formpanel
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dynamictable/public/phpolait/jsolait/lib
@@ -733,27 +1406,17 @@
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dynamictable/public/phpolait
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dynamictable/public
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dynamictable
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/controls/output
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/controls
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/browserdetect/platform
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/browserdetect
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ajaxlibtest/public
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ajaxlibtest
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/addonsgallery/public/images
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/addonsgallery/public
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/addonsgallery
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/showcase/images
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/showcase
%%PORTDOCS%%@dirrm %%DOCSDIR%%/img
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/images
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/book/public
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/book
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/api
%%PORTDOCS%%@dirrm %%DOCSDIR%%
-@exec mkdir -p %D/%%DATADIR%%/pygtkweb/simplejson
-@exec mkdir -p %D/%%DATADIR%%/pygtkweb/jsonrpc
-@exec mkdir -p %D/%%DATADIR%%/pygtkweb/examples
-@exec mkdir -p %D/%%DATADIR%%/pygtkweb/boilerplate
-@exec mkdir -p %D/share/pixmaps
-%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/controls/output
-%%PORTDOCS%%@exec mkdir -p %D/%%DOCSDIR%%/images
-%%PORTDOCS%%@exec mkdir -p %D/%%DOCSDIR%%/api
+@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyjs
+@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO
+@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%