forked from onPHP/onphp-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
4686 lines (2796 loc) · 129 KB
/
ChangeLog
File metadata and controls
4686 lines (2796 loc) · 129 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2012-04-26 Artem A. Naumenko, Evgeny V. Kokovikhin
* core/Base/Assert.class.php, core/Cache/PeclMemcached.class.php,
main/Monitoring/PinbedPeclMemcached.class.php, test/main/Utils/PinbaTest.class.php,
core/Cache/SequentialCache.class.php,
test/core/SequentialCacheTest.class.php:
Assert::isObject added, lazy ability to PeclMemcached, Pinba's tests tune,
Addd SequentialCache with tests.
2012-04-22 Georgiy T. Kutsurua
* core/OSQL/DBColumn.class.php: Fix DBColumn
2012-04-20 Timofey A. Anisimov
* test/main/OsqlSelectTest.class.php,
core/SQLFullOuterJoin.class.php,
core/Joiner.class.php
core/SelectQuery.class.php:
Full outer join capability in select query
2012-04-12 Evgeny V. Kokovikhin
* test/main/Utils/PinbaTest.class.php, main/Monitoring/PinbaClient.class.php:
test for PinbaClient added. Thanks to Artem A. Naumenko
2012-04-11 Evgeny V. Kokovikhin
* main/Monitoring/PinbaClient.class.php: base ability of
tree (integral) logging added. Thanks to Artem A. Naumenko
2012-04-04 Georgiy T. Kutsurua
* main/UI/View/JsonPView.class.php,
main/UI/View/JsonPView.class.php:
For easy using jsonp, @see http://www.json-p.org/
2012-03-26 Alexey S. Denisov
* core/DB/SQLitePDO.class.php: Added SQLite3 though PDO
2012-03-14 Alexander A. Sayapin
* core/Base/Date.class.php: Fixed calculating number of weeks in year accordingly ISO 8601.
2012-01-13 Alexander A. Zaytsev
* core/Base/Date.class.php: toFormatString method added.
2012-01-11 Evgeny V. Kokovikhin
* core/DB/Dialect.class.php: throw exception for null values. Thanks to
Nikita V. Konstantinov.
2011-11-21 Alexey S. Denisov, Evgeny V. Kokovikhin
* meta/types/ObjectType.class.php, test/misc/DAOTest.class.php: changed logic
for getObjectId method of lazy encapsulant; test for lazy logic added
2011-11-29 Igor V. Gulyaev
* test/main/ViewTest.class.php: added View test
2011-11-21 Evgeny V. Kokovikhin
* core/DB/PostgresDialect.class.php, test/main/PostgresDialectTest.class.php:
use mb_* string function for utf-8 strings.
2011-11-18 Sergey S. Sergeev
* main/Utils/AMQP/AMQPConsumer.class.php,
main/Utils/AMQP/AMQPDefaultConsumer.class.php,
main/Utils/AMQP/Pecl/AMQPPeclChannel.class.php:
handle the change of СonsumerTag implemented.
2011-11-18 Evgeny V. Kokovikhin
* main/Messages/TextMessage.class.php, main/Messages/TextFileReceiver.class.php:
a bit optimize: don't needed to make Timestamp twice.
2011-11-17 Sergey S. Sergeev
* main/Base/LightMetaProperty.class.php: speed up insert or update operations,
removes loading objects if property is lazy. Thanks to Alexander V. Solomatin.
2011-11-14 Dmitry V. Snezhinskiy
* main/Utils/AMQP/Pecl/AMQPPeclChannel.class.php :
customize AMQPPeclChannel Exception. Author Evgenia T. Tekalin.
2011-11-14 Evgeny V. Kokovikhin
* core/Cache/PeclMemcached.class.php, test/core/MemcachedTest.class.php :
fix PeclMemcached working with wrong keys. Thanks to Nikita V. Konstantinov.
2011-10-31 Vasily M. Stashko
* core/DB/MySQL.class.php : fix for correct DB schemas check with MySQL
2011-10-27 Vasily M. Stashko
* main/Flow/PartViewer.class.php: added method PartViewer::toString
2011-10-24 Alexey S. Denisov
* core/OSQL/SelectQuery.class.php,
test/misc/DAOTest.class.php : fix for correct work selects with SQLite
2011-10-24 Alexey S. Denisov
* core/Form/Primitives/IdentifiablePrimitive.class.php: added method getClassName
2011-10-21 Evgeny V. Kokovikhin
* core/OSQL/QuerySkeleton.class.php: more frendly error message
2011-09-30 Victor V. Bolshov (class), Alexey A. Denisov (tests)
* core/Logic/CallbackLogicalObject.class.php
2011-09-30 Evgeny V. Kokovikhin
* core/Cache/Memcached.class.php, core/Cache/PeclMemcached.class.php,
core/DB/PgSQL.class.php, global.inc.php.tpl, main/Monitoring/PinbaClient.class.php,
main/Monitoring/PinbedMemcached.class.php,
main/Monitoring/PinbedPeclMemcached.class.php,
main/Monitoring/PinbedPgSQL.class.php: wrapper for pinba
2011-09-29 Alexander A. Zaytsev
* main/Flow/EmptyGifView.class.php: view with hardcoded empty gif 1x1 image.
2011-09-14 Alexander A. Zaytsev
* core/Form/Primitives/PrimitiveString.class.php: import only scalar values,
except bool.
* core/Form/Filter.class.php: fix filter order in Filter::textImport().
2011-09-01 Sergey S. Sergeev
* main/Utils/AMQP/AMQPQueueConsumer.class.php,
main/Utils/AMQP/AMQPConsumer.class.php,
main/Utils/AMQP/AMQPDefaultConsumer.class.php,
main/Utils/AMQP/AMQPChannelInterface.class.php,
main/Utils/AMQP/Pecl/AMQPPeclChannel.class.php:
consumer logic implemented, phpDoc updated.
* main/Utils/AMQP/AMQPIncomingMessage.class.php: typo fixed.
2011-08-26 Sergey S. Sergeev
* main/Utils/AMQP/AMQPChannelInterface.class.php,
main/Utils/AMQP/AMQPBaseChannel.class.php, main/Utils/AMQP/AMQP.class.php,
main/Utils/AMQP/Pecl/AMQPPeclChannel.class.php,
main/Utils/AMQP/Pecl/AMQPPecl.class.php, main/Utils/AMQP/Exceptions:
extract AMQPChannelInterface, all channel classes implements
AMQPChannelInterface; methods returns an instance of AMQPChannelInterface;
throws AMQPServerException, AMQPServerConnectionException if RabbitMQ
is down OR connection is not available.
2011-08-18 Evgeny V. Kokovikhin
* main/Criteria/Projections/CountProjection.class.php,
main/Criteria/Projections/PropertyProjection.class.php:
criteria's query for sqlite fixed
2011-07-26 Dmitry V. Snezhinskiy, Alexey S. Denisov
* main/Flow/JsonView.class.php,
test/main/JsonViewTest.class.php: add JsonView.
2011-07-14 Evgeny V. Kokovikhin
* main/Net/Ip/IpRange.class.php: range with single ip fixed.
2011-07-14 Evgeny V. Kokovikhin
* core/DB/ImaginaryDialect.class.php: quiting added
2011-07-13 Evgeny V. Kokovikhin
* core/DB/Dialect.class.php, core/DB/PgSQL.class.php,
core/DB/PostgresDialect.class.php, core/Form/Primitive.class.php,
core/Form/Primitives/BaseObjectPrimitive.class.php,
core/Form/Primitives/PrimitiveIpAddress.class.php,
core/Form/Primitives/PrimitiveIpRange.class.php,
core/Logic/Expression.class.php, core/Logic/Ip4ContainsExpression.class.php,
core/OSQL/DataType.class.php, global.inc.php.tpl,
main/Net/Ip/IpAddress.class.php, main/Net/Ip/IpNetwork.class.php,
main/Net/Ip/IpRange.class.php, meta/types/IpAddressType.class.php,
meta/types/IpRangeType.class.php, test/config.inc.php.tpl,
test/core/Ip4ContainsExpressionTest.class.php,
test/core/PrimitiveIpTest.class.php, test/main/Ip/IpBaseRangeTest.class.php,
test/meta/config.meta.xml, test/misc/DAOTest.class.php:
IpAddress type, IpRange type, primitives and db support for new types;
Postgresql ip4r support added.
2011-07-08 Dmitry V. Snezhinskiy
* main/Utils/FileUtils.class.php: fix of removing nonexistent directory
in FileUtils.
2011-07-06 Sergey S. Sergeev
* main/Crypto/Base62Utils.class.php: extract check() method.
2011-07-05 Evgeny V. Kokovikhin
* main/Criteria/Criteria.class.php, test/main/CriteriaTest.class.php:
sleep and wakeup fixed, more frendly error added.
2011-07-04 Evgeny V. Kokovikhin
* core/DB/MyDialect.class.php: binary quoting fixed.
2011-06-18 Alexey S. Denisov
* core/DB/LiteDialect.class.php, core/DB/PostgresDialect.class.php,
core/OSQL/DBBinary.class.php, test/misc/DAOTest.class.php:
fixed work with *Dialect::quoteBinary and DBBinary.
2011-06-11 Alexey S. Denisov
* core/Form/Form.class.php: implemented methods
Form::getError and Form::hasError.
* test/core/FormTest.class.php: added tests for Form errors.
2011-06-11 Sergey S. Sergeev
* main/Crypto/Base62Utils.class.php: isPositiveInteger fixed,
thanks to Alexander A. Klestoff.
2011-06-10 Sergey S. Sergeev
* main/Crypto/Base62Utils.class.php: fixed logic for 64 bit systems.
2011-06-02 Sergey S. Sergeev
* main/Crypto/Base62Utils.class.php: assert check in decode() added.
2011-06-01 Alexey S. Denisov
* core/Form/Filters/CallbackFilter.class.php: implemented CallbackFilter
to work with anonymous functions.
2011-06-01 Sergey S. Sergeev
* main/Crypto/Base62Utils.class.php: Base62 encode/decode implemented.
Util will be useful for generating short URLs.
2011-05-27 Alexey S. Denisov
* core/Base/IdentifiableObject.class.php, core/Logic/Expression.class.php,
core/OSQL/SQLArray.class.php, main/DAOs/ProtoDAO.class.php,
test/main/CriteriaTest.class.php: ability to use DialectString in Criteria added;
DialectString implementation added to IdentifiableObject
2011-05-18 Evgeny V. Kokovikhin
* core/Cache/BaseAggregateCache.class.php: allways keep info about
current peer.
2011-05-11 Sergey S. Sergeev
* main/Net/Http/HeaderUtils.class.php: fetch HTTP request headers
implemented.
* main/Flow/MethodMappedController.class.php: default action override
fixed.
2011-05-01 Sergey S. Sergeev
* test/runme.sh: added ability to run the test cases with different
arguments, for example:
- ./runme.sh (by default)
- ./runme.sh --verbose --repeat 1 AllTests (launch test suite in
verbose mode)
- ./runme.sh --bootstrap config.inc.php core/CacheTest.class.php (
launch 'CacheTest' only)
* main/Utils/Routers/, core/PrimitiveHstoreTest.class.php,
misc/DAOTest.class.php: assertType() has been deprecated.
assertInternalType() should be used for asserting internal types such as
"integer" or "string" whereas assertInstanceOf() should be used for
asserting that an object is an instance of a specified class or interface.
* main/Utils/AMQP/, test/main/Utils/AMQP/: AMQP supports added.
2011-04-20 Viatcheslav Y. Tsyrulnik
* misc/Autoloader.inc.php: all autoloaders merged in one abstract class.
* misc/BaseException.inc.php: for now it's duplication of BaseException,
needed by wholeClassCache.
* global.inc.php.tpl: spl_autoload_register instead of including file
with __autoload().
* misc/autoload.*: obsolete.
2011-02-15 Evgeny V. Kokovikhin
* core/Cache/CyclicAggregateCache.class.php, test/core/CacheTest.class.php,
core/Cache/AggregateCache.class.php, core/Cache/BaseAggregateCache.class.php:
new implementation of AggregateCache added.
2011-01-26 Evgeny V. Kokovikhin
* main/Utils/FileUtils: makeUniqueLatinName method added
* core/Base/Date, main/Base/CalendarDay: __sleep and __wakeup method added.
2011-01-24 Evgeny N. Sokolov
* databases tests: skip, when fail connection, instead fatal
2011-01-19 Evgeny N. Sokolov
* main/Math/MathUtils.class.php: add compareFloat function
2010-12-08 Evgeny V. Kokovikhin
* main/Utils/IO/Socket.class.php: try to close socket immediately.
see: http://ru.php.net/manual/en/function.socket-close.php#66810
2010-12-02 Evgeny V. Kokovikhin
* meta/classes/MetaConfiguration.class.php: more informative error messages
at the meta configuration
2010-12-01 Evgeny V. Kokovikhin
* main/Utils/IO/Socket.class.php: eat exception
if we try to close already closed socket
2010-11-11 Evgeny V. Kokovikhin
* main/DAOs/Workers/CommonDaoWorker.class.php: just change exception message
2010-11-09 Evgeny V. Kokovikhin
* main/DAOs/Workers/CommonDaoWorker.class.php: human-frendly message in
the exception
2010-10-25 Sergey S. Sergeev
* main/Flow/SimplePhpView.class.php: clear the output buffer
if exceptions was thrown. Thanks to Alexey Denisov (stalkerxey).
2010-10-06 Evgeny V. Kokovikhin
* core/Form/Primitives/PrimitiveAlias.class.php: alias for
PrimitiveEnumeration fixed.
Thanks to Timofey A. Anisimov.
2010-09-30 Evgeny V. Kokovikhin
* core/Cache/Memcached.class.php: ability to set TimeOut added.
Thanks to Alexander A. Klestov.
2010-09-23 Sergey S. Sergeev
* core/OSQL/FromTable.class.php: fixed no brackets for SQLChain with
size = 1 in SELECT FROM statements.
2010-08-23 Konstantin V. Arkhipov
* 1.0.10 released.
2010-07-28 Evgeny V. Kokovikhin
* core/Base/Assert.class.php: checkScalar() added.
* core/Form/Primitives/PrimitiveIdentifierList.class.php:
optional ability to ignore empty values added
2010-06-30 Sergey S. Sergeev
* core/Form/Primitives/PrimitiveFile.class.php:
{is,enable,disable}CheckUploaded methods added.
2010-06-26 Sergey S. Sergeev
* core/OSQL/DBTable.class.php: setName() added.
* test/main/OsqlReturningTest.class.php: typo fixed.
* meta/classes/MetaClassProperty.class.php: fixed support for identifiers
of string type. Thanks to Alexander V. Solomatin (aka Lom).
2010-05-25 Evgeny V. Kokovikhin
* core/Cache/SimpleAggregateCache.class.php: new implementation of Aggregate
cache - simple selective peer algorithm.
* test/core/CacheTest.class.php: test updated.
2010-04-23 Evgeny V. Kokovikhin
* core/Base/Date.class.php: fix week of year defenition. Week 01 of a year is
per definition the first week that has the Thursday in this year. Thanks to
Alexander A. Klestov.
2010-04-15 Evgeny N. Sokolov
* main/Net/Http/CurlHttpCLient.class.php: ability post array HttpRequest vars.
2010-04-09 Evgeny V. Kokovikhin
* core/Base/Timestamp.class.php: getHourStartStamp method added.
2010-03-23 Evgeny V. Kokovikhin
* core/Form/Primitives/PrimitiveInet.class.php: right check for ip. Thanks to
Timofey Anisimov.
2010-03-15 Evgeny V. Kokovikhin
* main/Markup/Feed/YandexRssFeedFormat.class.php,
main/Markup/Feed/YandexRssFeedItem.class.php,
main/Markup/Feed/YandexRssItemWorker.class.php,
main/Markup/Feed/FeedItem.class.php, main/Markup/Feed/FeedReader.class.php:
yandex rss format supports added. For details see
http://partner.news.yandex.ru/tech.pdf. Thanks to Alexander S. Krotov.
2010-02-25 Evgeny V. Kokovikhin
* main/Net/Mail/Mail.class.php: send() without returnPatn fixed.
2010-02-23 Sergey S. Sergeev
* main/OpenId/OpenIdConsumer.class.php,
main/OpenId/OpenIdExtension.class.php,
main/OpenId/OpenIdExtensionAttributeExchange.class.php,
main/OpenId/OpenIdCredentials.class.php,
main/OpenId/OpenIdExtensionSreg.class.php: openId 2.0 support,
extensions support implemented, sreg and attribute exchange
supports - thanks to Alexander V. Solomatin (aka Lom).
* main/Net/Http/CurlHttpClient.class.php: curl multi send implemented.
* main/Net/Http/HttpMethod.class.php: methods added.
2010-02-21 Sergey S. Sergeev
* main/Base/Hstore.class.php: set(), drop() added.
* main/Net/Mail/Mail.class.php: setReturnPath(), getReturnPath() added.
2010-02-20 Sergey S. Sergeev
* core/Logic/Expression.class.php, core/Logic/BinaryExpression.class.php:
modulus logic implemented.
* core/Logic/HstoreExpression.class.php: containHstore(),
containValueList() added.
* core/DB/Dialect.class.php, core/DB/ImaginaryDialect.class.php,
core/DB/LiteDialect.class.php, core/DB/MyDialect.class.php,
core/DB/PostgresDialect.class.php, core/OSQL/DeleteQuery.class.php,
core/OSQL/InsertOrUpdateQuery.class.php, core/OSQL/InsertQuery.class.php,
core/OSQL/QuerySkeleton.class.php, core/OSQL/SelectQuery.class.php:
refactoring code. OSQL INSERT/UPDATE/DELETE RETURNING, INSERT from SELECT
clause implemented.
* test/main/OsqlDeleteTest.class.php, test/main/OsqlInsertTest.class.php,
test/main/OsqlReturningTest.class.php, test/main/OsqlSelectTest.class.php:
useful test cases added.
2010-02-19 Sergey S. Sergeev
* main/Base/CallChain.class.php: call() method fixed.
* test/core/FiltersTest.class.php, test/main/Net/MailTest.class.php:
test assertions added.
* main/Net/Mail/MailAddress.class.php: toString() method fixed.
2010-02-02 Evgeny V. Kokovikhin
* main/Net/Http/Cookie.class.php: zero expire for cookie
2010-01-27 Vladlen Y. Koshelev
* core/Form/Primitives/PrimitiveAlias.class.php: forward custom error from
inner primitive.
2009-12-30 Denis M. Gabaidulin
* main/Math/MathUtils.class.php: applyFunctorToCartesianProduct(): to apply
function on each tuple of a cartesianProduct.
2009-12-29 Denis M. Gabaidulin
* main/Math/MathUtils.class.php: getMmult(): added.
2009-12-22 Vladlen Y. Koshelev
* main/Criteria/PropertyPath.class.php: correct handling of non-DAOConnected
properties in path (e.g. ValueObject properties).
2009-12-21 Denis M. Gabaidulin
* core/Base/PriorityQueue.class.php: simple priority queue impl. based
on binary heap.
2009-12-19 Denis M. Gabaidulin
* main/Math/MathUtils.class.php: getStandardDeviation(): calculate
standard deviation.
* main/Math/MathUtils.class.php: getAbsoluteDeviation(): calculate
absolute deviation.
* main/Math/MathUtils.class.php: getCovariance(): calculate
covariance between two value arrays by formula:
cov(X,Y) = sum((Xi-Xavg) * (Yj-Xavg) / n-1).
2009-11-25 Vladlen Y. Koshelev
* main/OQL/Parsers/OqlGroupByParser.class.php: added support for logical,
arithmetic and bindable expressions in group by clause.
2009-11-10 Denis M. Gabaidulin
* main/DAOs/Workers/CustomDataScopedWorker.class.php: added worker
to cache/uncache some scoped(by class, e.g.) data.
2009-11-05 Denis M. Gabaidulin
* main/Base/StandardComparator.class.php: added.
2009-10-23 Denis M. Gabaidulin
* main/Application/SimpleApplicationUrl.class.php: very simple,
but much more lightweight and faster version of app url. It could be used
with already validated urls.
2009-10-23 Sergey S. Sergeev
* main/DAOs/ProtoDAO.class.php: fixed resolve path for ValueObjects.
* meta/builders/AutoProtoClassBuilder.class.php,
meta/classes/MetaClassProperty.class.php: ValueObject supports inheritance now.
* meta/classes/MetaConfiguration.class.php: fixed check recursion for lazy objects.
2009-10-19 Denis M. Gabaidulin
* core/Cache/DebugCachePeer.class.php: cache peer for debugging
and logging purposes.
2009-09-22 Denis M. Gabaidulin
* core/Form/Primitives/PrimitiveEnumerationByValue.class.php: added
to manage with enums by the value instead id. Typical usage: every element
in Enumeration has input[type=submit] representation in html.
2009-09-17 Denis M. Gabaidulin
* misc/autload.classPathCache.inc.php, misc/autload.wholeClassCache.inc.php:
added ONPHP_VERSION to checksum hash.
2009-09-17 Vladimir A. Altuchov
* misc/autoload.classPathCache.inc.php,
misc/autoload.wholeClassCache.inc.php: added handling for inconsistent
glob() behaviour.
2009-09-17 Viatcheslav Y. Tsyrulnik
* meta/classes/MetaClassProperty.class.php: fixed support for
identifiers of string type.
2009-09-13 Konstantin V. Arkhipov
* 1.0.9 released.
2009-09-08 Denis M. Gabaidulin
* main/Utils/Mobile/MobileUtils.class.php: extract ip/user agent
from headers wrt Opera mini.
2009-09-04 Denis M. Gabaidulin
* main/Utils/DaoUtils.class.php: increment() method added to work
with "counter" fields in multithread environment.
2009-08-30 Denis M. Gabaidulin
* main/Utils/ArrayUtils.class.php: mergeSortedLists() added.
Classic algorithm implementation for two sorted list merge.
* main/Base/DateObjectComparator.class.php: added.
2009-08-29 Konstantin V. Arkhipov
* core/DB/MySQL.class.php: respect port setting.
2009-08-20 Denis M. Gabaidulin
* main/Crypto/Crypter.class.php: simple mcrypt ext. wrapper added.
2009-08-11 Denis M. Gabaidulin
* core/Form/Primitives/PrimitiveForm.class.php: ofAutoProto() method added
to use with generated proto classes.
2009-08-07 Sergey S. Sergeev
* main/Base/Hstore.class.php, meta/types/HstoreType.class.php,
core/DB/PgSQL.class.php, core/Form/Primitives/PrimitiveHstore.class.php,
core/OSQL/DataType.class.php, main/Base/LightMetaProperty.class.php,
test/core/PrimitiveHstoreTest.class.php, test/misc/DAOTest.class.php:
hstore PostgreSql specific dropped.
2009-07-31 Ivan Y. Khvostishkov
* main/Net/Mail/MailAddress.class.php: mail address encoding
implementation according to RFC822 / RFC2047.
* main/EntityProto/Builders/DirectoryBuilder.class.php: fine-grained
tuning on file permissions.
* core/Form/Filters/Utf16ConverterFilter.class.php: very-special filter
for broken unicode implementations on some platforms.
2009-07-22 Konstantin V. Arkhipov
* core/Types/Range.class.php: splitted into IntegerRange and
NumericRange.
2009-07-20 Denis M. Gabaidulin
* core/Cache/MemcachedLocker.class.php added.
2009-07-16 Denis M. Gabaidulin
* main/Utils/WebMoneyUtils.class.php added.
2009-07-02 Denis M. Gabaidulin
* main/Base/Comparator.class.php interface added.
Main/Base/ImmutableObjectComparator.class.php,
main/Base/SerializedObjectComparator.class.php: classes to compare
object in different context added.
2009-07-01 Sergey S. Sergeev
* core/Form/Primitives/PrimitiveHstore.class.php,
test/core/PrimitiveHstoreTest.class.php, test/misc/DAOTest.class.php,
core/DB/PgSQL.class.php: reimplemented PrimitiveHstore.
2009-06-29 Sergey S. Sergeev
* core/Base/Timestamp.class.php, test/core/TimestampTest.class.php: checkdate added.
2009-06-26 Sergey S. Sergeev
* main/Flow/PartViewer.class.php: PartViewer can't resolve EmptyView.
* meta/classes/MetaConfiguration.class.php, test/misc/DAOTest.class.php,
test/misc/TestTables.class.php: fixed meta generation for recurcive lazy dependant
objects.
* core/Cache/Memcached.class.php, core/Cache/PeclMemcached.class.php,
test/core/MemcachedTest.class.php: fixed multi get operations - Memcached
compatability with PeclMemcached now.
* core/Logic/LTreeExpression.class.php: ltree logic implemented.
2009-06-23 Sergey S. Sergeev
* test/misc/DAOTest.class.php: check of PostgreSql type added, thanks to
Denis Gabaidulin.
2009-06-22 Denis M. Gabaidulin
* main/Utils/TypesUtils.class.php added.
* main/Net/Ip/IpUtils.class.php added.
2009-06-16 Sergey S. Sergeev
* core/Form/Primitive.class.php, core/OSQL/DataType.class.php,
main/Base/LightMetaProperty.class.php, test/misc/DAOTest.class.php,
core/Form/Primitives/PrimitiveHstore.class.php,
core/Logic/HstoreExpression.class.php, test/core/PrimitiveHstoreTest.class.php,
meta/types/PgHstoreType.class.php: new internal type implemented.
2009-05-14 Ivan Y. Khvostishkov
* main/Utils/DaoSynchronizer.class.php: flexible master-slave data
transformation and replication tool.
2009-05-13 Ivan Y. Khvostishkov
* main/EntityProto/Builders/DirectoryToObjectBinder.class.php: fixed
bug related to symlinks reading, unit test provided, crush test spotted
by Deinis M. Gabaidulin.
2009-05-12 Ivan Y. Khvostishkov
* core/Base/Assert.class.php: methodExists() assert.
2009-05-08 Ivan Y. Khvostishkov
* main/Utils/DaoIterator.class.php: foreach() iterator through the DAO
would be useful.
2009-04-30 Ivan Y. Khvostishkov
* main/Math/MathUtils.class.php: randomNormalStd(): generation of
random normal deviates.
2009-04-27 Denis M. Gabaidulin
* main/Charts/Google/GoogleChartData.class.php: getCount() added.
2009-04-25 Vladlen Y. Koshelev
* core/Logic/InExpression.class.php: MappableObject support added.
2009-04-23 Denis M. Gabaidulin
* main/Charts/Google/: experimental support for Data point labels API.
2009-04-20 Denis M. Gabaidulin
* main/Math/MathUtils.class.php: makeCartesianProduct() support
assoc arrays.
2009-04-17 Denis M. Gabaidulin
* main/Utils/SortHelper.class.php: customizable cmp function.
2009-04-16 Sergey S. Sergeev
* test/misc/ServerVarUtils.class.php: forgotten class added, thanks to
Ivan Khvostishkov.
2009-04-16 Vladlen Y. Koshelev
* core/OSQL/OrderBy.class.php, test/main/CriteriaTest.class.php:
nullsLast(), isNullsFirst() fixed; support for clone and toMapped() for
nulls ordering feature added; corresponding tests added.
2009-04-08 Denis M. Gabaidulin
* main/Charts/Google/GoogleChartTitle.class.php: added.
2009-04-08 Vladlen Y. Koshelev
* main/Utils/ClassUtils.class.php, test/main/ClassUtilsTest.class.php:
isClassName() returns boolean.
2009-04-07 Denis M. Gabaidulin
* main/Base/BaseRange.class.php: common numeric range logic extracted.
* main/Base/FloatRange.class.php: float range implemention.
* main/Charts/Google/: chart line styles implemented.
* main/Charts/Google/GoogleGridedLineChart.class.php: added.
2009-04-06 Denis M. Gabaidulin
* main/Math/MathUtils.class.php: alignByBase() added.
2009-04-05 Sergey S. Sergeev
* main/Utils/Routers, test/main/Utils/Routers: utils for rewriting
urls moved from incubator.
2009-04-04 Denis M. Gabaidulin
* main/Charts/Google/: Google charts implementation (partially) moved
from incubator.
2009-04-03 Ivan Y. Khvostishkov
* main/: merged directory services and messaging api from master.
* main/EntityProto/Builders/DirectoryToObjectBinder.class.php,
main/EntityProto/Builders/ObjectToDirectoryBinder.class.php:
reference-enabled directory storage with symbolic links (even
recursive). See test/main/EntityProtoConvertersTest.class.php for
example of usage.
* main/Messages/: simple messaging API is starting here. Inspired by
Java Message Service.
2009-03-28 Evgeniy N. Sokolov
* core/Form/Form.class.php: getWrongLabel() and getMissingLabel()
added.
2009-03-27 Ivan Y. Khvostishkov
* main/EntityProto/Builders/DirectoryToObjectBinder.class.php,
main/EntityProto/Builders/ObjectToDirectoryBinder.class.php: simple
directory service helpers based on a local filesystem. Can be used for
easy object configuration management, just like an LDAP.
2009-03-27 Sergey S. Sergeev
* main/UnifiedContainer/UnifiedContainerWorker.class.php: drop limit and
offset in count query fixed.
2009-03-26 Denis M. Gabaidulin
* core/DB/MySql dialects classes: quote integers values too.
2009-03-26 Vladlen Y. Koshelev
* core/Base/Singleton.class.php: instantiation of classes with two or more
constructor arguments fixed, related tests added.
2009-03-25 Vladlen Y. Koshelev
* main/Application/ApplicationUrl.class.php: cleanHref() added for building
urls using current navigation schema but without navigation scope.
2009-03-25 Denis M. Gabaidulin
* core/Form/Primitives/PrimitiveNoValue.class.php: special primitive
w/o value.
* main/Utils/CommandLine/ArgumentParser.class.php: refactor, drop
special collection and use only native form.
2009-03-24 Sergey S. Sergeev
* core/Form/Primitives/PrimitiveDate.class.php: fixed import of empty values.
* core/FormPrimitivesDateTest.class.php: useful tests added.
2009-03-24 Denis M. Gabaidulin
* main/Utils/ArrayUtils.class.php: isEmpty(). Check for assoc
single dimension array.
2009-03-23 Denis M. Gabaidulin
* main/Utils/CommandLine/ArgumentBuilder.class.php: simple builder to
hide complex interface.
* main/Utils/CommandLine/Argument.class.php: primitive member added.
2009-03-22 Sergey S. Sergeev
* core/Form/Primitives/PrimitiveImage.class.php: getMaxWidth(),
getMinWidth(), getMaxHeight(), getMinHeight() added.
* core/Logic/BinaryExpression.class.php: getLeft(), getRight(),
getLogic() added.
* core/OSQL/SQLChain.class.php: getChain(), getLogic() added.
* test/core/FormPrimitivesDateTest.class.php: test case on PrimitiveDate
added.
2009-03-19 Denis M. Gabaidulin
* main/Base/Collection.class.php: useful accessors added.
* main/Utils/CommandLine/: simple command line args parser
based on getopt().
2009-03-17 Denis M. Gabaidulin
* main/Flow/HttpRequest.class.php: setServerVar() added.
* main/Utils/DateUtils.class.php: alignToSeconds() added.
Function used to align date for any interval.
2009-03-16 Denis M. Gabaidulin
* core/Form/Filters/JsonEncoderFilter.class.php,
core/Form/Filters/JsonDecoderFilter.class.php: added and tested.
2009-03-10 Vladlen Y. Koshelev
* core/DB/PostgresError.class.php: removed internal numeric representation
of error code.
* core/DB/PgSQL.class.php,
core/Exceptions/PostgresDatabaseException.class.php: PostgreSQL-specific
exception containing string error code within (PostgresError constant).
2009-03-06 Sergey S. Sergeev
* main/Flow/MethodMappedController.class.php: import attached vars to form.
* core/Base/Date.class.php, core/Base/Timestamp.class.php: bugfixed.
2009-03-06 Vladlen Y. Koshelev
* core/Form/Primitives/PrimitiveIdentifier.class.php: actualImportValue()
hook added.
2009-03-05 Vladlen Y. Koshelev
* main/Flow/BaseEditor.class.php: ability to change default action added.
2009-03-04 Konstantin V. Arkhipov
* core/Types/Date.class.php, core/Types/Timestamp.class.php: now
internal integer's date representation are rounded to days during
Date's import.
2009-02-26 Vladlen Y. Koshelev
* core/DB/PostgresError.class.php, test/code/PostgresErrorTest.class.php:
added conversion methods for internal numeric representation of error code
(toCode(), getByCode(), checkCode()) and corresponding test.
Thanks to Ivan Y. Khvostishkov.
* core/DB/PgSQL.class.php: pass numeric error code value to
DatabaseException.
2009-02-22 Konstantin V. Arkhipov
* core/Form/Primitives/IdentifiablePrimitive.class.php: added
setScalar() to control wheter identifier is really scalar one, this
change restores old class' behavior.
* core/Form/Primitives/PrimitiveIntegerIdentifier.class.php,
core/Form/Primitives/PrimitiveScalarIdentifier.class.php: two
identifier types introduced for forward compatibility with master.
2009-02-20 Denis M. Gabaidulin
* main/Math/MathUtils.class.php: randFloat() added.
2009-02-19 Ivan Y. Khvostishkov
* core/Cache/Cache.class.php: appendDaoMap() - better than replace.
2009-02-18 Viatcheslav Y. Tsyrulnik
* main/Net/Http/CurlHttpClient.class.php: support for HTTP methods
other than get/post and additional headers.
2009-02-18 Denis M. Gabaidulin
* main/Criteria/ProjectionChain.class.php: dropByType() added.
Drop projection by type from Criteria.
2009-02-16 Ivan Y. Khvostishkov
* main/Flow/RedirectView.class.php: ability to build complex array
values upon redirect (involving PrimitiveDateRange, for example).
2009-02-13 Ivan Y. Khvostishkov
* main/Flow/CleanRedirectView.class.php: parent class for RedirectView,
clean redirect without model.
2009-02-13 Evgeniy N. Sokolov
* main/Utils/TextUtils.class.php: friendlyNumber() now works with float
and negative numbers.
2009-02-13 Ivan Y. Khvostishkov
* main/Utils/TuringTest/Color.class.php: flyweight pattern implemented.
2009-02-10 Vladlen Y. Koshelev
* main/Flow/MultiPrefixPhpViewResolver.class.php: makeView() hook and
isPrefixDisabled() added.
2009-02-06 Denis M. Gabaidulin
* main/Utils/SortHelper.class.php: sorting multi-dimensional assoc array
recursively.
2009-02-05 Denis M. Gabaidulin
* main/Utils/DateUtils.class.php: makeDatesListByRange() added.
Function used to create normalized date list by IntervalUnit.
2009-02-04 Denis M. Gabaidulin
* main/Math/MathUtils.class.php: makeCartesianProduct() function added.
2009-01-28 Ivan Y. Khvostishkov
* main/Base/DateRange.class.php: safeSetStart(), safeSetEnd() to ensure
that the start will never overlaps the end.
2009-01-20 Denis M. Gabaidulin
* main/Utils/Mobile/MobileRequestDetector.class.php: use regular array
instead HttpRequest. Warning: Broken BC!
2009-01-19 Denis M. Gabaidulin