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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
|
2013-04-03 08:50 sloot
* [r15893] include/folia/foliautils.h, src/document.cxx,
src/foliautils.cxx: XPath stuff is moved to ticcutils
2013-04-02 16:09 sloot
* [r15884] configure.ac: also most recent ticcutils needed
2013-04-02 15:44 sloot
* [r15873] configure.ac, include/folia/document.h,
include/folia/folia.h, include/folia/foliautils.h,
src/Makefile.am, src/document.cxx, src/folia.cxx,
src/foliautils.cxx: changed install directory!
moved some XML stuff to ticcutils
2013-04-02 10:31 sloot
* [r15861] src/foliautils.cxx: numb change
2013-04-02 08:14 sloot
* [r15850] include/folia/Makefile.am, src/Makefile.am,
src/folialint.cxx: tags
2013-04-02 08:13 sloot
* [r15849] include/folia/foliautils.h, src/folialint.cxx: removed
unused functions
added copyright stuff
2013-03-28 17:41 sloot
* [r15845] include/folia/foliautils.h, src/folia.cxx,
src/foliautils.cxx: removed stuff that is present in ticcutils
2013-03-07 15:10 sloot
* [r15786] include/folia/folia.h: oesp, parameter is const
2013-03-07 15:06 sloot
* [r15784] include/folia/folia.h, src/folia.cxx,
src/foliautils.cxx: implemeneted _lang attribute for TextContent
2013-03-07 09:32 sloot
* [r15778] src/folia.cxx: be more picky on the 'type' atribute in
AlignReference
2013-03-07 09:13 sloot
* [r15777] src/foliautils.cxx: fixed NCname checking. A ':' may not
be part of it.
2013-03-06 09:21 sloot
* [r15763] src/folia.cxx: added some comments
2013-02-28 14:54 sloot
* [r15747] src/folia.cxx: add xlink support for href in Alignment
2013-02-28 13:27 sloot
* [r15745] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: String class updated. it an
Annotation now
2013-02-26 16:49 sloot
* [r15733] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: New Substring class. Not
finished
2013-01-07 14:53 sloot
* [r15570] include/folia/document.h, include/folia/folia.h,
include/folia/foliautils.h, src/document.cxx, src/folia.cxx,
src/foliautils.cxx, src/simpletest.cxx: Bump year
2012-12-05 22:21 sloot
* [r15527] src/document.cxx: added 'now()' default for datetime
declaration
2012-12-05 13:43 sloot
* [r15517] src/document.cxx: fixed a problem with NO_ANN nodes
2012-12-05 08:55 sloot
* [r15515] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx: adapted to some of Maarten's changed. not all
yet..
2012-11-29 13:21 sloot
* [r15482] include/folia/foliautils.h, src/foliautils.cxx: add
convenient function
2012-11-13 10:14 sloot
* [r15420] include/folia/folia.h, src/folia.cxx: added a (set)
parameter to pos() and lemma() functions
2012-10-30 12:50 mvgompel
* [r15368] bootstrap: bootstrap fix
2012-10-30 09:55 sloot
* [r15354] include/folia/document.h, src/document.cxx: improved
handling of style-sheet processing instructions
for now we REJECT multiple test/xsl types.
2012-10-29 14:46 sloot
* [r15348] src/folia.cxx: relax constraints on Content node
2012-10-22 15:08 sloot
* [r15303] include/folia/folia.h: modified addAlternative()
2012-10-22 14:23 sloot
* [r15301] include/folia/folia.h, src/folia.cxx: fiddle with
addable atletnatives and morhological layers.
It is a bit messy!
2012-10-10 12:50 sloot
* [r15276] include/folia/document.h, include/folia/foliautils.h:
safeguards
2012-10-08 14:20 sloot
* [r15259] src/document.cxx: make sure we produce UTF-8
2012-10-02 09:33 sloot
* [r15239] NEWS: some NEWS
2012-10-02 09:18 sloot
* [r15237] include/folia/folia.h, src/folia.cxx: some fixes to get
all working
2012-10-01 15:44 sloot
* [r15234] include/folia/folia.h, include/folia/foliautils.h,
src/document.cxx, src/folia.cxx, src/foliautils.cxx: started
implementing new FoLiA features like coreference etc.
2012-09-27 12:34 sloot
* [r15225] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: small fixes in Metric stuff
2012-09-27 12:14 sloot
* [r15223] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: added metric stuff
2012-09-27 10:00 sloot
* [r15222] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: added ValueFeature. Not
completed yet.
2012-09-04 14:45 sloot
* [r15159] src/folia.cxx: added comment
2012-08-09 12:44 sloot
* [r15090] configure.ac, include/folia/document.h,
include/folia/foliautils.h, src/document.cxx, src/folia.cxx,
src/foliautils.cxx: more TiCC suff used
2012-08-08 09:05 sloot
* [r15063] src/folia.cxx: accept more
2012-07-12 15:24 sloot
* [r14982] src/folia.cxx: fix
2012-07-11 15:14 sloot
* [r14977] include/folia/foliautils.h, src/document.cxx,
src/folia.cxx, src/foliautils.cxx: added validity check for
xml:id's
Also ALL libxml2 Parser warnings wil handled as an eror!
2012-07-11 08:13 sloot
* [r14974] src/folia.cxx: small change in PlaceHolder stuff
2012-07-09 13:11 sloot
* [r14967] include/folia/folia.h, src/folia.cxx: fixed PlaceHolder
stuff
2012-07-04 09:11 sloot
* [r14948] include/folia/document.h, include/folia/folia.h,
src/document.cxx, src/folia.cxx: added methods to extract all
sentenceParts from a document. And to extract Words and
Placeholders from sentences.
2012-07-02 10:04 sloot
* [r14938] include/folia/folia.h, src/folia.cxx: added
abstractionlayer. alloe N attribute foro suggestion.
2012-06-20 10:24 sloot
* [r14899] include/folia/foliautils.h, src/document.cxx,
src/folia.cxx, src/foliautils.cxx: cleaner datetime handling, and
without leaks!
2012-06-19 08:20 sloot
* [r14887] include/folia/folia.h, src/folia.cxx: simplified
datetime handling
2012-06-18 16:36 sloot
* [r14885] include/folia/document.h, include/folia/foliautils.h,
src/document.cxx, src/folia.cxx, src/foliautils.cxx: added
datetime defaults
2012-06-14 14:22 sloot
* [r14870] include/folia/document.h, include/folia/folia.h,
include/folia/foliautils.h, src/document.cxx, src/folia.cxx,
src/foliautils.cxx: revoked smart idea about accept
added a canonical option to xml generation, to make comparisions
easy
2012-06-13 15:53 sloot
* [r14859] src/folia.cxx: more generic and less error-prone
solution for filling _accepted_data
(until everyone has a modern compiler)
2012-06-13 15:08 sloot
* [r14857] include/folia/folia.h, src/folia.cxx: some fixes.
2012-06-13 09:30 sloot
* [r14855] src/document.cxx, src/folia.cxx: fixed timedevent stuff
2012-06-12 15:55 sloot
* [r14854] include/folia/folia.h, src/folia.cxx: a bit of cleaning
done
2012-06-12 15:27 sloot
* [r14852] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: first, somewhat clumsy,
implementation of Alignment
2012-06-12 11:01 sloot
* [r14851] include/folia/folia.h, src/folia.cxx: implemented
toktext()
2012-06-12 09:08 sloot
* [r14848] include/folia/folia.h, src/document.cxx, src/folia.cxx:
removed error attribute from ErrorDetection
2012-04-23 12:14 sloot
* [r14680] src/folia.cxx, src/foliautils.cxx: headfeat ==>
headfeature
2012-04-23 09:49 sloot
* [r14679] include/folia/folia.h, src/folia.cxx: so we postpone
checking of required attributes until we append the node.
This makes construction more flexible
2012-04-23 08:07 sloot
* [r14677] src/folia.cxx: reverted change because Maarten reverted
his thoughts
2012-04-20 12:40 sloot
* [r14673] src/folia.cxx: avoid appending nodes without ID. same
should be done voor _set and maybe more.
later...
2012-04-18 16:14 sloot
* [r14667] include/folia/document.h, src/document.cxx: improved
namespace handling
2012-04-18 15:45 sloot
* [r14666] src/document.cxx: attempt to fix identation of
annotations.
2012-04-18 14:54 sloot
* [r14665] src/document.cxx, src/folia.cxx: more maarten-compliant
2012-04-18 14:12 sloot
* [r14664] include/folia/document.h, src/document.cxx,
src/folialint.cxx: no real change, except for folialint
2012-04-18 11:11 sloot
* [r14663] include/folia/foliautils.h, src/folia.cxx,
src/foliautils.cxx: DOMAIN ==> DOMEIN
It seems to be a 'special' or 'reserved' word
2012-04-18 10:52 sloot
* [r14662] src/folialint.cxx: fix 1
2012-04-18 10:44 sloot
* [r14660] include/folia/folia.h, src/Makefile.am, src/folia.cxx,
src/folialint.cxx: lots of adaptations to new insights.
started to implement a 'folialint' program for simple checking.
2012-04-17 16:13 sloot
* [r14659] include/folia/folia.h, include/folia/foliautils.h,
src/document.cxx, src/foliautils.cxx: beterder
2012-04-17 16:00 sloot
* [r14658] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: some cleanup and refactoring
2012-04-17 14:25 sloot
* [r14656] include/folia/folia.h, include/folia/foliautils.h,
src/document.cxx, src/folia.cxx, src/foliautils.cxx,
src/simpletest.cxx: added some sanity tests, an used them to weed
out problems that were never a problem yet
2012-03-29 08:42 sloot
* [r14584] configure.ac: bump version after release
2012-03-29 08:23 sloot
* [r14582] NEWS: get ready for release
2012-03-19 15:48 sloot
* [r14476] include/folia/folia.h, src/folia.cxx: cleaning up the
interface (breaks API)
2012-03-19 13:04 sloot
* [r14474] include/folia/document.h, src/document.cxx: avoid
duplicate annotation declarations
2012-03-14 16:06 sloot
* [r14466] include/folia/document.h, src/document.cxx: more cleanup
be more picky on declarations
2012-03-14 13:42 sloot
* [r14463] src/document.cxx: fixed defaultannotatortype
2012-03-14 11:36 sloot
* [r14461] include/folia/document.h, src/document.cxx,
src/folia.cxx: small fix
2012-03-13 17:05 sloot
* [r14458] include/folia/document.h, include/folia/foliautils.h,
src/document.cxx, src/folia.cxx: attempt to sort out annotation
defaults stuff.
waiting for maarten to give a ruling
2012-02-29 10:50 sloot
* [r14354] configure.ac: bump version after release
2012-02-29 10:47 sloot
* [r14352] NEWS: typo
2012-02-27 15:46 sloot
* [r14341] NEWS: news updated
2012-02-27 11:54 sloot
* [r14337] src/folia.cxx: be more strict on 'set' and 'class'
attributes. They need a document!
2012-02-27 10:10 sloot
* [r14335] src/document.cxx: small memoryleak fixed
2012-02-23 16:31 sloot
* [r14329] src/folia.cxx: fixed
2012-02-23 13:11 sloot
* [r14320] src/document.cxx: hmm. This too
2012-02-23 12:54 sloot
* [r14319] src/document.cxx: allow empty set names in declarations.
Handle as set="undefined"
2012-02-23 10:04 sloot
* [r14316] include/folia/document.h, src/document.cxx,
src/folia.cxx, src/foliautils.cxx: fixed problem with missing
(default) sets
2012-02-22 16:27 sloot
* [r14313] src/document.cxx: parsering of multiple set definitions
for same atrtibute works now
2012-02-22 15:10 sloot
* [r14307] src/folia.cxx: relax div and gap
2012-02-22 14:52 sloot
* [r14305] include/folia/folia.h: cleaning up
2012-02-21 17:19 sloot
* [r14303] src/folia.cxx: work around argument parser inside
libfolia
2012-02-21 13:13 sloot
* [r14298] src/folia.cxx: oesp
2012-02-21 13:05 sloot
* [r14297] src/folia.cxx: fix the fix
2012-02-21 13:02 mvgompel
* [r14296] src/folia.cxx: event accepts feature
2012-02-21 11:57 sloot
* [r14290] include/folia/document.h, src/document.cxx: small
refactoring
2012-02-21 11:34 sloot
* [r14289] include/folia/document.h, include/folia/folia.h,
src/document.cxx, src/folia.cxx: fixed CMDI stuff
2012-02-20 17:00 sloot
* [r14281] include/folia/folia.h, src/document.cxx, src/folia.cxx:
some small refactoring.
2012-02-15 17:37 sloot
* [r14270] include/folia/folia.h, src/folia.cxx: fixed problem witg
const char parameters to string template.
2012-02-15 16:04 sloot
* [r14268] src/document.cxx, src/folia.cxx: fixed annotation
defaults stuff
2012-02-13 09:33 sloot
* [r14254] NEWS, configure.ac: bumped version after release
2012-01-12 17:02 sloot
* [r13996] NEWS: Some news
2012-01-12 13:40 sloot
* [r13979] configure.ac, include/folia/foliautils.h,
src/document.cxx, src/folia.cxx, src/foliautils.cxx: Added GAP
annotation
made the gap-annotation mandatory for GAP nodes
made the div-annotation mandatory for DIV nodes
now correctly complain when 'set' attribute is missing in a
*-annotations declaration
2012-01-10 17:12 sloot
* [r13943] config.h.in, configure.ac, src/folia.cxx,
src/foliautils.cxx: cleanup the configuration
2012-01-10 15:24 sloot
* [r13932] configure.ac: bumped version after release
2012-01-09 11:33 sloot
* [r13911] NEWS, src/foliautils.cxx: fixed argument parsing problem
2012-01-03 08:48 sloot
* [r13851] include/folia/document.h, include/folia/folia.h,
include/folia/foliautils.h, src/document.cxx, src/folia.cxx,
src/foliautils.cxx, src/simpletest.cxx: added copyright stuff
2011-12-21 11:28 sloot
* [r13761] configure.ac: Bumped version after releas
2011-12-21 09:24 sloot
* [r13754] NEWS: NEWS
2011-12-21 09:16 sloot
* [r13753] src/simpletest.cxx: fixed 'make check'
2011-12-14 11:00 sloot
* [r13697] include/folia/folia.h, src/folia.cxx: ok, to be
complete, add ad Version() function too
2011-12-13 10:55 sloot
* [r13680] include/folia/folia.h, src/folia.cxx: added
VersionName() function to get in line with other modules
2011-12-13 08:48 sloot
* [r13676] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: added a HeadFeature
2011-12-12 15:57 sloot
* [r13671] include/folia/folia.h: better
2011-12-12 14:26 sloot
* [r13670] include/folia/folia.h, src/folia.cxx: implemented an
AllowGeneretaeID class, te get more inline with the Python
version
2011-12-08 16:56 sloot
* [r13665] include/folia/folia.h: last second fix.
I should check the whole class hierarchy soon!
2011-12-08 16:20 sloot
* [r13664] include/folia/folia.h: small improvement
2011-12-08 15:01 sloot
* [r13662] include/folia/folia.h, src/folia.cxx: more cleaning up
in the interface
2011-12-08 10:50 sloot
* [r13660] include/folia/folia.h, src/folia.cxx: more refactoring
2011-12-08 09:35 sloot
* [r13658] include/folia/folia.h, src/folia.cxx: more refactoring.
Nor done yet!
2011-12-07 11:13 sloot
* [r13656] include/folia/document.h, include/folia/folia.h,
src/document.cxx, src/folia.cxx: more improvements
2011-12-06 17:20 sloot
* [r13654] include/folia/folia.h, src/folia.cxx: more API
improvements
2011-12-06 16:43 sloot
* [r13650] include/folia/document.h, include/folia/folia.h,
src/document.cxx, src/folia.cxx: started to implement a template
based select<>() function.
This enables us to return vectors of the desired type.
Makes the API more readable and robust
2011-12-06 14:52 sloot
* [r13643] configure.ac, include/folia/document.h,
include/folia/folia.h, src/document.cxx, src/folia.cxx,
src/foliautils.cxx: AbstractElement is renamed to FoliaElement.
Big shock :0
2011-11-28 14:29 sloot
* [r13606] src/document.cxx, src/folia.cxx:
2011-11-28 10:35 sloot
* [r13602] include/folia/folia.h, src/folia.cxx: fixed stricttext()
2011-11-28 09:10 sloot
* [r13594] src/folia.cxx: small fix to remove compiler warning
2011-11-25 21:45 mvgompel
* [r13584] src/folia.cxx: small fix: Event allowed in Text
2011-11-25 15:30 mvgompel
* [r13581] include/folia/folia.h, src/folia.cxx: added stricttext()
and some minor refactoring, text() and hastext() now call
textcontent().. However, todo: stricttext() does not work as
expected yet on corrections
2011-11-21 10:36 sloot
* [r13558] include/folia/folia.h, src/foliautils.cxx: more
modifications to make Frog happy
2011-11-17 15:03 sloot
* [r13555] src/folia.cxx: typos
2011-11-17 14:54 sloot
* [r13553] include/folia/folia.h, src/folia.cxx: when appending a
documentless node, attach the parent document AND
check set declartions. Maybe other stuff can be checkced too?
2011-11-17 13:26 sloot
* [r13551] include/folia/folia.h, include/folia/foliautils.h,
src/document.cxx, src/folia.cxx, src/foliautils.cxx: implemented
new stuff like Dependecies, TimedEvents and such
2011-11-14 14:24 sloot
* [r13543] src/document.cxx, src/folia.cxx: small fixes. words() is
more cosequent now
2011-11-10 15:36 sloot
* [r13539] src/folia.cxx, src/foliautils.cxx: oesp in EntityLayer
added 'escape' possibility to argument parser
2011-11-02 11:47 sloot
* [r13504] folia.pc.in: cleaner
2011-11-02 09:36 sloot
* [r13499] NEWS, configure.ac: Bumped version after releasing
2011-11-02 09:01 sloot
* [r13498] NEWS, configure.ac: we have a lift off!
2011-11-01 16:39 sloot
* [r13497] include/folia/foliautils.h, src/simpletest.cxx: improve
includes
2011-10-25 15:59 sloot
* [r13464] include/folia/document.h, include/folia/folia.h,
include/folia/foliautils.h, src/document.cxx, src/folia.cxx,
src/foliautils.cxx: pua all stuff in own folia namespace
2011-10-19 12:34 sloot
* [r13441] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx: added auth attribute
2011-10-18 16:09 sloot
* [r13437] include/folia/document.h, include/folia/foliautils.h,
src/document.cxx, src/folia.cxx, src/foliautils.cxx: some cleanup
and such
2011-10-17 15:46 sloot
* [r13432] include/folia/folia.h, src/folia.cxx: added missing
function
2011-10-17 15:11 sloot
* [r13431] src/folia.cxx: fix?
2011-10-13 15:30 sloot
* [r13411] src/folia.cxx: vergeten in te checken ooit
2011-09-29 10:45 sloot
* [r13324] include/folia/folia.h, src/folia.cxx: Ok, now all tests
work again, except issubclass()
issubclass function removed. Only worked for compiletime
expressions.
needs thinking
2011-09-27 11:39 sloot
* [r13314] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: update to newest maarten level
not done yet (see failing tests)
2011-09-21 12:12 sloot
* [r13262] include/folia/folia.h: added an issubclass() function
nice hackery!
2011-09-21 10:14 sloot
* [r13257] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: fixes, added classes and such
2011-09-21 08:19 sloot
* [r13256] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: removed TextCorrection stuff
2011-09-20 15:49 sloot
* [r13250] include/folia/folia.h, include/folia/foliautils.h,
src/document.cxx, src/folia.cxx, src/foliautils.cxx: implemented
most of folia 0.6
A bit rough yet
2011-09-15 14:32 sloot
* [r13190] config.h.in, include/folia/foliautils.h, src,
src/Makefile.am, src/simpletest.cxx: 'make check' en 'make
distcheck' work!
2011-08-18 13:32 sloot
* [r12907] include/folia/folia.h, src/folia.cxx: more refactoring
alternatives() uses class now, not AnnotationType
2011-08-18 10:33 sloot
* [r12901] include/folia/document.h, include/folia/folia.h,
src/document.cxx, src/folia.cxx: some refactoring.
added some functions.
2011-08-18 08:50 sloot
* [r12899] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: added whitespace and linebreak
classes
2011-08-16 16:18 sloot
* [r12891] src/document.cxx, src/folia.cxx: some fixes
2011-08-16 15:02 sloot
* [r12889] include/folia/folia.h, src/folia.cxx: argl
2011-08-16 13:12 sloot
* [r12886] include/folia/document.h, src/document.cxx: added
possability to add a namespace name ont output of a document
2011-08-16 12:36 sloot
* [r12883] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: TextCorrection levels have
changed
some member added, like division() and incorrection()
2011-08-10 13:48 sloot
* [r12841] include/folia/folia.h, src/folia.cxx: more const added.
2011-08-10 13:21 sloot
* [r12840] include/folia/folia.h, src/folia.cxx: working on cost
correctness
2011-08-10 10:59 sloot
* [r12834] include/folia/folia.h, src/document.cxx, src/folia.cxx:
simplified XML output
2011-08-10 10:43 sloot
* [r12833] src/folia.cxx: fixed memoryleaks
2011-08-10 10:32 sloot
* [r12832] include/folia/folia.h, src/folia.cxx: reshuffled code.
xmlstring() is much simpler now!
2011-08-09 15:22 sloot
* [r12821] include/folia/foliautils.h, src/document.cxx,
src/folia.cxx, src/foliautils.cxx: working on better const
correctness
2011-08-09 15:01 sloot
* [r12819] include/folia/Makefile.am, include/folia/document.h,
include/folia/folia.h, include/folia/foliautils.h,
src/Makefile.am, src/document.cxx, src/folia.cxx,
src/foliautils.cxx: refactored: split in more managable parts
2011-08-09 14:07 sloot
* [r12818] include/folia/folia.h, src/folia.cxx: more refeactoring.
attempt to make some stuff less public
2011-08-09 12:18 sloot
* [r12813] include/folia/folia.h, src/folia.cxx: - xml-stylesheet
info is stored on Parsing and output in the XML
- some refactoring.
2011-08-08 15:19 sloot
* [r12808] src/folia.cxx: slimmerder
2011-08-08 14:28 sloot
* [r12807] include/folia/foliautils.h, src/folia.cxx: small fixes:
- added include
- make compiler happy
2011-08-04 13:06 sloot
* [r12790] configure.ac, include/folia/folia.h,
include/folia/foliautils.h, src/folia.cxx, src/foliautils.cxx:
removed boost stuff. use DIY poor mans datetime parser
2011-08-03 12:40 sloot
* [r12787] src/folia.cxx: small edit
2011-08-03 11:48 sloot
* [r12786] src/folia.cxx: refactored again
2011-08-03 10:14 sloot
* [r12783] src/folia.cxx: more refactoring
2011-08-03 09:52 sloot
* [r12782] include/folia/folia.h, src/folia.cxx: some refactoring
2011-08-02 09:17 sloot
* [r12777] include/folia/folia.h, src/folia.cxx: implemented the
'space=' attribute for Word
2011-08-01 12:19 sloot
* [r12770] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx: added operator << Document
const correctness improved
2011-07-28 16:04 sloot
* [r12757] src/folia.cxx: cleaner and meaner
2011-07-28 15:09 sloot
* [r12755] include/folia/folia.h, src/folia.cxx: refactored a lot.
Head to set MINTEXTCORRECTIONLEVEL = CORRECTED; for Original and
Morpheme
Why doesn't Maarten need that? strange
2011-07-27 15:10 sloot
* [r12738] include/folia/folia.h, src/folia.cxx,
src/foliautils.cxx: getting more compliant with proycon
2011-07-27 14:45 sloot
* [r12737] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: added more classes.
Disclaimer: zonder tests/voorbeelden is alles erg vaag nog
2011-07-27 13:25 sloot
* [r12736] include/folia/folia.h, include/folia/foliautils.h,
src/folia.cxx, src/foliautils.cxx: added missing classes
2011-07-27 09:07 sloot
* [r12734] src/folia.cxx, src/foliautils.cxx: problem in argument
parsing solved
2011-07-26 15:27 sloot
* [r12726] include/folia/folia.h, src/folia.cxx: some refactoring.
datetime is a pita still
2011-07-26 10:34 sloot
* [r12723] src/folia.cxx: fixed previous fix
2011-07-26 10:24 sloot
* [r12722] include/folia/folia.h, src/folia.cxx: fixed small memory
leak
2011-07-25 10:34 sloot
* [r12711] include/folia/folia.h, src/folia.cxx: some refactoring
2011-07-25 09:49 sloot
* [r12709] include/folia/folia.h, src/folia.cxx: added version
stuff
2011-07-21 13:28 sloot
* [r12669] include/folia/folia.h, src/folia.cxx: added
setDateTime() function
datetime is very picky atm. needs work.
2011-07-21 12:59 sloot
* [r12668] configure.ac, include/folia/folia.h,
include/folia/foliautils.h, src/folia.cxx, src/foliautils.cxx:
added date_time stuff. Needs boost_date_time
2011-07-21 08:42 sloot
* [r12656] include/folia/folia.h, src/folia.cxx,
src/foliautils.cxx: soem reactoring and cleanup.
fixed problem with undeclared sets
2011-07-20 16:33 sloot
* [r12637] include/folia/folia.h, src/folia.cxx: fixed problems
with defaul sets and such.
Ugly! Please refactor!
2011-07-20 13:15 sloot
* [r12628] src/folia.cxx: fix
2011-07-20 12:22 sloot
* [r12625] src/folia.cxx: *blush*
oh, that was bad
2011-07-20 10:49 sloot
* [r12622] include/folia/folia.h, src/folia.cxx: added xmlstring()
member
2011-07-19 15:18 sloot
* [r12605] include/folia/folia.h, src/folia.cxx,
src/foliautils.cxx: added == ans != operators.
fixed tests, using xmldiff. Needed a bugfix too
2011-07-18 08:37 sloot
* [r12548] TODO: to do
2011-07-14 15:24 sloot
* [r12520] bootstrap: oesp
2011-07-14 15:24 sloot
* [r12519] m4/Makefile.am, static.cxx: fix
2011-07-14 15:19 sloot
* [r12518] .: shuffle
2011-07-14 15:18 sloot
* [r12516] shuffle
2011-07-14 15:14 sloot
* [r12515] props
2011-07-14 15:08 sloot
* [r12514] tests are moved
2011-07-14 13:36 sloot
* [r12509] more cleanup
2011-07-14 12:02 sloot
* [r12504] pompdiedom
2011-07-14 11:36 sloot
* [r12503] added sanity checks
2011-07-14 11:18 sloot
* [r12501] refactoring
2011-07-14 10:30 sloot
* [r12498] refactoring...
2011-07-13 16:03 sloot
* [r12494] some refactoring
2011-07-13 14:12 sloot
* [r12488] cleaned up tests, and added missign dir
2011-07-13 12:22 sloot
* [r12485] 74 tests pass (except 2 that must fail)
Valgrinded. No problems, no leaks.
2011-07-12 15:40 sloot
* [r12474] pattern conjunctie works (but not sure that it does what
Maarten intended)
2011-07-12 15:06 sloot
* [r12473] wildcard expansion now worls for overlap too. Please
don't look at the code. it's ugly
2011-07-12 12:29 sloot
* [r12464] added regexp handling to findnodes()
2011-07-12 09:48 sloot
* [r12460] multiple wildcards seem to work now
2011-07-11 15:58 sloot
* [r12453] saving WIP
another test (find_nodes with context) works now
2011-07-11 13:08 sloot
* [r12450] bit cleaner and faster code
2011-07-11 12:29 sloot
* [r12445] small step ahead. 1 more test works
2011-07-07 16:01 sloot
* [r12345] more tests
2011-07-07 14:41 sloot
* [r12344] improved context() functions. Using a PlaceHolder class
now.
Added some extreme tests too!
2011-07-07 09:57 sloot
* [r12336] implemented previous(), next(), leftcontext() and
rightcontext()
2011-07-06 16:11 sloot
* [r12329] started implementing findnodes()
now wait for Maarten to finish prototyping
2011-07-06 12:47 sloot
* [r12314] got it working again
2011-07-05 16:29 sloot
* [r12296] defaultset mess not completed yet
8 errors left
2011-07-04 15:34 sloot
* [r10865] next step
2011-07-04 15:01 sloot
* [r10864] more cleanup
2011-07-04 15:01 sloot
* [r10863] cleanup
2011-07-04 14:18 sloot
* [r10862] bug fixed in attribute parsring
fixed test
some cleanup
2011-06-23 14:56 sloot
* [r10751] small improvement
2011-06-23 14:38 sloot
* [r10750] all tests work!
2011-06-23 13:50 sloot
* [r10749] lots of cleanup, without breaking the tests
2011-06-23 12:32 sloot
* [r10747] test ok now
2011-06-23 07:51 sloot
* [r10737] some cleanup
broke 1 test :{
2011-06-22 15:03 sloot
* [r10726] insert test \o/
2011-06-22 13:59 sloot
* [r10723] delete test works
2011-06-22 13:27 sloot
* [r10721] merge test works
2011-06-22 10:04 sloot
* [r10712] another test succeeds
2011-06-21 13:59 sloot
* [r10677] Split works!
2011-06-21 13:46 sloot
* [r10676] fixed some namespave stuff
2011-06-16 16:22 sloot
* [r10592] major rework for corrections. Not OK yet :{
2011-06-15 14:28 sloot
* [r10573] progres++
2011-06-15 10:34 sloot
* [r10569] taking the next step forward
2011-06-10 14:20 sloot
* [r10535] and another test gives OK
2011-06-10 14:02 sloot
* [r10534] streamlined
2011-06-10 13:31 sloot
* [r10532] 410 OK!
2011-06-09 16:11 sloot
* [r10477] another one bites the dust
2011-06-09 12:56 sloot
* [r10475] 2 more tests
2011-06-07 15:39 sloot
* [r10448] the 2 TO DO tests are done now
2011-06-07 14:04 sloot
* [r10446] 36 tests pass
2011-06-07 09:56 sloot
* [r10445] some progress. Lets hope proycon is almost done
refactoring
2011-05-30 15:37 sloot
* [r10359] added a stub
2011-05-30 15:18 sloot
* [r10358] test program now based on libcppunit
2011-05-26 10:53 sloot
* [r10286] KWargs handling improved.
correctAnnotation is a pita, still
2011-05-25 15:42 sloot
* [r10278] next test also works.
Code gets a bit uglier ;{
2011-05-25 10:42 sloot
* [r10270] another test bites the dust
2011-05-24 15:36 sloot
* [r10241] more tests work
2011-05-24 14:23 sloot
* [r10239] refactored. IMHO all <tag> 's should be first class
citizens
2011-05-23 15:19 sloot
* [r10186] next step
2011-05-23 09:05 sloot
* [r10157] KWargs are more pythonic now
2011-05-19 15:42 sloot
* [r10112] small step again
it's sometimes confusing…
2011-05-19 14:33 sloot
* [r10104] some progresss
2011-05-19 12:58 sloot
* [r10101] more progress
now leakproof too
2011-05-18 15:26 sloot
* [r10081] making some progress
2011-05-17 14:58 sloot
* [r10041] next step. Editing annotations
2011-05-17 12:16 sloot
* [r10028] editing works (passes tests, that is)
2011-05-17 10:15 sloot
* [r10022] polishing
2011-05-17 08:57 sloot
* [r10018] more cleanup
2011-05-16 15:41 sloot
* [r10004] start polishing before next steps
2011-05-12 16:52 sloot
* [r9911] small step.
bit ugly
\
2011-05-10 13:03 sloot
* [r9850] testSanity is a complete succes now.
2011-05-10 12:27 sloot
* [r9849] test 11 OK
2011-05-10 12:19 sloot
* [r9848] upto test010 done
2011-04-29 13:42 sloot
* [r9766] test 008
2011-04-29 13:18 sloot
* [r9765] Test 006 works
2011-04-29 10:57 sloot
* [r9764] marched to test005 now
2011-04-29 10:03 sloot
* [r9762] Word count work too
2011-04-29 09:37 sloot
* [r9761] sentences() works
2011-04-29 09:22 sloot
* [r9760] document indexing works
2011-04-27 15:59 sloot
* [r9727] wref sort of works now
2011-04-27 14:14 sloot
* [r9721] TextContent is a first class citizen now
2011-04-27 08:35 sloot
* [r9683] 4 tests work.
Adapting program to data ;)
2011-04-26 12:14 sloot
* [r9656] step by step
2011-04-21 16:12 sloot
* [r9638] ok, wref and su are parsed and spit. But not OK yet
2011-04-21 15:54 sloot
* [r9637] small steps…
2011-04-21 15:09 sloot
* [r9636] some reshufling. FoLiA Namespaces are actively checked
now
2011-04-21 12:57 sloot
* [r9623] moved stuff to foliautils
2011-04-21 11:02 sloot
* [r9621] small cleanup
2011-04-21 10:14 sloot
* [r9620] fixed some namespace problems
2011-04-20 15:28 sloot
* [r9603] genoeg voor vandaag
2011-04-20 15:20 sloot
* [r9602] a small step
2011-04-20 14:38 sloot
* [r9601] it is a mess
but is reads some XML and spits most of it out
2011-04-14 16:30 sloot
* [r9518] not in SVN please
2011-04-14 16:29 sloot
* [r9517] some progress
2011-04-13 15:55 sloot
* [r9487] it compiles!
2011-04-13 15:36 sloot
* [r9486] added autoconfig stuff
2011-04-13 14:37 sloot
* [r9483] cleanup
2011-04-13 12:56 sloot
* [r9479] small step ahead
2011-04-13 12:36 sloot
* [r9477] 'it compiles'
|