<?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: Doxygen comments in Python</title>
	<atom:link href="http://www.joshuascotton.com/main/archives/80/feed" rel="self" type="application/rss+xml" />
	<link>http://www.joshuascotton.com/main/archives/80</link>
	<description>It's all relative ...</description>
	<lastBuildDate>Mon, 01 Mar 2010 20:32:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joshua Scotton</title>
		<link>http://www.joshuascotton.com/main/archives/80/comment-page-1#comment-182</link>
		<dc:creator>Joshua Scotton</dc:creator>
		<pubDate>Fri, 08 Jan 2010 21:32:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshuascotton.com/main/archives/80#comment-182</guid>
		<description>The version I used in the guide was v3 and I haven&#039;t used doxygen for a while. The latest version is v4.2 so it might have changed slightly in the last year. However, here goes...

Have you got the FILTER_SOURCE_FILES set to YES? Also double check that the path to doxypy.py is correct (it&#039;s probably different to my example on OSX).
i.e.
FILTER_SOURCE_FILES = YES
INPUT_FILTER = &quot;python /usr/local/bin/doxypy.py&quot;

Also from http://code.foosel.org/doxypy:
If you want to make Doxygen recognize your module docstrings, you have to add a namespace command to the docstring</description>
		<content:encoded><![CDATA[<p>The version I used in the guide was v3 and I haven&#8217;t used doxygen for a while. The latest version is v4.2 so it might have changed slightly in the last year. However, here goes&#8230;</p>
<p>Have you got the FILTER_SOURCE_FILES set to YES? Also double check that the path to doxypy.py is correct (it&#8217;s probably different to my example on OSX).<br />
i.e.<br />
FILTER_SOURCE_FILES = YES<br />
INPUT_FILTER = &#8220;python /usr/local/bin/doxypy.py&#8221;</p>
<p>Also from <a href="http://code.foosel.org/doxypy" rel="nofollow">http://code.foosel.org/doxypy</a>:<br />
If you want to make Doxygen recognize your module docstrings, you have to add a namespace command to the docstring</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.joshuascotton.com/main/archives/80/comment-page-1#comment-181</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Fri, 08 Jan 2010 20:59:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshuascotton.com/main/archives/80#comment-181</guid>
		<description>Hey there. Thanks for writing up the instructions.

I followed your directions, but doxygen is failing for me. If I leave out the doxypy filter (e.g. put nothing in the INPUT_FILTER field) then I can generate documentation fine, just obviously without being able to recognize the tags. If I enable the filter, however, then the generated HTML only displays the Main Page tab (i.e. no Modules). If it matters, I&#039;m using OSX. Any ideas?</description>
		<content:encoded><![CDATA[<p>Hey there. Thanks for writing up the instructions.</p>
<p>I followed your directions, but doxygen is failing for me. If I leave out the doxypy filter (e.g. put nothing in the INPUT_FILTER field) then I can generate documentation fine, just obviously without being able to recognize the tags. If I enable the filter, however, then the generated HTML only displays the Main Page tab (i.e. no Modules). If it matters, I&#8217;m using OSX. Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Recent Faves Tagged With "doxygen" : MyNetFaves</title>
		<link>http://www.joshuascotton.com/main/archives/80/comment-page-1#comment-169</link>
		<dc:creator>Recent Faves Tagged With "doxygen" : MyNetFaves</dc:creator>
		<pubDate>Fri, 27 Mar 2009 11:05:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshuascotton.com/main/archives/80#comment-169</guid>
		<description>[...] ago      Bugzilla,Doxygen,SVN y otras cosas pichulas First saved by LOCKMANakaAC &#124; 5 days ago      Doxygen comments in Python First saved by marleneref &#124; 10 days ago      I’m Ready for School to Start First saved by [...]</description>
		<content:encoded><![CDATA[<p>[...] ago      Bugzilla,Doxygen,SVN y otras cosas pichulas First saved by LOCKMANakaAC | 5 days ago      Doxygen comments in Python First saved by marleneref | 10 days ago      I’m Ready for School to Start First saved by [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Scotton</title>
		<link>http://www.joshuascotton.com/main/archives/80/comment-page-1#comment-139</link>
		<dc:creator>Joshua Scotton</dc:creator>
		<pubDate>Wed, 19 Mar 2008 11:02:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshuascotton.com/main/archives/80#comment-139</guid>
		<description>Hi Greg,

The setup I use for Doxygen is described in my earlier post at http://www.joshuascotton.com/main/archives/64

The filter I use is doxypy from http://code.foosel.org/doxypy and I edit the config.dox file to have the following line:

INPUT_FILTER = &quot;python /path/to/doxypy.py&quot;

Josh</description>
		<content:encoded><![CDATA[<p>Hi Greg,</p>
<p>The setup I use for Doxygen is described in my earlier post at <a href="http://www.joshuascotton.com/main/archives/64" rel="nofollow">http://www.joshuascotton.com/main/archives/64</a></p>
<p>The filter I use is doxypy from <a href="http://code.foosel.org/doxypy" rel="nofollow">http://code.foosel.org/doxypy</a> and I edit the config.dox file to have the following line:</p>
<p>INPUT_FILTER = &#8220;python /path/to/doxypy.py&#8221;</p>
<p>Josh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.joshuascotton.com/main/archives/80/comment-page-1#comment-138</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Tue, 18 Mar 2008 23:13:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.joshuascotton.com/main/archives/80#comment-138</guid>
		<description>What filter do you use in DoxyGen to make tags work?</description>
		<content:encoded><![CDATA[<p>What filter do you use in DoxyGen to make tags work?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
