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
|
2023-03-02 Florian Schlichting <fsfs@debian.org>
* release awl 0.64
* add Debian autopkgtests
2022-12-17 Andrew Ruthven <andrew@etc.gen.nz>
* Fix indent for for line and add some blank lines to improve readability
2022-10-22 ruliane <ruliane+github@ruliane.net>
* Minor fix: prevent warning when argument is not defined
2023-02-04 Andrew Ruthven <andrew@etc.gen.nz>
* Handle strings to be translated over 4096 characters.
* Add unique constraints for user_role and tmp_password
2022-12-18 Andrew Ruthven <andrew@etc.gen.nz>
* Bump the version, so I can check for this in DAViCal
2022-12-16 Andrew Ruthven <andrew@etc.gen.nz>
* PHP uses . as a string concatenation operator, not +.
* Support the cas_token approach in PECL 3.0.0
* Sanity check that we have an array
* Make it explicit why Memcache isn't working
* Need to enable the Headers module for Apache2 for tests
2022-12-10 Andrew Ruthven <andrew@etc.gen.nz>
* Handle when a log line is passed in which contains % characters, and no arguments
* Set a component for logging
* Guard incase the component isn't provided
* Ensure that rendered is defined as a property.
* Ensure that next_prefix is defined as a property.
* Debian Unstable has PostgreSQL 15 now
* Ensure that location_line and location_file are defined as properties.
2021-08-18 linda.fliss <linda.fliss@iserv.eu>
* added missing null check to prevent warning on in_array call
2022-10-04 Florian Schlichting <fsfs@debian.org>
* release awl 0.63
2022-02-13 Andrew Ruthven <puck@catalyst.net.nz>
* Sid has PostgreSQL 14 now - missed one
* Sid has PostgreSQL 14 now
* Update signature to modern version.
* Add a test on Bullseye
* Fix syntax
* Fix syntax
* Fixes for PHP 8.1
2022-02-05 Andrew Ruthven <puck@catalyst.net.nz>
* Fix a short array error when running with PHP 8
2021-03-01 Florian Schlichting <fsfs@debian.org>
* release awl 0.62
* actually set the search_path in SetSearchPath() (fixes #23)
2021-02-08 Florian Schlichting <fsfs@debian.org>
* TestTextMatch: treat contains the same as starts-with and ends-with when the needle is empty
2021-02-05 Michael Stilkerich <ms@mike2k.de>
* Fix param-filter that checks if a parameter is defined
* Fix param-filter for multi-value parameters with TYPE=T1,T2 format
* Fix GetProperties: Select properties with group prefix
* Fix: GetProperties must treat property names as case-insensitive
2021-02-07 Andrew Ruthven <puck@catalyst.net.nz>
* Make sure that DAViCal can create its own log files
* If length is 0, then this match should fail - regression tests pass
* Replicate checking the length of $search
2021-02-06 Andrew Ruthven <puck@catalyst.net.nz>
* Another attempt to suppress a strstr error.
* PHP 7.3.12 needs the needle to be defined
2021-02-05 Florian Schlichting <fsfs@debian.org>
* param-filter: fix a typo (array case), explode comma-separated multivalues (string case)
2021-01-28 Michael Stilkerich <ms@mike2k.de>
* Fix merge with master for param-filter is-not-defined case
* Fix wrong statement in comment
2021-01-24 Michael Stilkerich <ms@mike2k.de>
* Support propfilter test="anyof"
2021-02-03 Florian Schlichting <fsfs@debian.org>
* fix PHP8 deprecation warning: Required parameter $prefix follows optional parameter $ftype in inc/DataEntry.php on line 652
* CI: add test_buster_latestphp
* CI: run davical testsuite in addition to PHP syntax and unit tests
2021-01-24 Michael Stilkerich <ms@mike2k.de>
* Fix regression on allof match for multiple prop-filter elements
2021-01-24 Andrew Ruthven <andrew@etc.gen.nz>
* Use same indenting and style as other code
2021-01-23 Michael Stilkerich <ms@mike2k.de>
* Fix param-filter/is-not-defined behavior
* Fail text-match if property/parameter is not defined
2021-01-31 Andrew Ruthven <puck@catalyst.net.nz>
* Warn if the hook function is missing
2021-01-23 Michael Stilkerich <ms@mike2k.de>
* Negated text-match must not match non-existing properties
2021-01-25 Andrew Ruthven <andrew@etc.gen.nz>
* Handle a property having multiple parameters.
2021-01-23 Michael Stilkerich <ms@mike2k.de>
* Fix param-filter/text-match evaluation (Issue #21)
2021-01-24 Andrew Ruthven <puck@catalyst.net.nz>
* Update logic to match the previous logic.
2021-01-23 Andrew Ruthven <puck@catalyst.net.nz>
* Correctly filter on other properties
2020-04-28 Debian Janitor <janitor@jelmer.uk>
* Changed vcs type from git to Git based on URL.
* Set upstream metadata fields: Bug-Submit, Repository, Repository-Browse.
* Wrap long lines in changelog entries: 0.37, 0.33.
2020-04-13 Florian Schlichting <fsfs@debian.org>
* release awl 0.61
* Update AUTHORS and ChangeLog
2020-04-04 Florian Schlichting <fsfs@debian.org>
* Disallow current time as a session key (fix: #19, CVE-2020-11728)
* Drop LSIDLogin function (fix: #18, CVE-2020-11729)
2019-02-27 Jamie McClymont <jamiemcclymont@catalyst.net.nz>
* Make olson_from_tzstring faster by caching timezone_identifiers_list
2019-12-06 Florian Schlichting <fsfs@debian.org>
* myComponentTest.php: drop empty setUp function, which causes make test to fail with PHPUnit 8
* use foreach() instead of deprecated each() (see davical-project/davical#190)
2019-01-30 Florian Schlichting <fsfs@debian.org>
* release awl 0.60
* Update AUTHORS and ChangeLog
2018-12-29 Florian Schlichting <fsfs@debian.org>
* GetItip: do no increase SEQUENCE
* log feedback from gettext init
* Remove apidoc for removed class iCalendar
* Update debian/watch to changed Gitlab directory layout
2018-12-27 Florian Schlichting <fsfs@debian.org>
* Prevent "PHP Warning: count(): Parameter must be an array..." (fixes
#15, also fixes davical-project/davical#153)
2018-11-19 Jamie McClymont <jamiemcclymont@catalyst.net.nz>
* Add GitLab CI
2018-04-30 Malte Renken <malte.renken@fu-berlin.de>
* XMLElement::__construct() : set $this->attributes to an empty array
by default. Fixes https://gitlab.com/davical-project/awl/issues/14
2018-01-11 Florian Schlichting <fsfs@debian.org>
* release awl 0.59
* switch to doxygen for api docs
2017-12-09 Florian Schlichting <fsfs@debian.org>
* Ensure compatibility of unit tests with phpunit 6 (closes: #882894)
2017-09-21 Florian Schlichting <fsfs@debian.org>
* vComponent: wrap lines longer than 75 bytes
2017-05-29 Florian Schlichting <fsfs@debian.org>
* use new class constructors (cf davical-project/davical#119)
2017-04-08 Florian Schlichting <fsfs@debian.org>
* vComponent: allow empty prop-filter
* Session.php: use correct / defined username in debug output
2017-05-15 Florian Schlichting <fsfs@debian.org>
* update class constructors to not trigger a warning in PHP 7 (fixes #11)
2017-04-28 Florian Schlichting <fsfs@debian.org>
* be more forgiving when parsing propname with params from propvalue
2017-01-23 Florian Schlichting <fsfs@debian.org>
* release awl 0.57
* Update AUTHORS and ChangeLog
2017-01-10 Florian Schlichting <fsfs@debian.org>
* Browser: add ExtraRowFormat() to format additional rows differently
2017-01-08 Florian Schlichting <fsfs@debian.org>
* delete session after logout, clean up old sessions (fixes davical#65, Debian #643907)
* always use full the ID as username, similar to davical's
HTTPAuthSession (fix #1, fix #2, debian #703139)
2017-01-07 Florian Schlichting <fsfs@debian.org>
* Session::Log and ::Dbg are deprecated
* vComponent: add missing strtoupper, so that BEGIN:TYPE...END:TYPE
are really case-insensitive
2017-01-02 Florian Schlichting <fsfs@debian.org>
* vProperty: always escape backslash, and escape semicolon for "other"
properties (fixes Debian bug #837154)
2016-12-31 Florian Schlichting <fsfs@debian.org>
* improve debug logging: ignore components, filter by remote IP or username
2016-12-28 Florian Schlichting <fsfs@debian.org>
* eliminate trailing whitespace, expand tabs
* doc typos
2016-12-02 Florian Schlichting <fsfs@debian.org>
* Remove deprecated and unused class iCalendar along with remaining
$c->local_tzid references
2016-12-01 Paul Kallnbach <p.kallnbach@gorilla-computing.de>
* Update vProperty.php
2016-06-13 Florian Schlichting <fsfs@debian.org>
* Bump AWL version to 0.57 (API change)
* fix if-else logic, so that "Unable to Reset Password" does not get
overwritten by "Temporary Password" form
2016-06-13 Basti <basti122303@gitlab>
* Fix link after password reset in case DAViCal is not installed in
the webserver root. Closes:davical-project/davical#94
2016-05-08 Andrew McMillan <andrew@morphoss.com>
* A semi-colon might be escaped within the text value.
* Rename get_fields() function.
* Improve access to the slow query threshold.
2016-05-10 Florian Schlichting <fsfs@debian.org>
* always remake the apidoc, and remove the stale copy from git
* update Makefile to work with both php5 and php7
2016-02-22 ClemensN <c.nuebel@gorilla-computing.de>
* fixed issue with escaped ',' in CATEGORIES Property that are seperators in this case
2016-01-11 Florian Schlichting <fsfs@debian.org>
* release awl 0.56
* run simple php syntax check on make test
2016-01-01 Florian Schlichting <fsfs@debian.org>
* fix php7 syntax error and correctly handle "what if the new
AwlDatabase() call fails" case
2015-12-16 Florian Schlichting <fsfs@debian.org>
* Make "Toggle all privileges" button work on all forms
2015-12-10 Jim Fenton <fenton@bluepopcorn.net>
* Update AWL version number to 0.56
2015-11-13 ClemensN <c.nuebel@gorilla-computing.de>
* Fixed grouped Properties naming (e.g. Addresses: item1.ADR instead of just ADR)
2015-11-05 Florian Schlichting <fsfs@debian.org>
* less verbose logging on regular admin ui accesses
2015-11-05 Florian Schlichting <fsfs@debian.org>
* fix use of nonexistant function / typo
2015-10-03 Florian Schlichting <fsfs@debian.org>
* HttpDateFormat() is in AwlDBDialect, actually
* update version in default make target
* remove boilerplate (no-op) Debian maintainer scripts
2015-09-18 Mark Davies <mark.davies@moose-beast.com>
* Fix initialisation of content property in TestFilter function. Also improve comments.
2015-04-28 Matthias Althaus <contact@althaus.it>
* Fix broken timezone handling (fixes #9)
2015-03-06 Matthias Althaus <contact@althaus.it>
* Reworked iCalProp parsing according to RFC5545 (fixes #7)
2014-10-06 Florian Schlichting <fsfs@debian.org>
* release awl 0.55
* also exclude .pc/ and debian/ from tarball
* Declare compliance with Debian Policy 3.9.6
2014-09-13 Florian Schlichting <fsfs@debian.org>
* Declare compliance with Debian Policy 3.9.5
* switch to copyright-format 1.0 debian/copyright
* remove/replace non-free test data
* Add a debian/watch file
* Bump dh compat to level 9
* debian/control: move to section php and clean out Depends
* Add doc-base registration for the api doc in awl-doc
* Clean up duplicate files (symlink identical files in api documentation)
* Exclude vendor directory from tarball and use Debians phpunit instead
2014-09-10 Florian Schlichting <fsfs@debian.org>
* add a "make test" target to run phpunit tests
* Switch to source format 3.0 (quilt)
* remove php-awl.spec, it is recreated from php-awl.spec.in by Makefile
* Use short-form debian/rules
2014-09-09 Florian Schlichting <fsfs@debian.org>
* Takeover for the Davical Development Team (first part of #742498)
2014-05-14 Ján Máté <jan.mate@inf-it.com>
* fixed forced recursive object rendering
* fixed clearPropertyAt function
* fixed wrong processing of invitation / added ClearParameters method
2014-04-07 Ján Máté <jan.mate@inf-it.com>
* added clearPropertyAt function (required for DAViCal invitation processing)
* fixed major object processing bug
* fixes related to Awl interface changes
* added parsing for \r in content
2014-03-26 Ján Máté <jan.mate@inf-it.com>
* prevent infinite recursion if vObject is malformed - call
$iterator->next() only if iterator->valid()
2014-03-24 Ján Máté <jan.mate@inf-it.com>
* fixed masking of confidential event components
* fix of vCard import with obsolete parameters (Jorge López Pérez)
2014-03-23 Ján Máté <jan.mate@inf-it.com>
* removed VCalendar.html (vCalendar.html is the latest version)
2014-01-01 Alexander Dreweke <thrawn@shadowhunt.de>
* cleanup text-match
2013-12-09 Alexander Dreweke <thrawn@shadowhunt.de>
* implement full text-match spec for caldav and carddav
2013-11-17 Alexander Dreweke <thrawn@shadowhunt.de>
* check collation for caseinsensitive search
2013-11-07 Milan Medlik <milan@morphoss.com>
* fix exception in Multipart with ->
2013-10-15 Andrew McMillan <andrew@morphoss.com>
* Fix typo.
2013-10-11 Andrew McMillan <andrew@morphoss.com>
* Handle htmlspecialchars() differences between PHP < 5.4 vs >= 5.4
* More work on correct wrapping of XML with weird stuff.
2013-09-27 Andrew McMillan <andrew@morphoss.com>
* Fix parsing issues with lowercase begin:vcard etc.
2013-09-26 Andrew McMillan <andrew@morphoss.com>
* Get rid of old vCalendar/vComponent code. Add commented alternative for XML escaping.
* Fix a bunch of bugs discovered through RRULE expansion issues.
2013-09-25 Andrew McMillan <andrew@morphoss.com>
* Correct encoding of text to go in XML.
* Deprecate the various SQL date format strings which are moved to AwlDatabase
* Use $this->master, ensure we are dealing with a vComponent, correct split on EOL.
* It's better if we can make $this->master usable everywhere.
* Move these constants from iCalendar into the Database class.
2013-09-16 Milan Medlik <milan@morphoss.com>
* fix GetPropertiesByPath -> using GetComponents and GetProperties
2013-09-04 Andrew McMillan <andrew@morphoss.com>
* Use \r\n for line endings. Correct spelling of "unrolled".
2013-09-02 Andrew McMillan <andrew@morphoss.com>
* Clarification of code that confused Eclipse.
* Our coding style omits the PHP closing tag at EOF
* Add the TestFilter method back in.
2013-07-22 Milan Medlik <milan@morphoss.com>
* remove rendered
* rename function for better human readable
* switch VERSION and PROID for pass some test
2013-07-19 Milan Medlik <milan@morphoss.com>
* prefil properties name in basic component parse
* change link to real files
2013-07-18 Milan Medlik <milan@morphoss.com>
* fix test 2007 and next
* fix almost all tests
* fix test 0244-MOZ-POST-FB.test
2013-07-16 Milan Medlik <milan@morphoss.com>
* fix several test till 0244-mox-post-fb
* finaly some test passed
2013-07-15 Milan Medlik <milan@morphoss.com>
* add myCalendar into
2013-07-15 Andrew McMillan <andrew@morphoss.com>
* Add support for decoding a password stored in WordPress hash format.
* Ensure VERSION is first in a VCALENDAR component.
2013-05-25 Andrew McMillan <andrew@morphoss.com>
* Avoid ignorable warning message.
* Ensure Attendees array is initialised.
2013-05-14 Andrew McMillan <andrew@morphoss.com>
* Allow field selection to work when a schema-qualified tablename is given.
* This should not be private, since it is used by Editor.
* Add phpdoc for the Editor class.
* If $c->expand_pdo_parameters is off then we should still detect failures!
2013-04-21 Jason Alavaliant <alavaliant@gmail.com>
* add fix for the OSX Contacts.app: escape using CDATA
2013-04-10 Matthias Althaus <matthias.althaus@iserv.eu>
* Fix using property values instead of whole property on timezone guessing
2013-03-25 Christoph Anton Mitterer <mail@christoph.anton.mitterer.name>
* In places where the CGI variable REMOTE_USER is read, support
alternatively REDIRECT_REMOTE_USER, which is used by the Apache
HTTPD Server instead, when a redirect was used.
2013-03-07 Christoph Anton Mitterer <mail@christoph.anton.mitterer.name>
* Handle the content of the CGI AUTH_TYPE variable case-insensitively as
defined by RFC 3875 Section 4.1.1.
2013-03-07 Andrew McMillan <andrew@morphoss.com>
* Release 0.54
2012-10-10 Andrew McMillan <andrew@morphoss.com>
* Editor: provide error message if an undefined field is used in a form.
* Session: clarify code for setting date format.
2012-09-12 Andrew McMillan <andrew@morphoss.com>
* Use accessor for EMail->To(), remove silly 'must log in' message.
Also declare $page_elements global, as it must be.
* Provide an accessor for the To() list.
2012-07-04 Andrew McMillan <andrew@morphoss.com>
* Release 0.53
2012-06-26 Andrew McMillan <andrew@morphoss.com>
* Correct replacement when 'mailto:' is not passed in as first part of match.
2012-06-25 Andrew McMillan <andrew@morphoss.com>
* Fix name of CDO TZID property, avoid unassigned variable warning.
* Fix typo in unlocking code.
2012-05-28 Andrew McMillan <andrew@morphoss.com>
* For creating MIME messages.
* Updated and modernized.
2012-06-17 Andrew McMillan <andrew@morphoss.com>
* Release 0.52
2012-06-14 Andrew McMillan <andrew@morphoss.com>
* [DataUpdate] Fix regular expression matching whether value is already a salted hash.
2012-05-20 Andrew McMillan <andrew@morphoss.com>
* [XMLElement] Changes for more repeatable parsing.
* [XMLDocument] If an href includes a space or @ then bug about it, but urlencode it also.
2012-05-15 Andrew McMillan <andrew@morphoss.com>
* [Editor] Add support for labels on checkboxes.
2012-05-11 Andrew McMillan <andrew@morphoss.com>
* [XMLElement] XML parsing / creating improvements / fixes.
2012-04-30 Andrew McMillan <andrew@morphoss.com>
* [vComponent] We should use GetNSTag() rather than GetTag() in most cases.
2012-04-22 Andrew McMillan <andrew@morphoss.com>
* [AwlQuery] Throw exception if the database is not connected when we try to query it.
2012-04-16 Andrew McMillan <andrew@morphoss.com>
* [vCalendar] Log the actual VTIMEZONE which appears to be in error.
2012-03-22 Andrew McMillan <andrew@morphoss.com>
* [vCalendar] New SetUID/GetUID methods used by POST add-member.
2012-03-12 Andrew McMillan <andrew@morphoss.com>
* [Editor] The current row needs to be global so the hook might reference it.
2012-01-13 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Fix handling for vcard peculiarities.
* [vComponent] Don't escape all ; in N or ADR.
* [vComponent] Allow for property parameters to be multiply set.
* [AwlDbDialect] Don't treat binary strings longer than 6 characters as numbers.
* Release 0.51
2012-01-04 Andrew McMillan <andrew@morphoss.com>
* Release 0.50
2011-11-09 Andrew McMillan <andrew@morphoss.com>
* [AWLUtilities] Ensure we flush output buffers on abort.
2011-11-02 Andrew McMillan <andrew@morphoss.com>
* [vCalendar] More support for scheduling-related actions.
* [vComponent] Minor performance tweaks.
2011-10-31 Andrew McMillan <andrew@morphoss.com>
* [vCalendar] Add method to scrub a confidential event.
2011-10-24 Andrew McMillan <andrew@morphoss.com>
* [AwlDatabase] Throw an exception when we can't rollback a transaction.
* [vCalendar] New functions for updating organizer/attendee status.
2011-10-20 Andrew McMillan <andrew@morphoss.com>
* Release 0.49
* [vComponent] Allow re-rendering to be forced.
* [AwlUtilities] Add a new trace_bug() function which logs a stacktrace.
2011-10-18 Andrew McMillan <andrew@morphoss.com>
* [AwlUtilities] timezone_identifiers_list() is only PHP5.2 onwards :-(
2011-10-16 Andrew McMillan <andrew@morphoss.com>
* [Session] Support array of server_auth_type since Kerberos can send different ones.
2011-10-13 Andrew McMillan <andrew@morphoss.com>
* [various session things] Force cast to text() to handle integer usernames
2011-10-05 Andrew McMillan <andrew@morphoss.com>
* [AwlUtilities] Support for gzdecode where PHP does not.
2011-09-24 Andrew McMillan <andrew@morphoss.com>
* Release 0.48
2011-09-17 Andrew McMillan <andrew@morphoss.com>
* [vCalendar] More ways to get an Olson Time Zone ID.
2011-09-15 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Cleaned up the filter handling.
2011-09-14 Andrew McMillan <andrew@morphoss.com>
* [vCalendar] Support replacement the last few iCalendar cases that were missing.
* Add TZ exception for America/Phoenix and config for doing these as config items.
* See http://wiki.davical.org/w/Configuration/settings/timezone_translations
2011-09-13 Andrew McMillan <andrew@morphoss.com>
* Fix handling of properties enclosed in double-quotes.
* Release 0.47
2011-09-08 Andrew McMillan <andrew@morphoss.com>
* [vCalendar] Developing this to be useful for scheduling.
2011-09-06 Andrew McMillan <andrew@morphoss.com>
* [vComponent] add GetPValue() method and VCalendar class.
* [iCalendar] Remove deprecated() function moved to AwlUtilities.
* [AwlQuery] Change phpdoc to include possible values for TransactionState()
* [AwlDatabase] Make attempt to nest transactions a fatal error.
* [AWLUtlities] Add fatal() and deprecated() functions.
2011-06-04 Andrew McMillan <andrew@morphoss.com>
* Fix some errors in filtering on arbitrary iCalendar properties.
* Better fallback between pluggable authentication things.
* Provide better logging when DB connection fails.
2011-02-23 Felix Möller <mail@felixmoeller.de>
* Add support for RPM packages.
2011-02-22 Andrew McMillan <andrew@morphoss.com>
* The " character should not be escaped per RFC5545 3.3.11
* [AwlCache] Add facility to lock / release something arbitrary.
2011-01-21 Andrew McMillan <andrew@morphoss.com>
* Ensure all lines of the output VComponent are \r\n terminated.
2011-01-06 Andrew McMillan <andrew@morphoss.com>
* [AuthPlugins] Fix misspelled __LINE__ constant.
* Add US/* as allowable timezone names.
2011-01-04 Andrew McMillan <andrew@morphoss.com>
* [iCalendar] Add to the list of passed-through values on obfuscation.
* [DataUpdate] Move strange character check until after password hashing.
Well, well well. For some years it has been impossible to have '
or \ in a password...
2011-01-01 Andrew McMillan <andrew@morphoss.com>
* [AwlCache] Added: A Simple Memcached wrapper supporting namespaces.
2010-12-28 Andrew McMillan <andrew@morphoss.com>
* The real release 0.46 :-)
* Really going to release 0.46 this time...
* [classBrowser] Fix checking of ordering fieldname.
* [Validation] Remove references to outdated ereg() functions.
* [AWLUtlities] Rename regex checking function more appropriately.
2010-12-28 Andrew McMillan <andrew@morphoss.com>
* Release 0.46
* [classBrowser] Fix checking of ordering fieldname.
* [Validation] Remove references to outdated ereg() functions.
* [AWLUtlities] Rename regex checking function more appropriately.
* [Session] Don't use ereg() for parsing regex.
* [XMLDocument] Use __construct style for constructor.
2010-12-24 Andrew McMillan <andrew@morphoss.com>
* [AwlQuery] Make the quote() method public/static.
2010-12-23 Andrew McMillan <andrew@morphoss.com>
* Convert everything except PgQuery to use AwlQuery
* [AwlQuery] Add minor missing functionality so we can switch.
* [vComponent] Improve parameter splitting to allow for escapes.
* [classEditor] Avoid uninitialised variable warning.
2010-11-27 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Add __toString() methods.
* [Session] If someone is made inactive then their long-term login should cease.
2010-10-15 Andrew McMillan <andrew@morphoss.com>
* [AWLUtilities] Add an awl_version() function.
2010-10-10 Andrew McMillan <andrew@morphoss.com>
* [vComponent] It is OK to SetComponents() to an empty set.
2010-09-20 Andrew McMillan <andrew@morphoss.com>
* [AWLDbDialect] Quote hex numbers as strings.
2010-09-11 Andrew McMillan <andrew@morphoss.com>
* [iCalendar/vComponent/vEvent] UTF8 mode for RFC5545 wrap regexes
2010-09-10 Andrew McMillan <andrew@morphoss.com>
* [AWLUtilities] Undeclared globals in force_utf8.
* [iCalendar,vEvent,vComponent] Fix the line wrapping in V* components.
2010-08-30 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Add a function to return a single property.
* Slightly better TZname to Olson matching.
2010-08-28 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Various changes in use with VCard.
- Enforce upercase property names.
- Invert array sense for MaskComponents / MaskProperties to match
the way it is with the GetProperties, GetComponents.
2010-08-26 Andrew McMillan <andrew@morphoss.com>
* Add some basic filter processing for addressbook-query usage.
* Wrap password logging in logs behind $c->dbg['password'] = 1;
2010-06-23 Andrew McMillan <andrew@morphoss.com>
* [XMLDocument] Add helper for CardDAVElement.
2010-06-17 Andrew McMillan <andrew@morphoss.com>
* [Session] Try and clarify the lost password text a little better.
* Don't send multipart/form-data if the form is GET.
2010-05-28 Andrew McMillan <debian@mcmillan.net.nz>
* [AwlQuery] Fixing backward compatibility with PgQuery.
* [AwlQuery] Fix handling of queries with no parameters.
2010-05-27 Andrew McMillan <andrew@morphoss.com>
* [iCalendar] Apply correct wrapping for RFC5545.
* [iCalendar] Don't add a trailling space when wrapping for RFC5545.
2010-05-19 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Generic base class for handling VCALENDAR, VCARD, etc.
* Expose transaction state at query level.
* No need to return anything from the schema update.
2010-05-09 Andrew McMillan <andrew@morphoss.com>
* [Translation] If gettext is not installed, fall back to English.
2010-05-08 Andrew McMillan <andrew@morphoss.com>
* Add Australia to the list of possible TZ continents.
2010-04-28 Andrew McMillan <andrew@morphoss.com>
* [AwlQuery] Handle setting an alternative connection somewhat better.
* [Session] _CheckLogin needs to access $c for external authentication.
* Allow for multiple records to have somehow got into the DB.
* Better parameter escaping, including escaping ? for older PHP::PDO.
2010-04-20 Andrew McMillan <andrew@morphoss.com>
* Replace deprecated split() calls.
2010-04-17 Andrew McMillan <andrew@morphoss.com>
* Release 0.43
2010-04-15 Andrew McMillan <andrew@morphoss.com>
* [iCalendar] Add and use a new olson_from_tzstring() function.
2010-04-14 Andrew McMillan <andrew@morphoss.com>
* We can close this bug now, since it was fixed a wee while ago.
* [AwlQuery] Warn if named parameters are passed in incorrectly.
* Fix strange alternate reality definition of aparche_read_header.
2010-04-12 Andrew McMillan <andrew@morphoss.com>
* Preparing to release 0.43
* The new database libraries should be with the library code.
Especially since they're being used for more than just DAViCal now.
2010-09-11 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Tweak wrapping one last time.
* [iCalendar/vComponent/vEvent] UTF8 mode for RFC5545 wrap regexes
The regexes used for wrapping to 72 characters in line with
RFC5545 wrapping rules need to be UTF8 aware, otherwise they
will break lines in the middle of UTF8 sequences and we get
to fail to put both broken parts into the database.
2010-09-10 Andrew McMillan <andrew@morphoss.com>
* [AWLUtilities] Undeclared globals in force_utf8.
* Ignore Eclipse droppings.
* [iCalendar,vEvent,vComponent] Fix the line wrapping in V* components.
The wordwrap was not being done in a repeatably reversible manner
due to a misguided effort to make it more readable. This gives up
on readability in favour of reversability.
2010-09-02 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Revert that last change.
2010-08-30 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Add a function to return a single property.
* Slightly better TZname to Olson matching.
2010-08-28 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Various changes in use with VCard.
- Enforce upercase property names.
- Invert array sense for MaskComponents / MaskProperties to match
the way it is with the GetProperties, GetComponents.
- Generally improve the consistency.
2010-08-26 Andrew McMillan <andrew@morphoss.com>
* Add some basic filter processing for addressbook-query usage.
* Wrap password logging in logs behind $c->dbg['password'] = 1;
2010-06-23 Andrew McMillan <andrew@morphoss.com>
* [XMLDocument] Add helper for CardDAVElement.
2010-06-17 Andrew McMillan <andrew@morphoss.com>
* [Session] Try and clarify the lost password text a little better.
* Don't send multipart/form-data if the form is GET.
2010-05-28 Andrew McMillan <debian@mcmillan.net.nz>
* [AwlQuery] Fixing backward compatibility with PgQuery.
* [AwlQuery] Fix handling of queries with no parameters.
2010-05-27 Andrew McMillan <andrew@morphoss.com>
* [iCalendar] Apply correct wrapping for RFC5545.
* [iCalendar] Don't add a trailling space when wrapping for RFC5545.
2010-05-19 Andrew McMillan <andrew@morphoss.com>
* [vComponent] Generic base class for handling VCALENDAR, VCARD, etc.
* Expose transaction state at query level.
* No need to return anything from the schema update.
2010-05-09 Andrew McMillan <andrew@morphoss.com>
* [Translation] If gettext is not installed, fall back to English.
2010-05-08 Andrew McMillan <andrew@morphoss.com>
* Add Australia to the list of possible TZ continents.
2010-04-28 Andrew McMillan <andrew@morphoss.com>
* [AwlQuery] Handle setting an alternative connection somewhat better.
* [Session] _CheckLogin needs to access $c for external authentication.
* Allow for multiple records to have somehow got into the DB.
* Better parameter escaping, including escaping ? for older PHP::PDO.
2010-04-20 Andrew McMillan <andrew@morphoss.com>
* Replace deprecated split() calls.
2010-04-17 Andrew McMillan <andrew@morphoss.com>
* Release 0.43
2010-04-15 Andrew McMillan <andrew@morphoss.com>
* [iCalendar] Add and use a new olson_from_tzstring() function.
2010-04-14 Andrew McMillan <andrew@morphoss.com>
* We can close this bug now, since it was fixed a wee while ago.
* [AwlQuery] Warn if named parameters are passed in incorrectly.
* Fix strange alternate reality definition of aparche_read_header.
2010-04-12 Andrew McMillan <andrew@morphoss.com>
* [AwlQuery] Move new database libraries into AWL
2010-04-01 Andrew McMillan <andrew@morphoss.com>
* [classEditor] Tidy up logging.
* [DataUpdate] Merge sql_from_post() and sql_from_object().
2010-03-21 Andrew McMillan <andrew@morphoss.com>
* [PgQuery] Add forward compatibility rows() method.
2010-03-18 Andrew McMillan <andrew@morphoss.com>
* [iCalendar] Provide a better deprecation indication.
* [iCalendar] Add explicit need for PgQuery and mark stuff deprecated.
2010-03-10 Andrew McMillan <andrew@morphoss.com>
* Switch to LGPL v3 license.
2010-03-08 Andrew McMillan <andrew@morphoss.com>
* Release 0.42
* [XMLDocument] Return any created node. Also parse namespace in tag.
These functions are much more useful if we can actually use any
returned reference as another location within a document, so we
can have a hold of the root, and then add within each new tag
we add, supporting outer -> inner construction approaches along
with the existing inner -> outer approach used currently.
2010-03-07 Andrew McMillan <andrew@morphoss.com>
* Note that the iCalendar class is DEPRECATED.
* Don't try to translate null/empty strings.
2010-03-05 Andrew McMillan <andrew@morphoss.com>
* Add a PostToValues() method to update form data from POST.
2010-02-23 Andrew McMillan <andrew@morphoss.com>
* Release 0.41
* [classEditor] Make Create/Apply form translatable.
* [User] Yes/No should be translatable.
2010-02-18 Andrew McMillan <andrew@morphoss.com>
* [PgQuery] Don't log connection string on error as it may expose the password.
2010-02-17 Andrew McMillan <andrew@morphoss.com>
* [DataUpdate] Translate empty string to NULL for bitfields.
2010-02-16 Andrew McMillan <andrew@morphoss.com>
* [AWLUtilities] Add support for a legacy plain MD5 password hash
2010-02-01 Andrew McMillan <andrew@morphoss.com>
* Move editor widget class into standard libraries.
2010-01-30 Andrew McMillan <andrew@morphoss.com>
* [MenuSet] Remove deprecated backward compatibility with PHP4.
* Comply with E_STRICT and friends.
* [PgQuery] Make duration() conditional in case it is defined elsewhere.
2009-12-28 Andrew McMillan <andrew@morphoss.com>
* [XMLElement] Make all properties protected, provide __tostring()
2009-12-27 Andrew McMillan <andrew@morphoss.com>
* [XMLDocument] Fix for NS helpers assigning used NS alias.
2009-11-22 Andrew McMillan <andrew@morphoss.com>
* [classBrowser] Add a Title() get/set method.
* [AWLUtilties] Support precision in type names.
2009-11-17 Andrew McMillan <andrew@morphoss.com>
* [XMLElement] Looking for the xmlns attribute should return it.
2009-11-14 Andrew McMillan <andrew@morphoss.com>
* Remove opportunity for unassigned value warning.
* [XMLElement] Allow the GetElements() method to be called with no tag.
2009-11-11 Andrew McMillan <andrew@morphoss.com>
* [AWLUtilities] More generic implementation of request_headers.
2009-11-03 Andrew McMillan <andrew@morphoss.com>
* [iCalendar] Comment a bunch of debugging messages.
2009-10-30 Matthias Mohr <Matthias@Mohrenclan.de>
* Add translation features.
2009-10-20 Andrew McMillan <andrew@morphoss.com>
* Restructure the external link handling.
* Add an option for links to open in a new tab/page.
2009-10-16 Andrew McMillan <andrew@morphoss.com>
* [Session] Allow username/e-mail for forgotten password to be case-insensitive.
2009-09-25 Andrew McMillan <andrew@morphoss.com>
* [DataEntry] Remove uninitialised warning possibility.
* [XMLDocument] Remove uninitialised warning possibilty.
* [iCalendar] Remove deprecated function. Add some convenience methods.
* [classBrowser] Add new replaceable variable for row even/odd ness.
2009-09-07 Andrew McMillan <andrew@morphoss.com>
* [AWLUtilities] Add a fix_latin() function to convert mixed charset into UTF-8.
2008-08-25 Andrew McMillan <andrew@morphoss.com>
* [PgQuery] Extend clean_string to recurse through an array.
* [DataUpdate] When value for an integer is null or empty string, use db NULL.
2009-06-25 Andrew McMillan <andrew@morphoss.com>
* [PgQuery] Add the ability for PgQuery to search a non-default schema.
2009-06-22 Andrew McMillan <andrew@morphoss.com>
* Release 0.37
|