1 | /******************************************************************************* |
---|
2 | * ProMoT |
---|
3 | * --------------------------------------------------------------------------- |
---|
4 | * Copyright (c) 1997-2011 ProMoT Development Team |
---|
5 | * Max Planck Institute Magdeburg, Germany |
---|
6 | * http://www.mpi-magdeburg.mpg.de/projects/promot |
---|
7 | * |
---|
8 | * This is free software; you can redistribute it and/or modify it |
---|
9 | * under the terms of the GNU General Public License as published |
---|
10 | * by the Free Software Foundation; either version 2 of the License, or |
---|
11 | * any later version. |
---|
12 | * |
---|
13 | * THIS SOFTWARE IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, |
---|
14 | * BUT WITHOUT ANY WARRANTY; WITHOUT EVEN THE WARRANTY OF |
---|
15 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. |
---|
16 | * IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE |
---|
17 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
---|
18 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
---|
19 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
---|
20 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
---|
21 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
---|
22 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
---|
23 | * SUCH DAMAGE. |
---|
24 | * |
---|
25 | * You should have received a copy of the GNU General Public License |
---|
26 | * along with this library; if not, write to the Free Software Foundation, |
---|
27 | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
28 | * |
---|
29 | * --------------------------------------------------------------------------- |
---|
30 | * $Id$ |
---|
31 | ******************************************************************************/ |
---|
32 | |
---|
33 | SM 2010-08-17 |
---|
34 | * Problems using the file chooser dialog |
---|
35 | |
---|
36 | When the file chooser is used, e.g. for export the layout in the |
---|
37 | Visual Explorer, sometimes an exception is thrown. |
---|
38 | |
---|
39 | Workaround: |
---|
40 | Try to open the dialog again. It should work the second or third time. |
---|
41 | |
---|
42 | KS 2008-08-07 |
---|
43 | * BUG in disposing the RunnerMessage |
---|
44 | |
---|
45 | The former Cancel button is removed from the dialog but one can still terminate the action thread hardly by |
---|
46 | clicking on the [X] of the Dialog, this may cause an inconsistent state, |
---|
47 | because the communication with the server via Corba can be interrupted at different stages. |
---|
48 | |
---|
49 | |
---|
50 | SM 2008-06-20 |
---|
51 | * BUG when deleting many network elements in the Visual Editor |
---|
52 | |
---|
53 | When many network elements in the Visual Editor are selected and |
---|
54 | deleted, causing that not all network elements may disappear. Some of |
---|
55 | them remain visible in the editor. Further interacting with these |
---|
56 | 'ghost'-elements causes overall instability of ProMoT. Current |
---|
57 | loaded models can not be saved any more. |
---|
58 | |
---|
59 | Workaround: |
---|
60 | Do not click on or interact with any of the remaining network elements |
---|
61 | in the Visual Editor. Wait until no RELOAD appears in the status bar of the editor |
---|
62 | and choose 'Model'->'Refresh' in the menu of the editor to refresh the modules |
---|
63 | representation and checking. |
---|
64 | |
---|
65 | KS 2008-08-07 |
---|
66 | * Problems in updating the ProMoT Browser tree and deleting a set of PromotTreeNodes |
---|
67 | |
---|
68 | If a set of PromotTreeNodes is selected and deleted in the ProMoT Browser tree |
---|
69 | the deletion throws an Exception and undo is not possible. |
---|
70 | This is also described in ticket #123 (delete of set of PromotTreeNodes) |
---|
71 | |
---|
72 | Furthermore, sometimes the tree is not updated after adding, loading or deleting of nodes |
---|
73 | The refresh action should be used in case of nodes which are missed or won't disappear. |
---|
74 | |
---|
75 | SM 2008-10-02 |
---|
76 | * Bug when exporting the HTML documentation of a model with option 'with TeX Formula' |
---|
77 | |
---|
78 | When using the option 'with TeX Formula' in the export dialog problems can occur |
---|
79 | regarding the paths of the png images. In this cases, the TeX formula (represented |
---|
80 | by the png image) is not displayed in the browser. |
---|
81 | |
---|
82 | Workaround: |
---|
83 | Do not use this option. The values then are printed as standard, non-formated text. |
---|