[xdebug-dev] [derickr/xdebug] f8351f: Remove commented out unused code for variable name...

From: Derick Rethans <github[@]derickrethans.nl>
Date: Thu, 15 Sep 2011 06:17:12 -0700

  Branch: refs/heads/master
  Home: https://github.com/derickr/xdebug

  Commit: f8351f8ff3436ce70113294a3251675cb7d15e08
      https://github.com/derickr/xdebug/commit/f8351f8ff3436ce70113294a3251675cb7d15e08
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-07 (Wed, 07 Sep 2011)

  Changed paths:
    M xdebug_var.c

  Log Message:
  -----------
  Remove commented out unused code for variable name building.

  Commit: e881d979e873d67f8595659af17a64aba9ff1ffb
      https://github.com/derickr/xdebug/commit/e881d979e873d67f8595659af17a64aba9ff1ffb
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-07 (Wed, 07 Sep 2011)

  Changed paths:
    M xdebug_var.c

  Log Message:
  -----------
  Only prefix the var name with a $ if it's not already there, or ":".

  Commit: bf10592ae030e28766468c4e3313389f96f0ff59
      https://github.com/derickr/xdebug/commit/bf10592ae030e28766468c4e3313389f96f0ff59
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-09 (Fri, 09 Sep 2011)

  Changed paths:
    M tests/bug00421.inc
  M tests/bug00421.phpt
  M tests/bug00475.phpt
  M tests/bug00494.phpt
  M tests/bug00530.phpt
  M tests/bug00538.phpt
  M tests/bug00566-2.phpt
  M tests/bug00619.phpt
  M tests/bug00623.inc
  M tests/bug00623.phpt
  R tests/localvariables.xml
  M xdebug_handler_dbgp.c
  M xdebug_var.c

  Log Message:
  -----------
  Sort out how to name properties in command responses.

Every variable (non-static) will now always come back with a $ prefixed,
regardless of whether the $ was part of the -n argument to property_get.

Every static property in the current scope can be requested by
"::propertyName". "::" can not be requested, but "$t::" can in which case it
returns only all static properties of the class. Private class properties will
be named "::*parentClass*propertyName", and can also be requested with
property_get.

I've also adjusted all the test cases that checked for the old behaviour.

  Commit: 862bca28d2377172095a878e1f4feee0c12dc4b3
      https://github.com/derickr/xdebug/commit/862bca28d2377172095a878e1f4feee0c12dc4b3
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-09 (Fri, 09 Sep 2011)

  Changed paths:
    M tests/bug00421.phpt

  Log Message:
  -----------
  Fixed testcase

  Commit: cdfff510f0f0833e0d6cb565f46ea25444d85074
      https://github.com/derickr/xdebug/commit/cdfff510f0f0833e0d6cb565f46ea25444d85074
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-09 (Fri, 09 Sep 2011)

  Changed paths:
    M xdebug_handler_dbgp.c
  M xdebug_var.c

  Log Message:
  -----------
  Removed unused (and commented out function) and remove xdebug_ prefix from a static function.

  Commit: 40c370a375b8b5396a2142a9e0132db54ece1ef6
      https://github.com/derickr/xdebug/commit/40c370a375b8b5396a2142a9e0132db54ece1ef6
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-09 (Fri, 09 Sep 2011)

  Changed paths:
    M php_xdebug.h
  M tests/bug00421.inc
  M tests/bug00421.phpt
  M tests/bug00475.phpt
  M tests/bug00494.phpt
  M tests/bug00530.phpt
  M tests/bug00538.phpt
  M tests/bug00566-2.phpt
  M tests/bug00619.phpt
  A tests/bug00623.inc
  A tests/bug00623.phpt
  R tests/localvariables.xml
  M xdebug_handler_dbgp.c
  M xdebug_var.c
  M xdebug_var.h

  Log Message:
  -----------
  Merge branch 'issue623-debug-static-properties' into xdebug_2_1

  Commit: 4e62ab85e068aa5c9f8c788102618fed39048288
      https://github.com/derickr/xdebug/commit/4e62ab85e068aa5c9f8c788102618fed39048288
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-09 (Fri, 09 Sep 2011)

  Changed paths:
    M php_xdebug.h
  M tests/bug00421.inc
  M tests/bug00421.phpt
  M tests/bug00475.phpt
  M tests/bug00494.phpt
  M tests/bug00530.phpt
  M tests/bug00538.phpt
  M tests/bug00566-2.phpt
  M tests/bug00619.phpt
  A tests/bug00623.inc
  A tests/bug00623.phpt
  R tests/localvariables.xml
  M xdebug_handler_dbgp.c
  M xdebug_var.c
  M xdebug_var.h

  Log Message:
  -----------
  Merge branch 'xdebug_2_1'

  Commit: cc4947f08e88746912adad65e59bce9088b8d381
      https://github.com/derickr/xdebug/commit/cc4947f08e88746912adad65e59bce9088b8d381
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-09 (Fri, 09 Sep 2011)

  Changed paths:
    M tests/bug00606-2.phpt
  A tests/bug00703-php51.phpt
  M tests/bug00703.phpt
  M tests/bug00709.phpt

  Log Message:
  -----------
  Fixed a few test cases due to PHP version differences.

  Commit: 157616bb0a7777398550db4f7d8870b21b8b5353
      https://github.com/derickr/xdebug/commit/157616bb0a7777398550db4f7d8870b21b8b5353
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-09 (Fri, 09 Sep 2011)

  Changed paths:
    M tests/bug00606-2.phpt
  A tests/bug00703-php51.phpt
  M tests/bug00703.phpt
  M tests/bug00709.phpt

  Log Message:
  -----------
  Merge branch 'xdebug_2_1'

  Commit: f856d39c8e6ad3315317c5425860bad690cc7833
      https://github.com/derickr/xdebug/commit/f856d39c8e6ad3315317c5425860bad690cc7833
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-11 (Sun, 11 Sep 2011)

  Changed paths:
    M config.m4

  Log Message:
  -----------
  Added a version check for the branch, so that it just tells you it's not compatible with PHP 5.4.

  Commit: e79b7227be416d44f2795fc351e569b2912729fb
      https://github.com/derickr/xdebug/commit/e79b7227be416d44f2795fc351e569b2912729fb
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-11 (Sun, 11 Sep 2011)

  Changed paths:
    M config.m4

  Log Message:
  -----------
  Merge branch 'xdebug_2_1'

Conflicts:
        config.m4

  Commit: 4573e8e3c883c26adb5669063f754ab3e90591c9
      https://github.com/derickr/xdebug/commit/4573e8e3c883c26adb5669063f754ab3e90591c9
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-11 (Sun, 11 Sep 2011)

  Changed paths:
    A tests/bug00622-php53.phpt
  M tests/bug00622.inc
  M tests/bug00622.phpt

  Log Message:
  -----------
  Make test (PHP) version independent.

  Commit: 470ae515b1e8ff80912824fcc731862c40f4f7da
      https://github.com/derickr/xdebug/commit/470ae515b1e8ff80912824fcc731862c40f4f7da
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-11 (Sun, 11 Sep 2011)

  Changed paths:
    M xdebug_handler_dbgp.c
  M xdebug_var.c

  Log Message:
  -----------
  Fixed a memory leak.

  Commit: 730d15f0f146ac6a0738593845ed458a2d93a15b
      https://github.com/derickr/xdebug/commit/730d15f0f146ac6a0738593845ed458a2d93a15b
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-13 (Tue, 13 Sep 2011)

  Changed paths:
    M tests/bug00614.phpt

  Log Message:
  -----------
  Also added the second pages as part of the test.

  Commit: 65f15e430cf80a124b06756cc5a7b83d46a4419c
      https://github.com/derickr/xdebug/commit/65f15e430cf80a124b06756cc5a7b83d46a4419c
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-13 (Tue, 13 Sep 2011)

  Changed paths:
    M tests/bug00614.phpt
  A tests/bug00622-php53.phpt
  M tests/bug00622.inc
  M tests/bug00622.phpt
  M xdebug_handler_dbgp.c
  M xdebug_var.c

  Log Message:
  -----------
  Merge branch 'xdebug_2_1'

  Commit: 191ed04605f23ee8e01be1ffd902e3e5d4ba5444
      https://github.com/derickr/xdebug/commit/191ed04605f23ee8e01be1ffd902e3e5d4ba5444
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-13 (Tue, 13 Sep 2011)

  Changed paths:
    M xdebug_handler_dbgp.c
  M xdebug_var.c

  Log Message:
  -----------
  Use the correct macro for this.

  Commit: 8e1e7516a49a5f97c78f7344d0e96d929ca62f85
      https://github.com/derickr/xdebug/commit/8e1e7516a49a5f97c78f7344d0e96d929ca62f85
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-13 (Tue, 13 Sep 2011)

  Changed paths:
    M xdebug_handler_dbgp.c
  M xdebug_var.c

  Log Message:
  -----------
  Merge branch 'xdebug_2_1'

  Commit: d89bc08fd4140ab710fa370a18626ef5b0324b8e
      https://github.com/derickr/xdebug/commit/d89bc08fd4140ab710fa370a18626ef5b0324b8e
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-13 (Tue, 13 Sep 2011)

  Changed paths:
    A tests/bug00614-php54.phpt
  M xdebug_handler_dbgp.c
  M xdebug_var.c

  Log Message:
  -----------
  Make static properties work for PHP 5.4 too, and added a test.

  Commit: f1ea6ab535ec6da1b31fbbdc0e021517b107378f
      https://github.com/derickr/xdebug/commit/f1ea6ab535ec6da1b31fbbdc0e021517b107378f
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-14 (Wed, 14 Sep 2011)

  Changed paths:
    M tests/bug00614.phpt

  Log Message:
  -----------
  Fixed test case SKIPIF condition.

  Commit: a885c81e7e12d36cf7dba2d347b63080e4790b24
      https://github.com/derickr/xdebug/commit/a885c81e7e12d36cf7dba2d347b63080e4790b24
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-14 (Wed, 14 Sep 2011)

  Changed paths:
    M tests/bug00614.phpt

  Log Message:
  -----------
  Merge branch 'xdebug_2_1'

  Commit: 9181a1d724a6d8b81d8a7afe16fb9d1c7d77cb8f
      https://github.com/derickr/xdebug/commit/9181a1d724a6d8b81d8a7afe16fb9d1c7d77cb8f
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-14 (Wed, 14 Sep 2011)

  Changed paths:
    M tests/bug00614-php54.phpt
  M tests/remote_log3.phpt

  Log Message:
  -----------
  Fixed test cases.

  Commit: 903e2fba9e257511ef4529c4d09e6ca8e8531f02
      https://github.com/derickr/xdebug/commit/903e2fba9e257511ef4529c4d09e6ca8e8531f02
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-14 (Wed, 14 Sep 2011)

  Changed paths:
    M tests/001.phpt
  M tests/array_map.phpt
  M tests/assert_test.phpt
  M tests/assignment-trace8-php52.phpt
  M tests/assignment-trace8.phpt
  M tests/assignment-trace9-php52.phpt
  M tests/assignment-trace9.phpt
  M tests/auto_trace.phpt
  M tests/bug00001.phpt
  M tests/bug00002.phpt
  M tests/bug00003.phpt
  M tests/bug00022.phpt
  A tests/bug00032-php52.phpt
  R tests/bug00032-ze22.phpt
  M tests/bug00032.phpt
  R tests/bug00057-ze2.phpt
  A tests/bug00057.phpt
  M tests/bug00089.phpt
  M tests/bug00146.phpt
  M tests/bug00168.phpt
  M tests/bug00173.phpt
  M tests/bug00176.phpt
  M tests/bug00209.phpt
  M tests/bug00212a.phpt
  M tests/bug00212b.phpt
  M tests/bug00212c.phpt
  M tests/bug00213.phpt
  M tests/bug00241.phpt
  M tests/bug00265.phpt
  M tests/bug00280.phpt
  M tests/bug00298.phpt
  M tests/bug00313.phpt
  M tests/bug00314.phpt
  M tests/bug00315.phpt
  M tests/bug00318.phpt
  M tests/bug00328.phpt
  M tests/bug00334.phpt
  M tests/bug00355.phpt
  M tests/bug00391.phpt
  M tests/bug00419-sunos.phpt
  M tests/bug00419.phpt
  M tests/bug00421.phpt
  M tests/bug00422.phpt
  M tests/bug00470.phpt
  M tests/bug00472.phpt
  M tests/bug00475.phpt
  M tests/bug00476-2.phpt
  M tests/bug00476.phpt
  M tests/bug00494.phpt
  M tests/bug00501.phpt
  M tests/bug00515.phpt
  M tests/bug00530.phpt
  M tests/bug00535.phpt
  M tests/bug00538-2.phpt
  M tests/bug00562.phpt
  M tests/bug00565.phpt
  M tests/bug00566-1.phpt
  M tests/bug00566-2.phpt
  M tests/bug00567.phpt
  M tests/bug00606-2.phpt
  M tests/bug00606.phpt
  M tests/bug00614.phpt
  M tests/bug00622-php53.phpt
  M tests/bug00622.phpt
  M tests/bug00623.phpt
  M tests/bug00631.phpt
  M tests/bug00665.phpt
  M tests/bug00670.phpt
  M tests/bug00678-2.phpt
  M tests/bug00678.phpt
  M tests/bug00688.phpt
  M tests/bug00689.phpt
  M tests/bug00697.phpt
  M tests/bug00699.phpt
  M tests/bug00703-php51.phpt
  M tests/bug00703.phpt
  M tests/bug00709.phpt
  M tests/call_user_func_array.phpt
  M tests/call_user_func_array2.phpt
  M tests/coverage.phpt
  M tests/coverage2.phpt
  M tests/coverage3.phpt
  M tests/coverage4.phpt
  M tests/exception.phpt
  M tests/function_counter.phpt
  M tests/functrace_comp_0.phpt
  M tests/functrace_comp_1.phpt
  M tests/functrace_comp_2.phpt
  M tests/functrace_comp_3.phpt
  M tests/functrace_comp_4.phpt
  M tests/get_declared_vars.phpt
  M tests/local_vars_in_error.phpt
  M tests/memory_usage.phpt
  M tests/peak_memory_usage.phpt
  M tests/scream.phpt
  M tests/shutdown.phpt
  M tests/stacktrace_html_0.phpt
  M tests/stacktrace_html_1.phpt
  M tests/stacktrace_html_2.phpt
  M tests/stacktrace_html_3.phpt
  M tests/stacktrace_html_4.phpt
  M tests/stacktrace_html_4_novar.phpt
  M tests/stacktrace_text_0.phpt
  M tests/stacktrace_text_1.phpt
  M tests/stacktrace_text_2.phpt
  M tests/stacktrace_text_3.phpt
  M tests/stacktrace_text_4.phpt
  M tests/stacktrace_text_4_novar.phpt
  M tests/start_trace.phpt
  M tests/test1.phpt
  M tests/test10b.phpt
  M tests/test11.phpt
  M tests/test12.phpt
  M tests/test13.phpt
  M tests/test14b.phpt
  M tests/test15.phpt
  M tests/test16b.phpt
  M tests/test17.phpt
  M tests/test18.phpt
  M tests/test18a.phpt
  M tests/test18b.phpt
  M tests/test19.phpt
  M tests/test20b.phpt
  M tests/test3.phpt
  M tests/test4.phpt
  M tests/test5.phpt
  M tests/test6.phpt
  M tests/test7b.phpt
  M tests/test8.phpt
  M tests/test9b.phpt
  M tests/trace.phpt
  M tests/trace1.phpt
  M tests/trace2.phpt
  M tests/trace_with_magic_methods.phpt
  M tests/xdebug_call.phpt
  M tests/xdebug_call_depth.phpt
  M tests/xdebug_call_depth2.phpt
  M tests/xdebug_var_dump.phpt
  M tests/xdebug_var_dump_non_overload.phpt

  Log Message:
  -----------
  Tests clean-up (probably only part 1 though...)

  Commit: 233efa81de77f41060f49e90298203125b9a12db
      https://github.com/derickr/xdebug/commit/233efa81de77f41060f49e90298203125b9a12db
  Author: Derick Rethans <github[@]derickrethans.nl>
  Date: 2011-09-14 (Wed, 14 Sep 2011)

  Changed paths:
    M tests/001.phpt
  M tests/array_map.phpt
  M tests/assert_test.phpt
  M tests/assignment-trace8-php52.phpt
  M tests/assignment-trace8.phpt
  M tests/assignment-trace9-php52.phpt
  M tests/assignment-trace9.phpt
  M tests/auto_trace.phpt
  M tests/bug00001.phpt
  M tests/bug00002.phpt
  M tests/bug00003.phpt
  M tests/bug00022.phpt
  A tests/bug00032-php52.phpt
  R tests/bug00032-ze22.phpt
  M tests/bug00032.phpt
  R tests/bug00057-ze2.phpt
  A tests/bug00057.phpt
  M tests/bug00089.phpt
  M tests/bug00146.phpt
  M tests/bug00168.phpt
  M tests/bug00173.phpt
  M tests/bug00176.phpt
  M tests/bug00209.phpt
  M tests/bug00212a.phpt
  M tests/bug00212b.phpt
  M tests/bug00212c.phpt
  M tests/bug00213.phpt
  M tests/bug00241.phpt
  M tests/bug00265.phpt
  M tests/bug00280.phpt
  M tests/bug00298.phpt
  M tests/bug00313.phpt
  M tests/bug00314.phpt
  M tests/bug00315.phpt
  M tests/bug00318.phpt
  M tests/bug00328.phpt
  M tests/bug00334.phpt
  M tests/bug00355.phpt
  M tests/bug00391.phpt
  M tests/bug00419-sunos.phpt
  M tests/bug00419.phpt
  M tests/bug00421.phpt
  M tests/bug00422.phpt
  M tests/bug00470.phpt
  M tests/bug00472.phpt
  M tests/bug00475.phpt
  M tests/bug00476-2.phpt
  M tests/bug00476.phpt
  M tests/bug00494.phpt
  M tests/bug00501.phpt
  M tests/bug00515.phpt
  M tests/bug00530.phpt
  M tests/bug00535.phpt
  M tests/bug00538-2.phpt
  M tests/bug00562.phpt
  M tests/bug00565.phpt
  M tests/bug00566-1.phpt
  M tests/bug00566-2.phpt
  M tests/bug00567.phpt
  M tests/bug00606-2.phpt
  M tests/bug00606.phpt
  M tests/bug00614.phpt
  M tests/bug00622-php53.phpt
  M tests/bug00622.phpt
  M tests/bug00623.phpt
  M tests/bug00631.phpt
  M tests/bug00665.phpt
  M tests/bug00670.phpt
  M tests/bug00678-2.phpt
  M tests/bug00678.phpt
  M tests/bug00688.phpt
  M tests/bug00689.phpt
  M tests/bug00697.phpt
  M tests/bug00699.phpt
  M tests/bug00703-php51.phpt
  M tests/bug00703.phpt
  M tests/bug00709.phpt
  M tests/call_user_func_array.phpt
  M tests/call_user_func_array2.phpt
  M tests/coverage.phpt
  M tests/coverage2.phpt
  M tests/coverage3.phpt
  M tests/coverage4.phpt
  M tests/exception.phpt
  M tests/function_counter.phpt
  M tests/functrace_comp_0.phpt
  M tests/functrace_comp_1.phpt
  M tests/functrace_comp_2.phpt
  M tests/functrace_comp_3.phpt
  M tests/functrace_comp_4.phpt
  M tests/get_declared_vars.phpt
  M tests/local_vars_in_error.phpt
  M tests/memory_usage.phpt
  M tests/peak_memory_usage.phpt
  M tests/scream.phpt
  M tests/shutdown.phpt
  M tests/stacktrace_html_0.phpt
  M tests/stacktrace_html_1.phpt
  M tests/stacktrace_html_2.phpt
  M tests/stacktrace_html_3.phpt
  M tests/stacktrace_html_4.phpt
  M tests/stacktrace_html_4_novar.phpt
  M tests/stacktrace_text_0.phpt
  M tests/stacktrace_text_1.phpt
  M tests/stacktrace_text_2.phpt
  M tests/stacktrace_text_3.phpt
  M tests/stacktrace_text_4.phpt
  M tests/stacktrace_text_4_novar.phpt
  M tests/start_trace.phpt
  M tests/test1.phpt
  M tests/test10b.phpt
  M tests/test11.phpt
  M tests/test12.phpt
  M tests/test13.phpt
  M tests/test14b.phpt
  M tests/test15.phpt
  M tests/test16b.phpt
  M tests/test17.phpt
  M tests/test18.phpt
  M tests/test18a.phpt
  M tests/test18b.phpt
  M tests/test19.phpt
  M tests/test20b.phpt
  M tests/test3.phpt
  M tests/test4.phpt
  M tests/test5.phpt
  M tests/test6.phpt
  M tests/test7b.phpt
  M tests/test8.phpt
  M tests/test9b.phpt
  M tests/trace.phpt
  M tests/trace1.phpt
  M tests/trace2.phpt
  M tests/trace_with_magic_methods.phpt
  M tests/xdebug_call.phpt
  M tests/xdebug_call_depth.phpt
  M tests/xdebug_call_depth2.phpt
  M tests/xdebug_var_dump.phpt
  M tests/xdebug_var_dump_non_overload.phpt

  Log Message:
  -----------
  Merge branch 'xdebug_2_1'

Conflicts:
        tests/bug00562.phpt

Compare: https://github.com/derickr/xdebug/compare/14e7c06...233efa8
Received on Thu Sep 15 2011 - 14:17:36 BST

This archive was generated by hypermail 2.2.0 : Sun Jun 24 2018 - 04:00:03 BST