Open GoogleCodeExporter opened 9 years ago
Hi guys, I'have encountered the same error, can anybody give any clues on that?
Original comment by ken...@gmail.com
on 15 Sep 2010 at 6:00
I haven't checked it, but the log indicates a JS syntax error. However, the
given excerpt does not tell, where this is located.
(Unfortunately I will not be able to dig deeper myself soon.)
Original comment by mtku...@googlemail.com
on 15 Sep 2010 at 2:59
Unfortunately, I could not reproduce the problem by checking out and building.
Please, have a look @oryx-editor-trunk\build\editor\oryx.debug.js
and looks at the specific lines mentioned in the error output.
Nevertheless, I have currently no clean system, so I will check this tommorow
on a clean system.
Original comment by philipp....@student.hpi.uni-potsdam.de
on 16 Sep 2010 at 6:57
I went through the same issue.
Check the oryx.debug.js, there are specific characters which cannot be
identified by both ant and YUI codes.
I didn't have time to dig deep enough, so I deleted those chars. Then the build
job went fine.
Original comment by hufei...@gmail.com
on 25 Oct 2010 at 7:17
yeah, i meet the same problem. when i use yuicompressor.jar to compress the
oryx.debug.js, it gives 256 syntax errors and the build fail.
Somebody for help? Thanks
Original comment by Hongchao...@gmail.com
on 10 Mar 2011 at 7:18
[deleted comment]
i found that we should tell the yuicompressor to use utf-8 explicitly.
modify the editor\build.xml line around line 118 from
<java dir="${build}" jar="${root}/lib/yuicompressor-2.4.2.jar" fork="true"
failonerror="true" output='${compress.temp}'>
<arg file='${build}/oryx.debug.js' />
</java>
to
<java dir="${build}" jar="${root}/lib/yuicompressor-2.4.2.jar" fork="true"
failonerror="true" output='${compress.temp}'>
<arg line='--charset utf-8' /> #add this line!
<arg file='${build}/oryx.debug.js' />
</java>
will just work fine.
Original comment by Hongchao...@gmail.com
on 10 Mar 2011 at 8:03
This issue was closed by revision r3934.
Original comment by philipp....@student.hpi.uni-potsdam.de
on 10 Jun 2011 at 11:15
Original issue reported on code.google.com by
weiwells...@sun.com
on 16 Dec 2009 at 5:17