From dave at badgers-in-foil.co.uk Wed Oct 5 12:33:08 2005 From: dave at badgers-in-foil.co.uk (dave@badgers-in-foil.co.uk) Date: Wed Oct 5 12:33:17 2005 Subject: [as2api-dev] [CVS trunk] Link to yet another AS doc tool (uses Perl's POD as an intermediate format) Message-ID: An HTML attachment was scrubbed... URL: http://lists.badgers-in-foil.co.uk/pipermail/as2api-dev/attachments/20051005/29a662c4/attachment.htm From dave at badgers-in-foil.co.uk Thu Oct 6 14:04:29 2005 From: dave at badgers-in-foil.co.uk (David Holroyd) Date: Thu Oct 6 14:04:36 2005 Subject: [as2api-dev] Re: Next as2api win32 release? In-Reply-To: <685b61540510060257s57266e6cy60414f87cbaaa752@mail.gmail.com> References: <685b61540510060257s57266e6cy60414f87cbaaa752@mail.gmail.com> Message-ID: <20051006140429.GC3868@badgers-in-foil.co.uk> Hi there, On Thu, Oct 06, 2005 at 12:57:04PM +0300, Mika Palmu wrote: > I was just wondering when you will release the next win32 build? We > would like to include it to our open source project called > FlashDevelop (found on osflash.org) with an optional css stylesheet > feature added. Could you possibly build the console app for us or help > me to do that? I don't have a clue how to to build the project. Later > on i will build a simple gui for it. The answer is unfortunately; when I get some time. There are a few small things I want to do before the next oficcial release. I can give you a win32 build of the current code if you just want something to be getting on with. I can try and help you getting the win32 build to work too, if you want. It doesn't involve too much voodoo, but you need to download a whole load of tools: I use Cygwin to get Make and Subversion, a win32 port of Ruby (*not* the Cygwin Ruby) and a tool called RubyScript2EXE to actually get an .exe out the other end. Let me know how I can help... dave From meychi at gmail.com Sun Oct 9 18:25:01 2005 From: meychi at gmail.com (Mika Palmu) Date: Sun Oct 9 20:09:37 2005 Subject: [as2api-dev] Re: Next as2api win32 release? In-Reply-To: <20051006140429.GC3868@badgers-in-foil.co.uk> References: <685b61540510060257s57266e6cy60414f87cbaaa752@mail.gmail.com> <20051006140429.GC3868@badgers-in-foil.co.uk> Message-ID: <685b61540510091125n4fafd650w45c201c7a2c305b9@mail.gmail.com> I got the building working now but i get this warning when compiling: ./parse/lexer.rb:107: warning: already initialized constant LBraceToken ./parse/lexer.rb:107: warning: already initialized constant RBraceToken The actual app works just fine. How can i fix this/should this be fixed? Greetings, Mika On 10/6/05, David Holroyd wrote: > Hi there, > > On Thu, Oct 06, 2005 at 12:57:04PM +0300, Mika Palmu wrote: > > I was just wondering when you will release the next win32 build? We > > would like to include it to our open source project called > > FlashDevelop (found on osflash.org) with an optional css stylesheet > > feature added. Could you possibly build the console app for us or help > > me to do that? I don't have a clue how to to build the project. Later > > on i will build a simple gui for it. > > The answer is unfortunately; when I get some time. > > There are a few small things I want to do before the next oficcial > release. I can give you a win32 build of the current code if you just > want something to be getting on with. > > I can try and help you getting the win32 build to work too, if you want. > It doesn't involve too much voodoo, but you need to download a whole > load of tools: I use Cygwin to get Make and Subversion, a win32 port of > Ruby (*not* the Cygwin Ruby) and a tool called RubyScript2EXE to > actually get an .exe out the other end. > > > Let me know how I can help... > > dave > From dave at badgers-in-foil.co.uk Sun Oct 9 20:32:03 2005 From: dave at badgers-in-foil.co.uk (David Holroyd) Date: Sun Oct 9 20:32:08 2005 Subject: [as2api-dev] Re: Next as2api win32 release? In-Reply-To: <685b61540510091125n4fafd650w45c201c7a2c305b9@mail.gmail.com> References: <685b61540510060257s57266e6cy60414f87cbaaa752@mail.gmail.com> <20051006140429.GC3868@badgers-in-foil.co.uk> <685b61540510091125n4fafd650w45c201c7a2c305b9@mail.gmail.com> Message-ID: <20051009203203.GA19040@badgers-in-foil.co.uk> Hi, On Sun, Oct 09, 2005 at 09:25:01PM +0300, Mika Palmu wrote: > I got the building working now but i get this warning when compiling: > > ./parse/lexer.rb:107: warning: already initialized constant LBraceToken > ./parse/lexer.rb:107: warning: already initialized constant RBraceToken > > The actual app works just fine. How can i fix this/should this be fixed? Ah yes, sorry I've not got around to fixing that yet. The issue we are being warned of should will actually cause a problem (the redefinition simply reassignes the same value to the constant again). This is due to both 'parse/aslexer.rb' and 'parse/doccomment_lexer.rb' adding RBrace/LBrace token matches. The proper fix will eventually be to have the constants be added to the generated lexer class, rather than always being added to the ActionScript::Parse module. Glad to hear you got things working, anyhow. dave -- http://david.holroyd.me.uk/ From dave at badgers-in-foil.co.uk Sun Oct 9 20:34:51 2005 From: dave at badgers-in-foil.co.uk (David Holroyd) Date: Sun Oct 9 20:34:53 2005 Subject: [as2api-dev] Re: Next as2api win32 release? In-Reply-To: <20051009203203.GA19040@badgers-in-foil.co.uk> References: <685b61540510060257s57266e6cy60414f87cbaaa752@mail.gmail.com> <20051006140429.GC3868@badgers-in-foil.co.uk> <685b61540510091125n4fafd650w45c201c7a2c305b9@mail.gmail.com> <20051009203203.GA19040@badgers-in-foil.co.uk> Message-ID: <20051009203451.GB19040@badgers-in-foil.co.uk> On Sun, Oct 09, 2005 at 08:32:03PM +0000, David Holroyd wrote: > The issue we are being warned of should will actually cause a problem Err, "... will *not* actually cause a problem." 8) dave -- http://david.holroyd.me.uk/