TODO.tasks -> TODO

View: New views
3 Messages — Rating Filter:   Alert me  

TODO.tasks -> TODO

by Andreas Volz :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,

I think it should be possible to write an XLST stylesheet to transform
the XML file into an plain formated TODO file. I'm not known of XSLT.
This would be helpful for people working on the same project without
Anjuta.

Has anyone done this task or knows how to do this?

regards
Andreas

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Anjuta-devel mailing list
Anjuta-devel@...
https://lists.sourceforge.net/lists/listinfo/anjuta-devel

Re: TODO.tasks -> TODO

by Bugzilla from mail@jensge.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Am Donnerstag, den 16.07.2009, 08:34 +0200 schrieb Andreas Volz:
> Hello,
>
> I think it should be possible to write an XLST stylesheet to transform
> the XML file into an plain formated TODO file. I'm not known of XSLT.
> This would be helpful for people working on the same project without
> Anjuta.
>
> Has anyone done this task or knows how to do this?

./plugins/gtodo/gtodo-plain.xsl



------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Anjuta-devel mailing list
Anjuta-devel@...
https://lists.sourceforge.net/lists/listinfo/anjuta-devel

Re: TODO.tasks -> TODO

by Andreas Volz :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Am Fri, 17 Jul 2009 09:54:49 +0200 schrieb Jens Georg:

Ah, thanks.

Now I added this file to my project SVN and write this in my autogen
file:

(which xsltproc) < /dev/null > /dev/null 2>&1 || {
  echo
  echo "**Hint**: You must have \`xsltproc' installed"
  echo "to generate TODO file. But it's save to continue."
  NO_XSLTPROC=yes
}

test -n "$NO_XSLTPROC" || {
  echo "Running xsltproc..."
  echo "\
###
### This TODO list is created from TODO.xml. Don't edit this file!
###
" > TODO

  xsltproc gtodo-plain.xsl TODO.tasks >> TODO
}

This works great here. Don't you think it would be a nice idea to let
Anjuta do this by default (or by configuration)?

regards
Andreas

> Am Donnerstag, den 16.07.2009, 08:34 +0200 schrieb Andreas Volz:
> > Hello,
> >
> > I think it should be possible to write an XLST stylesheet to
> > transform the XML file into an plain formated TODO file. I'm not
> > known of XSLT. This would be helpful for people working on the same
> > project without Anjuta.
> >
> > Has anyone done this task or knows how to do this?
>
> ./plugins/gtodo/gtodo-plain.xsl
>
>
>
> ------------------------------------------------------------------------------
> Enter the BlackBerry Developer Challenge  
> This is your chance to win up to $100,000 in prizes! For a limited
> time, vendors submitting new applications to BlackBerry App World(TM)
> will have the opportunity to enter the BlackBerry Developer
> Challenge. See full prize details at: http://p.sf.net/sfu/Challenge
> _______________________________________________
> Anjuta-devel mailing list
> Anjuta-devel@...
> https://lists.sourceforge.net/lists/listinfo/anjuta-devel
>

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Anjuta-devel mailing list
Anjuta-devel@...
https://lists.sourceforge.net/lists/listinfo/anjuta-devel