Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - novikovigor

Pages: [1] 2 3 4
1
General Board / Re: Table t_xref and SVN
« on: April 24, 2014, 09:10:51 pm »
I'm sorry but I have too many questions.

1. Could anyone tell me what is lifecycle of data which is stored in t_xref?
I removed my EA project then created a new one from SVN. How was t_xref filled (I mean info about previous transformations) if data is not stored in SVN?

2. Several rows were removed from t_xref. I don't know when it happens. So when I transform model A into B the second time, duplicate B-objects are created instead of merging with old B-objects. Why are rows removed from t_xref and how can i follow it and prevent?

2
General Board / Re: Table t_xref and SVN
« on: April 24, 2014, 08:24:38 pm »
Thanks.
Imagine that I transform model A into B and then flush B to SVN. Then another user gets model B and transforms A into B. Will his transformation be executed properly?
I guess it won't because this user's EA doesn't store info about previous transformation.

3
General Board / Re: Table t_xref and SVN
« on: April 24, 2014, 07:23:19 pm »
In particular i'm interested in data with type=Transformation

4
General Board / Table t_xref and SVN
« on: April 24, 2014, 07:20:52 pm »
Hello!
Is data from t_xref stored in SVN?
I can't find any xml files where EA stores data from table t_xref.

5
General Board / Re: Updating of alias during transformation
« on: April 17, 2014, 10:48:46 pm »
Thanks, but i'd already included "alias" in TRANSFORM_CURRENT before I posted previous message and it didn't help.
In the intermediary file I see alias="alias2", but transformed object has alias="alias1".

6
General Board / Re: Updating of alias during transformation
« on: April 17, 2014, 08:01:43 pm »
In other words...
When transformed object is not exists next code works properly and alias (in new transformed object) is set:
Code: [Select]
Table {  
%TRANSFORM_REFERENCE("Table")%
%TRANSFORM_CURRENT("language", "stereotype")%
alias = "alias1"

But after the first transformation (when I run the 2nd, 3rd etc transformation) I want to update my alias:
Code: [Select]
Table {  
%TRANSFORM_REFERENCE("Table")%
%TRANSFORM_CURRENT("language", "stereotype")%
alias = "alias2"
But my alias is not updated.

7
General Board / Updating of alias during transformation
« on: April 17, 2014, 07:39:23 pm »
Hello!
Code: [Select]
Table {  
%TRANSFORM_REFERENCE("Table")%
%TRANSFORM_CURRENT("language", "stereotype")%
%if condition%
alias = "alias1"
%else%
alias = "alias2"
%endIf%
When I transform model first time condition is true and transformed object has alias is "alias1".
When I transform model second time condition is false but alias in transformed object is not updated.
How to make alias updated when transformed object already exists?

8
General Board / Re: EA works slowly
« on: January 18, 2014, 05:34:04 pm »
Thanks to everyone!
But I have to use huge diagrams, because they are result of transformation of small diagrams, where objects and connectors are splitted. And it is normal for our business that they are huge, but my problem still exists.
So I have to spend a lot of time to "prettify" new diagrams after transformation, because EA works very slowly, especially in cases when there are a lot of connectors (objects' influence is not so strong).

Thanks again!
Sorry for my English.

9
General Board / EA works slowly
« on: January 18, 2014, 12:32:36 am »
Hello!
My EA is very slow when I'm working with huge diagrams. I've changed renderer to basic, but it didn't help me.
Is there any way to make EA faster?

This is my system:
W7 x64
i3 2x2,93
8GB RAM

10
General Board / Re: Iteration over array
« on: January 17, 2014, 04:21:27 pm »
Thank you, Aaron B!

11
General Board / Iteration over array
« on: January 17, 2014, 03:58:36 am »
Hello!
I'm working with transformation script.
Is there the way to split string value to array and then iterate over this array?

12
General Board / Pass quotes in transformation
« on: December 17, 2013, 01:15:32 am »
Hello!
How can I pass quotes in transformation?

If I write next code
Code: [Select]
Tag {
    name = "Property"
    value = %qt%%attTag:"Property"%%qt%
}
exception will be thrown in cases when %attTag:"Property"% contains quotes (").

13
General Board / Re: Get attrTag notes within transformation script
« on: November 21, 2013, 05:49:17 pm »
Thank you, Simon.

14
General Board / Get attrTag notes within transformation script
« on: November 20, 2013, 07:07:02 pm »
Hello everybody!
I can get attrTag value within transformation script next way:
Code: [Select]
%attTag:"MyTag"%How can I get attrTag notes?

I need to pass to the transformed model all the tags with name "MyTag" with its notes.

15
General Board / Re: Transformation. Condition in list construction
« on: October 14, 2013, 01:44:53 pm »
Thanks!

Pages: [1] 2 3 4