| Forum: Buckminster |
|---|
| Topic: Errors when I import from SVN |
|---|
| Errors when I import from SVN [message #877232] |
Sat, 26 May 2012 02:43 |
chen xueqian Messages: 1 Registered: May 2012 |
Junior Member |
|
|
Hello Guys,
I put the Idempiere ERP project on my SVN server ,but when I tried to import the project from SVN I had errors.Any ideas what I miss?
Thanks in advance!
The Attachments are error messages and my rmap.
cxq:cxq@addev1:81 is my SVN user,password,server and port.
|
|
|
| Forum: CDT |
|---|
| Topic: Polymorphic functions are not recognized by indexer |
|---|
| Re: Polymorphic functions are not recognized by indexer [message #877216 is a reply to message #877050] |
Sat, 26 May 2012 01:31 |
serafim papapanagiotou Messages: 3 Registered: May 2012 |
Junior Member |
|
|
All source navigators gives you the option to select which one you want to call. They don't really take you to Derived class foo() function but a prompt box is opening and they are asking you ...Derived:foo or Base:foo ?
Since this is quite basic (at least I have seen it in many IDEs) I am wondering whether this is a configuration issue in eclipse for C++
|
|
|
|
| Forum: Newcomers |
|---|
| Topic: Console log output |
|---|
|
| Topic: Is there a shortcut in eclipse to display the current control flow? |
|---|
|
| Forum: Eclipse Examples |
|---|
| Topic: SVN(install conncetor) |
|---|
|
| Forum: Eclipse 4 |
|---|
| Topic: TextEditor and other goodies |
|---|
| TextEditor and other goodies [message #877287] |
Sat, 26 May 2012 06:37 |
Mauro Condarelli Messages: 274 Registered: September 2009 |
Senior Member |
|
|
Hi,
I'm a bit confused.
If I understand correctly TextEditor (and all other 3.x goodies under
org.eclipse.ui.*) are available only via the "compatibility layer".
Is this true?
I need a reasonably complete TextEditor (including, at least, Syntax
Highlight, Annotations and, possibly, hovers) does such a thing exist in
"native" e4?
Is there any plan to provide it in a reasonably near future?
Or should I stick to e3.x?
Thanks for any comment
Mauro
|
|
|
| Forum: Remus Information Management |
|---|
| Topic: Timestamp on unit header |
|---|
|
| Topic: Change font size and add new encoding [SOLVED] |
|---|
|
| Forum: scout |
|---|
| Topic: Scout and web-based GUIs |
|---|
| Re: Scout and web-based GUIs [message #877290 is a reply to message #877126] |
Sat, 26 May 2012 06:46 |
Ivan Motsch Messages: 57 Registered: March 2010 |
Member |
|
|
A scout application consists of models for form, field, desktop, view, etc, including gui/business logic and glue code.
This model does not contain any swt, swing, ajax etc. code.
By adding the scout gui plugins (swt/rcp, swing, ajax,rap) this application becomes a RCP, AJAX, RAP application.
In short. The scout way of creating applications is by not creating a hard-wired swt,swing or ajax application in the first place.
Therefore for example a migration from an existing scout "Swing" application to a scout "Ajax" application is a zero step. Just changing the involved gui plugins.
This all describes the front-end part.
The back-end part is similar. It uses the equinox server side as the core for services (osgi), integration, jax-ws and j2ee (bridge servlet).
|
|
|
| Forum: OCL |
|---|
| Topic: OCL as an "object reference graph" |
|---|
|
| Forum: EMF |
|---|
| Topic: NPE in EcoreSchemaBuilder transformDefaultValue |
|---|
| Re: NPE in EcoreSchemaBuilder transformDefaultValue [message #877242 is a reply to message #877149] |
Sat, 26 May 2012 03:19 |
Ed Merks Messages: 22767 Registered: July 2009 |
Senior Member |
|
|
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Alain,<br>
<br>
Comments below.<br>
<br>
On 26/05/2012 2:42 AM, Alain Picard wrote:
<blockquote cite="mid:jpp8tg$pns$1@xxxxxxxxe.org" type="cite">Hi,
<br>
<br>
I am getting an NPE in EcoreSchemaBuilder.transformDefaultValue.
<br>
<br>
In debugging mode I traced the issue to a structural feature of
type EBoolean with a default value of "true".
<br>
<br>
The line:
<br>
XSDSimpleTypeDefinition primitiveTypeDefinition =
xsdSimpleTypeDefinition.getPrimitiveTypeDefinition();
<br>
<br>
returns null for primitiveTypeDefinition for my
xsdSimpleTypeDefinition representing my Boolean EDataType.
<br>
</blockquote>
It sounds like this. <br>
<blockquote><a
href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=377376">https://bugs.eclipse.org/bugs/show_bug.cgi?id=377376</a><br>
</blockquote>
The fix for that was committed a few weeks ago. You should be able
to find it in the Juno RC1 repo.<br>
<blockquote cite="mid:jpp8tg$pns$1@xxxxxxxxe.org" type="cite">
<br>
I have looked a bit at the code but I'm quite clueless as to where
to start investigating here.
<br>
<br>
I did notice that when this XSDSimpleTypeDefinition is being built
in buildAttributeUse, that the namespace is reporting null.
<br>
<br>
Can anyone point me in some direction to investigate this issue.
This is my only default value so I'll take it out for now at least
to generate my xsd, but this is weird and a pain.
<br>
<br>
BTW, I have had other cases of NPE in the same method that are
normally caused by empty string default value literal that can
appear in the ecore model if you inadvertently edit the default
field and you don't remove the attribute manually.
<br>
</blockquote>
If you find there are other problems after the above fix, please
report them as soon as possible so I can make any other fixes in
time for Juno!<br>
<blockquote cite="mid:jpp8tg$pns$1@xxxxxxxxe.org" type="cite">
<br>
Cheers,
<br>
Alain
<br>
</blockquote>
</body>
</html>
|
|
|
| Re: NPE in EcoreSchemaBuilder transformDefaultValue [message #877303 is a reply to message #877242] |
Sat, 26 May 2012 07:36 |
Alain Picard Messages: 146 Registered: July 2009 |
Senior Member |
|
|
On 5/26/2012 3:19 AM, Ed Merks wrote:
> Alain,
>
> Comments below.
>
> On 26/05/2012 2:42 AM, Alain Picard wrote:
>> Hi,
>>
>> I am getting an NPE in EcoreSchemaBuilder.transformDefaultValue.
>>
>> In debugging mode I traced the issue to a structural feature of type
>> EBoolean with a default value of "true".
>>
>> The line:
>> XSDSimpleTypeDefinition primitiveTypeDefinition =
>> xsdSimpleTypeDefinition.getPrimitiveTypeDefinition();
>>
>> returns null for primitiveTypeDefinition for my
>> xsdSimpleTypeDefinition representing my Boolean EDataType.
> It sounds like this.
>
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=377376
>
> The fix for that was committed a few weeks ago. You should be able to
> find it in the Juno RC1 repo.
I'll test that and let you know but it is quite possibly the same thing.
>>
>> I have looked a bit at the code but I'm quite clueless as to where to
>> start investigating here.
>>
>> I did notice that when this XSDSimpleTypeDefinition is being built in
>> buildAttributeUse, that the namespace is reporting null.
>>
>> Can anyone point me in some direction to investigate this issue. This
>> is my only default value so I'll take it out for now at least to
>> generate my xsd, but this is weird and a pain.
>>
>> BTW, I have had other cases of NPE in the same method that are
>> normally caused by empty string default value literal that can appear
>> in the ecore model if you inadvertently edit the default field and you
>> don't remove the attribute manually.
> If you find there are other problems after the above fix, please report
> them as soon as possible so I can make any other fixes in time for Juno!
The other issue is repeatable and more due to the fact that the EMF
editor, when you remove an existing value for a field will set the field
as an empty string instead of un-setting the field, thus resulting in a
default of empty which is not null.
>>
>> Cheers,
>> Alain
|
|
|
| Forum: ATL |
|---|
| Topic: API ATL Analyser |
|---|
API ATL Analyser [message #877310] |
Sat, 26 May 2012 08:02 |
Teles Sales Messages: 2 Registered: May 2012 |
Junior Member |
|
|
|
Hello I am starting a project using QVT, but can not find enough material for research, more specifically in studies of the impact of transformation of transformations between models, and I know that there is an API for analyzing changes ATL, I wonder if you know where find a repository with API's comparison of impacts.
|
|
|
| Forum: QVT-OML |
|---|
| Topic: QVT analyser |
|---|
| QVT analyser [message #877317] |
Sat, 26 May 2012 08:30 |
Teles Sales Messages: 2 Registered: May 2012 |
Junior Member |
|
|
|
Hello I am starting a project using QVT, but can not find enough material for research, more specifically in studies of the impact of transformation of transformations between models, and I know that there is an API for analyzing changes QVT, I wonder if you know where find a repository with API's comparison of impacts.
|
|
|
| Forum: TMF (Xtext) |
|---|
| Topic: how to enable backtracking |
|---|
| Re: how to enable backtracking [message #877284 is a reply to message #876414] |
Sat, 26 May 2012 06:35 |
dav dav Messages: 5 Registered: May 2012 |
Junior Member |
|
|
Hi,
Actually yes , it is. Clearly I'm missing something obvious, but I'm still not very skilled with xtext. Can you point me where I can find more info on this, or tell me whats wrong ?
Thanks,
Dav
|
|
|
|
| Topic: Ecore Modell from extisting Grammar |
|---|
|
| Forum: EGit |
|---|
| Topic: what eclipse files to add to repo? |
|---|
| Re: what eclipse files to add to repo? [message #877306 is a reply to message #877127] |
Sat, 26 May 2012 07:47 |
R Shapiro Messages: 184 Registered: June 2011 |
Senior Member |
|
|
To share project structure in a reasonable way you need the Eclipse meta-data files. For Java/Android, C++ and Python that would include at least .project, .buildpath, .cproject, .pydevdevproject, and .springBeans (if you're using Spring). Also files in the .externalToolBuilders directory, if you have any of those. I'm sure there are others I haven't run into yet.
Almost always it's also a good idea to share files in project .settings directories (you can handle user-specific settings in the workspace preferences). Similarly .launch files for Eclipse launchers.
It's always a good idea to share .gitignore in my opinion, whether or not you're working in Eclipse. You don't need these to import a project but it makes it far less likely that someone will accidentally add other files that shouldn't be under version control.
None of these are site- or platform-specific as far as I know. In general the site- and platform-specific aspects of Eclipse are handled at the workspace level, not the .project level. Similarly things like user libraries, classpath variables, string substitutions etc -- those are all workspace settings, not project settings. Workspace contents should never be under version control. This is yet another reason to keep workspace directories completely separate from project directories.
|
|
|
| Topic: Egit unable to clone shared repo |
|---|
| Re: Egit unable to clone shared repo [message #877323 is a reply to message #875735] |
Sat, 26 May 2012 08:52 |
Steve Luo Messages: 3 Registered: April 2012 |
Junior Member |
|
|
I'm having the same problem. Any update for this issue?
I'm using JEE with egit 1.3.0.201202151440-r and no matter http.sslverify is set or not, when clone from https, below exception raised:
Cannot list the available branches.
Reason:
Exception caught during execution of ls-remote command
|
|
|
Powered by
FUDForum. Page generated in 0.05652 seconds