<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.pymol.org/index.php?action=history&amp;feed=atom&amp;title=Talk%3APlugindirectory</id>
	<title>Talk:Plugindirectory - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.pymol.org/index.php?action=history&amp;feed=atom&amp;title=Talk%3APlugindirectory"/>
	<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Plugindirectory&amp;action=history"/>
	<updated>2026-05-17T22:46:29Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Plugindirectory&amp;diff=116&amp;oldid=prev</id>
		<title>Pyadmin: 2 revisions</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Plugindirectory&amp;diff=116&amp;oldid=prev"/>
		<updated>2014-03-28T00:44:04Z</updated>

		<summary type="html">&lt;p&gt;2 revisions&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 00:44, 28 March 2014&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Pyadmin</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Plugindirectory&amp;diff=115&amp;oldid=prev</id>
		<title>Tlinnet: moved Talk:PluginDirectory to Talk:Plugindirectory: Small letters</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Plugindirectory&amp;diff=115&amp;oldid=prev"/>
		<updated>2011-12-03T15:51:51Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;/index.php/Talk:PluginDirectory&quot; class=&quot;mw-redirect&quot; title=&quot;Talk:PluginDirectory&quot;&gt;Talk:PluginDirectory&lt;/a&gt; to &lt;a href=&quot;/index.php/Talk:Plugindirectory&quot; title=&quot;Talk:Plugindirectory&quot;&gt;Talk:Plugindirectory&lt;/a&gt;: Small letters&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 15:51, 3 December 2011&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Tlinnet</name></author>
	</entry>
	<entry>
		<id>https://wiki.pymol.org/index.php?title=Talk:Plugindirectory&amp;diff=114&amp;oldid=prev</id>
		<title>Speleo3: Examples</title>
		<link rel="alternate" type="text/html" href="https://wiki.pymol.org/index.php?title=Talk:Plugindirectory&amp;diff=114&amp;oldid=prev"/>
		<updated>2011-07-01T10:49:45Z</updated>

		<summary type="html">&lt;p&gt;Examples&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Examples how to install plugins in their own directories:&lt;br /&gt;
&lt;br /&gt;
== rTools ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd ~/.pymol/pymolplugins&lt;br /&gt;
wget http://www.rubor.de/anlagen/rTools_0.7.2.zip&lt;br /&gt;
unzip rTools_0.7.2.zip&lt;br /&gt;
cd rTools&lt;br /&gt;
sed -i 's#^SCALE_PATH = .*$#SCALE_PATH = os.path.join(os.path.dirname(__file__), &amp;quot;protscale&amp;quot;, &amp;quot;&amp;quot;)#' color_protscale.py&lt;br /&gt;
sed -i &amp;quot;s#^SCRIPT_PATH='/usr.*\$#SCRIPT_PATH = os.path.dirname(__file__) + os.sep#&amp;quot; script_box.py&lt;br /&gt;
cat &amp;gt; __init__.py &amp;lt;&amp;lt;EOF&lt;br /&gt;
def __init__(self):&lt;br /&gt;
    import sys&lt;br /&gt;
    fromlist = [&lt;br /&gt;
        'color_protscale',&lt;br /&gt;
        'columba',&lt;br /&gt;
        'external_apps',&lt;br /&gt;
        'file_browser',&lt;br /&gt;
        'movie',&lt;br /&gt;
        'script_box',&lt;br /&gt;
    ]&lt;br /&gt;
    __import__(__name__, fromlist=fromlist, level=0)&lt;br /&gt;
    for name in fromlist:&lt;br /&gt;
        mod_name = __name__ + '.' + name&lt;br /&gt;
        mod = sys.modules[mod_name]&lt;br /&gt;
        mod.__init__(self)&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[ProMOL]] ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd ~/.pymol/pymolplugins&lt;br /&gt;
wget http://www.rit.edu/cos/ezviz/ProMOL.zip&lt;br /&gt;
unzip ProMOL.zip&lt;br /&gt;
mv &amp;quot;ProMOL Folder&amp;quot; ProMOL&lt;br /&gt;
cd ProMOL&lt;br /&gt;
mv ProMOL_302.py __init__.py&lt;br /&gt;
sed -i 's#&amp;quot;./modules/pmg_tk/startup#promol_dir + &amp;quot;#' __init__.py&lt;br /&gt;
sed -i &amp;quot;s#'./modules/pmg_tk/startup#promol_dir + '#&amp;quot; __init__.py&lt;br /&gt;
sed -i &amp;quot;s#'run ./modules/pmg_tk/startup#'run ' + promol_dir + '#&amp;quot; __init__.py&lt;br /&gt;
sed -i 's#^import os#import os;promol_dir = os.path.dirname(__file__)#'  __init__.py&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Speleo3</name></author>
	</entry>
</feed>