summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorBoris Samorodov <bsam@FreeBSD.org>2016-05-16 23:03:03 +0000
committerBoris Samorodov <bsam@FreeBSD.org>2016-05-16 23:03:03 +0000
commit4bb0740824b4a6679bba48663ecacd52fb773390 (patch)
treeabe243caefe69df56954b52b2e21d406938cf8a8 /java
parentUpdate to new upstream release candidate #2. (diff)
IntelliJ PyCharm is an advanced IDE developed by JetBrains and
focused on developer productivity. PyCharm provides smart code completion, code inspections, on-the-fly error highlighting and quick-fixes, along with automated code refactorings and rich navigation capabilities. WWW: http://www.jetbrains.com/pycharm/
Notes
Notes: svn path=/head/; revision=415367
Diffstat (limited to 'java')
-rw-r--r--java/Makefile1
-rw-r--r--java/intellij-pycharm/Makefile56
-rw-r--r--java/intellij-pycharm/distinfo2
-rw-r--r--java/intellij-pycharm/files/pkg-message.in8
-rw-r--r--java/intellij-pycharm/files/pycharm-ce.desktop.in13
-rw-r--r--java/intellij-pycharm/files/pycharm.in2
-rw-r--r--java/intellij-pycharm/pkg-descr7
-rw-r--r--java/intellij-pycharm/pkg-plist1180
8 files changed, 1269 insertions, 0 deletions
diff --git a/java/Makefile b/java/Makefile
index 4207e5d1951a..7a0bfddf2b6b 100644
--- a/java/Makefile
+++ b/java/Makefile
@@ -31,6 +31,7 @@
SUBDIR += intellij
SUBDIR += intellij-fsnotifier
SUBDIR += intellij-pty4j
+ SUBDIR += intellij-pycharm
SUBDIR += jad
SUBDIR += jaf
SUBDIR += jai
diff --git a/java/intellij-pycharm/Makefile b/java/intellij-pycharm/Makefile
new file mode 100644
index 000000000000..7afd055f1035
--- /dev/null
+++ b/java/intellij-pycharm/Makefile
@@ -0,0 +1,56 @@
+# Created by: Boris Samorodov <bsam@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= pycharm
+PORTVERSION= 2016.1.3
+CATEGORIES= java devel python
+MASTER_SITES= https://download.jetbrains.com/python/ \
+ http://download.jetbrains.com/python/
+DISTNAME= ${PORTNAME}-community-${PORTVERSION}
+PKGNAMEPREFIX= intellij-
+
+MAINTAINER= bsam@FreeBSD.org
+COMMENT= IntelliJ PyCharm Community Edition
+
+LICENSE= APACHE20
+
+RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier \
+ intellij-pty4j>0:java/intellij-pty4j
+
+USE_JAVA= yes
+JAVA_VERSION= 1.7+
+
+NO_ARCH= yes
+NO_BUILD= yes
+
+.include "${.CURDIR}/../intellij/common.mk"
+
+SUB_FILES+= pkg-message pycharm pycharm-ce.desktop
+SUB_LIST+= IDEA_HOME=${IDEA_HOME}
+
+do-install:
+ @${MKDIR} ${STAGEDIR}${DATADIR}
+ @${TAR} -czf - -C ${WRKSRC} . | ${TAR} xzf - -C ${STAGEDIR}${DATADIR}
+# Linux/Windows/OS X only so remove them
+ @${RM} ${STAGEDIR}${DATADIR}/bin/fsnotifier \
+ ${STAGEDIR}${DATADIR}/bin/fsnotifier-arm \
+ ${STAGEDIR}${DATADIR}/bin/fsnotifier64 \
+ ${STAGEDIR}${DATADIR}/bin/libbreakgen.so \
+ ${STAGEDIR}${DATADIR}/bin/libbreakgen64.so \
+# Remove the bundled native Pty4J support libraries, they are replaced
+# by java/intellij-pty4j
+ @${RM} -r ${STAGEDIR}${DATADIR}/lib/libpty
+# Remove bundled linux-only JRE
+ @${RM} -r ${STAGEDIR}${DATADIR}/jre
+ @${RM} -r ${STAGEDIR}${DATADIR}/helpers/pydev/pydevd_attach_to_process
+ @${RM} ${STAGEDIR}${DATADIR}/lib/pty4j-0.5.jar
+ ${INSTALL_SCRIPT} ${WRKDIR}/pycharm ${STAGEDIR}${PREFIX}/bin/
+ ${INSTALL_DATA} ${WRKDIR}/pycharm-ce.desktop ${STAGEDIR}${PREFIX}/share/applications/
+ #cd ${WRKSRC}/lib && ${JAVA_HOME}/bin/jar xf icons.jar
+# TODO: Remove and enable fsnotifier when devel/libinotify is fixed
+# Disable filewatcher warning message on IDEA startup
+ ${ECHO} "idea.filewatcher.disabled=true" >> ${STAGEDIR}${DATADIR}/bin/idea.properties
+# Use fsnotifier replacement provided by java/intellij-fsnotifier
+# ${ECHO} "idea.filewatcher.executable.path=${IDEA_HOME}/bin/fsnotifier" >> ${STAGEDIR}${DATADIR}/bin/idea.properties
+
+.include <bsd.port.mk>
diff --git a/java/intellij-pycharm/distinfo b/java/intellij-pycharm/distinfo
new file mode 100644
index 000000000000..c0bb9c5f3481
--- /dev/null
+++ b/java/intellij-pycharm/distinfo
@@ -0,0 +1,2 @@
+SHA256 (pycharm-community-2016.1.3.tar.gz) = 98c406abf20cbe18565dfe17a62ac7dba094ed15100aab566ff343eb726647cf
+SIZE (pycharm-community-2016.1.3.tar.gz) = 207707566
diff --git a/java/intellij-pycharm/files/pkg-message.in b/java/intellij-pycharm/files/pkg-message.in
new file mode 100644
index 000000000000..8333c38cb0ac
--- /dev/null
+++ b/java/intellij-pycharm/files/pkg-message.in
@@ -0,0 +1,8 @@
+There is experimental native (faster) file watching support which is
+disabled by default. Currently there are problems with watching large
+trees. To enable edit %%DATADIR%%/bin/idea.properties and append
+
+ idea.filewatcher.disabled=false
+ idea.filewatcher.executable.path=%%IDEA_HOME%%/bin/fsnotifier
+
+Only enable fsnotifier if your projects have < 600 files.
diff --git a/java/intellij-pycharm/files/pycharm-ce.desktop.in b/java/intellij-pycharm/files/pycharm-ce.desktop.in
new file mode 100644
index 000000000000..19b3105bc593
--- /dev/null
+++ b/java/intellij-pycharm/files/pycharm-ce.desktop.in
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Version=1.0
+Encoding=UTF-8
+Type=Application
+Name=IntelliJ PyCharm Community Edition
+GenericName=IntelliJ PyCharm Community Edition
+Icon=%%DATADIR%%/bin/pycharm.png
+Exec=%%DATADIR%%/bin/pycharm.sh
+Comment=Develop with pleasure!
+Terminal=false
+StartupNotify=true
+StartupWMClass=jetbrains-pycharm-ce
+Categories=Application;Development;IDE;
diff --git a/java/intellij-pycharm/files/pycharm.in b/java/intellij-pycharm/files/pycharm.in
new file mode 100644
index 000000000000..1a490905044c
--- /dev/null
+++ b/java/intellij-pycharm/files/pycharm.in
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec "%%DATADIR%%/bin/pycharm.sh" $@
diff --git a/java/intellij-pycharm/pkg-descr b/java/intellij-pycharm/pkg-descr
new file mode 100644
index 000000000000..6da17258b080
--- /dev/null
+++ b/java/intellij-pycharm/pkg-descr
@@ -0,0 +1,7 @@
+IntelliJ PyCharm is an advanced IDE developed by JetBrains and
+focused on developer productivity. PyCharm provides smart code
+completion, code inspections, on-the-fly error highlighting and
+quick-fixes, along with automated code refactorings and rich
+navigation capabilities.
+
+WWW: http://www.jetbrains.com/pycharm/
diff --git a/java/intellij-pycharm/pkg-plist b/java/intellij-pycharm/pkg-plist
new file mode 100644
index 000000000000..70eb5f8f7371
--- /dev/null
+++ b/java/intellij-pycharm/pkg-plist
@@ -0,0 +1,1180 @@
+bin/pycharm
+share/applications/pycharm-ce.desktop
+%%DATADIR%%/bin/idea.properties
+%%DATADIR%%/bin/inspect.sh
+%%DATADIR%%/bin/log.xml
+%%DATADIR%%/bin/pycharm.png
+%%DATADIR%%/bin/pycharm.sh
+%%DATADIR%%/bin/pycharm.vmoptions
+%%DATADIR%%/bin/pycharm64.vmoptions
+%%DATADIR%%/build.txt
+%%DATADIR%%/help/ReferenceCard.pdf
+%%DATADIR%%/help/ReferenceCardForMac.pdf
+%%DATADIR%%/help/pycharmhelp.jar
+%%DATADIR%%/helpers/.idea/encodings.xml
+%%DATADIR%%/helpers/.idea/helpers.iml
+%%DATADIR%%/helpers/.idea/misc.xml
+%%DATADIR%%/helpers/.idea/modules.xml
+%%DATADIR%%/helpers/.idea/vcs.xml
+%%DATADIR%%/helpers/check_all_test_suite.py
+%%DATADIR%%/helpers/conda_packaging_tool.py
+%%DATADIR%%/helpers/coverage_runner/__init__.py
+%%DATADIR%%/helpers/coverage_runner/run_coverage.py
+%%DATADIR%%/helpers/coveragepy/__init__.py
+%%DATADIR%%/helpers/coveragepy/coverage/__init__.py
+%%DATADIR%%/helpers/coveragepy/coverage/__main__.py
+%%DATADIR%%/helpers/coveragepy/coverage/annotate.py
+%%DATADIR%%/helpers/coveragepy/coverage/backward.py
+%%DATADIR%%/helpers/coveragepy/coverage/bytecode.py
+%%DATADIR%%/helpers/coveragepy/coverage/cmdline.py
+%%DATADIR%%/helpers/coveragepy/coverage/codeunit.py
+%%DATADIR%%/helpers/coveragepy/coverage/collector.py
+%%DATADIR%%/helpers/coveragepy/coverage/config.py
+%%DATADIR%%/helpers/coveragepy/coverage/control.py
+%%DATADIR%%/helpers/coveragepy/coverage/data.py
+%%DATADIR%%/helpers/coveragepy/coverage/debug.py
+%%DATADIR%%/helpers/coveragepy/coverage/execfile.py
+%%DATADIR%%/helpers/coveragepy/coverage/files.py
+%%DATADIR%%/helpers/coveragepy/coverage/fullcoverage/encodings.py
+%%DATADIR%%/helpers/coveragepy/coverage/html.py
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/coverage_html.js
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/index.html
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/jquery.hotkeys.js
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/jquery.isonscreen.js
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/jquery.min.js
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/jquery.tablesorter.min.js
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/keybd_closed.png
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/keybd_open.png
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/pyfile.html
+%%DATADIR%%/helpers/coveragepy/coverage/htmlfiles/style.css
+%%DATADIR%%/helpers/coveragepy/coverage/misc.py
+%%DATADIR%%/helpers/coveragepy/coverage/parser.py
+%%DATADIR%%/helpers/coveragepy/coverage/phystokens.py
+%%DATADIR%%/helpers/coveragepy/coverage/report.py
+%%DATADIR%%/helpers/coveragepy/coverage/results.py
+%%DATADIR%%/helpers/coveragepy/coverage/summary.py
+%%DATADIR%%/helpers/coveragepy/coverage/templite.py
+%%DATADIR%%/helpers/coveragepy/coverage/tracer.c
+%%DATADIR%%/helpers/coveragepy/coverage/version.py
+%%DATADIR%%/helpers/coveragepy/coverage/xmlreport.py
+%%DATADIR%%/helpers/epydoc/__init__.py
+%%DATADIR%%/helpers/epydoc/apidoc.py
+%%DATADIR%%/helpers/epydoc/checker.py
+%%DATADIR%%/helpers/epydoc/cli.py
+%%DATADIR%%/helpers/epydoc/compat.py
+%%DATADIR%%/helpers/epydoc/docbuilder.py
+%%DATADIR%%/helpers/epydoc/docintrospecter.py
+%%DATADIR%%/helpers/epydoc/docparser.py
+%%DATADIR%%/helpers/epydoc/docstringparser.py
+%%DATADIR%%/helpers/epydoc/docwriter/__init__.py
+%%DATADIR%%/helpers/epydoc/docwriter/dotgraph.py
+%%DATADIR%%/helpers/epydoc/docwriter/html.py
+%%DATADIR%%/helpers/epydoc/docwriter/html_colorize.py
+%%DATADIR%%/helpers/epydoc/docwriter/html_css.py
+%%DATADIR%%/helpers/epydoc/docwriter/html_help.py
+%%DATADIR%%/helpers/epydoc/docwriter/latex.py
+%%DATADIR%%/helpers/epydoc/docwriter/plaintext.py
+%%DATADIR%%/helpers/epydoc/docwriter/xlink.py
+%%DATADIR%%/helpers/epydoc/gui.py
+%%DATADIR%%/helpers/epydoc/log.py
+%%DATADIR%%/helpers/epydoc/markup/__init__.py
+%%DATADIR%%/helpers/epydoc/markup/doctest.py
+%%DATADIR%%/helpers/epydoc/markup/epytext.py
+%%DATADIR%%/helpers/epydoc/markup/javadoc.py
+%%DATADIR%%/helpers/epydoc/markup/plaintext.py
+%%DATADIR%%/helpers/epydoc/markup/pyval_repr.py
+%%DATADIR%%/helpers/epydoc/markup/restructuredtext.py
+%%DATADIR%%/helpers/epydoc/util.py
+%%DATADIR%%/helpers/epydoc_formatter.py
+%%DATADIR%%/helpers/extra_syspath.py
+%%DATADIR%%/helpers/generator3.py
+%%DATADIR%%/helpers/google_formatter.py
+%%DATADIR%%/helpers/icon-robots.txt
+%%DATADIR%%/helpers/numpy_formatter.py
+%%DATADIR%%/helpers/packaging_tool.py
+%%DATADIR%%/helpers/pep8.py
+%%DATADIR%%/helpers/pip-1.1.tar.gz
+%%DATADIR%%/helpers/pip-7.1.0.tar.gz
+%%DATADIR%%/helpers/pockets/__init__.py
+%%DATADIR%%/helpers/pockets/_version.py
+%%DATADIR%%/helpers/pockets/collections.py
+%%DATADIR%%/helpers/pockets/inspect.py
+%%DATADIR%%/helpers/pockets/iterators.py
+%%DATADIR%%/helpers/pockets/string.py
+%%DATADIR%%/helpers/profiler/__init__.py
+%%DATADIR%%/helpers/profiler/_prof_imports.py
+%%DATADIR%%/helpers/profiler/load_pstat.py
+%%DATADIR%%/helpers/profiler/prof_io.py
+%%DATADIR%%/helpers/profiler/prof_util.py
+%%DATADIR%%/helpers/profiler/profiler/__init__.py
+%%DATADIR%%/helpers/profiler/profiler/constants.py
+%%DATADIR%%/helpers/profiler/profiler/ttypes.py
+%%DATADIR%%/helpers/profiler/profilerpy3/__init__.py
+%%DATADIR%%/helpers/profiler/profilerpy3/constants.py
+%%DATADIR%%/helpers/profiler/profilerpy3/ttypes.py
+%%DATADIR%%/helpers/profiler/run_profiler.py
+%%DATADIR%%/helpers/profiler/six.py
+%%DATADIR%%/helpers/profiler/thrift/TMultiplexedProcessor.py
+%%DATADIR%%/helpers/profiler/thrift/TSCons.py
+%%DATADIR%%/helpers/profiler/thrift/TSerialization.py
+%%DATADIR%%/helpers/profiler/thrift/TTornado.py
+%%DATADIR%%/helpers/profiler/thrift/Thrift.py
+%%DATADIR%%/helpers/profiler/thrift/__init__.py
+%%DATADIR%%/helpers/profiler/thrift/protocol/TBase.py
+%%DATADIR%%/helpers/profiler/thrift/protocol/TBinaryProtocol.py
+%%DATADIR%%/helpers/profiler/thrift/protocol/TCompactProtocol.py
+%%DATADIR%%/helpers/profiler/thrift/protocol/TJSONProtocol.py
+%%DATADIR%%/helpers/profiler/thrift/protocol/TMultiplexedProtocol.py
+%%DATADIR%%/helpers/profiler/thrift/protocol/TProtocol.py
+%%DATADIR%%/helpers/profiler/thrift/protocol/TProtocolDecorator.py
+%%DATADIR%%/helpers/profiler/thrift/protocol/__init__.py
+%%DATADIR%%/helpers/profiler/thrift/server/THttpServer.py
+%%DATADIR%%/helpers/profiler/thrift/server/TNonblockingServer.py
+%%DATADIR%%/helpers/profiler/thrift/server/TProcessPoolServer.py
+%%DATADIR%%/helpers/profiler/thrift/server/TServer.py
+%%DATADIR%%/helpers/profiler/thrift/server/__init__.py
+%%DATADIR%%/helpers/profiler/thrift/transport/THttpClient.py
+%%DATADIR%%/helpers/profiler/thrift/transport/TSSLSocket.py
+%%DATADIR%%/helpers/profiler/thrift/transport/TSocket.py
+%%DATADIR%%/helpers/profiler/thrift/transport/TTransport.py
+%%DATADIR%%/helpers/profiler/thrift/transport/TTwisted.py
+%%DATADIR%%/helpers/profiler/thrift/transport/TZlibTransport.py
+%%DATADIR%%/helpers/profiler/thrift/transport/__init__.py
+%%DATADIR%%/helpers/profiler/thriftpy3/TMultiplexedProcessor.py
+%%DATADIR%%/helpers/profiler/thriftpy3/TSCons.py
+%%DATADIR%%/helpers/profiler/thriftpy3/TSerialization.py
+%%DATADIR%%/helpers/profiler/thriftpy3/TTornado.py
+%%DATADIR%%/helpers/profiler/thriftpy3/Thrift.py
+%%DATADIR%%/helpers/profiler/thriftpy3/__init__.py
+%%DATADIR%%/helpers/profiler/thriftpy3/protocol/TBase.py
+%%DATADIR%%/helpers/profiler/thriftpy3/protocol/TBinaryProtocol.py
+%%DATADIR%%/helpers/profiler/thriftpy3/protocol/TCompactProtocol.py
+%%DATADIR%%/helpers/profiler/thriftpy3/protocol/TJSONProtocol.py
+%%DATADIR%%/helpers/profiler/thriftpy3/protocol/TMultiplexedProtocol.py
+%%DATADIR%%/helpers/profiler/thriftpy3/protocol/TProtocol.py
+%%DATADIR%%/helpers/profiler/thriftpy3/protocol/TProtocolDecorator.py
+%%DATADIR%%/helpers/profiler/thriftpy3/protocol/__init__.py
+%%DATADIR%%/helpers/profiler/thriftpy3/server/THttpServer.py
+%%DATADIR%%/helpers/profiler/thriftpy3/server/TNonblockingServer.py
+%%DATADIR%%/helpers/profiler/thriftpy3/server/TProcessPoolServer.py
+%%DATADIR%%/helpers/profiler/thriftpy3/server/TServer.py
+%%DATADIR%%/helpers/profiler/thriftpy3/server/__init__.py
+%%DATADIR%%/helpers/profiler/thriftpy3/transport/THttpClient.py
+%%DATADIR%%/helpers/profiler/thriftpy3/transport/TSSLSocket.py
+%%DATADIR%%/helpers/profiler/thriftpy3/transport/TSocket.py
+%%DATADIR%%/helpers/profiler/thriftpy3/transport/TTransport.py
+%%DATADIR%%/helpers/profiler/thriftpy3/transport/TTwisted.py
+%%DATADIR%%/helpers/profiler/thriftpy3/transport/TZlibTransport.py
+%%DATADIR%%/helpers/profiler/thriftpy3/transport/__init__.py
+%%DATADIR%%/helpers/profiler/yappi_profiler.py
+%%DATADIR%%/helpers/py2only/docutils/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/_compat.py
+%%DATADIR%%/helpers/py2only/docutils/core.py
+%%DATADIR%%/helpers/py2only/docutils/docutils.conf
+%%DATADIR%%/helpers/py2only/docutils/examples.py
+%%DATADIR%%/helpers/py2only/docutils/frontend.py
+%%DATADIR%%/helpers/py2only/docutils/io.py
+%%DATADIR%%/helpers/py2only/docutils/languages/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/languages/af.py
+%%DATADIR%%/helpers/py2only/docutils/languages/ca.py
+%%DATADIR%%/helpers/py2only/docutils/languages/cs.py
+%%DATADIR%%/helpers/py2only/docutils/languages/da.py
+%%DATADIR%%/helpers/py2only/docutils/languages/de.py
+%%DATADIR%%/helpers/py2only/docutils/languages/en.py
+%%DATADIR%%/helpers/py2only/docutils/languages/eo.py
+%%DATADIR%%/helpers/py2only/docutils/languages/es.py
+%%DATADIR%%/helpers/py2only/docutils/languages/fi.py
+%%DATADIR%%/helpers/py2only/docutils/languages/fr.py
+%%DATADIR%%/helpers/py2only/docutils/languages/gl.py
+%%DATADIR%%/helpers/py2only/docutils/languages/he.py
+%%DATADIR%%/helpers/py2only/docutils/languages/it.py
+%%DATADIR%%/helpers/py2only/docutils/languages/ja.py
+%%DATADIR%%/helpers/py2only/docutils/languages/lt.py
+%%DATADIR%%/helpers/py2only/docutils/languages/nl.py
+%%DATADIR%%/helpers/py2only/docutils/languages/pl.py
+%%DATADIR%%/helpers/py2only/docutils/languages/pt_br.py
+%%DATADIR%%/helpers/py2only/docutils/languages/ru.py
+%%DATADIR%%/helpers/py2only/docutils/languages/sk.py
+%%DATADIR%%/helpers/py2only/docutils/languages/sv.py
+%%DATADIR%%/helpers/py2only/docutils/languages/zh_cn.py
+%%DATADIR%%/helpers/py2only/docutils/languages/zh_tw.py
+%%DATADIR%%/helpers/py2only/docutils/nodes.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/null.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/directives/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/directives/admonitions.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/directives/body.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/directives/html.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/directives/images.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/directives/misc.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/directives/parts.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/directives/references.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/directives/tables.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/README.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isoamsa.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isoamsb.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isoamsc.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isoamsn.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isoamso.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isoamsr.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isobox.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isocyr1.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isocyr2.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isodia.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isogrk1.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isogrk2.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isogrk3.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isogrk4-wide.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isogrk4.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isolat1.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isolat2.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isomfrk-wide.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isomfrk.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isomopf-wide.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isomopf.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isomscr-wide.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isomscr.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isonum.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isopub.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/isotech.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/mmlalias.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/mmlextra-wide.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/mmlextra.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/s5defs.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/xhtml1-lat1.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/xhtml1-special.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/include/xhtml1-symbol.txt
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/af.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/ca.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/cs.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/da.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/de.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/en.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/eo.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/es.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/fi.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/fr.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/gl.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/he.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/it.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/ja.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/lt.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/nl.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/pl.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/pt_br.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/ru.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/sk.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/sv.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/zh_cn.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/languages/zh_tw.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/roles.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/states.py
+%%DATADIR%%/helpers/py2only/docutils/parsers/rst/tableparser.py
+%%DATADIR%%/helpers/py2only/docutils/readers/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/readers/doctree.py
+%%DATADIR%%/helpers/py2only/docutils/readers/pep.py
+%%DATADIR%%/helpers/py2only/docutils/readers/standalone.py
+%%DATADIR%%/helpers/py2only/docutils/statemachine.py
+%%DATADIR%%/helpers/py2only/docutils/transforms/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/transforms/components.py
+%%DATADIR%%/helpers/py2only/docutils/transforms/frontmatter.py
+%%DATADIR%%/helpers/py2only/docutils/transforms/misc.py
+%%DATADIR%%/helpers/py2only/docutils/transforms/parts.py
+%%DATADIR%%/helpers/py2only/docutils/transforms/peps.py
+%%DATADIR%%/helpers/py2only/docutils/transforms/references.py
+%%DATADIR%%/helpers/py2only/docutils/transforms/universal.py
+%%DATADIR%%/helpers/py2only/docutils/transforms/writer_aux.py
+%%DATADIR%%/helpers/py2only/docutils/utils/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/utils/code_analyzer.py
+%%DATADIR%%/helpers/py2only/docutils/utils/error_reporting.py
+%%DATADIR%%/helpers/py2only/docutils/utils/math/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/utils/math/latex2mathml.py
+%%DATADIR%%/helpers/py2only/docutils/utils/math/math2html.py
+%%DATADIR%%/helpers/py2only/docutils/utils/math/tex2unichar.py
+%%DATADIR%%/helpers/py2only/docutils/utils/math/unichar2tex.py
+%%DATADIR%%/helpers/py2only/docutils/utils/punctuation_chars.py
+%%DATADIR%%/helpers/py2only/docutils/utils/roman.py
+%%DATADIR%%/helpers/py2only/docutils/utils/smartquotes.py
+%%DATADIR%%/helpers/py2only/docutils/utils/urischemes.py
+%%DATADIR%%/helpers/py2only/docutils/writers/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/writers/docutils_xml.py
+%%DATADIR%%/helpers/py2only/docutils/writers/html4css1/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/writers/html4css1/html4css1.css
+%%DATADIR%%/helpers/py2only/docutils/writers/html4css1/math.css
+%%DATADIR%%/helpers/py2only/docutils/writers/html4css1/template.txt
+%%DATADIR%%/helpers/py2only/docutils/writers/latex2e/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/writers/latex2e/default.tex
+%%DATADIR%%/helpers/py2only/docutils/writers/latex2e/docutils-05-compat.sty
+%%DATADIR%%/helpers/py2only/docutils/writers/latex2e/titlepage.tex
+%%DATADIR%%/helpers/py2only/docutils/writers/latex2e/xelatex.tex
+%%DATADIR%%/helpers/py2only/docutils/writers/manpage.py
+%%DATADIR%%/helpers/py2only/docutils/writers/null.py
+%%DATADIR%%/helpers/py2only/docutils/writers/odf_odt/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/writers/odf_odt/pygmentsformatter.py
+%%DATADIR%%/helpers/py2only/docutils/writers/odf_odt/styles.odt
+%%DATADIR%%/helpers/py2only/docutils/writers/pep_html/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/writers/pep_html/pep.css
+%%DATADIR%%/helpers/py2only/docutils/writers/pep_html/template.txt
+%%DATADIR%%/helpers/py2only/docutils/writers/pseudoxml.py
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/__init__.py
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/README.txt
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/big-black/__base__
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/big-black/framing.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/big-black/pretty.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/big-white/framing.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/big-white/pretty.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/blank.gif
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/framing.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/iepngfix.htc
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/opera.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/outline.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/pretty.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/print.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/s5-core.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/slides.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/default/slides.js
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/medium-black/__base__
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/medium-black/pretty.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/medium-white/framing.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/medium-white/pretty.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/small-black/__base__
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/small-black/pretty.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/small-white/framing.css
+%%DATADIR%%/helpers/py2only/docutils/writers/s5_html/themes/small-white/pretty.css
+%%DATADIR%%/helpers/py2only/docutils/writers/xetex/__init__.py
+%%DATADIR%%/helpers/py2only/roman.py
+%%DATADIR%%/helpers/py3only/docutils/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/_compat.py
+%%DATADIR%%/helpers/py3only/docutils/core.py
+%%DATADIR%%/helpers/py3only/docutils/examples.py
+%%DATADIR%%/helpers/py3only/docutils/frontend.py
+%%DATADIR%%/helpers/py3only/docutils/io.py
+%%DATADIR%%/helpers/py3only/docutils/languages/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/languages/af.py
+%%DATADIR%%/helpers/py3only/docutils/languages/ca.py
+%%DATADIR%%/helpers/py3only/docutils/languages/cs.py
+%%DATADIR%%/helpers/py3only/docutils/languages/da.py
+%%DATADIR%%/helpers/py3only/docutils/languages/de.py
+%%DATADIR%%/helpers/py3only/docutils/languages/en.py
+%%DATADIR%%/helpers/py3only/docutils/languages/eo.py
+%%DATADIR%%/helpers/py3only/docutils/languages/es.py
+%%DATADIR%%/helpers/py3only/docutils/languages/fi.py
+%%DATADIR%%/helpers/py3only/docutils/languages/fr.py
+%%DATADIR%%/helpers/py3only/docutils/languages/gl.py
+%%DATADIR%%/helpers/py3only/docutils/languages/he.py
+%%DATADIR%%/helpers/py3only/docutils/languages/it.py
+%%DATADIR%%/helpers/py3only/docutils/languages/ja.py
+%%DATADIR%%/helpers/py3only/docutils/languages/lt.py
+%%DATADIR%%/helpers/py3only/docutils/languages/nl.py
+%%DATADIR%%/helpers/py3only/docutils/languages/pl.py
+%%DATADIR%%/helpers/py3only/docutils/languages/pt_br.py
+%%DATADIR%%/helpers/py3only/docutils/languages/ru.py
+%%DATADIR%%/helpers/py3only/docutils/languages/sk.py
+%%DATADIR%%/helpers/py3only/docutils/languages/sv.py
+%%DATADIR%%/helpers/py3only/docutils/languages/zh_cn.py
+%%DATADIR%%/helpers/py3only/docutils/languages/zh_tw.py
+%%DATADIR%%/helpers/py3only/docutils/nodes.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/null.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/directives/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/directives/admonitions.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/directives/body.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/directives/html.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/directives/images.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/directives/misc.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/directives/parts.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/directives/references.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/directives/tables.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/README.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isoamsa.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isoamsb.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isoamsc.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isoamsn.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isoamso.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isoamsr.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isobox.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isocyr1.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isocyr2.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isodia.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isogrk1.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isogrk2.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isogrk3.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isogrk4-wide.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isogrk4.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isolat1.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isolat2.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isomfrk-wide.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isomfrk.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isomopf-wide.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isomopf.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isomscr-wide.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isomscr.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isonum.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isopub.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/isotech.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/mmlalias.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/mmlextra-wide.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/mmlextra.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/s5defs.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/xhtml1-lat1.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/xhtml1-special.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/include/xhtml1-symbol.txt
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/af.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/ca.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/cs.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/da.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/de.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/en.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/eo.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/es.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/fi.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/fr.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/gl.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/he.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/it.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/ja.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/lt.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/nl.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/pl.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/pt_br.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/ru.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/sk.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/sv.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/zh_cn.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/languages/zh_tw.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/roles.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/states.py
+%%DATADIR%%/helpers/py3only/docutils/parsers/rst/tableparser.py
+%%DATADIR%%/helpers/py3only/docutils/readers/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/readers/doctree.py
+%%DATADIR%%/helpers/py3only/docutils/readers/pep.py
+%%DATADIR%%/helpers/py3only/docutils/readers/standalone.py
+%%DATADIR%%/helpers/py3only/docutils/statemachine.py
+%%DATADIR%%/helpers/py3only/docutils/transforms/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/transforms/components.py
+%%DATADIR%%/helpers/py3only/docutils/transforms/frontmatter.py
+%%DATADIR%%/helpers/py3only/docutils/transforms/misc.py
+%%DATADIR%%/helpers/py3only/docutils/transforms/parts.py
+%%DATADIR%%/helpers/py3only/docutils/transforms/peps.py
+%%DATADIR%%/helpers/py3only/docutils/transforms/references.py
+%%DATADIR%%/helpers/py3only/docutils/transforms/universal.py
+%%DATADIR%%/helpers/py3only/docutils/transforms/writer_aux.py
+%%DATADIR%%/helpers/py3only/docutils/utils/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/utils/code_analyzer.py
+%%DATADIR%%/helpers/py3only/docutils/utils/error_reporting.py
+%%DATADIR%%/helpers/py3only/docutils/utils/math/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/utils/math/latex2mathml.py
+%%DATADIR%%/helpers/py3only/docutils/utils/math/math2html.py
+%%DATADIR%%/helpers/py3only/docutils/utils/math/tex2unichar.py
+%%DATADIR%%/helpers/py3only/docutils/utils/math/unichar2tex.py
+%%DATADIR%%/helpers/py3only/docutils/utils/punctuation_chars.py
+%%DATADIR%%/helpers/py3only/docutils/utils/roman.py
+%%DATADIR%%/helpers/py3only/docutils/utils/smartquotes.py
+%%DATADIR%%/helpers/py3only/docutils/utils/urischemes.py
+%%DATADIR%%/helpers/py3only/docutils/writers/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/writers/docutils_xml.py
+%%DATADIR%%/helpers/py3only/docutils/writers/html4css1/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/writers/html4css1/html4css1.css
+%%DATADIR%%/helpers/py3only/docutils/writers/html4css1/math.css
+%%DATADIR%%/helpers/py3only/docutils/writers/html4css1/template.txt
+%%DATADIR%%/helpers/py3only/docutils/writers/latex2e/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/writers/latex2e/default.tex
+%%DATADIR%%/helpers/py3only/docutils/writers/latex2e/titlepage.tex
+%%DATADIR%%/helpers/py3only/docutils/writers/latex2e/xelatex.tex
+%%DATADIR%%/helpers/py3only/docutils/writers/manpage.py
+%%DATADIR%%/helpers/py3only/docutils/writers/null.py
+%%DATADIR%%/helpers/py3only/docutils/writers/odf_odt/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/writers/odf_odt/pygmentsformatter.py
+%%DATADIR%%/helpers/py3only/docutils/writers/odf_odt/styles.odt
+%%DATADIR%%/helpers/py3only/docutils/writers/pep_html/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/writers/pep_html/pep.css
+%%DATADIR%%/helpers/py3only/docutils/writers/pep_html/template.txt
+%%DATADIR%%/helpers/py3only/docutils/writers/pseudoxml.py
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/__init__.py
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/README.txt
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/big-black/__base__
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/big-black/framing.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/big-black/pretty.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/big-white/framing.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/big-white/pretty.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/blank.gif
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/framing.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/iepngfix.htc
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/opera.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/outline.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/pretty.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/print.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/s5-core.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/slides.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/default/slides.js
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/medium-black/__base__
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/medium-black/pretty.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/medium-white/framing.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/medium-white/pretty.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/small-black/__base__
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/small-black/pretty.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/small-white/framing.css
+%%DATADIR%%/helpers/py3only/docutils/writers/s5_html/themes/small-white/pretty.css
+%%DATADIR%%/helpers/py3only/docutils/writers/xetex/__init__.py
+%%DATADIR%%/helpers/pycharm/__init__.py
+%%DATADIR%%/helpers/pycharm/_bdd_utils.py
+%%DATADIR%%/helpers/pycharm/_jb_manage_tasks_provider.py
+%%DATADIR%%/helpers/pycharm/_jb_tox_runner.py
+%%DATADIR%%/helpers/pycharm/_jb_utils.py
+%%DATADIR%%/helpers/pycharm/appcfg_fetcher.py
+%%DATADIR%%/helpers/pycharm/attestrunner.py
+%%DATADIR%%/helpers/pycharm/behave_runner.py
+%%DATADIR%%/helpers/pycharm/buildout_engulfer.py
+%%DATADIR%%/helpers/pycharm/django_manage.py
+%%DATADIR%%/helpers/pycharm/django_manage_commands_provider/__init__.py
+%%DATADIR%%/helpers/pycharm/django_manage_commands_provider/_parser/__init__.py
+%%DATADIR%%/helpers/pycharm/django_manage_commands_provider/_parser/_argparse.py
+%%DATADIR%%/helpers/pycharm/django_manage_commands_provider/_parser/_optparse.py
+%%DATADIR%%/helpers/pycharm/django_manage_commands_provider/_parser/_utils.py
+%%DATADIR%%/helpers/pycharm/django_manage_commands_provider/_parser/parser.py
+%%DATADIR%%/helpers/pycharm/django_manage_commands_provider/_xml.py
+%%DATADIR%%/helpers/pycharm/django_manage_commands_provider/readme.txt
+%%DATADIR%%/helpers/pycharm/django_manage_shell.py
+%%DATADIR%%/helpers/pycharm/django_test_manage.py
+%%DATADIR%%/helpers/pycharm/django_test_runner.py
+%%DATADIR%%/helpers/pycharm/docrunner.py
+%%DATADIR%%/helpers/pycharm/fix_getpass.py
+%%DATADIR%%/helpers/pycharm/lettuce_runner.py
+%%DATADIR%%/helpers/pycharm/nose_helper/_2.py
+%%DATADIR%%/helpers/pycharm/nose_helper/_3.py
+%%DATADIR%%/helpers/pycharm/nose_helper/__init__.py
+%%DATADIR%%/helpers/pycharm/nose_helper/case.py
+%%DATADIR%%/helpers/pycharm/nose_helper/config.py
+%%DATADIR%%/helpers/pycharm/nose_helper/failure.py
+%%DATADIR%%/helpers/pycharm/nose_helper/loader.py
+%%DATADIR%%/helpers/pycharm/nose_helper/raise_compat.py
+%%DATADIR%%/helpers/pycharm/nose_helper/selector.py
+%%DATADIR%%/helpers/pycharm/nose_helper/suite.py
+%%DATADIR%%/helpers/pycharm/nose_helper/util.py
+%%DATADIR%%/helpers/pycharm/nose_utils.py
+%%DATADIR%%/helpers/pycharm/noserunner.py
+%%DATADIR%%/helpers/pycharm/pycharm_commands/__init__.py
+%%DATADIR%%/helpers/pycharm/pycharm_commands/pycharm_test.py
+%%DATADIR%%/helpers/pycharm/pycharm_load_entry_point.py
+%%DATADIR%%/helpers/pycharm/pycharm_run_utils.py
+%%DATADIR%%/helpers/pycharm/pycharm_setup_runner.py
+%%DATADIR%%/helpers/pycharm/pytest_teamcity.py
+%%DATADIR%%/helpers/pycharm/pytestrunner.py
+%%DATADIR%%/helpers/pycharm/runpy_compat.py
+%%DATADIR%%/helpers/pycharm/tcmessages.py
+%%DATADIR%%/helpers/pycharm/tcunittest.py
+%%DATADIR%%/helpers/pycharm/utrunner.py
+%%DATADIR%%/helpers/pycharm_generator_utils/__init__.py
+%%DATADIR%%/helpers/pycharm_generator_utils/clr_tools.py
+%%DATADIR%%/helpers/pycharm_generator_utils/constants.py
+%%DATADIR%%/helpers/pycharm_generator_utils/module_redeclarator.py
+%%DATADIR%%/helpers/pycharm_generator_utils/pyparsing.py
+%%DATADIR%%/helpers/pycharm_generator_utils/pyparsing_py3.py
+%%DATADIR%%/helpers/pycharm_generator_utils/util_methods.py
+%%DATADIR%%/helpers/pydev/LICENSE
+%%DATADIR%%/helpers/pydev/README.rst
+%%DATADIR%%/helpers/pydev/_pydev_bundle/__init__.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/_pydev_completer.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/_pydev_filesystem_encoding.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/_pydev_getopt.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/_pydev_imports_tipper.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/_pydev_jy_imports_tipper.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/_pydev_log.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/_pydev_tipper_common.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/fix_getpass.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_console_utils.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_import_hook.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_imports.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_ipython_console.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_ipython_console_011.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_is_thread_alive.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_localhost.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_log.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_monkey.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_monkey_qt.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_override.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_umd.py
+%%DATADIR%%/helpers/pydev/_pydev_bundle/pydev_versioncheck.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/__init__.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_BaseHTTPServer.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_SimpleXMLRPCServer.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_SocketServer.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_execfile.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_inspect.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_pkgutil_old.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_saved_modules.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_sys_patch.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_uuid_old.py
+%%DATADIR%%/helpers/pydev/_pydev_imps/_pydev_xmlrpclib.py
+%%DATADIR%%/helpers/pydev/_pydev_runfiles/__init__.py
+%%DATADIR%%/helpers/pydev/_pydev_runfiles/pydev_runfiles.py
+%%DATADIR%%/helpers/pydev/_pydev_runfiles/pydev_runfiles_coverage.py
+%%DATADIR%%/helpers/pydev/_pydev_runfiles/pydev_runfiles_nose.py
+%%DATADIR%%/helpers/pydev/_pydev_runfiles/pydev_runfiles_parallel.py
+%%DATADIR%%/helpers/pydev/_pydev_runfiles/pydev_runfiles_parallel_client.py
+%%DATADIR%%/helpers/pydev/_pydev_runfiles/pydev_runfiles_pytest2.py
+%%DATADIR%%/helpers/pydev/_pydev_runfiles/pydev_runfiles_unittest.py
+%%DATADIR%%/helpers/pydev/_pydev_runfiles/pydev_runfiles_xml_rpc.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/__init__.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevconsole_code_for_ironpython.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_additional_thread_info.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_additional_thread_info_regular.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_breakpoints.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_comm.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_console.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_constants.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_custom_frames.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_cython.c
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_cython.pyx
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_27_32.pyd
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_27_64.pyd
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_34_32.pyd
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_34_64.pyd
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_35_32.cp35-win32.pyd
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_35_64.cp35-win_amd64.pyd
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_cython_wrapper.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_dont_trace.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_dont_trace_files.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_exec.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_exec2.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_frame.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_frame_utils.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_import_class.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_io.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_kill_all_pydevd_threads.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_plugin_utils.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_process_net_command.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_referrers.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_reload.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_resolver.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_save_locals.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_signature.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_stackless.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_trace_api.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_trace_dispatch.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_trace_dispatch_regular.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_traceproperty.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_tracing.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_utils.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_vars.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_vm_type.py
+%%DATADIR%%/helpers/pydev/_pydevd_bundle/pydevd_xml.py
+%%DATADIR%%/helpers/pydev/build.gradle
+%%DATADIR%%/helpers/pydev/build_tools/build.py
+%%DATADIR%%/helpers/pydev/build_tools/build_binaries_windows.py
+%%DATADIR%%/helpers/pydev/build_tools/generate_code.py
+%%DATADIR%%/helpers/pydev/build_tools/names_to_rename.py
+%%DATADIR%%/helpers/pydev/build_tools/rename_pep8.py
+%%DATADIR%%/helpers/pydev/interpreterInfo.py
+%%DATADIR%%/helpers/pydev/merge_pydev_pycharm.txt
+%%DATADIR%%/helpers/pydev/pycharm-readme.txt
+%%DATADIR%%/helpers/pydev/pycompletionserver.py
+%%DATADIR%%/helpers/pydev/pydev_app_engine_debug_startup.py
+%%DATADIR%%/helpers/pydev/pydev_coverage.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/README
+%%DATADIR%%/helpers/pydev/pydev_ipython/__init__.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/inputhook.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/inputhookglut.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/inputhookgtk.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/inputhookgtk3.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/inputhookpyglet.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/inputhookqt4.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/inputhooktk.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/inputhookwx.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/matplotlibtools.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/qt.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/qt_for_kernel.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/qt_loaders.py
+%%DATADIR%%/helpers/pydev/pydev_ipython/version.py
+%%DATADIR%%/helpers/pydev/pydev_pysrc.py
+%%DATADIR%%/helpers/pydev/pydev_run_in_console.py
+%%DATADIR%%/helpers/pydev/pydev_sitecustomize/__not_in_default_pythonpath.txt
+%%DATADIR%%/helpers/pydev/pydev_sitecustomize/sitecustomize.py
+%%DATADIR%%/helpers/pydev/pydevconsole.py
+%%DATADIR%%/helpers/pydev/pydevd.py
+%%DATADIR%%/helpers/pydev/pydevd_concurrency_analyser/__init__.py
+%%DATADIR%%/helpers/pydev/pydevd_concurrency_analyser/pydevd_concurrency_logger.py
+%%DATADIR%%/helpers/pydev/pydevd_concurrency_analyser/pydevd_thread_wrappers.py
+%%DATADIR%%/helpers/pydev/pydevd_file_utils.py
+%%DATADIR%%/helpers/pydev/pydevd_plugins/__init__.py
+%%DATADIR%%/helpers/pydev/pydevd_plugins/django_debug.py
+%%DATADIR%%/helpers/pydev/pydevd_plugins/jinja2_debug.py
+%%DATADIR%%/helpers/pydev/runfiles.py
+%%DATADIR%%/helpers/pydev/setup.py
+%%DATADIR%%/helpers/pydev/setup_cython.py
+%%DATADIR%%/helpers/pydev/stubs/_django_manager_body.py
+%%DATADIR%%/helpers/pydev/stubs/_get_tips.py
+%%DATADIR%%/helpers/pydev/stubs/pycompletion.py
+%%DATADIR%%/helpers/pydev/test_pydevd_reload/__init__.py
+%%DATADIR%%/helpers/pydev/test_pydevd_reload/test_pydevd_reload.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/__init__.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/test_check_pydevconsole.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/test_get_referrers.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/test_jyserver.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/test_jysimpleTipper.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/test_pydev_ipython_011.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/test_pydevconsole.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/test_pyserver.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/test_signature.py
+%%DATADIR%%/helpers/pydev/tests_pydevd/test_simpleTipper.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_mainloop/README
+%%DATADIR%%/helpers/pydev/tests_pydevd_mainloop/__init__.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_mainloop/gui-glut.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_mainloop/gui-gtk.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_mainloop/gui-gtk3.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_mainloop/gui-pyglet.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_mainloop/gui-qt.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_mainloop/gui-tk.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_mainloop/gui-wx.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/__init__.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case1.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case10.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case13.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case14.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case15.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case15_execfile.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case16.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case17.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case17a.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case18.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case19.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case2.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case3.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case4.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case56.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case7.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case89.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case_qthread1.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case_qthread2.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case_qthread3.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_debugger_case_set_next_statement.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/_performance_1.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/debugger_unittest.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/manage.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_app/__init__.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_app/admin.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_app/models.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_app/templates/my_app/index.html
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_app/tests.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_app/urls.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_app/views.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_django_proj_17/__init__.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_django_proj_17/settings.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_django_proj_17/urls.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/my_django_proj_17/my_django_proj_17/wsgi.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/performance_check.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/test_additional_thread_info.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/test_debugger.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/test_pydev_monkey.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_python/test_save_locals.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/not_in_default_pythonpath.txt
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/nested_dir/__init__.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/nested_dir/nested2/__init__.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/nested_dir/nested2/deep_nest_test.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/nested_dir/nested2/non_test_file.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/nested_dir/nested3/__init__.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/nested_dir/nested3/junk.txt
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/nested_dir/nested3/non_test_file.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/nested_dir/non_test_file.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/nested_dir/simple4_test.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/non_test_file.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/not_in_default_pythonpath.txt
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/simple2_test.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/simple3_test.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/simpleClass_test.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/simpleModule_test.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/samples/simple_test.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/test_pydevd_property.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/test_pydevdio.py
+%%DATADIR%%/helpers/pydev/tests_pydevd_runfiles/test_runfiles.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/autopep8.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/Grammar.txt
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/PatternGrammar.txt
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/__init__.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/__main__.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/btm_matcher.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/btm_utils.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixer_base.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixer_util.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/__init__.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_apply.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_basestring.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_buffer.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_callable.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_dict.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_except.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_exec.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_execfile.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_exitfunc.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_filter.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_funcattrs.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_future.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_getcwdu.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_has_key.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_idioms.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_import.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_imports.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_imports2.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_input.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_intern.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_isinstance.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_itertools.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_itertools_imports.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_long.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_map.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_metaclass.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_methodattrs.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_ne.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_next.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_nonzero.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_numliterals.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_operator.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_paren.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_print.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_raise.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_raw_input.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_reduce.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_renames.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_repr.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_set_literal.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_standarderror.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_sys_exc.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_throw.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_tuple_params.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_types.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_unicode.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_urllib.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_ws_comma.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_xrange.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_xreadlines.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/fixes/fix_zip.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/main.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/patcomp.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pgen2/__init__.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pgen2/conv.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pgen2/driver.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pgen2/grammar.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pgen2/literals.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pgen2/parse.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pgen2/pgen.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pgen2/token.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pgen2/tokenize.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pygram.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/pytree.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/lib2to3/lib2to3/refactor.py
+%%DATADIR%%/helpers/pydev/third_party/pep8/pep8.py
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/__init__.py
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/_ctypes.dll
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/_endian.py
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/ctypes-README.txt
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/macholib/__init__.py
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/macholib/dyld.py
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/macholib/dylib.py
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/macholib/framework.py
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/util.py
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/ctypes/wintypes.py
+%%DATADIR%%/helpers/pydev/third_party/wrapped_for_pydev/not_in_default_pythonpath.txt
+%%DATADIR%%/helpers/python-skeletons/AUTHORS.txt
+%%DATADIR%%/helpers/python-skeletons/LICENSE.txt
+%%DATADIR%%/helpers/python-skeletons/README.md
+%%DATADIR%%/helpers/python-skeletons/StringIO.py
+%%DATADIR%%/helpers/python-skeletons/__builtin__.py
+%%DATADIR%%/helpers/python-skeletons/alembic.py
+%%DATADIR%%/helpers/python-skeletons/asyncio/__init__.py
+%%DATADIR%%/helpers/python-skeletons/asyncio/events.py
+%%DATADIR%%/helpers/python-skeletons/behave.py
+%%DATADIR%%/helpers/python-skeletons/builtins.py
+%%DATADIR%%/helpers/python-skeletons/cStringIO.py
+%%DATADIR%%/helpers/python-skeletons/collections.py
+%%DATADIR%%/helpers/python-skeletons/datetime.py
+%%DATADIR%%/helpers/python-skeletons/decimal.py
+%%DATADIR%%/helpers/python-skeletons/django/__init__.py
+%%DATADIR%%/helpers/python-skeletons/django/db/__init__.py
+%%DATADIR%%/helpers/python-skeletons/django/db/models/__init__.py
+%%DATADIR%%/helpers/python-skeletons/django/db/models/query.py
+%%DATADIR%%/helpers/python-skeletons/django/forms/__init__.py
+%%DATADIR%%/helpers/python-skeletons/django/forms/forms.py
+%%DATADIR%%/helpers/python-skeletons/django/forms/formsets.py
+%%DATADIR%%/helpers/python-skeletons/django/forms/models.py
+%%DATADIR%%/helpers/python-skeletons/functools.py
+%%DATADIR%%/helpers/python-skeletons/io.py
+%%DATADIR%%/helpers/python-skeletons/itertools.py
+%%DATADIR%%/helpers/python-skeletons/lettuce/__init__.py
+%%DATADIR%%/helpers/python-skeletons/lettuce/terrain.py
+%%DATADIR%%/helpers/python-skeletons/math.py
+%%DATADIR%%/helpers/python-skeletons/multiprocessing/__init__.py
+%%DATADIR%%/helpers/python-skeletons/multiprocessing/managers.py
+%%DATADIR%%/helpers/python-skeletons/nose/__init__.py
+%%DATADIR%%/helpers/python-skeletons/nose/tools/__init__.py
+%%DATADIR%%/helpers/python-skeletons/numpy/__init__.py
+%%DATADIR%%/helpers/python-skeletons/numpy/core/__init__.py
+%%DATADIR%%/helpers/python-skeletons/numpy/core/multiarray.py
+%%DATADIR%%/helpers/python-skeletons/os/__init__.py
+%%DATADIR%%/helpers/python-skeletons/os/path.py
+%%DATADIR%%/helpers/python-skeletons/pathlib.py
+%%DATADIR%%/helpers/python-skeletons/pickle.py
+%%DATADIR%%/helpers/python-skeletons/pytest/__init__.py
+%%DATADIR%%/helpers/python-skeletons/re.py
+%%DATADIR%%/helpers/python-skeletons/shutil.py
+%%DATADIR%%/helpers/python-skeletons/sqlite3.py
+%%DATADIR%%/helpers/python-skeletons/struct.py
+%%DATADIR%%/helpers/python-skeletons/subprocess.py
+%%DATADIR%%/helpers/python-skeletons/sys.py
+%%DATADIR%%/helpers/required_gen_version
+%%DATADIR%%/helpers/rest_formatter.py
+%%DATADIR%%/helpers/rest_runners/rst2smth.py
+%%DATADIR%%/helpers/rest_runners/sphinx_runner.py
+%%DATADIR%%/helpers/setuptools-1.4.2.tar.gz
+%%DATADIR%%/helpers/setuptools-18.1.tar.gz
+%%DATADIR%%/helpers/six.py
+%%DATADIR%%/helpers/sphinxcontrib/__init__.py
+%%DATADIR%%/helpers/sphinxcontrib/napoleon/__init__.py
+%%DATADIR%%/helpers/sphinxcontrib/napoleon/_version.py
+%%DATADIR%%/helpers/sphinxcontrib/napoleon/docstring.py
+%%DATADIR%%/helpers/syspath.py
+%%DATADIR%%/helpers/test_generator.py
+%%DATADIR%%/helpers/tools/class_method_versions.xml
+%%DATADIR%%/helpers/tools/packages
+%%DATADIR%%/helpers/tools/python_keywords/False
+%%DATADIR%%/helpers/tools/python_keywords/None
+%%DATADIR%%/helpers/tools/python_keywords/True
+%%DATADIR%%/helpers/tools/python_keywords/__debug__
+%%DATADIR%%/helpers/tools/python_keywords/and
+%%DATADIR%%/helpers/tools/python_keywords/as
+%%DATADIR%%/helpers/tools/python_keywords/assert
+%%DATADIR%%/helpers/tools/python_keywords/break
+%%DATADIR%%/helpers/tools/python_keywords/class
+%%DATADIR%%/helpers/tools/python_keywords/continue
+%%DATADIR%%/helpers/tools/python_keywords/def
+%%DATADIR%%/helpers/tools/python_keywords/del
+%%DATADIR%%/helpers/tools/python_keywords/elif
+%%DATADIR%%/helpers/tools/python_keywords/else
+%%DATADIR%%/helpers/tools/python_keywords/except
+%%DATADIR%%/helpers/tools/python_keywords/exec
+%%DATADIR%%/helpers/tools/python_keywords/finally
+%%DATADIR%%/helpers/tools/python_keywords/for
+%%DATADIR%%/helpers/tools/python_keywords/from
+%%DATADIR%%/helpers/tools/python_keywords/global
+%%DATADIR%%/helpers/tools/python_keywords/if
+%%DATADIR%%/helpers/tools/python_keywords/import
+%%DATADIR%%/helpers/tools/python_keywords/in
+%%DATADIR%%/helpers/tools/python_keywords/is
+%%DATADIR%%/helpers/tools/python_keywords/lambda
+%%DATADIR%%/helpers/tools/python_keywords/nonlocal
+%%DATADIR%%/helpers/tools/python_keywords/not
+%%DATADIR%%/helpers/tools/python_keywords/or
+%%DATADIR%%/helpers/tools/python_keywords/pass
+%%DATADIR%%/helpers/tools/python_keywords/raise
+%%DATADIR%%/helpers/tools/python_keywords/return
+%%DATADIR%%/helpers/tools/python_keywords/try
+%%DATADIR%%/helpers/tools/python_keywords/while
+%%DATADIR%%/helpers/tools/python_keywords/with
+%%DATADIR%%/helpers/tools/python_keywords/yield
+%%DATADIR%%/helpers/tools/stdlib_packages.txt
+%%DATADIR%%/helpers/tools/versions.xml
+%%DATADIR%%/helpers/virtualenv-1.11.6.tar.gz
+%%DATADIR%%/helpers/virtualenv-1.7.2.tar.gz
+%%DATADIR%%/helpers/virtualenv-13.1.0.tar.gz
+%%DATADIR%%/lib/annotations.jar
+%%DATADIR%%/lib/asm-all.jar
+%%DATADIR%%/lib/asm-commons.jar
+%%DATADIR%%/lib/asm.jar
+%%DATADIR%%/lib/automaton.jar
+%%DATADIR%%/lib/batik-all.jar
+%%DATADIR%%/lib/boot.jar
+%%DATADIR%%/lib/bootstrap.jar
+%%DATADIR%%/lib/cglib-2.2.2.jar
+%%DATADIR%%/lib/cli-parser-1.1.jar
+%%DATADIR%%/lib/common-image-3.2.1.jar
+%%DATADIR%%/lib/common-io-3.2.1.jar
+%%DATADIR%%/lib/common-lang-3.2.1.jar
+%%DATADIR%%/lib/commons-codec-1.9.jar
+%%DATADIR%%/lib/commons-httpclient-3.1-patched.jar
+%%DATADIR%%/lib/commons-logging-1.2.jar
+%%DATADIR%%/lib/commons-net-3.3.jar
+%%DATADIR%%/lib/ext/cglib-2.2.2.jar
+%%DATADIR%%/lib/extensions.jar
+%%DATADIR%%/lib/fluent-hc-4.4.1.jar
+%%DATADIR%%/lib/forms_rt.jar
+%%DATADIR%%/lib/groovy-all-2.4.6.jar
+%%DATADIR%%/lib/gson-2.5.jar
+%%DATADIR%%/lib/guava-17.0.jar
+%%DATADIR%%/lib/httpclient-4.4.1.jar
+%%DATADIR%%/lib/httpcore-4.4.1.jar
+%%DATADIR%%/lib/httpmime-4.4.1.jar
+%%DATADIR%%/lib/icons.jar
+%%DATADIR%%/lib/imageio-core-3.2.1.jar
+%%DATADIR%%/lib/imageio-metadata-3.2.1.jar
+%%DATADIR%%/lib/imageio-tiff-3.2.1.jar
+%%DATADIR%%/lib/imgscalr-lib-4.2.jar
+%%DATADIR%%/lib/isorelax.jar
+%%DATADIR%%/lib/jaxen-1.1.3.jar
+%%DATADIR%%/lib/jayatana-1.2.4.jar
+%%DATADIR%%/lib/jcip-annotations.jar
+%%DATADIR%%/lib/jdom.jar
+%%DATADIR%%/lib/jgoodies-forms.jar
+%%DATADIR%%/lib/jh.jar
+%%DATADIR%%/lib/jing.jar
+%%DATADIR%%/lib/jna-platform.jar
+%%DATADIR%%/lib/jna.jar
+%%DATADIR%%/lib/jsch-0.1.52.jar
+%%DATADIR%%/lib/jsch.agentproxy.connector-factory.jar
+%%DATADIR%%/lib/jsch.agentproxy.core.jar
+%%DATADIR%%/lib/jsch.agentproxy.pageant.jar
+%%DATADIR%%/lib/jsch.agentproxy.sshagent.jar
+%%DATADIR%%/lib/jsch.agentproxy.usocket-jna.jar
+%%DATADIR%%/lib/jsch.agentproxy.usocket-nc.jar
+%%DATADIR%%/lib/jsr166e.jar
+%%DATADIR%%/lib/jsr173_1.0_api.jar
+%%DATADIR%%/lib/jzlib-1.1.1.jar
+%%DATADIR%%/lib/kotlin-reflect.jar
+%%DATADIR%%/lib/kotlin-runtime.jar
+%%DATADIR%%/lib/log4j.jar
+%%DATADIR%%/lib/markdownj-core-0.4.2-SNAPSHOT.jar
+%%DATADIR%%/lib/microba.jar
+%%DATADIR%%/lib/miglayout-swing.jar
+%%DATADIR%%/lib/nanoxml-2.2.3.jar
+%%DATADIR%%/lib/netty-all-4.1.0.CR7.jar
+%%DATADIR%%/lib/openapi.jar
+%%DATADIR%%/lib/oromatcher.jar
+%%DATADIR%%/lib/picocontainer.jar
+%%DATADIR%%/lib/proxy-vole_20131209.jar
+%%DATADIR%%/lib/pty4j-0.6.jar
+%%DATADIR%%/lib/purejavacomm.jar
+%%DATADIR%%/lib/pycharm-pydev.jar
+%%DATADIR%%/lib/pycharm.jar
+%%DATADIR%%/lib/resolver.jar
+%%DATADIR%%/lib/resources.jar
+%%DATADIR%%/lib/resources_en.jar
+%%DATADIR%%/lib/rhino-js-1_7R4.jar
+%%DATADIR%%/lib/rngom-20051226-patched.jar
+%%DATADIR%%/lib/sanselan-0.98-snapshot.jar
+%%DATADIR%%/lib/serviceMessages.jar
+%%DATADIR%%/lib/slf4j-api-1.7.10.jar
+%%DATADIR%%/lib/slf4j-log4j12-1.7.10.jar
+%%DATADIR%%/lib/snappy-in-java-0.3.1.jar
+%%DATADIR%%/lib/src/pycharm-openapi-src.zip
+%%DATADIR%%/lib/src/pycharm-pydev-src.zip
+%%DATADIR%%/lib/src/trove4j_src.jar
+%%DATADIR%%/lib/swingx-core-1.6.2.jar
+%%DATADIR%%/lib/trang-core.jar
+%%DATADIR%%/lib/trove4j.jar
+%%DATADIR%%/lib/util.jar
+%%DATADIR%%/lib/velocity.jar
+%%DATADIR%%/lib/winp-1.23.jar
+%%DATADIR%%/lib/xbean.jar
+%%DATADIR%%/lib/xercesImpl.jar
+%%DATADIR%%/lib/xml-apis-ext.jar
+%%DATADIR%%/lib/xml-apis.jar
+%%DATADIR%%/lib/xmlgraphics-commons-1.5.jar
+%%DATADIR%%/lib/xmlrpc-2.0.jar
+%%DATADIR%%/lib/xpp3-1.1.4-min.jar
+%%DATADIR%%/lib/xstream-1.4.8.jar
+%%DATADIR%%/license/LICENSE.txt
+%%DATADIR%%/license/NOTICE.txt
+%%DATADIR%%/license/XStream_license.txt
+%%DATADIR%%/license/ant_license.txt
+%%DATADIR%%/license/asm_license.txt
+%%DATADIR%%/license/eclipse_license.txt
+%%DATADIR%%/license/growl.license
+%%DATADIR%%/license/gson_license.txt
+%%DATADIR%%/license/imgscalr_license.txt
+%%DATADIR%%/license/javahelp_license.html
+%%DATADIR%%/license/javolution_license.txt
+%%DATADIR%%/license/jaxb_license.txt
+%%DATADIR%%/license/jaxen_license.txt
+%%DATADIR%%/license/jayatana_license.txt
+%%DATADIR%%/license/jdom_license.txt
+%%DATADIR%%/license/jgoodies_forms_license.txt
+%%DATADIR%%/license/junit_license.txt
+%%DATADIR%%/license/kryo-license.txt
+%%DATADIR%%/license/log4j_license.txt
+%%DATADIR%%/license/microba_license.txt
+%%DATADIR%%/license/miglayout_swing_license.txt
+%%DATADIR%%/license/nanoxml_license.txt
+%%DATADIR%%/license/oromatcher_license.txt
+%%DATADIR%%/license/picoContainer_license.txt
+%%DATADIR%%/license/sanselan_license.txt
+%%DATADIR%%/license/saxon-conditions.html
+%%DATADIR%%/license/sqljet-license.txt
+%%DATADIR%%/license/svnkit-license.txt
+%%DATADIR%%/license/swingx_license.txt
+%%DATADIR%%/license/winp_license.txt
+%%DATADIR%%/license/xerces_license.txt
+%%DATADIR%%/license/xmlrpc_license.txt
+%%DATADIR%%/license/yourkit-license-redist.txt
+%%DATADIR%%/plugins/cvsIntegration/lib/cvsIntegration.jar
+%%DATADIR%%/plugins/cvsIntegration/lib/cvs_util.jar
+%%DATADIR%%/plugins/cvsIntegration/lib/javacvs-src.jar
+%%DATADIR%%/plugins/cvsIntegration/lib/resources_en.jar
+%%DATADIR%%/plugins/cvsIntegration/lib/smartcvs-src.jar
+%%DATADIR%%/plugins/cvsIntegration/lib/trilead-ssh2-build213.jar
+%%DATADIR%%/plugins/editorconfig/lib/editorconfig-core-java.jar
+%%DATADIR%%/plugins/editorconfig/lib/editorconfig.jar
+%%DATADIR%%/plugins/git4idea/lib/git4idea-rt.jar
+%%DATADIR%%/plugins/git4idea/lib/git4idea.jar
+%%DATADIR%%/plugins/git4idea/lib/ini4j-0.5.2-patched.jar
+%%DATADIR%%/plugins/git4idea/lib/remote-servers-git.jar
+%%DATADIR%%/plugins/git4idea/lib/resources_en.jar
+%%DATADIR%%/plugins/git4idea/lib/trilead-ssh2.jar
+%%DATADIR%%/plugins/github/lib/github.jar
+%%DATADIR%%/plugins/hg4idea/lib/hg4idea.jar
+%%DATADIR%%/plugins/hg4idea/lib/resources_en.jar
+%%DATADIR%%/plugins/ipnb/lib/ipnb.jar
+%%DATADIR%%/plugins/ipnb/lib/java_websocket.jar
+%%DATADIR%%/plugins/ipnb/lib/resources_en.jar
+%%DATADIR%%/plugins/python-rest/lib/python-rest.jar
+%%DATADIR%%/plugins/rest/lib/resources_en.jar
+%%DATADIR%%/plugins/rest/lib/rest.jar
+%%DATADIR%%/plugins/settings-repository/lib/jackson-annotations-2.5.1.jar
+%%DATADIR%%/plugins/settings-repository/lib/jackson-core-2.5.1.jar
+%%DATADIR%%/plugins/settings-repository/lib/jackson-databind-2.5.1.jar
+%%DATADIR%%/plugins/settings-repository/lib/jgit.jar
+%%DATADIR%%/plugins/settings-repository/lib/resources_en.jar
+%%DATADIR%%/plugins/settings-repository/lib/settings-repository.jar
+%%DATADIR%%/plugins/svn4idea/lib/antlr.jar
+%%DATADIR%%/plugins/svn4idea/lib/jsch.agentproxy.svnkit-trilead-ssh2.jar
+%%DATADIR%%/plugins/svn4idea/lib/licenses/ANTLR-LICENSE
+%%DATADIR%%/plugins/svn4idea/lib/licenses/CHANGES.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/COPYING
+%%DATADIR%%/plugins/svn4idea/lib/licenses/LICENSE-ANTLR.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/LICENSE-JAVAHL.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/LICENSE-JNA.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/LICENSE-SEQUENCE.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/LICENSE-SQLJET.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/LICENSE-TRILEAD.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/LICENSE.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/README.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/SEQUENCE-LICENSE
+%%DATADIR%%/plugins/svn4idea/lib/licenses/SQLJET-LICENSE
+%%DATADIR%%/plugins/svn4idea/lib/licenses/SQLJET-README.txt
+%%DATADIR%%/plugins/svn4idea/lib/licenses/TRILEAD-LICENSE
+%%DATADIR%%/plugins/svn4idea/lib/licenses/changelog.txt
+%%DATADIR%%/plugins/svn4idea/lib/resources_en.jar
+%%DATADIR%%/plugins/svn4idea/lib/sequence-library.jar
+%%DATADIR%%/plugins/svn4idea/lib/sqljet.jar
+%%DATADIR%%/plugins/svn4idea/lib/sqljetsrc.zip
+%%DATADIR%%/plugins/svn4idea/lib/svn4idea.jar
+%%DATADIR%%/plugins/svn4idea/lib/svnkit-javahl.jar
+%%DATADIR%%/plugins/svn4idea/lib/svnkit-javahl16.zip
+%%DATADIR%%/plugins/svn4idea/lib/svnkit.jar
+%%DATADIR%%/plugins/svn4idea/lib/trilead.jar
+%%DATADIR%%/plugins/svn4idea/lib/trileadsrc.zip
+%%DATADIR%%/plugins/tasks/lib/axis-1.4.jar
+%%DATADIR%%/plugins/tasks/lib/axis-jaxrpc-1.4.jar
+%%DATADIR%%/plugins/tasks/lib/axis-saaj-1.3.jar
+%%DATADIR%%/plugins/tasks/lib/commons-discovery-0.4.jar
+%%DATADIR%%/plugins/tasks/lib/jira.jar
+%%DATADIR%%/plugins/tasks/lib/json-path-0.8.0.jar
+%%DATADIR%%/plugins/tasks/lib/json-smart-1.1.1.jar
+%%DATADIR%%/plugins/tasks/lib/tasks-api.jar
+%%DATADIR%%/plugins/tasks/lib/tasks-core.jar
+%%DATADIR%%/plugins/tasks/lib/wsdl4j-1.4.jar
+%%DATADIR%%/plugins/terminal/lib/jediterm-pty-2.1.jar
+%%DATADIR%%/plugins/terminal/lib/jediterm.in
+%%DATADIR%%/plugins/terminal/lib/resources_en.jar
+%%DATADIR%%/plugins/terminal/lib/terminal.jar