<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: TPS-Report #AX-055</title>
	<atom:link href="http://anomos.info/wp/2008/12/04/tps-report-ax-055/feed/" rel="self" type="application/rss+xml" />
	<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/</link>
	<description>Anomos: Anonymous and Encrypted BitTorrent &#60;br&#62;啊弄磨速 &#124; アノモス &#124; 아노모수</description>
	<lastBuildDate>Mon, 30 Aug 2010 13:42:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: phoenix</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-3334</link>
		<dc:creator>phoenix</dc:creator>
		<pubDate>Sat, 28 Feb 2009 19:24:02 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-3334</guid>
		<description>and winsetup.py:

#!/usr/bin/env python

# The contents of this file are subject to the BitTorrent Open Source License
# Version 1.0 (the License).  You may not copy or use this file, in either
# source code or executable form, except in compliance with the License.  You
# may obtain a copy of the License at http://www.bittorrent.com/license/.
#
# Software distributed under the License is distributed on an AS IS basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the License
# for the specific language governing rights and limitations under the
# License.

# Written by Bram Cohen and Matt Chisholm

from distutils.core import setup
import py2exe
import glob

opts = {
    &quot;py2exe&quot;: {
    &quot;includes&quot;:&quot;cairo,pango,pangocairo,atk,gobject&quot;
               &quot;,encodings,encodings.*&quot;
#               &quot;,cjkcodecs,cjkcodecs.*&quot;
               &quot;,dns,dns.rdtypes.ANY.*,dns.rdtypes.IN.*&quot;
    ,

# Uncomment the following lines if you want a dist\ directory build by
# py2exe that works under Win32 with a GTK runtime installed
# separately:
##    &quot;dll_excludes&quot;:[&quot;iconv.dll&quot;, &quot;intl.dll&quot;, &quot;libatk-1-1.0-0.dll&quot;,
##                    &quot;libgdk_pixbuf-2.0-0.dll&quot;, &quot;libgdk-win32-2.0-0.dll&quot;,
##                    &quot;libglib-2.0-0.dll&quot;, &quot;libgmodule-2.0-0.dll&quot;,
##                    &quot;libgobject-2.0-0.dll&quot;, &quot;libgthread-2.0-0.dll&quot;,
##                    &quot;libgtk-win32-2.0-0.dll&quot;, &quot;libpango-1.0-0.dll&quot;,
##                    &quot;libpangowin32-1.0-0.dll&quot;,
##                    ],
    }
}

setup(windows=[{&#039;script&#039;: &#039;btdownloadgui.py&#039;,
                &quot;icon_resources&quot;: [(1, &quot;images\\bittorrent.ico&quot;)]},
               {&#039;script&#039;: &#039;btmaketorrentgui.py&#039;,
                &quot;icon_resources&quot;: [(1, &quot;images\\bittorrent.ico&quot;)]}],
      options=opts,
      data_files=[(&#039;&#039;,[&quot;credits.txt&quot;, &quot;LICENSE.txt&quot;,
                       &quot;README.txt&quot;, &quot;redirdonate.html&quot;]),
                  (&quot;images&quot;, glob.glob(&quot;images\\*png&quot;)+[&quot;images\\bittorrent.ico&quot;]),
                  (&quot;images\\logo&quot;, glob.glob(&quot;images\\logo\\*png&quot;)) ],
                )</description>
		<content:encoded><![CDATA[<p>and winsetup.py:</p>
<p>#!/usr/bin/env python</p>
<p># The contents of this file are subject to the BitTorrent Open Source License<br />
# Version 1.0 (the License).  You may not copy or use this file, in either<br />
# source code or executable form, except in compliance with the License.  You<br />
# may obtain a copy of the License at <a href="http://www.bittorrent.com/license/" rel="nofollow">http://www.bittorrent.com/license/</a>.<br />
#<br />
# Software distributed under the License is distributed on an AS IS basis,<br />
# WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the License<br />
# for the specific language governing rights and limitations under the<br />
# License.</p>
<p># Written by Bram Cohen and Matt Chisholm</p>
<p>from distutils.core import setup<br />
import py2exe<br />
import glob</p>
<p>opts = {<br />
    &#8220;py2exe&#8221;: {<br />
    &#8220;includes&#8221;:&#8221;cairo,pango,pangocairo,atk,gobject&#8221;<br />
               &#8220;,encodings,encodings.*&#8221;<br />
#               &#8220;,cjkcodecs,cjkcodecs.*&#8221;<br />
               &#8220;,dns,dns.rdtypes.ANY.*,dns.rdtypes.IN.*&#8221;<br />
    ,</p>
<p># Uncomment the following lines if you want a dist\ directory build by<br />
# py2exe that works under Win32 with a GTK runtime installed<br />
# separately:<br />
##    &#8220;dll_excludes&#8221;:["iconv.dll", "intl.dll", "libatk-1-1.0-0.dll",<br />
##                    "libgdk_pixbuf-2.0-0.dll", "libgdk-win32-2.0-0.dll",<br />
##                    "libglib-2.0-0.dll", "libgmodule-2.0-0.dll",<br />
##                    "libgobject-2.0-0.dll", "libgthread-2.0-0.dll",<br />
##                    "libgtk-win32-2.0-0.dll", "libpango-1.0-0.dll",<br />
##                    "libpangowin32-1.0-0.dll",<br />
##                    ],<br />
    }<br />
}</p>
<p>setup(windows=[{'script': 'btdownloadgui.py',<br />
                "icon_resources": [(1, "images\\bittorrent.ico")]},<br />
               {&#8216;script&#8217;: &#8216;btmaketorrentgui.py&#8217;,<br />
                &#8220;icon_resources&#8221;: [(1, "images\\bittorrent.ico")]}],<br />
      options=opts,<br />
      data_files=[('',["credits.txt", "LICENSE.txt",<br />
                       "README.txt", "redirdonate.html"]),<br />
                  (&#8220;images&#8221;, glob.glob(&#8220;images\\*png&#8221;)+["images\\bittorrent.ico"]),<br />
                  (&#8220;images\\logo&#8221;, glob.glob(&#8220;images\\logo\\*png&#8221;)) ],<br />
                )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phoenix</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-3333</link>
		<dc:creator>phoenix</dc:creator>
		<pubDate>Sat, 28 Feb 2009 19:22:22 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-3333</guid>
		<description>here is my modifyd build.bat:

mean dont know i set it to latest gtk runtime.
old build.bat on svn its not more up to date

rem The contents of this file are subject to the BitTorrent Open Source Licenserem Version 1.0 (the License).  You may not copy or use this file, in either
rem source code or executable form, except in compliance with the License.  You
rem may obtain a copy of the License at http://www.bittorrent.com/license/.
rem
rem Software distributed under the License is distributed on an AS IS basis,
rem WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the License
rem for the specific language governing rights and limitations under the
rem License.


del /F /S /Q build dist 
c:\python25\python.exe winsetup.py py2exe

copy %GTK_BASEPATH%\bin\libpng12.dll dist\
copy %GTK_BASEPATH%\bin\zlib1.dll dist\
copy %GTK_BASEPATH%\bin\libpangoft2-1.0-0.dll dist\
rem I don&#039;t think this is needed:
rem copy %GTK_BASEPATH%\bin\libxml2.dll dist\

mkdir dist\etc\pango
copy %GTK_BASEPATH%\etc\pango dist\etc\pango

mkdir dist\etc\gtk-2.0\
copy %GTK_BASEPATH%\etc\gtk-2.0\gdk-pixbuf.loaders dist\etc\gtk-2.0

mkdir dist\lib\gtk-2.0\2.10.0\loaders
copy %GTK_BASEPATH%\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-png.dll dist\lib\gtk-2.0\2.10.0\loaders
copy %GTK_BASEPATH%\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-xpm.dll dist\lib\gtk-2.0\2.10.0\loaders
copy %GTK_BASEPATH%\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ico.dll dist\lib\gtk-2.0\2.10.0\loaders

mkdir dist\lib\pango\1.4.0\modules
copy %GTK_BASEPATH%\lib\pango\1.4.0\modules\pango-basic-win32.dll dist\lib\pango\1.4.0\modules\
copy %GTK_BASEPATH%\lib\pango\1.4.0\modules\pango-basic-fc.dll dist\lib\pango\1.4.0\modules\

copy %GTK_BASEPATH%\lib\locale dist\lib\

copy %GTK_BASEPATH%\etc\gtk-2.0\gtkrc dist\etc\gtk-2.0
mkdir dist\lib\gtk-2.0\2.10.0\engines
copy %GTK_BASEPATH%\lib\gtk-2.0\2.10.0\engines\libwimp.dll dist\lib\gtk-2.0\2.10.0\engines
mkdir dist\share\themes\MS-Windows\gtk-2.0
copy %GTK_BASEPATH%\share\themes\MS-Windows\gtk-2.0\gtkrc dist\share\themes\MS-Windows\gtk-2.0

&quot;C:\Program Files\NSIS\makensis.exe&quot; bittorrent.nsi</description>
		<content:encoded><![CDATA[<p>here is my modifyd build.bat:</p>
<p>mean dont know i set it to latest gtk runtime.<br />
old build.bat on svn its not more up to date</p>
<p>rem The contents of this file are subject to the BitTorrent Open Source Licenserem Version 1.0 (the License).  You may not copy or use this file, in either<br />
rem source code or executable form, except in compliance with the License.  You<br />
rem may obtain a copy of the License at <a href="http://www.bittorrent.com/license/" rel="nofollow">http://www.bittorrent.com/license/</a>.<br />
rem<br />
rem Software distributed under the License is distributed on an AS IS basis,<br />
rem WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the License<br />
rem for the specific language governing rights and limitations under the<br />
rem License.</p>
<p>del /F /S /Q build dist<br />
c:\python25\python.exe winsetup.py py2exe</p>
<p>copy %GTK_BASEPATH%\bin\libpng12.dll dist\<br />
copy %GTK_BASEPATH%\bin\zlib1.dll dist\<br />
copy %GTK_BASEPATH%\bin\libpangoft2-1.0-0.dll dist\<br />
rem I don&#8217;t think this is needed:<br />
rem copy %GTK_BASEPATH%\bin\libxml2.dll dist\</p>
<p>mkdir dist\etc\pango<br />
copy %GTK_BASEPATH%\etc\pango dist\etc\pango</p>
<p>mkdir dist\etc\gtk-2.0\<br />
copy %GTK_BASEPATH%\etc\gtk-2.0\gdk-pixbuf.loaders dist\etc\gtk-2.0</p>
<p>mkdir dist\lib\gtk-2.0\2.10.0\loaders<br />
copy %GTK_BASEPATH%\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-png.dll dist\lib\gtk-2.0\2.10.0\loaders<br />
copy %GTK_BASEPATH%\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-xpm.dll dist\lib\gtk-2.0\2.10.0\loaders<br />
copy %GTK_BASEPATH%\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ico.dll dist\lib\gtk-2.0\2.10.0\loaders</p>
<p>mkdir dist\lib\pango\1.4.0\modules<br />
copy %GTK_BASEPATH%\lib\pango\1.4.0\modules\pango-basic-win32.dll dist\lib\pango\1.4.0\modules\<br />
copy %GTK_BASEPATH%\lib\pango\1.4.0\modules\pango-basic-fc.dll dist\lib\pango\1.4.0\modules\</p>
<p>copy %GTK_BASEPATH%\lib\locale dist\lib\</p>
<p>copy %GTK_BASEPATH%\etc\gtk-2.0\gtkrc dist\etc\gtk-2.0<br />
mkdir dist\lib\gtk-2.0\2.10.0\engines<br />
copy %GTK_BASEPATH%\lib\gtk-2.0\2.10.0\engines\libwimp.dll dist\lib\gtk-2.0\2.10.0\engines<br />
mkdir dist\share\themes\MS-Windows\gtk-2.0<br />
copy %GTK_BASEPATH%\share\themes\MS-Windows\gtk-2.0\gtkrc dist\share\themes\MS-Windows\gtk-2.0</p>
<p>&#8220;C:\Program Files\NSIS\makensis.exe&#8221; bittorrent.nsi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phoenix</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-3332</link>
		<dc:creator>phoenix</dc:creator>
		<pubDate>Sat, 28 Feb 2009 19:18:13 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-3332</guid>
		<description>It does not work, mean its fixed the problem with cairo,pango,pangocairo

i get same error which other person get,here uses latest git:

Traceback (most recent call last):
  File &quot;btdownloadgui.py&quot;, line 3055, in 
  File &quot;Anomos\controlsocket.pyc&quot;, line 106, in create_socket_inet
TypeError: unbound method create_ssl_serversocket() must be called with RawServer instance as first argument (got int instance instead)</description>
		<content:encoded><![CDATA[<p>It does not work, mean its fixed the problem with cairo,pango,pangocairo</p>
<p>i get same error which other person get,here uses latest git:</p>
<p>Traceback (most recent call last):<br />
  File &#8220;btdownloadgui.py&#8221;, line 3055, in<br />
  File &#8220;Anomos\controlsocket.pyc&#8221;, line 106, in create_socket_inet<br />
TypeError: unbound method create_ssl_serversocket() must be called with RawServer instance as first argument (got int instance instead)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-3303</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Tue, 24 Feb 2009 01:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-3303</guid>
		<description>Oh, awesome work! So you&#039;re saying it&#039;s working?

Are you free on wednesday nights? We&#039;ll be doing some testing if you want to participate.</description>
		<content:encoded><![CDATA[<p>Oh, awesome work! So you&#8217;re saying it&#8217;s working?</p>
<p>Are you free on wednesday nights? We&#8217;ll be doing some testing if you want to participate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phoenix</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-3293</link>
		<dc:creator>phoenix</dc:creator>
		<pubDate>Mon, 23 Feb 2009 13:27:41 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-3293</guid>
		<description>phoenix

i have add some things in setup.py

opts = {
    &quot;py2exe&quot;: {
    &quot;includes&quot;:&quot;cairo,pango,pangocairo,atk,gobject&quot;
               &quot;,encodings,encodings.*&quot;

mean put there cairo , pango, pangocairo

now its gtk cairo stuff solved</description>
		<content:encoded><![CDATA[<p>phoenix</p>
<p>i have add some things in setup.py</p>
<p>opts = {<br />
    &#8220;py2exe&#8221;: {<br />
    &#8220;includes&#8221;:&#8221;cairo,pango,pangocairo,atk,gobject&#8221;<br />
               &#8220;,encodings,encodings.*&#8221;</p>
<p>mean put there cairo , pango, pangocairo</p>
<p>now its gtk cairo stuff solved</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tesomir</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-2776</link>
		<dc:creator>tesomir</dc:creator>
		<pubDate>Sat, 27 Dec 2008 19:49:24 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-2776</guid>
		<description>only problem Anomos does not have a own Network ,
its needs a Secure Bittorrent Tracker to can use it ?

Without has no change to can test Anomos.</description>
		<content:encoded><![CDATA[<p>only problem Anomos does not have a own Network ,<br />
its needs a Secure Bittorrent Tracker to can use it ?</p>
<p>Without has no change to can test Anomos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phoenix</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-2766</link>
		<dc:creator>phoenix</dc:creator>
		<pubDate>Fri, 26 Dec 2008 12:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-2766</guid>
		<description>i have installed gtk2-runtime-2.14.6-2008-12-17-ash.exe
GTK2 Runtime installer, based on gtk+-2.14.6, glib-2.18.3, atk-1.24.0, pango-1.22.2, cairo-1.8.0.
Contains all the needed dependencies.

but again it says ImortError with cairo.</description>
		<content:encoded><![CDATA[<p>i have installed gtk2-runtime-2.14.6-2008-12-17-ash.exe<br />
GTK2 Runtime installer, based on gtk+-2.14.6, glib-2.18.3, atk-1.24.0, pango-1.22.2, cairo-1.8.0.<br />
Contains all the needed dependencies.</p>
<p>but again it says ImortError with cairo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phoenix</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-2765</link>
		<dc:creator>phoenix</dc:creator>
		<pubDate>Fri, 26 Dec 2008 02:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-2765</guid>
		<description>i installed gtk+ runtime

and tested other packages:
gtk+-bundle_2.14.6-20081216_win32
and unpacked into qtk folder cairo_1.8.0-1_win32.zip
but doesnt get a effect.
get same error</description>
		<content:encoded><![CDATA[<p>i installed gtk+ runtime</p>
<p>and tested other packages:<br />
gtk+-bundle_2.14.6-20081216_win32<br />
and unpacked into qtk folder cairo_1.8.0-1_win32.zip<br />
but doesnt get a effect.<br />
get same error</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-2764</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Fri, 26 Dec 2008 01:26:30 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-2764</guid>
		<description>Perhaps you do not have GTK+/Cairo libraries installed, only the bindings?

http://www.gtk.org/download-windows.html</description>
		<content:encoded><![CDATA[<p>Perhaps you do not have GTK+/Cairo libraries installed, only the bindings?</p>
<p><a href="http://www.gtk.org/download-windows.html" rel="nofollow">http://www.gtk.org/download-windows.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phoenix</title>
		<link>http://anomos.info/wp/2008/12/04/tps-report-ax-055/comment-page-1/#comment-2763</link>
		<dc:creator>phoenix</dc:creator>
		<pubDate>Fri, 26 Dec 2008 00:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://anomos.info/wp/?p=139#comment-2763</guid>
		<description>now i switched to Python 2.5.2 there i doesnt get this socket problem but now i get other troubel with cairo:


Traceback (most recent call last):
  File &quot;btdownloadgui.py&quot;, line 28, in 
  File &quot;gtk\__init__.pyc&quot;, line 48, in 
  File &quot;gtk\_gtk.pyc&quot;, line 12, in 
  File &quot;gtk\_gtk.pyc&quot;, line 10, in __load
ImportError: No module named cairo

my equipment:

python-2.5.2.msi
dnspython-1.6.0.win32.exe
M2Crypto-0.19.1.win32-py2.5.exe
pycairo-1.2.6-1.win32-py2.5.exe
pygobject-2.14.1-1.win32-py2.5.exe
pygtk-2.12.1-2.win32-py2.5.exe
pywin32-212.win32-py2.5.exe
py2exe-0.6.9.win32-py2.5.exe
gtk+-2.10.13-setup.exe</description>
		<content:encoded><![CDATA[<p>now i switched to Python 2.5.2 there i doesnt get this socket problem but now i get other troubel with cairo:</p>
<p>Traceback (most recent call last):<br />
  File &#8220;btdownloadgui.py&#8221;, line 28, in<br />
  File &#8220;gtk\__init__.pyc&#8221;, line 48, in<br />
  File &#8220;gtk\_gtk.pyc&#8221;, line 12, in<br />
  File &#8220;gtk\_gtk.pyc&#8221;, line 10, in __load<br />
ImportError: No module named cairo</p>
<p>my equipment:</p>
<p>python-2.5.2.msi<br />
dnspython-1.6.0.win32.exe<br />
M2Crypto-0.19.1.win32-py2.5.exe<br />
pycairo-1.2.6-1.win32-py2.5.exe<br />
pygobject-2.14.1-1.win32-py2.5.exe<br />
pygtk-2.12.1-2.win32-py2.5.exe<br />
pywin32-212.win32-py2.5.exe<br />
py2exe-0.6.9.win32-py2.5.exe<br />
gtk+-2.10.13-setup.exe</p>
]]></content:encoded>
	</item>
</channel>
</rss>
