Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dbdeploy task. fix 960 defect (add missing check all attribute documentation) and fix appliedBy attribute #177

Merged
merged 2 commits into from
Jan 2, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions docs/docbook5/en/source/appendixes/optionaltasks.xml
Original file line number Diff line number Diff line change
Expand Up @@ -663,13 +663,23 @@
<entry>No</entry>
</row>
<row>
<entry><literal>deltaset</literal></entry>
<entry><literal>appliedBy</literal></entry>
<entry><literal role="type">String</literal></entry>
<entry>Value of the 'applied_by' column for each
entry in the changelog table</entry>
<entry>dbdeploy</entry>
<entry>No</entry>
</row>
<row>
<entry><literal>checkall</literal></entry>
<entry><literal role="type">Boolean</literal></entry>
<entry>False means dbdeploy will only apply patches that have a higher number
than the last patchnumber that was applied
True means dbdeploy will apply all changes that aren't applied
already (in ascending order)</entry>
<entry>false</entry>
<entry>No</entry>
</row>
</tbody>
</tgroup>
</table>
Expand Down Expand Up @@ -2741,12 +2751,12 @@ Note that you can omit both startpoint and track attributes in this case
</itemizedlist>
</entry>
<entry>normal</entry>
<entry>No</td>
<entry>No</entry>
</row>
<row>
<entry><literal>protocol</literal></entry>
<entry><literal role="type">String</literal></entry>
<entry>The protocol used to send the notification. May be either gntp or udp.<entry>
<entry>The protocol used to send the notification. May be either gntp or udp.</entry>
<entry>gntp</entry>
<entry>No</entry>
</row>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,16 @@ <h3>Attributes</h3>
<td>dbdeploy</td>
<td>No</td>
</tr>
<tr>
<td>checkall</td>
<td>Boolean</td>
<td>False means dbdeploy will only apply patches that have a higher number
than the last patchnumber that was applied
True means dbdeploy will apply all changes that aren't applied
already (in ascending order)</td>
<td>false</td>
<td>No</td>
</tr>
</tbody>
</table>
<h2>
Expand Down Expand Up @@ -8575,7 +8585,7 @@ <h3>Attributes</h3>
<td>no</td>
</tr>
</tbody>

</table>
<h3>Supported Nested Tags</h3>
<ul>
Expand Down
8 changes: 8 additions & 0 deletions etc/phing-grammar.rng
Original file line number Diff line number Diff line change
Expand Up @@ -1860,6 +1860,14 @@
<data type="int"/>
</attribute>
</optional>

<optional>
<attribute name="appliedBy"/>
</optional>

<optional>
<attribute name="checkall"/>
</optional>
</interleave>
</element>
</define>
Expand Down