-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathq
More file actions
3215 lines (2232 loc) · 118 KB
/
q
File metadata and controls
3215 lines (2232 loc) · 118 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[33mcommit 7c53e87fc9ff8530a96116d605bd81bb4c76f3ed[m[33m ([m[1;36mHEAD[m[33m -> [m[1;32mmaster[m[33m, [m[1;33mtag: [m[1;33m1.2.16[m[33m, [m[1;31morigin/master[m[33m)[m
Author: Giuseppe Voto <giuseppe.voto@ext.efsa.europa.eu>
Date: Thu Mar 20 15:07:15 2025 +0100
Up version to 1.2.16
[33mcommit e9be0d8858bdcb8d152c0967fccb5e09118bf64a[m
Author: Giuseppe Voto <giuseppe.voto@ext.efsa.europa.eu>
Date: Thu Mar 20 15:04:05 2025 +0100
Fixed Bug of Inherited Facets
[33mcommit 8864aee0185ceb0b96a0c614c3e9927608d8ff05[m[33m ([m[1;33mtag: [m[1;33m1.2.15[m[33m)[m
Merge: 72df382 310d78f
Author: lbelmonteEFSA <111969922+lbelmonteEFSA@users.noreply.github.com>
Date: Fri Dec 6 16:53:52 2024 +0100
Merge pull request #16 from gp-tr2024/master
Catalogue Browser v1.2.15 Remove Login with OpenAPI
[33mcommit 310d78fae23a983c26c0803a798af710b1225297[m
Author: PARASKEVAKOS Grigorios <grigorios.paraskevakos@trasys.gr>
Date: Thu Dec 5 21:43:51 2024 +0200
CB Remove menu Login with OpenAPI and logging
[33mcommit b265b9e366690b6de3a18618edd07054bba85837[m
Merge: 72df382 b450ba3
Author: gp-tr2024 <166144983+gp-tr2024@users.noreply.github.com>
Date: Mon May 13 16:12:15 2024 +0300
Merge pull request #1 from gp-tr2024/CB_1.2.14-branch
Update the code to match the release of 1.2.14
[33mcommit b450ba331191cc292f40b7969568bb0b89b6bc91[m
Author: Panagiotis Stampernas <panagiotis.stampernas@ext.efsa.europa.eu>
Date: Mon May 13 13:24:29 2024 +0300
Update the code to match the release of 1.2.14
[33mcommit 72df382ac2bc4808595d16e9e146acbff18b063e[m[33m ([m[1;33mtag: [m[1;33m1.2.14[m[33m)[m
Merge: d522961 8d5961d
Author: Panagiotis Stampernas <97605100+pstampernas-efsa@users.noreply.github.com>
Date: Tue Aug 29 12:40:54 2023 +0300
Merge pull request #12 from pstampernas-efsa/master
July 31st, 2023 changes
[33mcommit 8d5961d4fe92ac204868db501cdfdd0607171e4e[m
Author: Panagiotis Stampernas <97605100+pstampernas-efsa@users.noreply.github.com>
Date: Thu Aug 3 14:53:03 2023 +0300
July 31st, 2023 changes (#2)
[33mcommit d522961c3d73056c01296fbbd9491251fc67f893[m[33m ([m[1;33mtag: [m[1;33m1.2.13[m[33m)[m
Merge: 51eef8c e542280
Author: Panagiotis Stampernas <97605100+pstampernas-efsa@users.noreply.github.com>
Date: Mon Apr 3 15:45:16 2023 +0300
Merge pull request #11 from pstampernas-efsa/master
Added logging to catalogue browser repo (#1)
[33mcommit e5422804af109123c36098f04674a8c74d1bbbe9[m
Author: Panagiotis Stampernas <panagiotis.stampernas@ext.efsa.europa.eu>
Date: Fri Mar 31 18:15:52 2023 +0300
Add logging capabilities
[33mcommit 51eef8c3eab2f8ae7e2ffb2ae05e49a1427562ef[m[33m ([m[1;33mtag: [m[1;33m1.2.12[m[33m)[m
Merge: 7ab3a75 14b5313
Author: Panagiotis Stampernas <97605100+pstampernas-efsa@users.noreply.github.com>
Date: Fri Jan 20 17:04:32 2023 +0200
Merge pull request #10 from stav2345/master
Update to openJDK
[33mcommit 14b5313c5e59cc50d280add72f35429c3351eb5a[m
Merge: 7ab3a75 de6c3b9
Author: stav2345 <105347865+stav2345@users.noreply.github.com>
Date: Tue Jan 17 21:17:36 2023 +0200
Merge pull request #1 from stav2345/openjdk_change
git commit -m "The version in pom.xml has been updated"
[33mcommit de6c3b9fba878e19067eb1b36d94bcacbd09c286[m
Author: PAPAGIANNAKOPOULOU Stavroula <P70759@nrb.be>
Date: Tue Jan 10 15:18:12 2023 +0200
git commit -m "The version in pom.xml has been updated"
[33mcommit 7ab3a755f309b130cc19be5821adcdccfd0da696[m[33m ([m[1;33mtag: [m[1;33m1.2.11[m[33m)[m
Merge: 9f3ea58 9b51047
Author: Dimosthenis Kitsios <97885650+DimosthenisKitsios@users.noreply.github.com>
Date: Mon Apr 11 12:01:23 2022 +0300
Merge pull request #9 from pstampernas-efsa/master
Release 1.2.11
[33mcommit 9b510472e954a8b340c8b3b4264954385bf92e29[m
Author: Dimosthenis Kitsios <Dimosthenis.KITSIOS@trasys.gr>
Date: Tue Apr 5 18:13:11 2022 +0300
Release 1.2.11
[33mcommit 9f3ea58e331097a353ce42419fd3339af624b26e[m
Merge: 6fbfab3 789c89f
Author: Panagiotis Stampernas <97605100+pstampernas-efsa@users.noreply.github.com>
Date: Fri Feb 18 17:02:48 2022 +0200
Merge pull request #8 from pstampernas-efsa/master
Update .classpath
[33mcommit 789c89f1cd6b9410889022da7133706ed4183b79[m
Merge: 38830a2 19e5124
Author: P70628 <Dimosthenis.KITSIOS@trasys.gr>
Date: Tue Feb 15 14:27:21 2022 +0200
Merge branch 'master' of
https://github.com/pstampernas-efsa/catalogue-browser
# Conflicts:
# .classpath
[33mcommit 38830a28cfa5d1abc79a9b0a8f50516e54ea6122[m
Author: P70628 <Dimosthenis.KITSIOS@trasys.gr>
Date: Tue Feb 15 14:20:59 2022 +0200
classpath
[33mcommit 19e51245688518330f632b9e7d5c76eb735e1136[m
Author: Panagiotis Stampernas <panagiotis.stampernas@ext.efsa.europa.eu>
Date: Mon Feb 7 12:53:26 2022 +0200
Update application version
[33mcommit d363c80b0d4dbe2e94b0c34c38b4c05e6f52f7d3[m
Author: Panagiotis Stampernas <panagiotis.stampernas@ext.efsa.europa.eu>
Date: Fri Feb 4 17:47:28 2022 +0200
Change the URL for the utils.zip file to always match the latest
version.
[33mcommit 4272bada53e8ab0bfb9ce286271aec221b57022a[m
Merge: c70d17a 6fbfab3
Author: Panagiotis Stampernas <panagiotis.stampernas@ext.efsa.europa.eu>
Date: Fri Feb 4 16:40:03 2022 +0200
Merge branch 'master' of git@github.com:pstampernas-efsa/catalogue-browser.git
[33mcommit c70d17ae9fcb494a59d1e155b1f5bff1d86d5c0c[m
Author: Panagiotis Stampernas <panagiotis.stampernas@ext.efsa.europa.eu>
Date: Fri Feb 4 16:39:03 2022 +0200
Commit .classpath for building process through Eclipse
[33mcommit 6fbfab339ca13ffbf98ab97dcfd099e0eb0e9cfd[m[33m ([m[1;33mtag: [m[1;33m1.2.10[m[33m)[m
Author: enescva <87376170+enescva@users.noreply.github.com>
Date: Sun Jan 9 21:39:22 2022 +0100
update log4j version 2.17.1
[33mcommit 14659d6bf89bb3e460a66214dae113ba22879c11[m
Author: enescva <87376170+enescva@users.noreply.github.com>
Date: Tue Dec 21 09:58:42 2021 +0100
Fix version
[33mcommit f6edcad3e95dae724bf12a53de91d81bbcd4fa40[m
Author: enescva <87376170+enescva@users.noreply.github.com>
Date: Tue Dec 21 09:36:10 2021 +0100
Fix log4j
[33mcommit fb5cdfce28d09c2714f144ab52660b17a1cab7d5[m[33m ([m[1;33mtag: [m[1;33m1.2.9[m[33m)[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Fri Jun 25 13:00:40 2021 +0200
fixed equinox common version issue
[33mcommit 40e9762a32f7fc27ea9d59413cd3ef999650ff0a[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Wed Jun 9 17:28:51 2021 +0200
last changes before release v.1.2.9
[33mcommit bd6a77977d977b919ca22a9b8d8c25ed3bbb389f[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Mon Apr 26 10:42:22 2021 +0200
updated changelog
[33mcommit bf290adc24f98329f11a4931bf262f230cce9d1e[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Mon Apr 26 10:37:43 2021 +0200
removed useless lib
[33mcommit 53238c5c4a5660c5f3c8f8eb8480ef6181e901f6[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Mon Apr 26 10:32:55 2021 +0200
revert back to download cat when login
[33mcommit 183eff876e585971eeefbc924108131865cfe525[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Mon Apr 26 10:18:03 2021 +0200
fixed bugs
[33mcommit f024a32a3bef88b3f814fc9df5b80a9da991f3a9[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Wed Apr 21 16:51:58 2021 +0200
fixed login with opeanpi as cat manager
[33mcommit 6e33fde0e430dea9a8e1b3bc006f38ed9392531e[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Wed Apr 21 12:12:49 2021 +0200
new poi/xmlbeans versions
[33mcommit ec93666cff79c7f23fd12d3352cf1c68124d3a31[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Wed Apr 21 11:16:38 2021 +0200
fix bug with ict db creation when ict was not installed
[33mcommit 9d4e5a61ff321e336e0389a93eee3c60c14a118e[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Wed Apr 21 10:14:49 2021 +0200
small optimisations to term property
[33mcommit f36ec3591899e6d9c32e2825af226157d718de64[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Wed Apr 21 10:06:36 2021 +0200
fixed bug which allow new lines in term name field
[33mcommit d0798ac545d503045b1a97ab76222c15804160cb[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Thu Mar 25 12:45:38 2021 +0100
fixed issue with terms label not properly set based on sub hierarchies
[33mcommit 154a9b90435d8dc634d62221b56dba6c7a95bd9d[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Thu Feb 18 09:02:15 2021 +0100
updated official ws url for catalogues
[33mcommit d3f1bc3c87b1bc38c2124bbc545e5d9da2680815[m
Author: AlbSha <alban.shahaj@ext.efsa.europa.eu>
Date: Fri Jan 15 09:54:08 2021 +0100
br10 now is printed only when source or source commodities are not
present
[33mcommit 5d60601a551faca3ae941193f5083c1a2aa808df[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Tue Oct 27 18:07:25 2020 +0100
updated readme
[33mcommit 971d2e32b689a08143553ef4ed41853380572a0d[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Tue Oct 27 18:05:55 2020 +0100
updated readme file
[33mcommit b3e0c6eac524c00625101d2c3e32569ed7579be7[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Fri Oct 2 15:54:34 2020 +0200
fixed wrong link to remote folder
[33mcommit 0ce60468c8bfa27feef5b78de84a3105e45a567e[m[33m ([m[1;33mtag: [m[1;33m1.2.8[m[33m)[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Thu Sep 24 10:04:20 2020 +0200
changed font size for br warnings
updated changelog
[33mcommit af3d3f3e6d7afa03fc869434968c3349017873f5[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Wed Sep 23 11:16:11 2020 +0200
updated changelog
[33mcommit 09ba0ec4e876f8e390b0cea55af3042a1b2cf2c6[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Wed Sep 23 11:15:09 2020 +0200
fixed bugs:
- picklist null after update
- param not opening describe
- brengine not turned on in some cases
- term's attribute null from param impl facets
[33mcommit 64a7beef1b37e5304182be1573d61f39771b916f[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Tue Sep 22 11:31:57 2020 +0200
added update br table
[33mcommit c405dc4544322567496522d4cc034740e5868808[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Tue Sep 22 11:28:21 2020 +0200
small changes to br definition
[33mcommit b20e8afe854f652881f1b1c2f33f9895402cb77e[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Tue Sep 22 11:15:18 2020 +0200
typo fixes
[33mcommit 263af571b8d0a4685faf60b21686a2d18246445e[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Thu Sep 17 15:07:58 2020 +0200
updated changelog
[33mcommit 12673f5e2ad6f6eb99271db124c9161c7b51aac6[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Thu Sep 17 14:57:05 2020 +0200
fixed bug where brs where called twice
[33mcommit 8a077d72c05a32e1f60c3abaddc2d5943109b034[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Thu Sep 17 14:37:47 2020 +0200
br08: skipped if term is dismissed
br08: changed message specifying the hierarchy of interest
br22: not printed when high bt warnings are present
br24: now high level
[33mcommit 1191e2aab35759551be885494667a33438f87e71[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.mshome.net>
Date: Thu Aug 27 10:06:05 2020 +0200
changed grid layout property for tern naiming and def tab
[33mcommit 924ba765b49492db7494a43251955f7c9697b72d[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed Jul 29 13:05:16 2020 +0200
added method which calculate the level of detail of the term in the tree
[33mcommit d402785bc86309c213c42e34a68f0792dfefe240[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed Jul 29 10:54:11 2020 +0200
Fixed issue with some BRs
[33mcommit a6ffb72af6647795ad9888bdb65ad9fc627982ef[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Fri Jul 24 17:32:23 2020 +0200
new brs xlsx file
[33mcommit 0f313388d8d8b9e4a50e62a9f8ee2e1ade6dbf36[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Fri Jul 24 17:30:26 2020 +0200
changed br05 and 16 + updated brs xlsx file
[33mcommit 1f6722b93ab96b34f89e1b27997e2ad58c9f929b[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed Jul 15 16:07:10 2020 +0200
aligned dft brs
[33mcommit b96bb4dee364718ece286214d1291cedba9619c0[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed Jul 15 14:53:26 2020 +0200
updated changelog
[33mcommit 7b86f8aadd96f51080628120e888b8a316c44b63[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed Jul 15 13:14:29 2020 +0200
added reinstall ict menu item under tools
[33mcommit fdf0135d16423278c4169d025d837b2aadd6e796[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed Jul 15 09:56:53 2020 +0200
moved multiple screens issue menu item under tools
[33mcommit f59e66a8edfab5d15ddb0f92dc39065a586d2ada[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Tue Jul 14 17:52:05 2020 +0200
updated link to new version of ICT
[33mcommit 9005284204cff6a986153a5f7f4e50bd88d16730[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Tue Jul 14 14:13:36 2020 +0200
changed business rules
added reset view menu item under view
[33mcommit c21eb4360ee9842eec74952f9072e44c97667d7b[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Mon Jul 13 10:29:09 2020 +0200
added settings to gitugnore
[33mcommit b8860a0559e44839de2a9566b52d9240c91f4128[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Mon Jul 13 10:19:41 2020 +0200
updated readme file
[33mcommit d202396667c7042703715317b21b4505f068d149[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Mon Jul 13 10:10:48 2020 +0200
changed business rules
[33mcommit 29ad2ad54600026d578b62e3298f1d198ebf3b11[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed Jun 17 12:07:06 2020 +0200
fixed bug with BR16 raised with forbidden processes having same ordCode
[33mcommit 09bb6388d7a642caf444efafed93eb23858d30fe[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed Jun 17 10:17:28 2020 +0200
fixed term label not updated on tree when new name is provided
[33mcommit 09736d40c4c4ed0e34cda46da8b6b6b5a89b5de6[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Mon Jun 15 14:21:57 2020 +0200
fixed rules (2/5/6/13) raised when sources/source commodities are added
[33mcommit dc9a1c8a7fa6e98269b3dd0437586874bbd2a548[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Mon May 25 14:03:58 2020 +0200
added swt jface to pom
[33mcommit 171c22a2a0e308535fad8595bf362a7155757438[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Mon May 25 11:50:05 2020 +0200
added swt jface to pom, removed unused libs
[33mcommit d391aa6105381776bf894dfba41a8e6090adfe00[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed May 20 16:33:43 2020 +0200
removed print of warning messages
[33mcommit fc76f7710e664253d2d417003e4534c967d918e5[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed May 20 16:32:12 2020 +0200
readme changed
[33mcommit 7bc147fb49fa6e83d267e4d285e337dde2736d77[m
Author: Alban.Shahaj <Alban.Shahaj@nbsimbol242.ad.simbologica1.it>
Date: Wed May 20 15:29:49 2020 +0200
new business rules
new warnings
new readme file
optimization to the memory management
[33mcommit 7e4407402e5dbd7cc05d701ba1af1abe218308f1[m
Author: AlbSha <38532007+AlbSha@users.noreply.github.com>
Date: Thu Mar 5 09:17:29 2020 +0100
Update README.md
[33mcommit 25f31304ee2be17a988bd06ea72d26c605bf164d[m
Author: AlbanShahajEFSA <38532007+AlbanShahajEFSA@users.noreply.github.com>
Date: Fri Nov 8 10:55:20 2019 +0100
Update README.md
[33mcommit 4f8c814111b5060a7706209166ba6074efbc839e[m
Author: AlbanShahajEFSA <38532007+AlbanShahajEFSA@users.noreply.github.com>
Date: Fri Nov 8 10:49:37 2019 +0100
Update README.md
[33mcommit 6f2b0d50f767cb35dc79bd37a0d93b7f693779af[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Mon Oct 21 11:40:58 2019 +0200
efsa logo cenetred in readme
[33mcommit 83fa3a53bd42f5fe824bb57e9b286f455f15a668[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Mon Oct 21 11:28:10 2019 +0200
new readme
[33mcommit c01f320acfee53f810387cd02b40646df3b3dbbb[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Mon Oct 21 10:42:34 2019 +0200
new maven parent project dependency
[33mcommit fe49aca4f7b6453a1790f02057f0466ef0c92794[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Fri Oct 18 17:45:49 2019 +0200
rebuilded all inherited modules and excluded internal dependencies from
licenses,
maven parent module added
[33mcommit b3d2593780ead5bb2bda1be755ff3ac2c8ec4e1d[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Fri Oct 18 17:29:55 2019 +0200
rebuilded all inherited modules and excluded internal dependencies from
licenses,
maven parent module added
[33mcommit 83b3bb684401fe6a7023ee7e2af83da312bd3f0f[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Thu Oct 17 15:12:33 2019 +0200
added third party licenses
[33mcommit 8ba472d5bc41df7d02e58bfc9dad118146ce2055[m[33m ([m[1;33mtag: [m[1;33m1.2.7[m[33m)[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Tue Oct 15 12:28:53 2019 +0200
--- New Features:
+ This version contains mainly bugs fixed
--- Bugs fixed and other improvements:
+ Fixed bug in which was not possible to add facets to specific facet
groups
+ Fixed Catalogue title not shown properly in small screens
+ Fixed business rules warnings not shown properly because of the
presence of delimiters
+ Changed TEXT widget to LINK one in order to allow the links in the
changelog
+ New folder organisation for resources, tests and licenses
+ New source code structure following Maven standard
[33mcommit a6ce0b4343b3b40f15ca60dc938cf9e5cd3e5b99[m
Author: AlbanShahajEFSA <38532007+AlbanShahajEFSA@users.noreply.github.com>
Date: Mon Oct 14 10:51:24 2019 +0200
Update README.md
[33mcommit f8873542aa781da9667172ad34aabe0e733e941c[m
Author: AlbanShahajEFSA <38532007+AlbanShahajEFSA@users.noreply.github.com>
Date: Mon Oct 14 10:50:12 2019 +0200
Update README.md
[33mcommit b9aec447311fd25d5b57c25aea56449ed8f56370[m
Author: AlbanShahajEFSA <38532007+AlbanShahajEFSA@users.noreply.github.com>
Date: Mon Oct 14 10:49:46 2019 +0200
Update README.md
[33mcommit 73be8015f6fc44ee0ddb1ad2bff38e732282d40c[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Mon Oct 14 10:48:17 2019 +0200
readme and eupl license
[33mcommit 2abd5d4dd5fb97d344c3b2b45d58bcaaf0c561e2[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Mon Oct 14 10:45:12 2019 +0200
New european license
[33mcommit bd0276f0a4820ba34a4215fc3c3cda5a530e7e02[m
Author: shahaal <shahaal@LAP-2016-00082.efsa.eu.int>
Date: Thu Oct 10 14:26:48 2019 +0200
new folder structure using maven std, fixed different bugs and new
organisation of the resources, tests and licenses
[33mcommit a8a56c12dbfbb27920fb6fd4aaccaf267a782df0[m
Author: SHAHAJ Alban <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Thu Oct 10 13:58:33 2019 +0200
new folder structure using maven std, fixed different bugs and new organisation of the resources, tests and licenses
[33mcommit 0ab5de5f081705973bca4a393086ebfa6dcd1af7[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Mon Oct 7 11:18:39 2019 +0200
- Fixed bug in which was not possible to add facets on specific facet
groups,
- Improved Catalogue title size for small screens,
- Updated changelog,
- Added link inside changelog
[33mcommit 14a50f8065889839926529384577ebf993bcb7db[m[33m ([m[1;33mtag: [m[1;33m1.2.6[m[33m)[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Thu Sep 5 10:07:11 2019 +0200
last changes before final release
[33mcommit 80617d5ed2fefa03dcb8271f1eb1c26a5b8a49a6[m
Author: shahaal <shahaal@LAP-2016-00082.efsa.eu.int>
Date: Wed Aug 28 16:02:04 2019 +0200
+ updated changelog
+ new catalogue update icon
+ removed tasks for showing tooltip
+ changes to search text cleaning algorithm
+ small changes to final UI
[33mcommit 8a799e69a2d8a2d0a48b4a0b06a77f166fdf8c81[m
Author: shahaal <shahaal@LAP-2016-00082.efsa.eu.int>
Date: Tue Aug 20 16:41:51 2019 +0200
- Moved swt and jface to Maven + all dependencies are moved in maven and
included in the main CB folder
- builded all projects with maven and now new runnable jar file is
available
- search preferences window has been redesigned and now allow to scroll
long list of attributes
- fixed openapi login window which was not refresing the main ui after
first login
- fixed openapi login window which was calling useless classes when
closing the window
[33mcommit 65669dd511a48a021bf64eb0735bcb20b33afe4a[m
Author: shahaal <shahaal@LAP-2016-00082.efsa.eu.int>
Date: Tue Aug 20 09:00:53 2019 +0200
- Modified BR 12, now the warning is not shown if (under F27) is added
an explicit facet which better specify the already present implicit one.
- Term filter group has now 3 components justified along all the
horizontal space.
- Fixed bug on text clean when performing a search of a term.
[33mcommit c6a55bf4f37214d5e778b6a0bdb8e071da409a72[m
Author: SHAHAJ Alban <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Thu Aug 1 12:40:39 2019 +0200
new update 1.2.6
[33mcommit 7d4c7717430416d589139772d986d5f1e829faca[m
Merge: 62531d4 574ffe3
Author: SHAHAJ Alban <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Thu Aug 1 12:34:33 2019 +0200
new update 1.2.6
[33mcommit 62531d4a36b0c016a8b09c2fac8de6a9b943cb28[m
Author: SHAHAJ Alban <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Thu Aug 1 12:04:25 2019 +0200
New update 1.2.6
[33mcommit 574ffe363e78d250cf6350ff4ea89f2f48352380[m
Author: shahaal <shahaal@LAP-2016-00082.efsa.eu.int>
Date: Thu Aug 1 11:41:23 2019 +0200
--- New Features:
+ Recompiled using Maven technology
+ New progress bar while downloading ICT
+ Added new "Account" drop-down button on Main menu
+ Added ability to login using the token provided by the OpenAPI portal
+ Added ability to log out from DCF/OpenAPI
+ Added function for auto importing terms from external files (beta
tester or cat manager)
+ New algorithm for checking the parent hierarchy when using the auto
import terms function
+ Added ability to capture code errors when using the auto import terms
function
+ Added Windows 10 compatibility (internal users)
+ BR 11 now doesn't print the warning message if adding a facet which
is more specific than the already existing implicit one
+ Added warning messages for OpenAPI users (calls per minute/week)
+ Different optimisations and consistency improvements to the UI
+ Performance improvements on applying the BRs in the Describe window
+ Optimisations of the export process while installing the ICT
+ ICT installation procedure redesigned
+ Redesigned main menu
+ Redesigned term information panel
+ Added back/next term action (only beta testers)
+ UI changes to the group components
+ Added facet group id in facet hierarchy
+ Updated jre to Java SE 8u221
+ Redesigned UI for Catalogue label, Filters and New update ToolTip
+ UI locked during first loading operations (it prevent unexpected
closure)
+ Business Rules now are shared between CB and ICT
+ New BR when reconstitution process is added to concentrated or powder
terms
+ The term menu when selected from search result now appear
automatically if term not present in current hierarchy
+ Added ability to see only the term info, without expanding it in the
tree, by right clicking on the search results (useful for huge
catalogues like PARAM)
--- Bugs fixed and other improvements:
+ Fixed bug when ICT files are missing
+ Solved bug which was recreating ICT database even if not using the
MTX catalogue
+ Added links to new ICT version (include auto-update checker)
+ All files related to ICT has been moved into the related folder
+ Solved bug which was showing in the search panel terms not in use
+ New global variable for checking if the ICT is correctly installed
+ Business Rules aligned with the ICT
+ Semaphore levels and warning messages aligned with ICT
+ Fixed "Disconnected" message not appearing when the logout is
performed
+ ICT database automatically updated when new version of MTX is
available
+ Added dump row for 'term' sheet when exporting a catalogue (only for
catalogue managers)
+ The ICT required folders now are created only when the user install
the ICT
+ Solved UI refresh bug when the user perform a logout from DCF
+ Removed useless classes and files from the package
+ Removed unused jar libraries
+ Solved bug showing update ICT db message even if catalogue != MTX
+ Cat browser memory management improvements (memory leaks like buffer
opened but not closed, db connections and URL connections)
+ Removed useless static methods/variables which are not removed from
the GC
+ Removed the remember me option from login
+ The login window now: wrap the content, is not resizable, appears in
a fixed position
+ Fixed bug in which the ICT db is not updated if updating from CB
+ Added ability to update ICT db even if updating MTX in offline mode
+ Fixed bug in which the download of the ICT followed by its
installation were giving thread errors
+ Merged function for the export catalogue process used from different
methods into the ToolsMenu class
+ Fixed bug which was allowing to add terms to facet groups with single
cardinality (single and double click)
+ Better throw and catch of the soap errors during the login action
(both dcf and openapi)
+ Fixed bug that caused the application to crash when the json,
containing pages dimensions, was not properly structured
+ Fixed bug which was returning wrong point dimension when using single
screen resulting in main panel appearing outside of the user view
+ Solved bug which was showing not in use terms into the search
results even if the not in use check was enabled
+ Fixed bug which was truncated information on sas by adding a first
row with length 4000 when exporting a catalogue
+ Fixed the "disconnect" message which was not appearing in the
shell when performed logout and other optimisations to the logout
process
+ Fixed the bug with the reserve and un-reserve function for
catalogue managers
+ Warning colours for semaphore and text are now aligned between CB
and ICT
+ Added BR 21 (Wrong structured code)
+ Optimisations to forms, SWT widgets and reading writing data to
file
+ Optimisations to the Changelog class
+ Fixed bug related with progress bar not correctly showing the
messages + other optimisation and fixes to the layout
+ Fixed BR 12 which was printing warning even if multiple terms
present in f27
+ Optimisations to the search bar
+ Optimisations to the tree view by disabling the redraw at each
expand/collapse action
+ Fixed bug for Cat managers which were receiving the upload to DCF
successful message even if was not written
+ Fixed bug raised when multiple terms are selected in describe
window + improved performances when redrawing the tree after adding the
terms
+ Fixed bug when importing cat in xml (related with poi jar not
update to latest v.4.0.0 containing a special function)
+ Added ability to check if the catalogue to import present errors
or not
+ Optimisation on importing ecf catalogues
+ Optimisation on importing excel catalogues
+ Fixed bug when new update available and user click on file before 10
sec
+ Removed all useless database result sets and connection closures from
CB (are called automatically)
+ Fixed statements which were returning value before connection was
closed
+ Fixed Ingredient BR in order to not show warning when flavour
ingredient is added to terms which contains Flavoured as name
+ Optimisations to the describe and recently describe term pages
(removed static instances, forced user to use only a single describe
window, disabled options on right click term in tree for describe and
recently if describe window is open)
+ Optimisations to the tab "term naming and definition" in which some
widgets were cut when using low resolution display (now is adaptable)
+ Optimisations to how the main menu is refreshed after some actions
(i.e. install ICT)
+ Converted all codeGenerator class and functions to not static
+ Fixed bug which was causing the crash of the app if the catalogue
tooltip was shown for new update and the user instead close the current
catalogue or perform a logout
+ Converted statements to prepared statements (faster)
+ Small improvements on how the main shell is shown/disposed removing
usless checks
+ Optimised the number of calls done while restoring and initialising
the windows size
+ Fixed main panel window not showing title bar when json file not
present (due to its dimension values equal to null)
[33mcommit 062581e2300d0001353d37b41dd51d11de8c5019[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Mon May 27 17:57:00 2019 +0200
- UI changes to the filter composite
- Added function which allows to go back/forw the last terms viewed in
the tree
- Fixed bug which was not allowing to go back/forw to a term already
contained in the history
- Removed welcome splash screen after launching the tool
[33mcommit de30a945c2da46c2a9e09e699796b0841a682b8f[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Thu May 23 11:16:59 2019 +0200
changes performed to:
* OpenAPI function
* Optimisations on the extraction process while installing ICT
* Optimisations on the import of ecf/excel reports
* Updated Jar libraries
[33mcommit 84b5f6b6fdff0c7a46d5e7ff9dcb6e4bfcacd54b[m
Merge: 0e4c49d c99a17f
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Wed Apr 17 17:19:01 2019 +0200
Merge branch 'master' of https://github.com/openefsa/catalogue-browser
[33mcommit 0e4c49def175703bae0947893327e95234584c29[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Wed Apr 17 17:16:02 2019 +0200
* the business rules now reside in new independent classes
* modifications done for the openapi function
* updated link for new version of the ICT
* other small optimisations and changes
[33mcommit 3accb82bdf8729dcfec51563168a10e964c6c719[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Mon Mar 18 09:48:18 2019 +0100
* Solved bug related with Valid with Warning status
[33mcommit c99a17fd72c0522ad324711b2f285c322c6ddd53[m
Author: AlbanShahajEFSA <38532007+AlbanShahajEFSA@users.noreply.github.com>
Date: Thu Mar 7 14:36:18 2019 +0100
Update README.md
[33mcommit d2d3ec3b9d06ed1f0d28453a7740716cf4cc6f9d[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Tue Feb 26 11:55:46 2019 +0100
· Added debug config class for controlling beta and debugging functions
· Added test function for allowing the import of terms from external
files (only for beta tester or cat manager and MTX). The function take a
txt file tab delimited and create new terms and put them into the
tree/db. The code is uniquely generated.
· Removed unused jar and added syntax for last jars “[curVersion, )”
with maven
· Added algorithm (to auto insertion of series of terms through txt)
which is able to check in which hierarchy (in the catalogue) the child’s
parent belongs to and hence adds the terms’ Reportability.
· Created a custom algorithm for botanicals
· Added ability to show until what line the algorithm was able to import
terms in order to let the cat manager to solve eventually errors on the
txt format file
· Solved bug related to the update ICT db message which appears even
with catalogue != MTX
· Optimization of the ICT directories with the rest of the classes used
in the cat bro. -> memory improvement
· Removed check for (check and interpreting tool folders) since now the
process is made once at launch time of the CB
· The ICT db is now updated automatically when updating the MTX
· The utils.zip file now will be extracted all in the ICT main folder
· The install ICT has a new check if update.bat file is missing (in
order to install last version)
· Adding ability to logout when tool has saved the credentials; this
because if the user change the pass and tries to open the tool for more
than 3 times than the dcf will block the user
· Created a drop down list with login/logout from DCF
· Modified links of web services for Dama cloud (BETA testing)
· Solved problems related with the refresh view when the user logout
from the DCF
· Removing the remember me option from login (since will be saved and
the user can log out now)
· The login window now wrap the content and it is not resizable and it
appears close to main menu
· Replaced the DCF soap links (Dama) with the old links since this will
redirect to the Dama cloud
· Starting first test for conversion to Win10 app
· Add progress bar while downloading the ICT
· Found bug in which the ICT db is not update if updating the one on
catalogue browser (solved by calling the copyDb from ict class while
exporting the new foodex2)
· Added ability to update ICT db even if updating MTX in offline by
importing the ecf file
· Solved memory managment by solving a lot of memory leak problems (like
buffer opened but not closed), changed the parameters when launching the
tool; now when the tool is above 1,1Gb it just remove everything and
goes back to the memory needed! The UI and all the program as well is
much much responsive.
· Fixed bug in which the download of the ICT followed by its
installation were giving thread errors
· Created a unique function for the export catalogue process used from
different methods into the ToolsMenu class
· Fixed all memory leaks in all projects when file reading/writing, db
connections and url connections were not properly closed
· Fixed all accessing static variable calling the this. Method which is
better for refering to a certain obj outside the method
· Starting to remove useless static methods/variables which are not
removed from the memory from the GC when the execution is concluded
· First test for new installer which is better managing the memory
[33mcommit c35db8eef43ff2cda6e58092dc35b5e174a2aabd[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Wed Jan 30 17:04:18 2019 +0100
• Adding ability to logout when tool has saved the credentials; this
because if the user change the pass and he/she tries to open the tool
for more than 3 times than the dcf will block him
• Created a drop down list with login/logout from dcf
• Modified links of web services for dama cloud (BETA testing)
• Solved problems related with the refresh view when the user logout
from the dcf
• Removing the remember me option from login (since will be saved and
the user can log out now)
• The login window now wrap the content and it is not resizable and it
appears close to main menu
[33mcommit 8ca10bb13b82372ff7dd79af164ead24e1b4e12d[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Mon Jan 28 17:26:16 2019 +0100
• Added debug config class for controlling beta and debugging functions
• Added new function able to import list of terms from external files
(only for beta tester or cat manager and MTX). The function take a txt
file tab delimited and create new terms then a put into catalogue/db
function is done for each term. The code of each term is UI generated.
• Removed unused jar and added syntax for last jars “[curVersion, )”
with maven
• Added algorithm able to check in which hierarchy (in the catalogue)
the child’s parent belongs to and hence adds the terms’ Reportability
(to [BETA] import terms function).
• Added ability to show until what line the above algorithm was able to
import terms in order to let the cat manager to solve eventually errors
in the txt format file
• Solved bug related to the update ICT db message which appears even
with catalogue != MTX
• Optimisation of the ICT directories with the rest of the classes used
in the browser. -> memory management improvements
• Better management of the file/folders checked when launching the ICT,
now is done once at launch time
• The ICT db is now updated automatically when updating the MTX
• The utils.zip file now will be extracted all in the ICT main folder
• The install ICT has a new check if update.bat file is missing (in
order to install last version of ICT)
[33mcommit d7d1f20f824ff6867a080a5f775fda703a8ad60b[m
Author: shahaal <Alban.SHAHAJ@ext.efsa.europa.eu>
Date: Tue Jan 15 16:09:06 2019 +0100
• Added debug config class for controlling beta and debugging functions
• Added test function for allowing the import of terms from external
files (only for beta tester or cat manager and MTX). The function take a
txt file tab delimited and create new terms and put them into the
tree/db. The code is uniquely generated.
• Removed unused jar and added syntax for last jars “[curVersion, )”
with maven
• Added algorithm (to auto insertion of series of terms through txt)
which is able to check in which hierarchy (in the catalogue) the child’s
parent belongs to and hence adds the terms’ Reportability.
• Added ability to show until what line the algorithm was able to import
terms in order to let the cat manager to solve eventually errors on the
txt format file
• Solved bug related to the update ict db message which appears even
with catalogue != MTX
• Optimization of the ict directories with the rest of the classes used
in the cat bro.