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
|
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'
|