<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: New to Autodesk Programming in Autodesk Viewers Forum</title>
    <link>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3115336#M130</link>
    <description>&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I was able to get this file from my client. It looks like this file has hyperlinks embedded for each room and these hyperlinks has site,building,floor and room information embedded in quey string.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since hyperlink presented me with some informaton I wrote this code to extract the info.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;var&lt;/FONT&gt;&lt;/FONT&gt;HyperLinks = Section.HyperLinks;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;var&lt;/FONT&gt;&lt;/FONT&gt;msg;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;var&lt;/FONT&gt;&lt;/FONT&gt; msg = &lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'List of HyperLinks in this Section\n\n'&lt;/FONT&gt;&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;for&lt;/FONT&gt;&lt;/FONT&gt;(x = 1; (x &amp;lt;= HyperLinks.Count); x++) {&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;var&lt;/FONT&gt;&lt;/FONT&gt;HyperLink = HyperLinks.Item(x);&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;for&lt;/FONT&gt;&lt;/FONT&gt;(i = 1; (i &amp;lt; HyperLink.Count); i++) {&lt;/P&gt;&lt;P&gt;msg = msg +&lt;/P&gt;&lt;P&gt;&lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'Name = '&lt;/FONT&gt;&lt;/FONT&gt; + HyperLink.Name(i) + &lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'\n'&lt;/FONT&gt;&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;msg = msg +&lt;/P&gt;&lt;P&gt;&lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'Link = '&lt;/FONT&gt;&lt;/FONT&gt; + HyperLink.Link(i) + &lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'\n\n'&lt;/FONT&gt;&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I am getting 'Link' and 'Name' properties has 'invalid number of parameters.&lt;/P&gt;&lt;P&gt;Attached is the file for investigation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Is there any other way to extract these hyperlink information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would really appreciate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 05 Aug 2011 16:25:59 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-08-05T16:25:59Z</dc:date>
    <item>
      <title>New to Autodesk Programming</title>
      <link>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3100486#M124</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am new to Autodesk Programming. I have some DWF files that I need to embedd in a&amp;nbsp;Webpage. I am using Visual Studio 2008, Autodesk Design Review 2011.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I am using JavaScript to acces the Active-X control and find the objects in DWF file. These DWF files are files that were used in earlier application which used SVG technology.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to extract the objects as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;var&lt;/FONT&gt;&lt;/FONT&gt; AllObjects = ADViewer.ECompositeViewer.Section.Content.Objects(0);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;I get all the objects. Each object is of type "com.autodesk.dwf.eModel"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I am looping through these objects I don't get any related properties or property names.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when I click on DWF file&amp;nbsp;in&amp;nbsp;AutoDesk Design Reveiw tool. I could see under Model following information.&lt;/P&gt;&lt;P&gt;3D Face(5)&lt;/P&gt;&lt;P&gt;Arc(553)&lt;/P&gt;&lt;P&gt;BlockReference)825)&lt;/P&gt;&lt;P&gt;Circle(16)&lt;/P&gt;&lt;P&gt;Door(4)&lt;/P&gt;&lt;P&gt;Ellipse(27)&lt;/P&gt;&lt;P&gt;Line(8392)&lt;/P&gt;&lt;P&gt;Poin(8)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;are these objects or soemthing else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not understanding how I can extract individual Objects and thier Labels.&lt;/P&gt;&lt;P&gt;When I looked into each object it had ID's but no properties or labell values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't get enough source material on using Autodesk&amp;nbsp;Design Review 2011&amp;nbsp;with JavaScript.&lt;/P&gt;&lt;P&gt;&amp;nbsp;I referenced&amp;nbsp;ADR 2011 API but no help except for few Javascript examples.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Adavance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Irfan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2011 19:06:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3100486#M124</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-07-21T19:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: New to Autodesk Programming</title>
      <link>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3101212#M125</link>
      <description>&lt;P&gt;Thank you for your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you continue to iterate through&amp;nbsp;each object properties looking for the label? Please take&amp;nbsp;below sample as a reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;var Props = AllObjects(index).Properties; //Get the properties in the objects collection &amp;nbsp;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;// Iterate through the object properties looking for the material&amp;nbsp;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;for(iProps=1;(iProps&amp;lt;=Props.Count);iProps++)&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;&amp;nbsp;{&amp;nbsp;&amp;nbsp;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var Prop = Props(iProps); &amp;nbsp;&amp;nbsp;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Check the&amp;nbsp;property name&amp;nbsp;&amp;nbsp;and value&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Prop.Name;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Prop.Value;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;}// end for&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps. Otherwise,&amp;nbsp;please attach your test DWF file here for us to investigate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2011 09:11:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3101212#M125</guid>
      <dc:creator>herbert.he</dc:creator>
      <dc:date>2011-07-22T09:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: New to Autodesk Programming</title>
      <link>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3101444#M126</link>
      <description>&lt;P&gt;Thanks for looking into it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did tried the code suggested but nothing comes up with that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am attaching the DWF file that I am working on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know what type of programming this&amp;nbsp;DWF file requires.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From this DWF file&amp;nbsp;I would like to extract the room numbers(Labels) that you see on floor plan.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Irfan&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2011 13:12:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3101444#M126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-07-22T13:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: New to Autodesk Programming</title>
      <link>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3104140#M127</link>
      <description>&lt;P&gt;Thank you for your feedback.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your attached DWF file&amp;nbsp; was generated without object properties. That's why the code does not work as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, there are two ways for you to get what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 1. Re-generate the DWF file with related object properties.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; 2. Using DWF Toolkit to parase this DWF file to get content presentation. You can download DWF Toolkit for free from &lt;A href="http://www.autodesk.com/dwftoolkit" target="_self"&gt;here&lt;/A&gt;. For&amp;nbsp;how to DWF Tookit, please start with "readmefirst.htm" in the download package.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2011 02:35:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3104140#M127</guid>
      <dc:creator>herbert.he</dc:creator>
      <dc:date>2011-07-26T02:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: New to Autodesk Programming</title>
      <link>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3104598#M128</link>
      <description>&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second Option:&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did refered to the toolkit earlier but it was&amp;nbsp;intended for&amp;nbsp;hardcore C++ programmer. The *readmefirst.htm* would agian redirect me to *Autodesk Design Review API Reference* for VB or Javascript programmers which I have already refered.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First option&lt;/P&gt;&lt;P&gt;I would like to know how this can be done i.e. regeneration of files DWF files with properties.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Irfan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2011 13:30:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3104598#M128</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-07-26T13:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: New to Autodesk Programming</title>
      <link>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3105646#M129</link>
      <description>&lt;P&gt;Thank you for your feedback.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How did you generate the file "111-02.dwf"? Is it published from other appliation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, attach another test file which contains object properties for reference.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2011 02:32:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3105646#M129</guid>
      <dc:creator>herbert.he</dc:creator>
      <dc:date>2011-07-27T02:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: New to Autodesk Programming</title>
      <link>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3115336#M130</link>
      <description>&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I was able to get this file from my client. It looks like this file has hyperlinks embedded for each room and these hyperlinks has site,building,floor and room information embedded in quey string.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since hyperlink presented me with some informaton I wrote this code to extract the info.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;var&lt;/FONT&gt;&lt;/FONT&gt;HyperLinks = Section.HyperLinks;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;var&lt;/FONT&gt;&lt;/FONT&gt;msg;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;var&lt;/FONT&gt;&lt;/FONT&gt; msg = &lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'List of HyperLinks in this Section\n\n'&lt;/FONT&gt;&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;for&lt;/FONT&gt;&lt;/FONT&gt;(x = 1; (x &amp;lt;= HyperLinks.Count); x++) {&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;var&lt;/FONT&gt;&lt;/FONT&gt;HyperLink = HyperLinks.Item(x);&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;for&lt;/FONT&gt;&lt;/FONT&gt;(i = 1; (i &amp;lt; HyperLink.Count); i++) {&lt;/P&gt;&lt;P&gt;msg = msg +&lt;/P&gt;&lt;P&gt;&lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'Name = '&lt;/FONT&gt;&lt;/FONT&gt; + HyperLink.Name(i) + &lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'\n'&lt;/FONT&gt;&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;msg = msg +&lt;/P&gt;&lt;P&gt;&lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'Link = '&lt;/FONT&gt;&lt;/FONT&gt; + HyperLink.Link(i) + &lt;FONT color="#a31515"&gt;&lt;FONT color="#a31515"&gt;'\n\n'&lt;/FONT&gt;&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I am getting 'Link' and 'Name' properties has 'invalid number of parameters.&lt;/P&gt;&lt;P&gt;Attached is the file for investigation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Is there any other way to extract these hyperlink information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would really appreciate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2011 16:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3115336#M130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-05T16:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: New to Autodesk Programming</title>
      <link>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3116404#M131</link>
      <description>&lt;P&gt;Thank you for your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Above code is correct way to extract hyperlinks information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After&amp;nbsp;revised the code line&amp;nbsp;"&lt;EM&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;for&lt;/FONT&gt;&lt;/FONT&gt;(i = 1; (i &amp;lt; HyperLink.Count); i++) {&lt;/EM&gt;" as "&lt;EM&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;for&lt;/FONT&gt;&lt;/FONT&gt;(i = 1; (i &amp;lt;&lt;FONT color="#ff0000"&gt;=&lt;/FONT&gt; HyperLink.Count); i++) {&lt;/EM&gt;", I can get expected result with your test file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know if I can be of any further assistance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2011 07:13:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autodesk-viewers-forum/new-to-autodesk-programming/m-p/3116404#M131</guid>
      <dc:creator>herbert.he</dc:creator>
      <dc:date>2011-08-08T07:13:07Z</dc:date>
    </item>
  </channel>
</rss>

