enlarge-users Mailing List for EnLarge
Status: Alpha
Brought to you by:
asual
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
(5) |
Apr
(12) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Simon <si...@us...> - 2008-11-07 14:32:55
|
Hi guy's, I know this feels late in the project, but I'm wondering how you can add marco definations to the build.xml for ant? The #if works, but would like #ifdef to also work and the documentation for jappo has long since gone?? class untitled { function untitled(){ #ifdef DEBUG trace("DEBUG"); #endif } } Thanks guys Simon ------------------------------------------ ustwo™ 7-10 Batemans Row, London EC2A 3HH. T: +44 (0) 20 7613 0433 M: +44 (0) 7887 948 435 www.ustwo.co.uk ------------------------------------------ ------------------------------------------ ustwo™ studio ltd Directors Sinx & Mills Company No: 5286528 (England) Registered office: 57 Vale road, London N4 1PP This email includes proprietary and confidential information belonging to ustwoª studio ltd. All rights reserved. If you are not the intended recipient, please delete this message and any attachments. ------------------------------------------ |
From: KaalH! <ka...@sm...> - 2006-04-13 12:46:26
|
Le jeudi 13 avril 2006 à 13:58 +0300, Rostislav Hristov a écrit : > Hi KaalH, > > I have updated the file at http://enlarge.sf.net/enlarge-0.1.3.zip > > Now it uses the code from the URL you sent me, because the whole BOM > approach until now was wrong. > > Please test it if you have the time. > > Greets, > Rostislav > Hi Rostislav, It works perfectly ! thx Kaalh > > > > -- > EnFlash - It's all about features... > http://www.asual.com/enflash/ > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > that extends applications into web and mobile media. Attend the live webcast > and join the prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > _______________________________________________ > enlarge-users mailing list > enl...@li... > https://lists.sourceforge.net/lists/listinfo/enlarge-users |
From: Rostislav H. <ros...@gm...> - 2006-04-13 10:58:38
|
Hi KaalH, I have updated the file at http://enlarge.sf.net/enlarge-0.1.3.zip Now it uses the code from the URL you sent me, because the whole BOM approach until now was wrong. Please test it if you have the time. Greets, Rostislav -- EnFlash - It's all about features... http://www.asual.com/enflash/ |
From: KaalH! <ka...@sm...> - 2006-04-12 05:33:40
|
Le mardi 11 avril 2006 à 22:47 +0300, Rostislav Hristov a écrit : > Hi, > > can you please let me know if the following code works for you? it doesn't work. > String bom = ""; > int chars = 0; > byte[] bytes = fileContent.getBytes(); > > if ((bytes[0] == (byte) 0xEF) && (bytes[1] == (byte) 0xBB) && > (bytes[2] == (byte) 0xBF)) { > chars = 3; works with "chars = 1" here > } else if ((bytes[0] == (byte) 0xFE) && (bytes[1] == (byte) 0xFF)) { > chars = 1; > } else if ((bytes[0] == (byte) 0xFF) && (bytes[1] == (byte) 0xFE)) { > chars = 1; > } else if ((bytes[0] == (byte) 0x00) && (bytes[1] == (byte) 0x00) && > (bytes[2] == (byte) 0xFE) && (bytes[3] == (byte) 0xFF)) { > chars = 1; > } else if ((bytes[0] == (byte) 0xFF) && (bytes[1] == (byte) 0xFE) && > (bytes[2] == (byte) 0x00) && (bytes[3] == (byte) 0x00)) { > chars = 1; > } > > bom = fileContent.substring(0, chars); > fileContent = fileContent.substring(chars); > > > Thanks, > Rostislav > > > > On 4/11/06, KaalH! <ka...@sm...> wrote: > > Le mardi 11 avril 2006 à 00:15 +0300, Rostislav Hristov a écrit : > > > Hi KaalH, > > > > > > thank you for digging through the code. I have no experience with BOM > > > and I got stucked with your fix, because it breaks my tests. Anyway I > > > found the difference in the Representation table available here: > > > > > > http://en.wikipedia.org/wiki/Byte_Order_Mark > > > > > > My code detects the first BOM sequence, while yours detects the second > > > one. That's why I'll include them both. > > > > > > Cheers, > > > Rostislav > > > > > > > > > > I'm also newbie wih BOM ;) > > > > I've just found this interesting code sample : > > http://www.tutorials.de/forum/1245315-post7.html > > > > kaalh > > > > > > > > > > > > > > On 4/10/06, KaalH! <ka...@sm...> wrote: > > > > Le lundi 10 avril 2006 à 15:12 +0300, Rostislav Hristov a écrit : > > > > > Hi KaalH, > > > > > > > > > > a pre-release is available at http://enlarge.sf.net/enlarge-0.1.3.zip > > > > > Let me know if any of the issues persist. > > > > > > > > > > Greets, > > > > > Rostislav > > > > > > > > > Hi, > > > > > > > > the "UTF8 BOM" issue still persits. > > > > > > > > I've found a way to fix it, see the attached file. > > > > > > > > > > > > kaalh > > > > > > > > > > > > > > > > > > > > > > > > On 4/9/06, KaalH! <ka...@sm...> wrote: > > > > > > Le dimanche 09 avril 2006 à 11:33 +0300, Rostislav Hristov a écrit : > > > > > > > Hi KaalH, > > > > > > > > > > > > > > I have implemented the interface support. Give me more info about the > > > > > > > other issue and I'll preprare a new release. > > > > > > > > > > > > > > Rostislav > > > > > > > > > > > > > > > > > > > great :) > > > > > > > > > > > > I got more on the other issue: > > > > > > > > > > > > using ASDT, files are created with UTF8 BOM as first char ( EF BB BF ) > > > > > > when running in an UTF8 env (mine is ubuntu dapper) as in the attached > > > > > > file. > > > > > > > > > > > > kaalh > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > EnFlash - It's all about features... > > > > > > > http://www.asual.com/enflash/ > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > > > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > > > > > > > that extends applications into web and mobile media. Attend the live webcast > > > > > > > and join the prime developer group breaking into this new coding territory! > > > > > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > > > > > > > _______________________________________________ > > > > > > > enlarge-users mailing list > > > > > > > enl...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > EnFlash - It's all about features... > > > > > http://www.asual.com/enflash/ > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > > > > > that extends applications into web and mobile media. Attend the live webcast > > > > > and join the prime developer group breaking into this new coding territory! > > > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > > > > > _______________________________________________ > > > > > enlarge-users mailing list > > > > > enl...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > > > > > > > > > > > > > > > > > -- > > > EnFlash - It's all about features... > > > http://www.asual.com/enflash/ > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > > > that extends applications into web and mobile media. Attend the live webcast > > > and join the prime developer group breaking into this new coding territory! > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > > > _______________________________________________ > > > enlarge-users mailing list > > > enl...@li... > > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > > that extends applications into web and mobile media. Attend the live webcast > > and join the prime developer group breaking into this new coding territory! > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > > _______________________________________________ > > enlarge-users mailing list > > enl...@li... > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > -- > EnFlash - It's all about features... > http://www.asual.com/enflash/ > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > that extends applications into web and mobile media. Attend the live webcast > and join the prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > _______________________________________________ > enlarge-users mailing list > enl...@li... > https://lists.sourceforge.net/lists/listinfo/enlarge-users |
From: Rostislav H. <ros...@gm...> - 2006-04-11 19:47:39
|
Hi, can you please let me know if the following code works for you? String bom =3D ""; int chars =3D 0; byte[] bytes =3D fileContent.getBytes(); if ((bytes[0] =3D=3D (byte) 0xEF) && (bytes[1] =3D=3D (byte) 0xBB) && (bytes[2] =3D=3D (byte) 0xBF)) { =09chars =3D 3; } else if ((bytes[0] =3D=3D (byte) 0xFE) && (bytes[1] =3D=3D (byte) 0xFF)) = { =09chars =3D 1; } else if ((bytes[0] =3D=3D (byte) 0xFF) && (bytes[1] =3D=3D (byte) 0xFE)) = { =09chars =3D 1; } else if ((bytes[0] =3D=3D (byte) 0x00) && (bytes[1] =3D=3D (byte) 0x00) &= & (bytes[2] =3D=3D (byte) 0xFE) && (bytes[3] =3D=3D (byte) 0xFF)) { =09chars =3D 1; } else if ((bytes[0] =3D=3D (byte) 0xFF) && (bytes[1] =3D=3D (byte) 0xFE) &= & (bytes[2] =3D=3D (byte) 0x00) && (bytes[3] =3D=3D (byte) 0x00)) { =09chars =3D 1; } bom =3D fileContent.substring(0, chars); fileContent =3D fileContent.substring(chars); Thanks, Rostislav On 4/11/06, KaalH! <ka...@sm...> wrote: > Le mardi 11 avril 2006 =E0 00:15 +0300, Rostislav Hristov a =E9crit : > > Hi KaalH, > > > > thank you for digging through the code. I have no experience with BOM > > and I got stucked with your fix, because it breaks my tests. Anyway I > > found the difference in the Representation table available here: > > > > http://en.wikipedia.org/wiki/Byte_Order_Mark > > > > My code detects the first BOM sequence, while yours detects the second > > one. That's why I'll include them both. > > > > Cheers, > > Rostislav > > > > > > I'm also newbie wih BOM ;) > > I've just found this interesting code sample : > http://www.tutorials.de/forum/1245315-post7.html > > kaalh > > > > > > > > > On 4/10/06, KaalH! <ka...@sm...> wrote: > > > Le lundi 10 avril 2006 =E0 15:12 +0300, Rostislav Hristov a =E9crit : > > > > Hi KaalH, > > > > > > > > a pre-release is available at http://enlarge.sf.net/enlarge-0.1.3.z= ip > > > > Let me know if any of the issues persist. > > > > > > > > Greets, > > > > Rostislav > > > > > > > Hi, > > > > > > the "UTF8 BOM" issue still persits. > > > > > > I've found a way to fix it, see the attached file. > > > > > > > > > kaalh > > > > > > > > > > > > > > > > > > > On 4/9/06, KaalH! <ka...@sm...> wrote: > > > > > Le dimanche 09 avril 2006 =E0 11:33 +0300, Rostislav Hristov a = =E9crit : > > > > > > Hi KaalH, > > > > > > > > > > > > I have implemented the interface support. Give me more info abo= ut the > > > > > > other issue and I'll preprare a new release. > > > > > > > > > > > > Rostislav > > > > > > > > > > > > > > > > great :) > > > > > > > > > > I got more on the other issue: > > > > > > > > > > using ASDT, files are created with UTF8 BOM as first char ( EF BB= BF ) > > > > > when running in an UTF8 env (mine is ubuntu dapper) as in the att= ached > > > > > file. > > > > > > > > > > kaalh > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > EnFlash - It's all about features... > > > > > > http://www.asual.com/enflash/ > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > > This SF.Net email is sponsored by xPML, a groundbreaking script= ing language > > > > > > that extends applications into web and mobile media. Attend the= live webcast > > > > > > and join the prime developer group breaking into this new codin= g territory! > > > > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=110944&bid$1720&d= at=121642 > > > > > > _______________________________________________ > > > > > > enlarge-users mailing list > > > > > > enl...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > EnFlash - It's all about features... > > > > http://www.asual.com/enflash/ > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.Net email is sponsored by xPML, a groundbreaking scripting = language > > > > that extends applications into web and mobile media. Attend the liv= e webcast > > > > and join the prime developer group breaking into this new coding te= rritory! > > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=110944&bid$1720&dat= =121642 > > > > _______________________________________________ > > > > enlarge-users mailing list > > > > enl...@li... > > > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > > > > > > > > > > > -- > > EnFlash - It's all about features... > > http://www.asual.com/enflash/ > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by xPML, a groundbreaking scripting lang= uage > > that extends applications into web and mobile media. Attend the live we= bcast > > and join the prime developer group breaking into this new coding territ= ory! > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=110944&bid$1720&dat=12164= 2 > > _______________________________________________ > > enlarge-users mailing list > > enl...@li... > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting langua= ge > that extends applications into web and mobile media. Attend the live webc= ast > and join the prime developer group breaking into this new coding territor= y! > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat= =3D121642 > _______________________________________________ > enlarge-users mailing list > enl...@li... > https://lists.sourceforge.net/lists/listinfo/enlarge-users > -- EnFlash - It's all about features... http://www.asual.com/enflash/ |
From: KaalH! <ka...@sm...> - 2006-04-11 06:13:43
|
Le mardi 11 avril 2006 à 00:15 +0300, Rostislav Hristov a écrit : > Hi KaalH, > > thank you for digging through the code. I have no experience with BOM > and I got stucked with your fix, because it breaks my tests. Anyway I > found the difference in the Representation table available here: > > http://en.wikipedia.org/wiki/Byte_Order_Mark > > My code detects the first BOM sequence, while yours detects the second > one. That's why I'll include them both. > > Cheers, > Rostislav > > I'm also newbie wih BOM ;) I've just found this interesting code sample : http://www.tutorials.de/forum/1245315-post7.html kaalh > > > > On 4/10/06, KaalH! <ka...@sm...> wrote: > > Le lundi 10 avril 2006 à 15:12 +0300, Rostislav Hristov a écrit : > > > Hi KaalH, > > > > > > a pre-release is available at http://enlarge.sf.net/enlarge-0.1.3.zip > > > Let me know if any of the issues persist. > > > > > > Greets, > > > Rostislav > > > > > Hi, > > > > the "UTF8 BOM" issue still persits. > > > > I've found a way to fix it, see the attached file. > > > > > > kaalh > > > > > > > > > > > > > > On 4/9/06, KaalH! <ka...@sm...> wrote: > > > > Le dimanche 09 avril 2006 à 11:33 +0300, Rostislav Hristov a écrit : > > > > > Hi KaalH, > > > > > > > > > > I have implemented the interface support. Give me more info about the > > > > > other issue and I'll preprare a new release. > > > > > > > > > > Rostislav > > > > > > > > > > > > > great :) > > > > > > > > I got more on the other issue: > > > > > > > > using ASDT, files are created with UTF8 BOM as first char ( EF BB BF ) > > > > when running in an UTF8 env (mine is ubuntu dapper) as in the attached > > > > file. > > > > > > > > kaalh > > > > > > > > > > > > > > > > > > > -- > > > > > EnFlash - It's all about features... > > > > > http://www.asual.com/enflash/ > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > > > > > that extends applications into web and mobile media. Attend the live webcast > > > > > and join the prime developer group breaking into this new coding territory! > > > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > > > > > _______________________________________________ > > > > > enlarge-users mailing list > > > > > enl...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > > > > > > > > > > > > > > > > > -- > > > EnFlash - It's all about features... > > > http://www.asual.com/enflash/ > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > > > that extends applications into web and mobile media. Attend the live webcast > > > and join the prime developer group breaking into this new coding territory! > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > > > _______________________________________________ > > > enlarge-users mailing list > > > enl...@li... > > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > > > > > -- > EnFlash - It's all about features... > http://www.asual.com/enflash/ > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > that extends applications into web and mobile media. Attend the live webcast > and join the prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > _______________________________________________ > enlarge-users mailing list > enl...@li... > https://lists.sourceforge.net/lists/listinfo/enlarge-users |
From: Rostislav H. <ros...@gm...> - 2006-04-10 21:15:22
|
Hi KaalH, thank you for digging through the code. I have no experience with BOM and I got stucked with your fix, because it breaks my tests. Anyway I found the difference in the Representation table available here: http://en.wikipedia.org/wiki/Byte_Order_Mark My code detects the first BOM sequence, while yours detects the second one. That's why I'll include them both. Cheers, Rostislav On 4/10/06, KaalH! <ka...@sm...> wrote: > Le lundi 10 avril 2006 =E0 15:12 +0300, Rostislav Hristov a =E9crit : > > Hi KaalH, > > > > a pre-release is available at http://enlarge.sf.net/enlarge-0.1.3.zip > > Let me know if any of the issues persist. > > > > Greets, > > Rostislav > > > Hi, > > the "UTF8 BOM" issue still persits. > > I've found a way to fix it, see the attached file. > > > kaalh > > > > > > > > > On 4/9/06, KaalH! <ka...@sm...> wrote: > > > Le dimanche 09 avril 2006 =E0 11:33 +0300, Rostislav Hristov a =E9cri= t : > > > > Hi KaalH, > > > > > > > > I have implemented the interface support. Give me more info about t= he > > > > other issue and I'll preprare a new release. > > > > > > > > Rostislav > > > > > > > > > > great :) > > > > > > I got more on the other issue: > > > > > > using ASDT, files are created with UTF8 BOM as first char ( EF BB BF = ) > > > when running in an UTF8 env (mine is ubuntu dapper) as in the attache= d > > > file. > > > > > > kaalh > > > > > > > > > > > > > > > -- > > > > EnFlash - It's all about features... > > > > http://www.asual.com/enflash/ > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.Net email is sponsored by xPML, a groundbreaking scripting = language > > > > that extends applications into web and mobile media. Attend the liv= e webcast > > > > and join the prime developer group breaking into this new coding te= rritory! > > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=110944&bid$1720&dat= =121642 > > > > _______________________________________________ > > > > enlarge-users mailing list > > > > enl...@li... > > > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > > > > > > > > > > > -- > > EnFlash - It's all about features... > > http://www.asual.com/enflash/ > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by xPML, a groundbreaking scripting lang= uage > > that extends applications into web and mobile media. Attend the live we= bcast > > and join the prime developer group breaking into this new coding territ= ory! > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=110944&bid$1720&dat=12164= 2 > > _______________________________________________ > > enlarge-users mailing list > > enl...@li... > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > -- EnFlash - It's all about features... http://www.asual.com/enflash/ |
From: KaalH! <ka...@sm...> - 2006-04-10 17:34:32
|
Le lundi 10 avril 2006 à 15:12 +0300, Rostislav Hristov a écrit : > Hi KaalH, > > a pre-release is available at http://enlarge.sf.net/enlarge-0.1.3.zip > Let me know if any of the issues persist. > > Greets, > Rostislav > Hi, the "UTF8 BOM" issue still persits. I've found a way to fix it, see the attached file. kaalh > > > > On 4/9/06, KaalH! <ka...@sm...> wrote: > > Le dimanche 09 avril 2006 à 11:33 +0300, Rostislav Hristov a écrit : > > > Hi KaalH, > > > > > > I have implemented the interface support. Give me more info about the > > > other issue and I'll preprare a new release. > > > > > > Rostislav > > > > > > > great :) > > > > I got more on the other issue: > > > > using ASDT, files are created with UTF8 BOM as first char ( EF BB BF ) > > when running in an UTF8 env (mine is ubuntu dapper) as in the attached > > file. > > > > kaalh > > > > > > > > > > > -- > > > EnFlash - It's all about features... > > > http://www.asual.com/enflash/ > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > > > that extends applications into web and mobile media. Attend the live webcast > > > and join the prime developer group breaking into this new coding territory! > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > > > _______________________________________________ > > > enlarge-users mailing list > > > enl...@li... > > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > > > > > > -- > EnFlash - It's all about features... > http://www.asual.com/enflash/ > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > that extends applications into web and mobile media. Attend the live webcast > and join the prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > _______________________________________________ > enlarge-users mailing list > enl...@li... > https://lists.sourceforge.net/lists/listinfo/enlarge-users |
From: Rostislav H. <ros...@gm...> - 2006-04-10 12:12:23
|
Hi KaalH, a pre-release is available at http://enlarge.sf.net/enlarge-0.1.3.zip Let me know if any of the issues persist. Greets, Rostislav On 4/9/06, KaalH! <ka...@sm...> wrote: > Le dimanche 09 avril 2006 =E0 11:33 +0300, Rostislav Hristov a =E9crit : > > Hi KaalH, > > > > I have implemented the interface support. Give me more info about the > > other issue and I'll preprare a new release. > > > > Rostislav > > > > great :) > > I got more on the other issue: > > using ASDT, files are created with UTF8 BOM as first char ( EF BB BF ) > when running in an UTF8 env (mine is ubuntu dapper) as in the attached > file. > > kaalh > > > > > > > -- > > EnFlash - It's all about features... > > http://www.asual.com/enflash/ > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by xPML, a groundbreaking scripting lang= uage > > that extends applications into web and mobile media. Attend the live we= bcast > > and join the prime developer group breaking into this new coding territ= ory! > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=110944&bid$1720&dat=12164= 2 > > _______________________________________________ > > enlarge-users mailing list > > enl...@li... > > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > -- EnFlash - It's all about features... http://www.asual.com/enflash/ |
From: KaalH! <ka...@sm...> - 2006-04-09 17:59:50
|
Le dimanche 09 avril 2006 à 11:33 +0300, Rostislav Hristov a écrit : > Hi KaalH, > > I have implemented the interface support. Give me more info about the > other issue and I'll preprare a new release. > > Rostislav > great :) I got more on the other issue: using ASDT, files are created with UTF8 BOM as first char ( EF BB BF ) when running in an UTF8 env (mine is ubuntu dapper) as in the attached file. kaalh > > > -- > EnFlash - It's all about features... > http://www.asual.com/enflash/ > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting language > that extends applications into web and mobile media. Attend the live webcast > and join the prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 > _______________________________________________ > enlarge-users mailing list > enl...@li... > https://lists.sourceforge.net/lists/listinfo/enlarge-users |
From: Rostislav H. <ros...@gm...> - 2006-04-09 08:33:52
|
Hi KaalH, I have implemented the interface support. Give me more info about the other issue and I'll preprare a new release. Rostislav -- EnFlash - It's all about features... http://www.asual.com/enflash/ |
From: Rostislav H. <ros...@gm...> - 2006-04-07 19:28:58
|
Hi KaalH, thanks for the report. EnLarge is in very early stage and for the moment it covers only the functionality of the samples . Can you please explain me what kind of symbol you want in front of 'package'. Will such a combination compile with Flex 2? I will try to add that interface support and will get back to you. I'm currently using my home repository, the source is available inside the downloadable package. Greets, Rostislav On 4/7/06, KaalH! <ka...@sm...> wrote: > hi all, > > running enlarge on linux/eclipse3.1/sdk1.5 > > got 2 bugs > > - a newline or a space is required before package or as2 generated file > got wrong classname. > > - "implements" is stripped from class definition, > eg: "public class Test implements A, B {" =3D> "class Test {" > > > > could you this this plz ? > > SF cvs is empty, are the enlarge sources available ? > > thx > kaalh > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting langua= ge > that extends applications into web and mobile media. Attend the live webc= ast > and join the prime developer group breaking into this new coding territor= y! > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat= =3D121642 > _______________________________________________ > enlarge-users mailing list > enl...@li... > https://lists.sourceforge.net/lists/listinfo/enlarge-users > -- EnFlash - It's all about features... http://www.asual.com/enflash/ |
From: KaalH! <ka...@sm...> - 2006-04-07 10:05:52
|
hi all, running enlarge on linux/eclipse3.1/sdk1.5 got 2 bugs - a newline or a space is required before package or as2 generated file got wrong classname. - "implements" is stripped from class definition, eg: "public class Test implements A, B {" => "class Test {" could you this this plz ? SF cvs is empty, are the enlarge sources available ? thx kaalh |
From: Rostislav H. <ros...@gm...> - 2006-03-14 12:20:51
|
Hi St=E9phane, thank you for spreading the idea. A new release including this fix is now available. It also supports global header/footer includes. Rostislav On 3/14/06, St=E9phane Bebrone <sh...@gm...> wrote: > Thanks! That did the trick! > > I've just updated my french explanation on my weblog with this tricks. > > Keeps up the good works! > > 2006/3/13, Rostislav Hristov < ros...@gm...>: > > > Hi St=E9phane, > > I have the same issue when I'm building the 'samples' target of the > main build.xml using Eclipse. > > You can manually fix this by changing the EnLarge line in > samples/helloworld/build.xml > > <enlarge srcdir=3D"${basedir}/${dir.src}/as" includes=3D"**/*.as" > destdir=3D"${basedir}/${dir.src}/${env}" listfiles=3D"on" > config=3D"${basedir}/enlarge.xml" /> > > Basicaly you should add the 'config' attribute. Probably I should > distribute the Ant build this way. > > Thanks for trying EnLarge! > > Rostislav > > > > On 3/13/06, St=E9phane Bebrone <sh...@gm...> wrote: > > Hi list, > > > > First I want to thank you for sharing this project. So great! > > > > But, I've just ran into a "common" issue with ANT plugin in Eclipse whi= ch > > isn't directly related to EnLarge but I even hope that you will be able= to > > help me. > > > > How can I tell to my build.xml to look after my config file (enlarge.xm= l) > in > > the workspace directory instead of Eclipse Directory (used by default) = ? > > > > This is the typical error message that I receive: > > build.xml:38: com.asual.enlarge.EnLargeException: > EnLarge: > > io read errorjava.io.FileNotFoundException: > > D:\Apps\eclipse\enlarge.xml (The system cannot find the file specified) > > > > Thanks, > > -- > > Regards, > > St=E9phane Bebrone > > -------------------------- > > Flash | ASP.NET | Web Developer > > http://weblog.shaoken.be > > -------------------------- > > > -- > EnFlash - It's all about features... > http://www.asual.com/enflash/ > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting langua= ge > that extends applications into web and mobile media. Attend the live webc= ast > and join the prime developer group breaking into this new coding territor= y! > http://sel.as-us.falkag.net/sel?cmdlnk&kid=110944&bid$1720&dat=121642 > _______________________________________________ > enlarge-users mailing list > enl...@li... > https://lists.sourceforge.net/lists/listinfo/enlarge-users > > > > -- > > Regards, > St=E9phane Bebrone > -------------------------- > Flash | ASP.NET | Web Developer > http://weblog.shaoken.be > -------------------------- -- EnFlash - It's all about features... http://www.asual.com/enflash/ |
From: <sh...@gm...> - 2006-03-13 22:38:39
|
Thanks! That did the trick! I've just updated my french explanation on my weblog with this tricks. Keeps up the good works! 2006/3/13, Rostislav Hristov <ros...@gm...>: > > Hi St=E9phane, > > I have the same issue when I'm building the 'samples' target of the > main build.xml using Eclipse. > > You can manually fix this by changing the EnLarge line in > samples/helloworld/build.xml > > <enlarge srcdir=3D"${basedir}/${dir.src}/as" includes=3D"**/*.as" > destdir=3D"${basedir}/${dir.src}/${env}" listfiles=3D"on" > config=3D"${basedir}/enlarge.xml" /> > > Basicaly you should add the 'config' attribute. Probably I should > distribute the Ant build this way. > > Thanks for trying EnLarge! > > Rostislav > > > > On 3/13/06, St=E9phane Bebrone <sh...@gm...> wrote: > > Hi list, > > > > First I want to thank you for sharing this project. So great! > > > > But, I've just ran into a "common" issue with ANT plugin in Eclipse > which > > isn't directly related to EnLarge but I even hope that you will be able > to > > help me. > > > > How can I tell to my build.xml to look after my config file (enlarge.xm= l) > in > > the workspace directory instead of Eclipse Directory (used by default) = ? > > > > This is the typical error message that I receive: > > build.xml:38: com.asual.enlarge.EnLargeException: EnLarge: > > io read errorjava.io.FileNotFoundException: > > D:\Apps\eclipse\enlarge.xml (The system cannot find the file specified) > > > > Thanks, > > -- > > Regards, > > St=E9phane Bebrone > > -------------------------- > > Flash | ASP.NET | Web Developer > > http://weblog.shaoken.be > > -------------------------- > > > -- > EnFlash - It's all about features... > http://www.asual.com/enflash/ > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the live > webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmdlnk&kid=110944&bid$1720&dat=121642 > _______________________________________________ > enlarge-users mailing list > enl...@li... > https://lists.sourceforge.net/lists/listinfo/enlarge-users > -- Regards, St=E9phane Bebrone -------------------------- Flash | ASP.NET | Web Developer http://weblog.shaoken.be -------------------------- |
From: Rostislav H. <ros...@gm...> - 2006-03-13 14:08:33
|
Hi St=E9phane, I have the same issue when I'm building the 'samples' target of the main build.xml using Eclipse. You can manually fix this by changing the EnLarge line in samples/helloworld/build.xml <enlarge srcdir=3D"${basedir}/${dir.src}/as" includes=3D"**/*.as" destdir=3D"${basedir}/${dir.src}/${env}" listfiles=3D"on" config=3D"${basedir}/enlarge.xml" /> Basicaly you should add the 'config' attribute. Probably I should distribute the Ant build this way. Thanks for trying EnLarge! Rostislav On 3/13/06, St=E9phane Bebrone <sh...@gm...> wrote: > Hi list, > > First I want to thank you for sharing this project. So great! > > But, I've just ran into a "common" issue with ANT plugin in Eclipse which > isn't directly related to EnLarge but I even hope that you will be able t= o > help me. > > How can I tell to my build.xml to look after my config file (enlarge.xml)= in > the workspace directory instead of Eclipse Directory (used by default) ? > > This is the typical error message that I receive: > build.xml:38: com.asual.enlarge.EnLargeException: EnLarge: > io read errorjava.io.FileNotFoundException: > D:\Apps\eclipse\enlarge.xml (The system cannot find the file specified) > > Thanks, > -- > Regards, > St=E9phane Bebrone > -------------------------- > Flash | ASP.NET | Web Developer > http://weblog.shaoken.be > -------------------------- -- EnFlash - It's all about features... http://www.asual.com/enflash/ |
From: <sh...@gm...> - 2006-03-13 13:55:14
|
Hi list, First I want to thank you for sharing this project. So great! But, I've just ran into a "common" issue with ANT plugin in Eclipse which isn't directly related to EnLarge but I even hope that you will be able to help me. How can I tell to my build.xml to look after my config file (enlarge.xml) i= n the workspace directory instead of Eclipse Directory (used by default) ? This is the typical error message that I receive: build.xml:38: com.asual.enlarge.EnLargeException: EnLarge: io read errorjava.io.FileNotFoundException: D:\Apps\eclipse\enlarge.xml (The system cannot find the file specified) Thanks, -- Regards, St=E9phane Bebrone -------------------------- Flash | ASP.NET | Web Developer http://weblog.shaoken.be -------------------------- |
From: Rostislav H. <ros...@gm...> - 2006-03-12 22:16:36
|
Welcome to EnLarge Users Discussion List. Feel free to ask, suggest and comment. |