iceman_k
1st February 2007 22:17 UTC
EclipseNSIS 0.9.5 and EclipseNSIS InstallOptions Editor 0.9.4 released
EclipseNSIS 0.9.5 and EclipseNSIS InstallOptions Editor 0.9.5 are both available for download now.
See the EclipseNSIS home page for details.
Changes:
EclipseNSIS
- Upgraded to Eclipse 3.2 - no longer compatible with Eclipse 3.1.
- Added Export as HTML command.
- Var elements now shown in Outline view.
- Added NSIS Command Wizard for adding NSIS commands to script.
- Added drag & drop support to NSIS Script Wizard and EclipseNSIS Editor.
- Added support for REG_BIN and REG_EXPAND_SZ in NSIS Script Wizard.
- Added support for Library installs in NSIS Script Wizard.
- NSIS Script Wizard can now save output to filesystem in addition to the workspace.
- Added registry key and registry value browsers to NSIS Script Wizard.
- Added command to insert registry value into NSIS script.
- Added filtering to outline view.
- Added startup plugin to check file associations.
- Bug Fixes
o 1416349
o 1443239
o 1464413
o 1466390
o 1474161
o 1521533
o 1556289
o 1587717
o 1591254
o 1649681
- Feature Requests:
o 1441231
o 1452422
o 1587982
- Other minor bug fixes.
EclipseNSIS InstallOptions Editor
- Upgraded to Eclipse 3.2 - no longer compatible with Eclipse 3.1.
- Added Export as HTML command.
- Added new control editing commands in source editor.
- Control type can now be changed in the design editor.
- Added support for automatic Team checkout in design editor.
- Fixed handling of escaped characters in INI file.
- Added Quickfix support in Source editor.
- Other minor bug fixes.
Notes:
Java 6 is now officially supported. Windows Vista is nominally supported, but I have not tested it on this platform, since I do not have it installed. Support for Windows 98 & ME is deprecated in this version and will be removed in the next version because of stability issues.
As always, I am looking for any and all bugs you may find. These may be entered in the EclipseNSIS project SourceForge
Bug tracker.
Feature requests may also be entered.
iceman_k
20th February 2007 16:56 UTC
Is it possible to tune-up bitmap controls a bit? For example shift bitmap icon a bit to the left/right to unhidden digits showing size when dragging borders.
I don't quite understand what you mean by this.
Maybe even display actual bitmap (specified in text label) instead of an icon? But the first thing I would ask is to enable these bitmaps in preview - perhaps it just the matter of copying them along with preview script in temp directory.
Displaying the actual bitmap is not really feasible.
You see, the TEXT property of the bitmap refers to the location of the bitmap on the
target system- so if you are setting its value to a local file name on your system, you are making a mistake. There is no way to know what bitmap is going to be there at the named location on the target system, so showing the "actual" bitmap is not possible.
However, I will implement some sort of visual cue of the size and location of the bitmap/icon controls in the preview.
********
21st February 2007 07:59 UTC
Originally posted by iceman_k
I don't quite understand what you mean by this.
I mean that while you drag the border of bitmap control there is an icon inside which does not allow you to see the size of the box clearly.
Displaying the actual bitmap is not really feasible.
You see, the TEXT property of the bitmap refers to the location of the bitmap on the target system- so if you are setting its value to a local file name on your system, you are making a mistake. There is no way to know what bitmap is going to be there at the named location on the target system, so showing the "actual" bitmap is not possible.
However, I will implement some sort of visual cue of the size and location of the bitmap/icon controls in the preview.
Aha.. Is it possible then in EclipseNSIS to parse installoptions .ini and detect the errors like this one - when user specified bitmaps in installoptions, but forgot to include them into .nsi file to extract to $PLUGINSDIR ?
The logic seems to be pretty simple for previewer - the only problem is to remind user to extract the bitmaps to $PLUGINSDIR as needed.
iceman_k
21st February 2007 13:47 UTC
However, how can EclipseNSIS know which .nsi file the .ini file will be used with? The same .ini file can be used with potentially unlimited number of .nsi files.
Also, it is possible that the image file for the bitmap is not part of the installer, e.g., it is already present on the target system or it will be downloaded from some web site, etc. So, it is unlikely that what you are asking will ever happen. However, since (I assume) the developer is actually testing the installer before releasing it, (s)he will see that the bitmap file is missing and correct the problem accordingly.
iceman_k
24th February 2007 12:11 UTC
Originally posted by ********
Indeed, EclipseNSIS can't figure out what .nsi is used to display given .ini, but it could parse .nsi files, detect all included .ini and then walk through bitmaps and throw a warning (suppressable) if the file referenced in bitmap is not included in .nsi or extracted to plugins dir. Is that possible?
You still don't get what I mean.
The TEXT property of the bitmap field in the ini file refers to the
RUNTIME location of the bitmap file. Even if the ini file is parsed, EclipseNSIS is not going to know how the bitmap file is going to get to that runtime location.
A typical usage scenario for InstallOptions is as follows:
File /oname=$PLUGINSDIR\setup.ini setup.ini
File /oname=$PLUGINSDIR\setup.bmp c:\My Local Directory\MyCoolBitmap.bmp
WriteIniStr $PLUGINSDIR\setup.ini "Field 5" Text "$PLUGINSDIR\setup.bmp"
installoptions::show $PLUGINSDIR\setup.ini
Parsing the ini file to look at the bitmap is not going to serve any purpose.
SuperPat
25th February 2007 11:31 UTC
InstallOptionsEx is changing all the time
A little less now than Deguix gave up.
It is very buggy
It is precisely which I get busy with my unofficial version, debug it a maximum.
If a stable and final release can be made, then I will consider it.
I released a stable version in the same time as the beta2 of UltraModernUI.
IOEx was evolving to rapidly for me to consider it.
The only change which I envisages in a future a little more away, is the possibility of creating pages in new dialog. (typically, MessageBox personalized).
Except this, there should not be other modifications (except if somebody on the forum is interested to do it).
********
28th February 2007 23:44 UTC
Even if the ini file is parsed, EclipseNSIS is not going to know how the bitmap file is going to get to that runtime location.
A typical usage scenario for InstallOptions is as follows:
File /oname=$PLUGINSDIR\setup.ini setup.ini
File /oname=$PLUGINSDIR\setup.bmp c:\My Local Directory\MyCoolBitmap.bmp
WriteIniStr $PLUGINSDIR\setup.ini "Field 5" Text "$PLUGINSDIR\setup.bmp"
installoptions::show $PLUGINSDIR\setup.ini
Parsing the ini file to look at the bitmap is not going to serve any purpose.
So, the typical location of .ini is temporary $PLUGINSDIR directory. If there are any relative BITMAP references in .ini files then they should be resolved from $PLUGINDIR directory and it is a kind of check EclipseNSIS could be able to perform on .nsi, isn't it? I understand that it is a very specific case and although it is IMO the most common one I do not insist that a workaround should be there, even if it is possible.
Where can I download 0.9.5.1, BTW?
iceman_k
15th March 2007 21:50 UTC
EclipseNSIS 0.9.5.1 and EclipseNSIS InstallOptions Editor 0.9.5.1 released
EclipseNSIS 0.9.5.1 and EclipseNSIS InstallOptions Editor 0.9.5.1 are both available for download now.
See the EclipseNSIS home page for details.
Changes:
EclipseNSIS
- Added support for new predefines.
- Added support for /P compiler option.
- Fixed outline view filter.
- Added preference for saving file(s) before compilation.
- Added functionality for associating headers (*.nsh) with a script (*.nsi).
EclipseNSIS InstallOptions Editor
- Added support for new FOCUS flag.
- Added visual indication of bitmap and icon locations in preview.
- Improved resize feedback.
- Added preference to automatically save InstallOptions script before preview.
- Bug fixes:
o 1662888
Notes:
Windows 98 & ME are no longer supported. Windows Vista is provisionally supported.
The next version (0.9.6) will be upgraded to work with Eclipse 3.3 and will be timed to release soon after the release of Eclipse 3.3 (around June 2007).
As always, I am looking for any and all bugs you may find. These may be entered in the EclipseNSIS project SourceForge
Bug tracker.
Feature requests may also be entered.
xbarns
17th August 2007 10:39 UTC
well i found two logfiles that i deemed interesting
eclipse\configuration\org.eclipse.update\error_recovery.log
LogEntry.0=START_INSTALL_LOG
LogEntry.1=BUNDLE C:\Programme\eclipse\plugins\org.eclipse.draw2d_3.2.100.v20070529.jar1187335010171.tmp
LogEntry.2=BUNDLE C:\Programme\eclipse\plugins\org.eclipse.gef_3.2.100.v20070620.jar1187335010187.tmp
LogEntry.3=FEATURE C:\Programme\eclipse\features\org.eclipse.gef_3.3.0.v20070620\feature1187335010187.xml
LogEntry.4=ALL_FEATURES_INSTALLED
LogEntry.5=RENAME C:\Programme\eclipse\features\org.eclipse.gef_3.3.0.v20070620\feature1187335010187.xml
LogEntry.6=RENAME C:\Programme\eclipse\plugins\org.eclipse.draw2d_3.2.100.v20070529.jar1187335010171.tmp
LogEntry.7=RENAME C:\Programme\eclipse\plugins\org.eclipse.gef_3.2.100.v20070620.jar1187335010187.tmp
LogEntry.8=END_INSTALL_LOG
eof=eof
eclipse\configuration\org.eclipse.update\install.log
!CONFIGURATION 1187334412890 Fri Aug 17 09:06:52 CEST 2007
!ACTIVITY 1187334428609 Aug 17, 2007 09:07:08.609 file:/C:/Programme/eclipse/ site-install success
!CONFIGURATION 1187334488937 Fri Aug 17 09:08:08 CEST 2007
!ACTIVITY 1187334486390 Aug 17, 2007 09:08:06.390 org.eclipse.rcp.patch1_3.3.0.v20070705_330 feature-install success
!ACTIVITY 1187334488890 Aug 17, 2007 09:08:08.890 org.eclipse.rcp.patch1_3.3.0.v20070705_330 feature-enable success
!CONFIGURATION 1187335010281 Fri Aug 17 09:16:50 CEST 2007
!ACTIVITY 1187334954031 Aug 17, 2007 09:15:54.31 net.sf.eclipsensis_0.9.6 feature-install success
!ACTIVITY 1187335009437 Aug 17, 2007 09:16:49.437 net.sf.eclipsensis_0.9.6 feature-enable success
!ACTIVITY 1187335009437 Aug 17, 2007 09:16:49.437 net.sf.eclipsensis.installoptions_0.9.6 feature-install success
!ACTIVITY 1187335009687 Aug 17, 2007 09:16:49.687 net.sf.eclipsensis.installoptions_0.9.6 feature-enable success
!ACTIVITY 1187335009687 Aug 17, 2007 09:16:49.687 net.sf.eclipsensis.source_0.9.6 feature-install success
!ACTIVITY 1187335009921 Aug 17, 2007 09:16:49.921 net.sf.eclipsensis.source_0.9.6 feature-enable success
!ACTIVITY 1187335009921 Aug 17, 2007 09:16:49.921 net.sf.eclipsensis.utilities_0.9.2 feature-install success
!ACTIVITY 1187335010031 Aug 17, 2007 09:16:50.31 net.sf.eclipsensis.utilities_0.9.2 feature-enable success
!ACTIVITY 1187335010031 Aug 17, 2007 09:16:50.31 org.eclipse.gef_3.3.0.v20070620 feature-install success
!ACTIVITY 1187335010234 Aug 17, 2007 09:16:50.234 org.eclipse.gef_3.3.0.v20070620 feature-enable success
I downloaded all the Items again (Java (5.11 / 6u2), Nsis, Eclipse, EclipseNSIS (0.9.5.1 AND 0.9.6) and tried it again on my machine. I also tried it on a brand new VMWare XP Prof SP1 English. Nothing it shows the same behaviour as described above.
Here is what i do
1. Install Java
2. Install NSIS
3. Install Eclipse
4. Install EclipseNSIS and GEF 3.3.0
am i missing anything ?
:( and all because i only wanted to draw my custom pages instead of editing an ini file :(
Any Ideas ? Anyone ?
- NSIS Discussion
- EclipseNSIS
Archive: EclipseNSIS
iceman_k
17th August 2007 13:51 UTC
Originally posted by xbarns
Ok i went back to Eclipse 3.2.2 and EclipseNSIS 0.9.5.1, everything works again :)
But you will then miss all the enhancements that came with NSIS 2.26 and above.
Sorry I could not be of more help.
But if you could check the Eclipse 3.3 error log using the method I described earlier, I may be able to help you.
xbarns
17th August 2007 14:11 UTC
No, the error log I mean can be accessed by going to Window->Show View->Error Log in the Eclipse 3.3 menu.
Nope sorry, no entries , i still have 3.3 installed.
I opened one of my exisiting files as well as creating a new one which i could compile once but after closing and opening again....
But you will then miss all the enhancements that came with NSIS 2.26 and above.
Yes :( , but right now i just need to be able to compile.
If there is anything else you want me to try just let me know i have downloaded all the stuff and i can set up another installation in minutes.
_ edit _
ok i installed again, no errors in the log you mentioned, only when i click on the "Export the NSIS script as an HTML file" Button i get
eclipse.buildId=I20070625-1500
java.version=1.6.0_02
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=de_DE
Command-line arguments: -os win32 -ws win32 -arch x86
Error
Fri Aug 17 15:39:15 CEST 2007
java.lang.reflect.InvocationTargetException
but i guess that is bnot what you are looking for, is it ?
iceman_k
17th August 2007 22:17 UTC
No that is not what I was looking for.
But since you got that error, perhaps you could double click on it in the Error view to get the detailed stack trace information? Or did Eclipse crash completely?
However, in an attempt to reproduce your problem, I set up an Windows XP SP2 German installation.
I then installed Sun JRE 1.5.0-12, NSIS 2.29, Eclipse 3.3, GEF 3.3 and EclipseNSIS 0.9.6.
I was able successfully open and compile NSIS scripts.
I also tried exporting as HTML without any problems.
Is there something special I need to know about your setup?
Which edition of Windows XP are you using? Is it one of the "N" editions?
xbarns
18th August 2007 11:02 UTC
No that is not what I was looking for.
But since you got that error, perhaps you could double click on it in the Error view to get the detailed stack trace information? Or did Eclipse crash completely?
Hmm too bad, Eclipse did not crash completely, do you want me to send you the stack trace?
Is there something special I need to know about your setup?
Which edition of Windows XP are you using? Is it one of the "N" editions?
Not that i am aware of, what bugs me the most ist that it happens on different machines (my Laptop, my Desktop and a VMWare running on the Desktop).
My Windows Edition are all Volume License Versions and N would be the one without Media Player or IE right ? But they all have IE and MediaPlayer.
iceman_k
18th August 2007 15:09 UTC
Originally posted by xbarns
Hmm too bad, Eclipse did not crash completely, do you want me to send you the stack trace?
Sure, go ahead - it can't hurt.
Originally posted by xbarns
Not that i am aware of, what bugs me the most ist that it happens on different machines (my Laptop, my Desktop and a VMWare running on the Desktop).
My Windows Edition are all Volume License Versions and N would be the one without Media Player or IE right ? But they all have IE and MediaPlayer.
Yes, I also installed a Volume License version of XP SP2 German.
If you are familiar with Java programming, you can debug the plugin. The source code is also available as a plugin.
xbarns
19th August 2007 09:33 UTC
If you are familiar with Java programming, you can debug the plugin. The source code is also available as a plugin.
Well i guess that would be my next problem :( I have no idea about programming. :D
Here is the stack trace.
http://www.bergens.name/Eclipse_Stack_Trace.txt
xbarns
19th August 2007 11:58 UTC
:D :D :D :D :D :D
I think i might have the solution....
Ok there is 2 ways to save your .nsi File in Eclipse:
1. in a project
2. on the filesystem
It works when i save it in a project but not when i save it in the filespace.
Can you confirm this ?
I switched to using projects now...
iceman_k
20th August 2007 14:35 UTC
Thanks, that was the key. I can reproduce the problem. I will investigate and hopefully release an update shortly.
iceman_k
21st August 2007 16:54 UTC
EclipseNSIS 0.9.6.1 and EclipseNSIS InstallOptions Editor 0.9.6.1 released
EclipseNSIS 0.9.6.1 and EclipseNSIS InstallOptions Editor 0.9.6.1 are both available for download now.
See the EclipseNSIS home page for details.
Notes:
This release addresses the problems opening external files.
Changes:
EclipseNSIS
EclipseNSIS InstallOptions Editor
As always, I am looking for any and all bugs you may find. These may be entered in the EclipseNSIS project SourceForge
Bug tracker.
Feature requests may also be entered.
iceman_k
23rd August 2007 20:31 UTC
Originally posted by xbarns
:D :D :D :D :D :D
I think i might have the solution....
Ok there is 2 ways to save your .nsi File in Eclipse:
1. in a project
2. on the filesystem
It works when i save it in a project but not when i save it in the filespace.
Can you confirm this ?
I switched to using projects now...
Did you try the 0.9.6.1 update yet?
It should fix this problem.
xbarns
23rd August 2007 22:03 UTC
Did you try the 0.9.6.1 update yet?
It should fix this problem.
Darn i was busy annoying a customer and forgot all about it.
Just tried it, it works fine, thanks for the effort. :up:
iceman_k
29th August 2007 15:23 UTC
Originally posted by ********
Will there be an all-in-one update site distribution for 0.9.6? Downloads ratio of 1/8 for version 0.9.5.1 is good enough to consider experiment successful including the fact the package released two weeks later after a main release.
I would appreciate the option to download all three eslipsensis arts and install them at once by pointing from within an eclipse rather than messing with unzip and eclipse folders.
0.9.6.1 is now
available as an archived site.
TobbeSweden
11th November 2007 17:19 UTC
I can't get EclipseNSIS working. I first tried to install it using Eclipse's update manager. That didn't work. I then tried doing it the manual way. That didn't work either. I didn't get any error messages or anything when installing it.
I can see the EclipseNSIS options in the Preferences dialog and there is an NSIS Update Wizard entry in the Help menu. But There isn't a EclipseNSIS menu, and there isn't an nsis perspective and there is no nsis project wizard.
I'm using Eclipse SDK Version: 3.3.1.1 Build id: M20071023-1652 on Windows XP SP2 Swedish with JavaRE 1.6.0_03
What can I do to get it working?
iceman_k
12th November 2007 00:26 UTC
Originally posted by TobbeSweden
I can't get EclipseNSIS working. I first tried to install it using Eclipse's update manager. That didn't work. I then tried doing it the manual way. That didn't work either. I didn't get any error messages or anything when installing it.
No error messages is good.
That means it worked.
Originally posted by TobbeSweden
I can see the EclipseNSIS options in the Preferences dialog and there is an NSIS Update Wizard entry in the Help menu. But There isn't a EclipseNSIS menu, and there isn't an nsis perspective and there is no nsis project wizard.
You are looking for things that don't exist. There is no NSIS perspective nor is there any such thing as an NSIS project.
What you will find, however, is an NSIS Script Wizard which you can use to create new NSIS scripts.
Alternatively, you can open an existing NSIS script using the File->Open menu item.
If you have an NSIS file in an existing Eclipse project, you should be able to double click on it to open it.
The EclipseNSIS menu will show up once an NSIS script has been opened in the NSIS editor.
Originally posted by TobbeSweden
I'm using Eclipse SDK Version: 3.3.1.1 Build id: M20071023-1652 on Windows XP SP2 Swedish with JavaRE 1.6.0_03
What can I do to get it working?
It appears that everything is actually installed correctly. Just open an NSIS script and see if you can edit and compile it propertly.
TobbeSweden
12th November 2007 16:08 UTC
Wow! Don't I feel stupid? :p
One thing though. When I get a compilation error and click on it in the console a new copy of the file with the error in it is opened, even if it's already opened in Eclipse. I think it would be better if it would just jump to the line with the error in the already opened file.
Other than that, great work, and thanks for your help :)
iceman_k
12th November 2007 16:41 UTC
Hmmm... it should jump to the line in the existing editor.
Can you provide details of the file, e.g., is it an external file or a internal file (i.e., part of a project).
How did you open it? Is it possible to attach the file to your reply so that I can test with it?
TobbeSweden
12th November 2007 20:10 UTC
I opened the file by dragging it from explorer and dropping it in Eclipse. This is the file: (The error is on line 10)
!include MUI.nsh
Name "Test"
OutFile "TestMUI.exe"
ShowInstDetails show
ShowUninstDetails show
InstallDir "$PROGRAMFILES\Test"
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE "${NSISDIR}\COPYING_" ; Error on this line
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_WELCOME
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_UNPAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
Section "Main Application" sec01
SetOutPath $INSTDIR
File /r '${NSISDIR}\Stubs'
WriteUninstaller "$INSTDIR\uninstal.exe"
SectionEnd
Section UnInstall
RMDir /r $INSTDIR
SectionEnd
Talking about projects... How do I create an installer project?
iceman_k
12th November 2007 20:33 UTC
OK, thanks. I can reproduce it. I will investigate.
Also, there is no such thing as an "Installer Project".
At least, not that I know of.
You can add your nsi file to any Eclipse project.
If you don't have an Eclipse project, you can create a new Project and set its location to be that of your nsi file.
TobbeSweden
12th November 2007 21:39 UTC
there is no such thing as an "Installer Project"
Yeah, that's why I got confused... When I'm going to write something in Java I choose "File->New->Project->Java Project". When I'm going to write something in C++ I go "File->New->Project->C++ Project". So naturally I went looking for a "Installer Project" or "NSIS Project" but couldn't find anything... I found a "General Project", guess I can use that...
pospec
15th November 2007 12:54 UTC
EclipseNSIS is very nice, but I had problems with Compile / Test / Compile & Test buttons. I commited my problem with Test button into bugtracker (ID 1830306).
Now my Compile & Test button refuses to launch installer after compiling. I didn't change EclipseNSIS Preferences. It is a pitty, that was best feature at all ;-)
EDIT: I've restarted my computer (after 4 days). It's fuzzy - both "bugs" sometimes work and sometimes don't.
iceman_k
15th November 2007 14:18 UTC
Originally posted by pospec
EclipseNSIS is very nice, but I had problems with Compile / Test / Compile & Test buttons. I commited my problem with Test button into bugtracker (ID 1830306).
Now my Compile & Test button refuses to launch installer after compiling. I didn't change EclipseNSIS Preferences. It is a pitty, that was best feature at all ;-)
EDIT: I've restarted my computer (after 4 days). It's fuzzy - both "bugs" sometimes work and sometimes don't.
I have not been able to reproduce this problem- in fact, you are the first person to experience this issue.
I will need more information from you:
Windows OS version
Eclipse version
NSIS version
EclipseNSIS version
Does this happen with any NSIS script or just one particular one? Would it be possible to attach a sample script to the bug report?
pospec
16th November 2007 08:17 UTC
I have experienced it day or two after installation, now I can't reproduce it too. If it occurs again, I'll post a message here. Thanks anyway
danielkza
16th November 2007 16:34 UTC
Hi,first of all thanks for all the work in EclipseNSIS,it is being very helpful, specially because I'm used to Eclipse,so thanks again.
I used Eclipse with NSIS this afternoon, creating an InstallOptions page with the editor.I finished it,tested,and it was ok.Now when I try to open it,create a new InstallOptions page, or even open the InstallOptions editor,it throws me an error,and goes to the source editor.I also can't preview the file.
I attached the stack trace so you can see what's the problem
Thanks again.
EDIT: Now it's a different error.I edited the attachment with it to.
iceman_k
16th November 2007 18:41 UTC
I need the original stack trace. The second stack trace no longer shows the actual cause of the error- it is only being thrown because the class cannot be loaded.
Close eclipse, restart it and then try to open the IO script and capture the stack trace.
Also, provide the following info:
Windows OS version
Eclipse version
NSIS version
EclipseNSIS version
JRE version
galevsky
19th November 2007 10:12 UTC
It is not possible to read the user manual on eclipse (seems to be html instead of xhtml), so:
org.xml.sax.SAXParseException: The element type "br" must be terminated by the matching end-tag "</br>".
at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(Unknown Source)
at org.eclipse.help.internal.dynamic.DocumentReader.read(DocumentReader.java:56)
at org.eclipse.help.internal.dynamic.XMLProcessor.process(XMLProcessor.java:49)
at org.eclipse.help.internal.xhtml.DynamicXHTMLProcessor.process(DynamicXHTMLProcessor.java:66)
at org.eclipse.help.internal.webapp.servlet.DynamicXHTMLFilter$1.close(DynamicXHTMLFilter.java:79)
at java.io.FilterOutputStream.close(Unknown Source)
at org.eclipse.help.internal.webapp.servlet.FilterHTMLHeadAndBodyOutputStream.close(FilterHTMLHeadAndBodyOutputStream.java:290)
at org.eclipse.help.internal.webapp.servlet.EclipseConnector.transfer(EclipseConnector.java:162)
at org.eclipse.help.internal.webapp.servlet.ContentServlet.doGet(ContentServlet.java:42)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:596)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at org.eclipse.equinox.http.registry.internal.ServletManager$ServletWrapper.service(ServletManager.java:180)
at org.eclipse.equinox.http.servlet.internal.ServletRegistration.handleRequest(ServletRegistration.java:90)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:111)
at org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:67)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at org.eclipse.equinox.http.jetty.internal.HttpServerManager$InternalHttpServiceServlet.service(HttpServerManager.java:288)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at org.mortbay.jetty.servlet.ServletHandler.dispatch(ServletHandler.java:677)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1530)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1482)
at org.mortbay.http.HttpServer.service(HttpServer.java:909)
at org.mortbay.http.HttpConnection.service(HttpConnection.java:820)
at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986)
at org.mortbay.http.HttpConnection.handle(HttpConnection.java:837)
at org.mortbay.http.SocketListener.handleConnection(SocketListener.java:245)
at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
What can I do ? Anyone can read it ?
Gal'
galevsky
23rd November 2007 17:30 UTC
Am I alone to face this issue ?
EDIT> I am riding an Europa Eclipse v3.3.1.1 targetting a NSIS compiler v2.3.3 .
Gal'
iceman_k
25th November 2007 00:24 UTC
Eclipse help supports pure HTML. It is possible that a different plugin is causing this problem.
I will need exact steps on how to reproduce this.
Also, what other plugins have you installed?
The error you see appears to be caused by an invalid xhtml document, but all the EclipseNSIS help is in plain vanilla html.
iceman_k
2nd January 2008 20:05 UTC
EclipseNSIS 0.9.6.2 and EclipseNSIS InstallOptions Editor 0.9.6.2 released
EclipseNSIS 0.9.6.1 and EclipseNSIS InstallOptions Editor 0.9.6.1 are both available for download now.
See the EclipseNSIS home page for download links and instructions.
Notes:
This is a minor maintenance release.
Changes:
EclipseNSIS
As always, I am looking for any and all bugs you may find. These may be entered in the EclipseNSIS project SourceForge
Bug tracker.
Feature requests may also be entered.
This release is also
available as an archived Eclipse update site.
TobbeSweden
2nd January 2008 21:31 UTC
Did you fix the bug where it would open an extra copy of the file when double clicking an error if the file was opened by drag-and-drop?
iceman_k
2nd January 2008 23:47 UTC
Originally posted by TobbeSweden
Did you fix the bug where it would open an extra copy of the file when double clicking an error if the file was opened by drag-and-drop?
Yes.
iceman_k
2nd January 2008 23:49 UTC
Re: EclipseNSIS 0.9.6.2 and EclipseNSIS InstallOptions Editor 0.9.6.2 released
Originally posted by iceman_k
EclipseNSIS 0.9.6.1 and EclipseNSIS InstallOptions Editor 0.9.6.1 are both available for download now.
Oops. This should obviously read:
EclipseNSIS 0.9.6.
2 and EclipseNSIS InstallOptions Editor 0.9.6.
2 are both available for download now.
TobbeSweden
3rd January 2008 08:24 UTC
Great, thank you!
natalie74
23rd June 2008 09:38 UTC
Hello all,
I also want to use NSIS in my Eclipse IDE. But before i should know wether I can use NSIS with user input(point out to a special directy e.g.) in the installer which i can write into my already existing .XML file.
I have also googeled about NSIS + xml but found several plugins? Do they work together with NSIS-eclipse and which one to use is best?
elllit
23rd June 2008 10:15 UTC
Hi
I don't exactly know what you are asking. If it is equal to:
"I want to do something with an XML file using NSIS and am afraid that EclipseNSIS doesn't support it"
I can say: Eclipse is just being used as IDE, referring to standard makensis.exe when building the installer. That means, feel free to use it. In fact im writing an installer that reads/writes an XML file as well.
The next question was:
"Which is the best XML plug-in for NSIS?"
You are right, there are several ones...
http://nsis.sourceforge.net/NsisXML_plug-in_(by_Wizou)
http://nsis.sourceforge.net/NsisXML-...arser_for_NSIS
http://nsis.sourceforge.net/NsXML_plug-in_(by_rsegal)
I use this one:
http://nsis.sourceforge.net/XML_plug-in
I suggest to take a look at the features and the trade-offs of all of them, then decide which one to try.
Till
iceman_k
29th September 2008 18:46 UTC
EclipseNSIS 0.9.7 and EclipseNSIS InstallOptions Editor 0.9.7 released
EclipseNSIS 0.9.7 and EclipseNSIS InstallOptions Editor 0.9.7 are both available for download now.
See the EclipseNSIS home page for details.
Notes:
- Eclipse 3.3 is not supported in this release. You must upgrade to Eclipse 3.4 (Ganymede).
- The new nsDialogs plugin is still not supported by the InstallOptions editor, however I am open to suggestions on how this can be done.
Changes:
EclipseNSIS
- Upgraded to Eclipse 3.4 - no longer compliant with Eclipse 3.3.
- Added support for new !searchparse command.
- Added support for new /file option for !define command.
- Added support for !else in outline view.
- Wizard now supports MUI2 and Multi-User Install.
- Added preview to NSIS Command Wizard.
- Added support for unicode version of NSIS.
- SourceForge download site is validated in Update preference page.
- Proxy configuration is obtained from Eclipse network settings preferences.
- Feature Requests:
o 1902422
- Bug Fixes
o 1996176
o 2050658
- Other minor bug fixes.
EclipseNSIS InstallOptions Editor
- Upgraded to Eclipse 3.4 - no longer compliant with Eclipse 3.3.
- Minor bug fixes.
As always, I am looking for any and all bugs you may find. These may be entered in the EclipseNSIS project SourceForge
Bug tracker.
Feature requests may also be entered.
This release is also
available as an archived Eclipse update site.
o_owd
19th November 2008 10:51 UTC
Hey,
I have (probably) a stupid question.
Every time i save my script, it unfolds. This is annoying.
I searched in Preferences but i did not find anything.
Can this be unchecked somewhere ?
Thanks,
OJi.
iceman_k
20th November 2008 22:11 UTC
Originally posted by o_owd
Hey,
I have (probably) a stupid question.
Every time i save my script, it unfolds. This is annoying.
I searched in Preferences but i did not find anything.
Can this be unchecked somewhere ?
Thanks,
OJi.
Every time you save the script, the internal model representing the script structure is completely refreshed. When this happens, Eclipse automatically expands all collapsed regions.
This does not happen if an incremental refresh is done of the model.
However, because of the complexity of NSIS scripts, I have not implemented incremental refreshes yet.
If you would like to see the collapsed regions stay as such when you save a script, file a
feature request and I will get around to it when I can.
mattn2
5th April 2009 08:51 UTC
nice to have an eclipse plugin. but one question remains: Why only for windows? I mean, nsi is also available for linux.
iponomarev
22nd March 2010 09:30 UTC
Where did 0.9.7.3 version gone?
Hello,
It is told on EclipseNSIS revision history page (http://eclipsensis.sourceforge.net/revisions.shtml) that 0.9.7.3 version of EclipseNSIS was released on 10/06/2009.
I need this version because EclipseNSIS stopped working when I moved from 32bit Vista to 64bit Windows 7, and they say that support for Windows 7 was added.
However, I can only download 0.9.7.2 from update site and sf.net download pages. Was the update ever released? How can I get it?
Since I did not find any contact information on eclipsensis.sourceforge.net site, I will be grateful if you just suggest me the way to contact EclipseNSIS developers.
Regards,
Ivan.
luca.vagnozzi
27th March 2010 12:38 UTC
Hi,
I'm in the same situation, and AFAIK support for 64bit machine doesnt exists yet. :cry:
- NSIS Discussion
- EclipseNSIS
Archive: EclipseNSIS
pengyou
28th March 2010 15:25 UTC
EclipseNSIS 0.9.7.3 delayed
The CVS outage for the EclipseNSIS project has delayed the release of 0.9.7.3.
This outage should hopefully be resolved this weekend.
Once the CVS server is back online, the release will be built and uploaded to SF.
2010-03-26 13:33:42 UTC by icemank
(from http://sourceforge.net/news/?group_id=116143)
iceman_k
30th March 2010 21:28 UTC
EclipseNSIS 0.9.7.3 and EclipseNSIS InstallOptions Editor 0.9.7.3 are both available for download now.
See the EclipseNSIS home page for details.
Notes:
- Eclipse 3.4 is not supported in this release. You must upgrade to Eclipse 3.5.
- Windows 7 is now supported.
- 64-bit Java VM is still not supported. I will explore supporting this for the next release.
Changes:
EclipseNSIS
- 0.9.7.3 (03/26/2010)
- Upgraded to Java 5.
- Upgraded to Eclipse 3.5 - no longer compliant with Eclipse 3.4.
- Added support for !searchreplace command.
- Added support for registering EXE COM servers in InstallLib macros.
- Added experimental support for Java 7.
- Added experimental support for Windows 7.
- Bug Fixes
o 2526120
o 2818953
o 2845035
o 2858469
- Other minor bug fixes.
EclipseNSIS InstallOptions Editor
- Upgraded to Eclipse 3.5 - no longer compliant with Eclipse 3.4.
- Minor bug fixes.
As always, I am looking for any and all bugs you may find. These may be entered in the EclipseNSIS project SourceForge
Bug tracker.
Feature requests may also be entered.
This release is also
available as an archived Eclipse update site.
iceman_k
28th April 2010 21:27 UTC
EclipseNSIS 0.9.8 and EclipseNSIS InstallOptions Editor 0.9.8 Released
EclipseNSIS 0.9.8 and EclipseNSIS InstallOptions Editor 0.9.8 are both available for download now.
See the EclipseNSIS home page for details.
Notes:
- 64-bit Java VM is now supported. It has been tested with Windows 7 Home Premium x64 and Windows Server 2008 x64.
Changes:
EclipseNSIS
- Added 64-bit support.
- Added filter capability for NSIS Commands view.
- Bug Fixes
o 2813284
o 2943940
- Other minor bug fixes.
EclipseNSIS InstallOptions Editor
- Added 64-bit support.
- Minor bug fixes.
As always, I am looking for any and all bugs you may find. These may be entered in the EclipseNSIS project SourceForge
Bug tracker.
Feature requests may also be entered.
This release is also
available as an archived Eclipse update site.
iceman_k
12th September 2011 15:52 UTC
EclipseNSIS 0.9.8.1 and EclipseNSIS InstallOptions Editor 0.9.8.1 Released
After a long hiatus, EclipseNSIS 0.9.8.1 and EclipseNSIS InstallOptions Editor 0.9.8.1 are both available for download now.
See the EclipseNSIS home page for more information about EclipseNSIS.
Notes:
Any and all bugs you may find may be entered in the EclipseNSIS project SourceForge
Bug tracker.
Feature requests may also be entered. However, please be aware that real life has a nasty habit of intruding into open source (i.e., unpaid) work, hence it may be a while before I get around to making any significant changes to the product.
This release is also
available as an archived Eclipse update site.
USG_IN_WINAMP
11th July 2013 20:34 UTC
Eclipse NSIS- Scripting Wizard Completion Problem
Sir,
I'm using EclipseNsis in Eclipse Juno Kepler[Windows 32 Bit]. I'm not able to complete my Scripting wizard. It displaying unknown Message in Error Dialog and stops in Wizard Completion Dialog last step. kindly give solution as soon as possible.
Plz find attached
T.Slappy
12th July 2013 09:13 UTC
It looks like your environment is not configured correctly.
As NSIS Wizard in Eclipse works fine for me (exactly the same version) we can assume this situation is not caused by NSIS, so you should look for error in your environment, machine or simply in parameters you put into Wizard.
didava
31st July 2013 02:59 UTC
How to install??