-
Notifications
You must be signed in to change notification settings - Fork 135
/
Changelog
1122 lines (930 loc) · 39.5 KB
/
Changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sun Nov 22 16:47:31 CET 2009 Derick Rethans <[email protected]>
html/docs/include/functions/xdebug_stop_code_coverage:
- Fixed bug #381: Code coverage documentation doesn't match behaviour.
- Added documentation for xdebug_stop_code_coverage's cleanup argument.
Sun Nov 22 16:26:49 CET 2009 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Fixed bug #386: Missing docs: Xdebug and IonCube don't work well together.
Sat Oct 17 18:58:58 CEST 2009 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Fixed bug #390: Quotation marks suck.
Sat Oct 10 11:41:33 CEST 2009 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Clarify docs.
Wed Sep 09 17:33:24 CEST 2009 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Adding a faq entry.
Tue Aug 11 10:53:44 CEST 2009 Derick Rethans <[email protected]>
html/download.php:
- Fixed NTS additions.
Sun Jul 12 17:24:10 CEST 2009 Derick Rethans <[email protected]>
html/docs/include/basic.php
www.xdebug.org/html/docs/include/features.php:
- Fixed docs regarding zend_extension and php 5.3.
Fri Jul 03 20:44:37 CEST 2009 Derick Rethans <[email protected]>
html/download.php
www.xdebug.org/html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/php_xdebug-2.0.5-5.2-nts.dll
www.xdebug.org/html/files/php_xdebug-2.0.5-5.2.dll
www.xdebug.org/html/files/php_xdebug-2.0.5-5.3-vc6-nts.dll
www.xdebug.org/html/files/php_xdebug-2.0.5-5.3-vc6.dll
www.xdebug.org/html/files/php_xdebug-2.0.5-5.3-vc9-nts-x86_64.dll
www.xdebug.org/html/files/php_xdebug-2.0.5-5.3-vc9-nts.dll
www.xdebug.org/html/files/php_xdebug-2.0.5-5.3-vc9-x86_64.dll
www.xdebug.org/html/files/php_xdebug-2.0.5-5.3-vc9.dll
www.xdebug.org/html/files/xdebug-2.0.5.tgz
www.xdebug.org/html/include/menu-docs.php
www.xdebug.org/html/include/menu.php:
- Releasing 2.0.5.
Thu Jun 11 10:09:03 CEST 2009 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Fixed link... it moved.
Mon May 25 09:54:13 CEST 2009 Derick Rethans <[email protected]>
html/index.php:
- Added a link to xdebug.ru.
Fri May 15 11:42:28 CEST 2009 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Added xdebugtoolkit.
Mon Apr 20 12:52:56 CEST 2009 Derick Rethans <[email protected]>
html/support.php:
- Fixed broken grammer.
Tue Apr 07 20:56:48 CEST 2009 Derick Rethans <[email protected]>
html/docs/include/functions/xdebug_print_function_stack:
- Added documentation for xdebug_print_function_stack.
Tue Apr 07 16:05:05 CEST 2009 Derick Rethans <[email protected]>
html/docs/include/functions/xdebug_get_headers:
- Added documentation for Xdebug's xdebug_get_headers() function.
Sat Mar 28 17:23:48 CET 2009 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Fixed bug #434: Documentation is misleading about function execution times in
cachegrind.out.
Sat Mar 28 13:04:51 CET 2009 Derick Rethans <[email protected]>
html/support.php:
- Added list href.
Fri Mar 13 11:20:44 CET 2009 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Updated the Geben link.
Tue Mar 03 09:14:35 CET 2009 Derick Rethans <[email protected]>
html/download.php:
- Fixed cvs instructions. (Reported by Lucas)
Mon Jan 12 19:22:47 CET 2009 Derick Rethans <[email protected]>
html/docs/include/settings.php:
- Also mention the cookie.
Wed Jan 07 13:43:03 CET 2009 Derick Rethans <[email protected]>
html/download.php:
- Update description.
Wed Jan 07 13:24:18 CET 2009 Derick Rethans <[email protected]>
html/download.php
www.xdebug.org/html/include/menu.php:
-
Tue Jan 06 13:43:28 CET 2009 Derick Rethans <[email protected]>
html/download.php:
- Fixed rendering script.
Sat Jan 03 20:01:27 CET 2009 Derick Rethans <[email protected]>
html/files/php_xdebug-2.0.4-5.3.0-vc6-nts.dll
www.xdebug.org/html/files/php_xdebug-2.0.4-5.3.0-vc6.dll:
- Swapping DLLs as they have been misnamed.
Fri Jan 02 22:00:25 CET 2009 Derick Rethans <[email protected]>
html/download.php
www.xdebug.org/html/docs-dbgp.php
www.xdebug.org/html/docs-gdb.php
www.xdebug.org/html/index.php
www.xdebug.org/html/license.php
www.xdebug.org/html/screens.php
www.xdebug.org/html/support.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/docs/index.php
www.xdebug.org/html/images/xdebug.gif
www.xdebug.org/html/include/footer.php
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/menu-docs.php
www.xdebug.org/html/include/menu.php:
- Move downloads to their own site, and freshen up the design a bit.
Fri Jan 02 21:54:34 CET 2009 Derick Rethans <[email protected]>
html/files/php_xdebug-2.0.4-5.2.8.dll
www.xdebug.org/html/files/php_xdebug-2.0.4-5.2.8-nts.dll
www.xdebug.org/html/files/php_xdebug-2.0.4-5.3.0-vc6.dll
www.xdebug.org/html/files/php_xdebug-2.0.4-5.3.0-vc6-nts.dll
www.xdebug.org/html/files/php_xdebug-2.0.4-5.3.0-vc9.dll
www.xdebug.org/html/files/php_xdebug-2.0.4-5.3.0-vc9-nts.dll:
- Added the Windows DLL (courtesy of Pierre).
Wed Dec 31 09:50:40 CET 2008 Derick Rethans <[email protected]>
html/include/links.php:
- Fixed download link.
Tue Dec 30 19:26:22 CET 2008 Derick Rethans <[email protected]>
html/index.php:
- Fixed date.
Tue Dec 30 16:19:38 CET 2008 Derick Rethans <[email protected]>
html/include/side.php:
- Added a note for windows.
Tue Dec 30 16:18:23 CET 2008 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/xdebug-2.0.4.tgz
www.xdebug.org/html/include/side.php:
- Added texts and download for 2.0.4.
Thu Dec 11 16:35:12 CET 2008 Derick Rethans <[email protected]>
html/docs/include/features.php
www.xdebug.org/html/include/side.php:
- Added source browsing links.
Thu Nov 27 19:50:59 CET 2008 Derick Rethans <[email protected]>
html/docs-dbgp.php:
- Updated with new RST and clarified text.
Mon Nov 03 10:03:41 CET 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Added some more clients
- Mentioned that I do not want to be support
Thu Oct 16 13:08:41 CEST 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Fixed typo.
Fri Oct 10 16:56:27 CEST 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Added Mac specific clients.
Wed Oct 01 18:48:07 CEST 2008 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php:
- Fixed date-format.
Tue Sep 23 09:24:34 CEST 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Added php eclipse.
Fri Apr 11 10:40:24 CEST 2008 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php:
- Added updates file.
Fri Apr 11 10:36:59 CEST 2008 Derick Rethans <[email protected]>
html/files/php_xdebug-2.0.3-5.1.7.dll
www.xdebug.org/html/files/php_xdebug-2.0.3-5.2.5.dll
www.xdebug.org/html/files/php_xdebug-2.0.3-5.3.0.dll
www.xdebug.org/html/files/xdebug-2.0.3.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Release 2.0.3.
Tue Mar 18 09:52:11 CET 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Update link, remove Maguma.
Fri Mar 14 20:25:34 CET 2008 Derick Rethans <[email protected]>
html/docs/include/settings.php:
- Fixed typo.
Fri Feb 22 12:55:34 CET 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Fixed link.
Fri Feb 15 21:38:12 CET 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Updated link to newer version.
Wed Jan 30 22:00:31 CET 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- No e here.
Wed Jan 30 21:59:06 CET 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Make clearer that you need the full path.
Wed Jan 02 13:11:02 CET 2008 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Added NetBeans IDE.
Wed Dec 05 15:08:19 CET 2007 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Fixed docs
Thu Nov 15 22:08:32 CET 2007 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Added two new editors.
Mon Nov 12 17:34:44 CET 2007 Derick Rethans <[email protected]>
html/include/links.php:
- Oops.
Sun Nov 11 17:36:26 CET 2007 Derick Rethans <[email protected]>
html/docs/include/settings.php:
- Fixed bug #333: Documentation problem: says "hit" instead of "jit".
Sun Nov 11 17:33:12 CET 2007 Derick Rethans <[email protected]>
html/files/php_xdebug-2.0.2-4.4.6.dll
www.xdebug.org/html/files/php_xdebug-2.0.2-5.1.7.dll
www.xdebug.org/html/files/php_xdebug-2.0.2-5.2.5.dll
www.xdebug.org/html/files/php_xdebug-2.0.2-5.3.0.dll
www.xdebug.org/html/files/xdebug-2.0.2-4.4.6.dll
www.xdebug.org/html/files/xdebug-2.0.2-5.1.7.dll
www.xdebug.org/html/files/xdebug-2.0.2-5.2.5.dll
www.xdebug.org/html/files/xdebug-2.0.2-5.3.0.dll:
- Rename files.
Sun Nov 11 17:28:44 CET 2007 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/docs/include/basic.php
www.xdebug.org/html/files/xdebug-2.0.2-4.4.6.dll
www.xdebug.org/html/files/xdebug-2.0.2-5.1.7.dll
www.xdebug.org/html/files/xdebug-2.0.2-5.2.5.dll
www.xdebug.org/html/files/xdebug-2.0.2-5.3.0.dll
www.xdebug.org/html/files/xdebug-2.0.2.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Put 2.0.2 online.
Sat Oct 27 18:08:55 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/settings.php:
- Clarify that those settings do not influence remote debugging.
Fri Oct 26 13:34:57 CEST 2007 Derick Rethans <[email protected]>
html/link.php
www.xdebug.org/html/include/header.php:
- No more pconnect.
Thu Oct 25 22:49:51 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php:
- It works fine with APC.
Tue Oct 23 10:06:45 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Fixed link.
Sun Oct 21 13:55:28 CEST 2007 Derick Rethans <[email protected]>
html/files/xdebug-2.0.1.tgz:
- Repackage.
Sun Oct 21 13:52:32 CEST 2007 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/docs/include/basic.php
www.xdebug.org/html/files/php_xdebug-2.0.1-4.4.1.dll
www.xdebug.org/html/files/php_xdebug-2.0.1-5.1.2.dll
www.xdebug.org/html/files/php_xdebug-2.0.1-5.2.1.dll
www.xdebug.org/html/files/xdebug-2.0.1.tgz
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Update for 2.0.1.
Thu Aug 23 21:47:49 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/settings.php:
- Added docs for new setting.
Mon Aug 20 09:36:46 CEST 2007 Derick Rethans <[email protected]>
html/install.php
www.xdebug.org/html/docs/include/basic.php
www.xdebug.org/html/docs/include/features.php:
- Fixed docs.
Fri Aug 03 23:16:38 CEST 2007 Derick Rethans <[email protected]>
html/updates.php:
- Test commit.
Fri Aug 03 23:15:30 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/functions/xdebug_start_trace:
- Document TRACE_HTML option.
Fri Aug 03 23:12:55 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/functions/xdebug_get_declared_vars:
- Even clearer.
Fri Aug 03 23:11:40 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/functions/xdebug_get_declared_vars:
- Clarify when "a" is not in the array.
Mon Jul 23 21:15:35 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/settings.php
www.xdebug.org/html/include/header.php:
- Fixed xdebug.trace_format documentation.
Sun Jul 22 23:01:29 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/basic.php
www.xdebug.org/html/docs/include/settings.php:
- Added documentation for xdebug.file_link_format.
Sun Jul 22 16:59:18 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php
www.xdebug.org/html/docs/include/settings.php:
- Fixed some HTML errors.
Thu Jul 19 19:43:21 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Added display_errors to the FAQ.
Wed Jul 18 22:45:55 CEST 2007 Derick Rethans <[email protected]>
html/index.php:
- 18 not 28
Wed Jul 18 21:14:18 CEST 2007 Derick Rethans <[email protected]>
html/index.php:
- Better R.A.
Wed Jul 18 20:49:28 CEST 2007 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/php_xdebug-2.0.0-4.4.6.dll
www.xdebug.org/html/files/php_xdebug-2.0.0-5.1.6.dll
www.xdebug.org/html/files/php_xdebug-2.0.0-5.2.2.dll
www.xdebug.org/html/files/xdebug-2.0.0.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Xdebug 2.0.0.
Mon Jul 16 20:43:54 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/basic.php:
- Update versions.
Sat Jul 14 17:26:11 CEST 2007 Derick Rethans <[email protected]>
html/docs-dbgp.php
www.xdebug.org/html/index.php
www.xdebug.org/html/license.php
www.xdebug.org/html/support.php
www.xdebug.org/html/docs/index.php
www.xdebug.org/html/include/footer.php
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/side.php:
- Update to draft 16.
Wed Jul 04 11:14:55 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Updated vim script link and added tutorial.
Mon Jul 02 16:59:25 CEST 2007 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/images/xdebug-logo.png:
- Added logo.
Wed Jun 27 09:50:12 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php:
- One more editor
Tue Jun 26 19:29:55 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php:
- One more editor.
Tue Jun 26 19:08:35 CEST 2007 Derick Rethans <[email protected]>
html/docs/index.php
www.xdebug.org/html/docs/include/features.php:
- Fixed layout.
Tue Jun 26 19:08:05 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php:
- Added notepad++ plugin.
Tue Jun 26 08:56:49 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php
www.xdebug.org/html/include/side.php:
- Changed single quotes to double quotes.
Tue Jun 19 19:03:06 CEST 2007 Derick Rethans <[email protected]>
html/docs-debugger.php
www.xdebug.org/html/docs-faq.php
www.xdebug.org/html/docs-functions.php
www.xdebug.org/html/docs-profiling.php
www.xdebug.org/html/docs-profiling2.php
www.xdebug.org/html/docs-settings.php
www.xdebug.org/html/docs/include/features.php:
- Enable redirects.
- Fixed profiler layout.
Wed May 30 18:19:55 CEST 2007 Derick Rethans <[email protected]>
html/include/links.php:
- Fixed links
Tue May 29 13:58:08 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/functions/xdebug_get_tracefile_name:
- One more function.
Tue May 29 13:56:40 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/functions/xdebug_start_trace:
- Fixed links.
Mon May 28 18:45:39 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/basic.php
www.xdebug.org/html/docs/include/functions/xdebug_start_trace:
- Document xdebug_start_trace() better.
Sun May 27 23:40:35 CEST 2007 Derick Rethans <[email protected]>
html/support.php
www.xdebug.org/html/docs/include/settings.php:
- Added some more docs for remote_log and on "how to report a bug".
Sun May 27 20:14:04 CEST 2007 Derick Rethans <[email protected]>
html/include/header.php:
- Changed layout for h3.
Sun May 20 16:58:34 CEST 2007 Derick Rethans <[email protected]>
html/docs.php:
- Fixed redirect to new docs.
Thu May 17 22:56:00 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/settings.php:
- Documented the new format specifiers.
Thu May 17 22:55:28 CEST 2007 Derick Rethans <[email protected]>
html/index.php:
- Added "RC4" to the announcement.
Thu May 17 18:00:49 CEST 2007 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php:
- Announcement.
Thu May 17 17:53:01 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/features.php
www.xdebug.org/html/docs/include/settings.php
www.xdebug.org/html/docs/include/functions/xdebug_get_declared_vars
www.xdebug.org/html/files/php_xdebug-2.0.0rc4-4.4.1.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc4-5.1.2.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc4-5.2.1.dll
www.xdebug.org/html/files/xdebug-2.0.0RC4.tgz
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php
www.xdebug.org/html/yui/build/dom/dom.js
www.xdebug.org/html/yui/build/element/element-beta.js
www.xdebug.org/html/yui/build/event/event.js
www.xdebug.org/html/yui/build/tabview/tabview.js
www.xdebug.org/html/yui/build/tabview/assets/border_tabs.css
www.xdebug.org/html/yui/build/tabview/assets/tabview.css
www.xdebug.org/html/yui/build/yahoo/yahoo.js:
- Many more docs.
Tue Apr 24 23:18:18 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/settings.php
www.xdebug.org/html/include/header.php:
- Document collect_params settings.
Sun Apr 22 18:11:11 CEST 2007 Derick Rethans <[email protected]>
html/docs/include/basic.php
www.xdebug.org/html/docs/include/features.php
www.xdebug.org/html/docs/include/settings.php:
- Fixed the regular expressions for adding links to functions and settings.
- Added information about stack trace settings in the introduction.
- Added a FAQ entry on Debian weirdness.
- Added documentation for the dump_globals setting.
Mon Apr 09 22:44:33 CEST 2007 Derick Rethans <[email protected]>
html/docs-dbgp.php
www.xdebug.org/html/index.php
www.xdebug.org/html/license.php
www.xdebug.org/html/support.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/docs/index.php
www.xdebug.org/html/docs/include/basic.php
www.xdebug.org/html/docs/include/features.php
www.xdebug.org/html/docs/include/settings.php
www.xdebug.org/html/docs/include/functions/var_dump
www.xdebug.org/html/docs/include/functions/xdebug_debug_zval
www.xdebug.org/html/docs/include/functions/xdebug_dump_superglobals
www.xdebug.org/html/docs/include/functions/xdebug_get_code_coverage
www.xdebug.org/html/docs/include/functions/xdebug_get_function_stack
www.xdebug.org/html/docs/include/functions/xdebug_memory_usage
www.xdebug.org/html/docs/include/functions/xdebug_peak_memory_usage
www.xdebug.org/html/docs/include/functions/xdebug_time_index
www.xdebug.org/html/docs/include/functions/xdebug_var_dump
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/menu-docs.php:
- Many updates.
Sun Mar 18 14:25:49 CET 2007 Derick Rethans <[email protected]>
html/docs/index.php
www.xdebug.org/html/docs/include/basic.php
www.xdebug.org/html/docs/include/features.php
www.xdebug.org/html/docs/include/functions/xdebug_call_class
www.xdebug.org/html/docs/include/functions/xdebug_call_file
www.xdebug.org/html/docs/include/functions/xdebug_call_function
www.xdebug.org/html/docs/include/functions/xdebug_call_line
www.xdebug.org/html/docs/include/functions/xdebug_debug_zval
www.xdebug.org/html/docs/include/functions/xdebug_debug_zval_stdout
www.xdebug.org/html/docs/include/functions/xdebug_dump_superglobals
www.xdebug.org/html/docs/include/functions/xdebug_get_code_coverage
www.xdebug.org/html/docs/include/functions/xdebug_get_declared_vars
www.xdebug.org/html/docs/include/functions/xdebug_get_function_stack
www.xdebug.org/html/docs/include/functions/xdebug_get_profiler_filename
www.xdebug.org/html/docs/include/functions/xdebug_var_dump
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/menu-docs.php
www.xdebug.org/html/include/menu.php:
- More updates.
Sun Mar 18 11:57:56 CET 2007 Derick Rethans <[email protected]>
html/.htaccess
www.xdebug.org/html/docs-debugger.php
www.xdebug.org/html/license.php
www.xdebug.org/html/docs/index.php
www.xdebug.org/html/docs/include/basic.php
www.xdebug.org/html/docs/include/features.php
www.xdebug.org/html/docs/include/functions.php
www.xdebug.org/html/docs/include/settings.php
www.xdebug.org/html/docs/include/functions/xdebug_break
www.xdebug.org/html/docs/include/functions/xdebug_call_class
www.xdebug.org/html/docs/include/functions/xdebug_call_file
www.xdebug.org/html/docs/include/functions/xdebug_call_function
www.xdebug.org/html/docs/include/functions/xdebug_call_line
www.xdebug.org/html/docs/include/functions/xdebug_debug_zval
www.xdebug.org/html/docs/include/functions/xdebug_debug_zval_stdout
www.xdebug.org/html/docs/include/functions/xdebug_disable
www.xdebug.org/html/docs/include/functions/xdebug_dump_superglobals
www.xdebug.org/html/docs/include/functions/xdebug_enable
www.xdebug.org/html/docs/include/functions/xdebug_get_code_coverage
www.xdebug.org/html/docs/include/functions/xdebug_get_declared_vars
www.xdebug.org/html/docs/include/functions/xdebug_get_function_stack
www.xdebug.org/html/docs/include/functions/xdebug_get_profiler_filename
www.xdebug.org/html/docs/include/functions/xdebug_get_stack_depth
www.xdebug.org/html/docs/include/functions/xdebug_get_tracefile_name
www.xdebug.org/html/docs/include/functions/xdebug_is_disabled
www.xdebug.org/html/docs/include/functions/xdebug_memory_usage
www.xdebug.org/html/docs/include/functions/xdebug_peak_memory_usage
www.xdebug.org/html/docs/include/functions/xdebug_start_code_coverage
www.xdebug.org/html/docs/include/functions/xdebug_start_trace
www.xdebug.org/html/docs/include/functions/xdebug_stop_code_coverage
www.xdebug.org/html/docs/include/functions/xdebug_stop_trace
www.xdebug.org/html/docs/include/functions/xdebug_time_index
www.xdebug.org/html/docs/include/functions/xdebug_var_dump
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/menu-docs.php
www.xdebug.org/html/include/menu.php:
- Phase 1 of the new docs - structure.
Mon Feb 19 22:43:27 CET 2007 Derick Rethans <[email protected]>
html/install.php:
- Fixed bug #204: Add better docs about phpize/php-config.
Mon Feb 19 22:38:37 CET 2007 Derick Rethans <[email protected]>
html/index.php:
- Test 2
Mon Feb 19 22:37:27 CET 2007 Derick Rethans <[email protected]>
html/include/header.php:
- Colour (and test mail)
Mon Feb 19 22:30:28 CET 2007 Derick Rethans <[email protected]>
html/docs-debugger.php
www.xdebug.org/html/docs-functions.php
www.xdebug.org/html/docs-settings.php:
- Fixed bug #205: Add a list of supported IDEs/debugger frontends.
Mon Feb 12 03:50:03 CET 2007 Derick Rethans <[email protected]>
html/docs-settings.php
www.xdebug.org/html/include/footer.php:
- Document some more settings.
Wed Jan 31 20:54:31 CET 2007 Derick Rethans <[email protected]>
html/include/side.php:
- Fixed date.
Wed Jan 31 20:53:38 CET 2007 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/php_xdebug-2.0.0rc3-4.4.1.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc3-5.1.2.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc3-5.2.1.dll
www.xdebug.org/html/files/xdebug-2.0.0RC3.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Release 2.0.0rc3.
Wed Jan 24 15:48:53 CET 2007 Derick Rethans <[email protected]>
html/docs-faq.php:
- Added XAMPP FAQ.
Sat Jan 06 01:34:37 CET 2007 Derick Rethans <[email protected]>
html/support.php:
- Fixed typo.
Sun Dec 24 21:02:09 CET 2006 Derick Rethans <[email protected]>
html/files/php_xdebug-2.0.0rc2-4.4.1.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc2-5.1.2.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc2-5.2.1.dll
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Added Windows binaries.
Sun Dec 24 15:38:41 CET 2006 Derick Rethans <[email protected]>
html/favicon.ico:
- Added favicon
Sun Dec 24 15:38:06 CET 2006 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/xdebug-2.0.0RC2.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- RC2 stuff
Tue Dec 12 20:33:08 CET 2006 Derick Rethans <[email protected]>
html/index.php:
- Fixed title.
Fri Dec 01 13:57:41 CET 2006 Derick Rethans <[email protected]>
html/docs-settings.php
www.xdebug.org/html/install.php:
- Fixed typoes.
Thu Nov 02 11:09:54 CET 2006 Derick Rethans <[email protected]>
html/install.php:
- Added Note about debug builds.
Wed Oct 25 14:56:03 CEST 2006 Derick Rethans <[email protected]>
html/install.php:
- Added linkable install instructions.
Wed Oct 11 10:50:31 CEST 2006 Derick Rethans <[email protected]>
html/files/php_xdebug-2.0.0rc1-4.3.11.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc1-4.4.1.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc1-5.0.5.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc1-5.1.2.dll
www.xdebug.org/html/files/php_xdebug-2.0.0rc1-5.2.0.dll
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Added Windows binaries.
Tue Oct 10 13:31:08 CEST 2006 Derick Rethans <[email protected]>
html/install.php:
- Some clarifications for debugclient
- Updated phpize output numbers
Sun Oct 08 23:12:50 CEST 2006 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/xdebug-2.0.0RC1.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Updates for RC1.
Thu Sep 14 18:02:07 CEST 2006 Derick Rethans <[email protected]>
html/docs-settings.php:
- Fixed typo.
Thu Jul 27 09:14:21 CEST 2006 Derick Rethans <[email protected]>
html/docs-functions.php:
- Fixed typo
Fri Jun 30 15:25:51 CEST 2006 Derick Rethans <[email protected]>
html/include/header.php
www.xdebug.org/html/include/menu-docs.php
www.xdebug.org/html/include/menu.php
www.xdebug.org/html/include/side.php:
- Fixed bug #179: obnoxiously small font on website.
Fri Jun 30 14:40:52 CEST 2006 Derick Rethans <[email protected]>
html/include/links.php
www.xdebug.org/html/include/side.php:
- Fixed site.
Fri Jun 30 14:39:33 CEST 2006 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/php_xdebug-4.3.11-2.0.0beta6.dll
www.xdebug.org/html/files/php_xdebug-4.4.1-2.0.0beta6.dll
www.xdebug.org/html/files/php_xdebug-5.1.2-2.0.0beta6.dll
www.xdebug.org/html/files/xdebug-2.0.0beta6.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Publish 2.0.0beta6
Mon Jun 26 22:56:53 CEST 2006 Derick Rethans <[email protected]>
html/docs-settings.php:
- Fix it for real now.
Mon Jun 26 22:54:51 CEST 2006 Derick Rethans <[email protected]>
html/docs-settings.php:
- Fixed default value for remote_port setting in docs.
Fri May 26 19:44:29 CEST 2006 Derick Rethans <[email protected]>
html/images/debug_zval.png:
- Adding missing image.
Sun Apr 02 09:30:21 CEST 2006 Derick Rethans <[email protected]>
html/docs-settings.php:
- Update with latest addition to naming of files.
Fri Mar 03 09:23:14 CET 2006 Derick Rethans <[email protected]>
html/docs-settings.php:
- That wasn't quite correct yet.
Fri Mar 03 09:19:41 CET 2006 Derick Rethans <[email protected]>
html/docs-settings.php:
- Fixed docs for trace_format.
Sat Dec 31 13:17:01 CET 2005 Derick Rethans <[email protected]>
html/docs-functions.php
www.xdebug.org/html/docs-settings.php
www.xdebug.org/html/index.php
www.xdebug.org/html/install.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/php_xdebug-4.3.11-2.0.0beta5.dll
www.xdebug.org/html/files/php_xdebug-4.4.1-2.0.0beta5.dll
www.xdebug.org/html/files/php_xdebug-5.0.5-2.0.0beta5.dll
www.xdebug.org/html/files/php_xdebug-5.1.1-2.0.0beta5.dll
www.xdebug.org/html/files/xdebug-2.0.0beta5.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Update docs
- Added files for beta5.
Wed Nov 09 10:26:52 CET 2005 Derick Rethans <[email protected]>
html/docs-profiling2.php:
- Fixed typo.
Mon Aug 01 19:15:22 CEST 2005 Derick Rethans <[email protected]>
html/docs-profiling2.php:
- Fixed bug #140: Docs regarding crc32 of directory for profiling are wrong.
Wed Jul 20 09:50:24 CEST 2005 Derick Rethans <[email protected]>
html/include/links.php:
- Fix links.
Fri Jul 15 13:56:44 CEST 2005 Derick Rethans <[email protected]>
html/files/xdebug-4.4dev-1.3dev.dll
www.xdebug.org/html/files/xdebug-4.4dev-2.0dev.dll
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Add Xdebug snapshot for 4.4
Fri Apr 29 09:27:24 CEST 2005 Derick Rethans <[email protected]>
html/docs-profiling2.php:
- Added WinCacheGrind link.
Thu Mar 10 09:29:07 CET 2005 Derick Rethans <[email protected]>
html/files/debugclient-0.7.3
www.xdebug.org/html/files/debugclient-0.7.3.exe
www.xdebug.org/html/files/debugclient-0.9.0
www.xdebug.org/html/files/debugclient-0.9.0.exe
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Added new debugclient binaries.
Sun Feb 27 14:01:46 CET 2005 Derick Rethans <[email protected]>
html/docs-settings.php:
- Fixed typo.
Mon Nov 29 21:57:59 CET 2004 Derick Rethans <[email protected]>
html/files/breaking.pdf
www.derickrethans.nl/html/files/createext.pdf
www.derickrethans.nl/html/files/internals.pdf
www.derickrethans.nl/html/files/playingsafe.pdf
www.derickrethans.nl/html/files/xdebug-ffm2003.pdf
www.derickrethans.nl/html/files/xdebug-montreal2004.pdf
www.xdebug.org/html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/xdebug-2.0.0beta2.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Go with 2.0.0beta2
Sun Nov 14 18:13:31 CET 2004 Derick Rethans <[email protected]>
html/include/menu-docs.php:
- Fixed typo.
Sun Nov 14 18:12:56 CET 2004 Derick Rethans <[email protected]>
html/include/menu-docs.php:
- Link downloadble docs.
Sun Nov 14 18:11:44 CET 2004 Derick Rethans <[email protected]>
make-docs.sh
www.xdebug.org/html/files/docs.tar.gz:
- Added downloadable docs and generation tool.
Tue Oct 05 12:59:05 CEST 2004 Derick Rethans <[email protected]>
html/files/debugclient08.exe
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Added DBGp debugclient for windows.
Fri Sep 17 13:30:52 CEST 2004 Derick Rethans <[email protected]>
html/files/xdebug-4.3.6-2.0.0beta1.dll
www.xdebug.org/html/files/xdebug-5.0-2.0.0beta1.dll
www.xdebug.org/html/files/xdebug-5.1-2.0.0beta1.dll
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Added Windows modules.
Fri Sep 17 13:20:42 CEST 2004 Derick Rethans <[email protected]>
html/docs-settings.php:
- Fixed some inconsistencies.
Thu Sep 16 09:45:36 CEST 2004 Derick Rethans <[email protected]>
html/install.php:
- Added "php -m" tip.
Wed Sep 15 14:59:31 CEST 2004 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/updates.php
www.xdebug.org/html/files/xdebug-2.0.0beta1.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Go with 2.0.0beta1
Wed Sep 01 11:00:38 CEST 2004 Derick Rethans <[email protected]>
html/install.php:
- Added some more information on Debian.
Mon Aug 16 11:40:08 CEST 2004 Derick Rethans <[email protected]>
html/files/xdebug-4.3-1.3.2.dll
www.xdebug.org/html/files/xdebug-4.3-2.0dev.dll
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Add 1.3.2 binary to the site
Mon Aug 09 08:28:27 CEST 2004 Derick Rethans <[email protected]>
html/docs-functions.php
www.xdebug.org/html/docs-settings.php
www.xdebug.org/html/install.php:
- Added the xdebug_get_stack_depth() documentation.
- Updated some install instructions.
Thu Aug 05 13:07:24 CEST 2004 Derick Rethans <[email protected]>
html/docs-debugger.php
www.xdebug.org/html/docs-settings.php:
- Added documentation for the xdebug.idekey setting
#- Fixed part of bug #85
Tue Aug 03 22:44:42 CEST 2004 Derick Rethans <[email protected]>
html/include/links.php
www.xdebug.org/html/include/side.php:
- Fixed links to PECL snapshots
Mon Aug 02 10:42:15 CEST 2004 Derick Rethans <[email protected]>
html/docs-profiling2.php
www.xdebug.org/html/docs-settings.php:
- Added tip on ct_annotate
- Fixed bug #80: Missing "Xdebug 2" identifier for xdebug.show_local_vars
setting documentation.
Mon Aug 02 10:41:25 CEST 2004 Derick Rethans <[email protected]>
html/include/header.php:
- Update styles a bit
Thu Jul 01 11:09:01 CEST 2004 Derick Rethans <[email protected]>
html/install.php:
- Fix instructions
Wed Jun 30 13:55:05 CEST 2004 Derick Rethans <[email protected]>
html/index.php
www.xdebug.org/html/install.php
www.xdebug.org/html/files/xdebug-1.3.2.tgz
www.xdebug.org/html/include/links.php
www.xdebug.org/html/include/side.php:
- Added 1.3.2 release announcement.
Wed Jun 30 09:11:29 CEST 2004 Derick Rethans <[email protected]>
html/install.php:
- Add 1.3cvs instructions.
Wed Jun 23 15:33:25 CEST 2004 Derick Rethans <[email protected]>
html/docs-debugger.php
www.xdebug.org/html/docs-faq.php
www.xdebug.org/html/docs-settings.php
www.xdebug.org/html/install.php
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/side.php:
- Added debugger docs, updated some other docs.
Sun Jun 20 23:09:03 CEST 2004 Derick Rethans <[email protected]>
html/include/side.php:
- Add CVS instructions to right menu.
Fri Jun 18 23:53:36 CEST 2004 Derick Rethans <[email protected]>
html/docs-profiling2.php
www.xdebug.org/html/images/docs/kc-right-callers.png
www.xdebug.org/html/images/docs/kc-right-callmap.png
www.xdebug.org/html/images/docs/kc-right-source.png:
- Some more screenshots and docs.
Fri Jun 18 09:24:18 CEST 2004 Derick Rethans <[email protected]>
html/include/header.php:
- Fixed some CSS issues
Fri Jun 18 09:23:03 CEST 2004 Derick Rethans <[email protected]>
html/docs-debugger.php
www.xdebug.org/html/docs-faq.php
www.xdebug.org/html/docs-gdb.php
www.xdebug.org/html/docs-profiling2.php
www.xdebug.org/html/install.php
www.xdebug.org/html/images/docs/kc-open.png
www.xdebug.org/html/images/docs/kc-percentage.png
www.xdebug.org/html/images/docs/kc-profile.png
www.xdebug.org/html/images/docs/kc-right-call.png
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/menu-docs.php:
- Added some more docs
#- Still not finished...
Mon Jun 14 09:51:18 CEST 2004 Derick Rethans <[email protected]>
html/docs-profiling2.php
www.xdebug.org/html/docs-dbgp.php
www.xdebug.org/html/docs-profiling.php
www.xdebug.org/html/docs-settings.php
www.xdebug.org/html/docs.php
www.xdebug.org/html/license.php
www.xdebug.org/html/include/footer.php
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/menu-docs.php:
- Tiny issues and start of profiling for Xdebug 2 docs.
Sun Jun 13 15:44:06 CEST 2004 Derick Rethans <[email protected]>
html/docs-functions.php
www.xdebug.org/html/docs-settings.php
www.xdebug.org/html/docs.php:
- Update Index
Sat Jun 12 17:38:03 CEST 2004 Derick Rethans <[email protected]>
html/docs-functions.php
www.xdebug.org/html/docs-profiling.php
www.xdebug.org/html/docs-settings.php
www.xdebug.org/html/docs.php:
- Add a whole lot of documentation for xdebug 2. Not nearly finished...
Thu May 27 08:17:40 CEST 2004 Derick Rethans <[email protected]>
html/docs-functions.php
www.xdebug.org/html/docs-settings.php
www.xdebug.org/html/docs.php
www.xdebug.org/html/include/header.php
www.xdebug.org/html/include/menu-docs.php:
- First batch of documentation updates.
Thu May 13 17:25:25 CEST 2004 Derick Rethans <[email protected]>
html/docs-dbgp.php:
- New version of DBGp specs.
Thu Apr 08 21:51:23 CEST 2004 Derick Rethans <[email protected]>
html/support.php:
- Fixed typo in URL
Thu Apr 08 21:50:17 CEST 2004 Derick Rethans <[email protected]>
html/support.php
www.xdebug.org/html/include/header.php:
- Update support site
Thu Apr 08 17:14:49 CEST 2004 Derick Rethans <[email protected]>
html/install.php:
- Fixed install instructions and added new link to MacOSX stuff
Tue Apr 06 22:46:51 CEST 2004 Derick Rethans <[email protected]>