Hi,<br><br>Can I have please push permission to the doc?<br>I have updated the Dolmen doc on a fork<br><a href="https://bitbucket.org/vincentfretin/grok-doc">https://bitbucket.org/vincentfretin/grok-doc</a><br>I would like to push directly to jhsware/grok-doc.<br>

Thanks.<br><br>I think we can publish the generated html before all the todo are completed.<br>I think it may boost the update of the remaining doc.<br><br>I can give you a small bash script that I use as a cronjob to build my sphinx and update it every hour.<br>

I use a virtualenv with sphinx installed, and  collective.trainingmanual is a svn checkout.<br>It replace the html directory only if there is no error. I am alerted by mail if the build failed.<br><br>--------------------<br>

#!/bin/bash<br><br>cd ~/sphinx<br>. bin/activate<br>cd collective.trainingmanual<br>svn up &gt; /dev/null<br>cd integrateur<br><br>make clean &gt; /dev/null<br>make html &gt; /dev/null 2&gt;&amp;1<br>if [ $? == 0 ]; then<br>

  rm -rf ~/html/integrateur<br>  cp -rf ~/sphinx/collective.trainingmanual/integrateur/build/html/ ~/html/integrateur<br>else<br>  echo &quot;integrateur html generation failed&quot;<br>fi<br><br><br>make latex &gt; /dev/null 2&gt;&amp;1<br>

if [ $? == 0 ]; then<br>  cd build/latex<br>  make all-pdf &gt; /dev/null 2&gt;&amp;1<br>  if [ $? == 0 ]; then<br>    cp ~/sphinx/collective.trainingmanual/integrateur/build/latex/FormationPloneIntegrateur.pdf ~/html/integrateur/<br>

  else<br>    echo &quot;integrateur pdf generation failed&quot;<br>  fi<br>else<br>  echo &quot;integrateur latex generation failed&quot;<br>fi<br>---------------<br><br clear="all">Vincent Fretin<br>
<br><br><div class="gmail_quote">On Mon, Dec 20, 2010 at 11:52 AM, Sebastian Ware <span dir="ltr">&lt;<a href="mailto:sebastian@urbantalk.se">sebastian@urbantalk.se</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

...if you want to help out...<br>
<br>
 <a href="https://bitbucket.org/jhsware/grok-doc" target="_blank">https://bitbucket.org/jhsware/grok-doc</a><br>
<br>
There are two TODO docs in the root which shows progress.<br>
<br>
Mvh Sebastian<br>
<br>
<br>
<br>
_______________________________________________<br>
grok-doc mailing list<br>
<a href="mailto:grok-doc@zope.org">grok-doc@zope.org</a><br>
<a href="https://mail.zope.org/mailman/listinfo/grok-doc" target="_blank">https://mail.zope.org/mailman/listinfo/grok-doc</a><br>
</blockquote></div><br>