Issue Type: Improvement Created: 2006-09-04T09:22:40.000+0000 Last Updated: 2007-07-05T14:43:19.000+0000 Status: Resolved Fix version(s): - 0.2.0 (29/Oct/06)
Reporter: Saqib Javed (chicodichery) Assignee: Rob Allen (rob) Tags: - Zend_Config
Related issues: Attachments: - zf352_v1.patch
Instead of:
[foo] prop1 = 'some value'
[bar] extends = foo prop2 = 'some value'
it is proposed that section extension take place in the following way:
[foo] prop1 = 'some value'
[bar : foo] prop2 = 'some value'
Posted by Darby Felton (darby) on 2006-09-19T12:55:52.000+0000
Edited a bit to illustrate the proposed change.
Posted by Rob Allen (rob) on 2006-10-06T16:55:28.000+0000
Patch v1 essentially converts the
<pre class="highlight">
[X:Y]
a = b
to
<pre class="highlight">
[X]
extends=Y
a = b
Posted by Rob Allen (rob) on 2006-10-18T14:35:02.000+0000
Fixed in subversion changeset 1282
Posted by Gavin (gavin) on 2006-10-18T18:09:14.000+0000
I did not see a documentation change in the changeset.
Posted by Rob Allen (rob) on 2006-10-19T02:20:07.000+0000
I don't have a system where I can compile docbook, so am reluctant to commit documentation changes until I do.
ZF-403 covers documentation updating for 0.2 and I've attached a patch for this issue to it.