-
Notifications
You must be signed in to change notification settings - Fork 25
/
ChangeLog
3801 lines (1959 loc) · 98.3 KB
/
ChangeLog
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
2019-04-05 Patrick van Kleef <[email protected]>
Merge branch 'feature/Bug18617' into develop
2019-04-05 Dimitar Dimitrov <[email protected]>
Optimize the store document changes for graphs and LDP sources.
Added undo/redo functions to the editor. Undo has max 16 levels.
2019-04-04 Dimitar Dimitrov <[email protected]>
Fixed info messages after deleting triples.
Fixed but with not clean graph before load new content.
2019-03-27 Dimitar Dimitrov <[email protected]>
Update rdfstore.js library with last posible version of N3.js parser.
2019-03-22 Patrick van Kleef <[email protected]>
Merge branch 'feature/Bug18609' into develop
2019-03-22 Dimitar Dimitrov <[email protected]>
Fixed bug by adding new property and false ontology request
Fixed bug by refreshing ontologies.
Bug 18609 - OSDE problem opening RDF graphs for editing with or saving RDF document to a SPARQL endpoint
2019-03-18 Patrick van Kleef <[email protected]>
Merge branch 'feature/osdeLoadOntologies' into develop
2019-03-14 Dimitar Dimitrov <[email protected]>
Fixed bug with not showing spinner by loading documents.
Fixed bug by loading ontologies on OSDE Chrome and FF extensions.
2019-03-13 Dimitar Dimitrov <[email protected]>
Fixed bug with non escaped error messages by parsers.
2019-02-19 Patrick van Kleef <[email protected]>
Merge branch 'feature/ontologyLoad' into develop
2019-02-19 Dimitar Dimitrov <[email protected]>
Added an option for load ontologies in JSON-LD and RDF formats- not only TTL.
Added opened documents to the Recent folder
Updated JS library Unterscore to version 1.9.1.
2019-02-08 Patrick van Kleef <[email protected]>
Small documentation changes
Added initial support for building Docker images
Merge branch 'feature/libsUpdate' into develop
2019-02-08 Dimitar Dimitrov <[email protected]>
Bug 18576 - Issue saving locations add extra / at end of document
Fixed bug with shown an error after parser error.
Updated N3 TTL parser library to version 0.11.3
Upgrade AngularJS from 1.5.x to 1.7.x. Update Grunt build pluging too.
2019-02-07 Patrick van Kleef <[email protected]>
Updated for upcoming release
Fixed relative URL
2019-02-06 Dimitar Dimitrov <[email protected]>
Upgrade AngularJS from 1.5.x to 1.7.x. Update Grunt build pluging too.
2019-02-05 Patrick van Kleef <[email protected]>
Fixed CORS issue when using http protocol
Fixed issue building .tar.gz and .zip installers
Fixed issue defining nested functions in strict mode
Merge branch 'feature/Bugs_18567_18568' into develop
2019-02-05 Dimitar Dimitrov <[email protected]>
Fixed bug with favicon and warnings by build. Updated some JS libs
2019-02-01 Dimitar Dimitrov <[email protected]>
Fixed an app version in Bower
Bug 18568 - RDF Editor loops/hangs (with spinning ajax wheel) when adding 'Linked Vocabularies'
Removed short names from some views - they are not clear.
Bug 18567 - Mixed content exception using lov.okfn.org
Fixed bug with retrieving named graphs.
Fixed bug with saving user/password in internal cache.
Updated used JS libraries.
2019-01-01 Patrick van Kleef <[email protected]>
Updated Copyright to include 2019
2018-10-30 Dimitar Dimitrov <[email protected]>
Added header 'WebID-TLS: true' by I/O operations.
2018-09-27 Patrick van Kleef <[email protected]>
Merge branch 'feature/webdavFix' into develop
2018-09-25 Dimitar Dimitrov <[email protected]>
Updates JS bootstrap table to version 1.12.1
Fixed AJAX PROPFIND call to WebDAV folders.
2018-03-16 Patrick van Kleef <[email protected]>
Merge branch 'feature/remoteImport' into develop
2018-03-16 Dimitar Dimitrov <[email protected]>
Added new option for import content - remote sources.
Fixed bug with disable adding objects using resource select box.
Added check for supported protocols: http and https.
2018-03-14 Patrick van Kleef <[email protected]>
Merge branch 'feature/Bug18225' into develop
2018-03-14 Dimitar Dimitrov <[email protected]>
Fixed bug related to aceess some LDP sources.
Fixed bug related to parsing some .TTL sources.
2018-03-09 Dimitar Dimitrov <[email protected]>
Fixed bug with bad view when using 'data' URL parameter.
2018-01-03 Dimitar Dimitrov <[email protected]>
Fixed bad URI parameter interpretation.
2018-01-02 Patrick van Kleef <[email protected]>
Updated Copyright to include 2018
2017-12-22 Dimitar Dimitrov <[email protected]>
Added default action click by 'Enter' key pressed.
2017-11-22 Patrick van Kleef <[email protected]>
Fixed copyright
Merge branch 'feature/webidShow' into develop
2017-11-21 Dimitar Dimitrov <[email protected]>
Fixed bug with deletion of the binary literals.
Added new prefix 'wdrs'.
Fixed bug with stored recent SPARQL enpoints.
Fixed bug with importing RDF documents.
2017-11-07 Dimitar Dimitrov <[email protected]>
Added WebID sign in option. Updated app version.
2017-10-30 Dimitar Dimitrov <[email protected]>
Show WebID of the logged user on the header.
Updated date picker library. Fixed bug with selection datetime values.
2017-10-18 Patrick van Kleef <[email protected]>
Merge branch 'feature/storageFix' into develop
2017-10-17 Dimitar Dimitrov <[email protected]>
Removed unused JS file. Small UI changes.
Added get webid from YouID extension and then get profile data.
Added remove the virtual path after uninstall.
2017-10-10 Patrick van Kleef <[email protected]>
Merge branch 'feature/Bug17939' into develop
2017-10-10 Dimitar Dimitrov <[email protected]>
Fixed bug with editing and showing the boolean values.
Update for used JS libraries.
Fixed bad presentation of the empty resources.
2017-10-05 Dimitar Dimitrov <[email protected]>
Fixed bugs related to warnings from JSHint utility.
Actualization of the build dependency libs.
2017-10-04 Dimitar Dimitrov <[email protected]>
Added missing 'title' properties for elements.
Fixed bug with enabled to change subject type to non resource type.
Fixed build dependecy related to new plugin versions.
Updated 'selectize' libriry to last version.
2017-09-29 Dimitar Dimitrov <[email protected]>
Bug 17939: investigate feasibility of automatically converting full URIs to CURIes on SAVE
Updated schema.org ontology.
2017-05-03 Patrick van Kleef <[email protected]>
Merge branch 'feature/addOntologyBug' into develop
2017-05-02 Dimitar Dimitrov <[email protected]>
Fixed bug with add ontology action.
Added new version of the bootstrap-table. Made small UI updates.
2017-04-03 Dimitar Dimitrov <[email protected]>
Removed VAL login/logout.
2017-03-29 Patrick van Kleef <[email protected]>
Fixed include merges into count
2017-01-10 Patrick van Kleef <[email protected]>
Updated copyright to include 2017
2016-12-28 Patrick van Kleef <[email protected]>
Merge branch 'feature/derefTypes' into develop
2016-12-28 Dimitar Dimitrov <[email protected]>
Updated editor header page.
2016-12-23 Dimitar Dimitrov <[email protected]>
Fixed bug with loading RDF/XML documents.
2016-12-22 Dimitar Dimitrov <[email protected]>
Added RDF parser for import RDF content.
2016-12-20 Dimitar Dimitrov <[email protected]>
Clean up URL params after document save.
Updated OSDE header - moved OL image left.
Fixed 'New' action in the document editor.
Fixed condition for the right browser pane.
2016-12-15 Dimitar Dimitrov <[email protected]>
Added dereference link for RDF types.
2016-12-15 Patrick van Kleef <[email protected]>
Merge branch 'feature/fixedLoadBug' into develop
2016-12-12 Dimitar Dimitrov <[email protected]>
Fixed bug with errors after bad VAL login.
Fixed bug with mixed HTTP and HTTPS souces.
Fixed bug with parsing escaped literals.
Fixed bug with favicons in the VAD version.
2016-11-17 Dimitar Dimitrov <[email protected]>
Fixed behaviour after load document error.
Updated 'Form me on Github' link
2016-11-08 Patrick van Kleef <[email protected]>
Merge branch 'feature/linksColorFix' into develop
2016-11-08 Dimitar Dimitrov <[email protected]>
Fixed sorting on count columns.
2016-10-28 Dimitar Dimitrov <[email protected]>
Changed color of the internal links.
2016-09-23 Dimitar Dimitrov <[email protected]>
Added new URL parameter 'data' for inline RDF content.
2016-09-22 Patrick van Kleef <[email protected]>
Merge branch 'feature/labelsChange' into develop
2016-09-22 Dimitar Dimitrov <[email protected]>
Fixed a bug with bad parameter value.
Fixed window labels for input and output.
2016-09-16 Patrick van Kleef <[email protected]>
Merge branch 'feature/paginationUpdate' into develop
2016-09-13 Dimitar Dimitrov <[email protected]>
Updated rdfstore and N3 JS linraries.
Fixed bug with throbber and export action.
2016-08-15 Dimitar Dimitrov <[email protected]>
Extended 'Settings' - added naming schema selection.
2016-08-09 Dimitar Dimitrov <[email protected]>
Fixed parameter checking bug.
Moved pagination on top.
2016-08-05 Patrick van Kleef <[email protected]>
Merge branch 'feature/libsUpdate' into develop
2016-08-02 Dimitar Dimitrov <[email protected]>
Uldate to angular v1.5.x - which 20% faster.
Updated Bootstrap Table library.
2016-07-29 Dimitar Dimitrov <[email protected]>
Updated RDF and N3 libraries.
2016-07-06 Dimitar Dimitrov <[email protected]>
Fixed bug with encoding URL parameters.
2016-07-01 Patrick van Kleef <[email protected]>
Merge branch 'feature/sparqlLoadFix' into develop
2016-07-01 Dimitar Dimitrov <[email protected]>
Fixed bug with loading turtle from sparql sources.
Added new rdfstoreJS library - v0.9.13
2016-06-22 Patrick van Kleef <[email protected]>
Merge branch 'feature/Bug17320' into develop
2016-06-22 Dimitar Dimitrov <[email protected]>
Updated rdfstorejs library.
2016-06-21 Dimitar Dimitrov <[email protected]>
Move OpenLink logo in the middle.
Replaced text labels with links in subject, predicate and object pages.
2016-06-20 Dimitar Dimitrov <[email protected]>
Added new URL params related to paging - page No, page size, sort name and sort order. Updating URL after avery change of the view, page No, page size , sort name or sort order.
Added OSDE logo and update header UI.
2016-06-07 Dimitar Dimitrov <[email protected]>
Added 'Direct Outpup' action.
2016-06-06 Patrick van Kleef <[email protected]>
Merge branch 'feature/Bug17333' into develop
2016-06-06 Dimitar Dimitrov <[email protected]>
Bug 17358 - Injection of WebID+TLS+Delegation On-Behalf-Of: request header with value from the configured and selected WebID into HTTP requests
2016-05-27 Dimitar Dimitrov <[email protected]>
Bug 17333 - OSDE should produce errors for unrecognized URI parameters
2016-05-19 Dimitar Dimitrov <[email protected]>
Added favicons to the editor.
2016-05-12 Patrick van Kleef <[email protected]>
Merge branch 'feature/signedDocs' into develop
2016-05-09 Dimitar Dimitrov <[email protected]>
Fixed 'Save As' bug.
Comment menu items re: 'Sign and Unsign'.
Added app version on the welcome page.
Fixed bug with inline editing empty nodes.
Disabled verified turtle files for empty nodes.
2016-05-01 Dimitar Dimitrov <[email protected]>
Fixed correct field type selection for editable cells.
Fixed escape values for editable cells. Fixed export turtle bug.
2016-04-30 Dimitar Dimitrov <[email protected]>
Fixed node type determination and set selection items.
Fixed saving document bug.
2016-04-29 Dimitar Dimitrov <[email protected]>
Changed 'Ontology' to 'Vocabulary'
2016-04-28 Dimitar Dimitrov <[email protected]>
Fixed turtle direct import.
2016-04-26 Dimitar Dimitrov <[email protected]>
Fixed bug with locked control after 'paste' action.
Added ontologyToPrefix function using http://lov.okfn.org service.
Fixed bug with inline table editing. Unify editing procedure.
Fixed load turtle bug with new version of the rdfsore-js.
Fixed sparql bug with new version of the rdfsore-js.
2016-04-25 Dimitar Dimitrov <[email protected]>
Updated about page. Added 'Home' button.
Inject build version into JS root scope.
2016-04-22 Dimitar Dimitrov <[email protected]>
Fixed bug with parsing some turtles from dbpedia.
Changed name of the editong document variable.
Fixed bug with 'view=triples' parameter.
2016-04-21 Dimitar Dimitrov <[email protected]>
Added accept parameter with two values: turtle and jsonld.
Fixed bug with error reporting by turtle load.
2016-04-20 Dimitar Dimitrov <[email protected]>
Fixed bad object property name.
Simplify creating and using editors.
Fixed bug - the current view is not selected.
Extend parameters with spo:* and eav:*
2016-04-19 Dimitar Dimitrov <[email protected]>
Separate two schemas (EAV and SPO) in the parameters.
Added dereference link for subject and predicate views.
Updates related to new RdfstoreJS which introduces new error system.
Updated RdfstoreJS to version 0.9.7.
2016-04-14 Dimitar Dimitrov <[email protected]>
Fixed bug with default view when URL is without params.
2016-04-13 Dimitar Dimitrov <[email protected]>
Changed label - 'Input Directly' => 'Direct Input'
Update related to better Safari performance.
2016-04-11 Dimitar Dimitrov <[email protected]>
Fixed bug related to adding new properties from PropertyBox.
Removed dereference links from default table views.
2016-04-08 Dimitar Dimitrov <[email protected]>
Updated AJAX error messages.
Fixed but with showing spinner in the Editor.
2016-04-07 Dimitar Dimitrov <[email protected]>
Added dereference links to tables with triples, subjects, predicates and objects.
Fixed bug related to new naming schema.
Code reuse.
Updated related to new Notification lib.
Replacing default IO type to HTPP.
Update naming schema (EAV and SPO) dependences after reorganize config.json.
Updated bootstrap-table-editable lib. Added new option for dereference feature.
Added updated version of Notification lib. The error notification don't disappear automaticaly.
2016-04-05 Dimitar Dimitrov <[email protected]>
Updated 'Accept' HTTP paramter for requests.
2016-03-31 Dimitar Dimitrov <[email protected]>
Updated table lists - added tooltips.
Updated outdated libraries - bootstrap-table and bootstrap-editable.
Updated input direct content - now it is without content type selection.
Bug 17275: Helptext fixes for the RDF Editor Buttons. https://bugzilla.openlinksw.com/show_bug.cgi?id=17275
Clean repository - removed unused library.
2016-03-29 Dimitar Dimitrov <[email protected]>
De-refecence is optional now. Extent de-reference with predicates.
Added new URL parameter 'namingSchema' with 2 values: eavSchema and spoSchema.
2016-03-22 Dimitar Dimitrov <[email protected]>
Added direct input of JSON-LD content.
Update of the bootstrap-editable JS library.
Fixed behaviour of the 'newDocument' parameter.
2016-03-18 Dimitar Dimitrov <[email protected]>
Added dereference link option to resources in the RDFNode control.
2016-03-17 Dimitar Dimitrov <[email protected]>
Fixed bug with adding new item in the resource selection control. Removed unused JS file.
Added 'doap:' and 'dbpedia:' predefined prefixes.
2016-03-16 Dimitar Dimitrov <[email protected]>
Update for 'Action' menu in the editor view.
Updated loadTurtle function - add new parameter known prefixes.
Update of N3 parser library.
2016-03-14 Dimitar Dimitrov <[email protected]>
Fixed statement:predicate parameter bug.
Fixed bug with current selected item after refresh option items.
Fixed bug with callback function when loading turtles fail.
2016-03-10 Dimitar Dimitrov <[email protected]>
Fixed parameter 'view=entities' bug.
Updated 'Action' toolbar menu - moved 'Open Document' here.
Changed API call for signature API.
2016-03-08 Dimitar Dimitrov <[email protected]>
Added sign/unsign for documents using external signature file and new VAL API function. Added import of the turtle content into editing document.
Update for Bottstrap to version 3.3.6
Fixed class/object lookup bug.
2016-02-15 Patrick van Kleef <[email protected]>
Merge branch 'feature/uiFixes' into develop
2016-02-12 Dimitar Dimitrov <[email protected]>
Added validation for input fields with new validation API. Added focus() for the first filed in forms. Updated forms with changing 'OK' button with 'Submit' button.
Added validation functions.
Updated CSS definition - add prefixes for app specific styles.
2016-02-10 Patrick van Kleef <[email protected]>
Merge branch 'feature/objectsLookup' into develop
2016-02-10 Dimitar Dimitrov <[email protected]>
Added lookup with external sources.
2016-02-08 Dimitar Dimitrov <[email protected]>
Added 'About' link. Removed unneeded TTL and JSON-LD metadata.
2016-01-25 Dimitar Dimitrov <[email protected]>
Updated behaviour of the new '+' button in the subject form.
2016-01-22 Patrick van Kleef <[email protected]>
Merge branch 'feature/schemaRangeUpdate' into develop
2016-01-21 Dimitar Dimitrov <[email protected]>
UI/UX update - use last added subject for next triple.
2016-01-20 Dimitar Dimitrov <[email protected]>
Added support for schema:rangeIncludes and schema:domainIncludes. Updated range property to support multple ranges.
Updated preloaded ontology 'http://schema.org'.
2016-01-15 Dimitar Dimitrov <[email protected]>
Subject Editor update -added '+' button for adding multiple values.
2016-01-12 Patrick van Kleef <[email protected]>
Fixed issue following symlink for rdf_editor_pkg.tar.gz
Merge branch 'release/0.17' into develop
Updated NEWS and ChangeLog
Updated version to 0.17 for final release
Merge branch 'feature/readmeUpdate' into develop
2016-01-11 Dimitar Dimitrov <[email protected]>
Added detail info about deployments on different HTTP servers.
2016-01-11 Patrick van Kleef <[email protected]>
Updated Copyright to 2016
2016-01-07 Patrick van Kleef <[email protected]>
Merge branch 'feature/osdsRelatedBugFix' into develop
2016-01-04 Dimitar Dimitrov <[email protected]>
Reduced ontology search by prefix in editors.
Fxed bug with 'Back' button in subject's editor.
2015-12-29 Dimitar Dimitrov <[email protected]>
Use 'Resource' node type when value starts with '#'. Added new config option for this.
Added new URL parameters related to 'Annotate' option in OSDS.
2015-12-23 Dimitar Dimitrov <[email protected]>
Fixed bugs to enable correct work of OSDS plugin.
2015-12-22 Dimitar Dimitrov <[email protected]>
Added turtle and JSON-LD app description data.
2015-12-21 Patrick van Kleef <[email protected]>
Merge branch 'feature/osdsUpdates' into develop
2015-12-21 Dimitar Dimitrov <[email protected]>
Added <script type=text/turtle></script> element for OSDS plugin. Extend URL paramteres with statement:subject, statement:predicate and statement:object.
Added 'Fork me on GitHub' link
2015-12-03 Patrick van Kleef <[email protected]>
Merge branch 'feature/saveAsRefreshBug' into develop
2015-12-02 Dimitar Dimitrov <[email protected]>
Added error messages to the ontology's view.
Added check for mixed content before Ajax call.
2015-12-01 Dimitar Dimitrov <[email protected]>
Fixed bug ontology refresh and 'Mixed content' error.
Fixed creation tar version of the editor.
2015-11-20 Dimitar Dimitrov <[email protected]>
Added config option for verify empty noes or not.
Fixed bug with refresh folder list after adding new file.
Updated sort order in browser - folders and files are sorted together.
2015-11-11 Dimitar Dimitrov <[email protected]>
Added throbber for folder selection in browser.
2015-11-11 Patrick van Kleef <[email protected]>
Merge branch 'release/0.16' into develop
Updated ChangeLog
Updated version to 0.16 for release
Updated NEWS
Merge branch 'feature/public_release' into develop
Moved old ChangeLog content to NEWS and generated ChangeLog file
Added rule to regenerate ChangeLog
2015-11-10 Patrick van Kleef <[email protected]>
Fixed deployment package names
Fixed tell automake this package will not follow the full GNU Standards
Added initial README.md
Added simple build.sh and build.bat scripts
Added support for config.nice script
Added support for building runtime packages in .tar.gz and .zip format
Small cleanups
Added local rules for clean and distclean
Added filelist for source distribution
Fixed package and vad version handling
Upgraded grunt-contrib-imagemin to ^1.0.0
Added COPYING, LICENSE, AUTHORS and CREDITS to runtime distribution
Added copyright declarations
2015-11-09 Patrick van Kleef <[email protected]>
Added initial list of third party projects used in the RDF Editor
Added list of contributors to this project
Fixed use GPLv2-only license for this open source project
Added vadpacker as a submodule
Fixed pin bootstrap to 3.3.4 due to problems with bootstrap.css in later version
Upgraded angular-bootstrap to version 0.14.x
2015-11-02 Virtuoso Development Team <[email protected]>
Fixed issue finding vadpacker.py
Removed generated file
Added files for git to ignore
Updated vad version generation
2015-10-30 Patrick van Kleef <[email protected]>
Merge branch 'feature/ldpFolderList' into develop
2015-10-28 Dimitar Dimitrov <[email protected]>
Fixed CORS bug with not allowed header properties.
2015-10-26 Dimitar Dimitrov <[email protected]>
Fixed folder list for LDP folders.
2015-10-17 Patrick van Kleef <[email protected]>
Merge branch 'feature/Bug17072' into develop
2015-10-17 Dimitar Dimitrov <[email protected]>
Added support for new RdfNode editor.
Update RdfNode editor to use selection for classes (and resources).
Added new version of Selectize library.
2015-10-17 Patrick van Kleef <[email protected]>
Merge branch 'feature/authenticationFormFix' into develop
2015-10-17 Dimitar Dimitrov <[email protected]>
Fixed VAL detection bug.
Fixed problems with custom authentication form. Added new header param 'X-Requested-With' for specific purposes.
Removed doubled code.
Fixed VAL bugs on non Virtuoso servers.
2015-10-16 Dimitar Dimitrov <[email protected]>
Fixed bug with missing folders from LDP sources.
2015-09-22 Patrick van Kleef <[email protected]>
Merge branch 'feature/openSaveBug' into develop
2015-09-22 Dimitar Dimitrov <[email protected]>
Fixed IE bur related to open locations.
Fixed bug with open and save documents.
2015-09-14 Dimitar Dimitrov <[email protected]>
Added dcterms, vcard, cert, pim, void. sioc, skos, schema, and gr to preloaded ontologies.
2015-09-07 Patrick van Kleef <[email protected]>
Merge branch 'feature/ontologyLoaderFix' into develop
2015-09-02 Dimitar Dimitrov <[email protected]>
Added option for add/change prefixes in the ontology view.
2015-09-01 Dimitar Dimitrov <[email protected]>
Added UB as custom proxy server. Updated ontology view.
2015-08-28 Dimitar Dimitrov <[email protected]>
Replaced title messages in views: entities, atributes and values.
2015-08-07 Dimitar Dimitrov <[email protected]>
Set version number to 0.15.
2015-08-07 Patrick van Kleef <[email protected]>
Merge branch 'feature/timeoutUpdate' into develop
2015-08-05 Dimitar Dimitrov <[email protected]>
Fixed small browser bugs. Added spin for 'Add Location'. Fixed refresh spin.
2015-08-04 Dimitar Dimitrov <[email protected]>
Fixed timeout bug. Fixed error message after load doc.
2015-07-22 Dimitar Dimitrov <[email protected]>
Fixed bugs with recent document feature.
2015-07-22 Patrick van Kleef <[email protected]>
Merge branch 'feature/editorUpdates' into develop
2015-07-22 Dimitar Dimitrov <[email protected]>
Small changes in UI. Fixed bad comment content.
Fixed sorting for predicate and subject views.
Fixed sort for columns with mixed values.
Added 'Values' projection to the editor.
Fixed bug with LDP resources content type.
Added new config option 'nonTTLProxy' to enable using proxy for non TTL sources.
Fixed ontology panel view and ontology add behaviour. Added 'Refresh' action.
Fixed bug with lock select after errors. Enabled add properties like #relatedTo.
Make editor page more compact.
2015-07-15 Dimitar Dimitrov <[email protected]>
Added timeout config option for I/O commands.
2015-06-05 Sebastian Trueg <[email protected]>
Merge branch 'feature/Bug16727' into develop
2015-06-01 Dimitar Dimitrov <[email protected]>
Fixed app name by request.
Bug 16727 - Possibility to add a default storage url via the config. Added new config option: 'storage'
2015-05-28 Sebastian Trueg <[email protected]>
Merge branch 'feature/fixRefreshUX' into develop
Merge branch 'feature/Bug16828' into develop
2015-05-27 Dimitar Dimitrov <[email protected]>
Trim bad characters from URIs.
Added new utility function - trim().
Fixed bug with update predicate views after actions.
Fixed bad reference in PropertyBox control.
2015-05-26 Dimitar Dimitrov <[email protected]>
Added spinner for browser refresh action. Fixed bug with function.
Fixed bug with login and not created doc editor.
2015-05-22 Sebastian Trueg <[email protected]>
Merge branch 'feature/Bug16826' into develop
Merge branch 'feature/Bug16675' into develop
Moved the default config value for maxLabelLength to config.js.
Renamed "oldEntityView" config option to "useEntityEditor".
2015-05-22 Dimitar Dimitrov <[email protected]>
Fixed editor document @href in the main page.
Fixed bug in PropertyBox used bad function for creation property object.
Fixed bug when 'Link' header option is missing.
Added new view - subject view. Added parameter in config which makes views switchable.
2015-05-22 Sebastian Trueg <[email protected]>