<?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: Grab All Space's Files in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225937#M179067</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thanks. That helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Mar 2010 12:10:17 GMT</pubDate>
    <dc:creator>vbfischer</dc:creator>
    <dc:date>2010-03-17T12:10:17Z</dc:date>
    <item>
      <title>Grab All Space's Files</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225934#M179064</link>
      <description>Is there a way to grab all the files contained in a space other than iterating through them with the content reader? I just want to start with a NodeRef of a space and grab all of its files…</description>
      <pubDate>Fri, 12 Mar 2010 20:31:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225934#M179064</guid>
      <dc:creator>vbfischer</dc:creator>
      <dc:date>2010-03-12T20:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Grab All Space's Files</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225935#M179065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Javascript?&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;function doclist(doc)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; var daddy = doc.parrent;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; for each (kid in daddy.children)&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; getStuffYouWantToGetFromA(kid);&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;}&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Mar 2010 18:59:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225935#M179065</guid>
      <dc:creator>zladuric</dc:creator>
      <dc:date>2010-03-13T18:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Grab All Space's Files</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225936#M179066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oops, missed a bit here, you're starting with the space already, not with a document…&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Even simpler: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for each (child in folder.children)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; getChildPropertiesYouReInterestedIn(child);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Mar 2010 19:00:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225936#M179066</guid>
      <dc:creator>zladuric</dc:creator>
      <dc:date>2010-03-13T19:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: Grab All Space's Files</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225937#M179067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thanks. That helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 12:10:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225937#M179067</guid>
      <dc:creator>vbfischer</dc:creator>
      <dc:date>2010-03-17T12:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: Grab All Space's Files</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225938#M179068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yay, my first "thanks" here &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I guess that means I'm no longer a beginner &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 15:49:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/grab-all-space-s-files/m-p/225938#M179068</guid>
      <dc:creator>zladuric</dc:creator>
      <dc:date>2010-03-18T15:49:48Z</dc:date>
    </item>
  </channel>
</rss>

