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

Added file attribute of fileset to doc and grammar #927

Merged
merged 2 commits into from
May 24, 2018
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
10 changes: 9 additions & 1 deletion docs/guide/en/source/appendixes/coretypes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,15 @@ the large, complex Bar project.
<entry>The directory, to which the paths given in <literal>files
</literal>or <literal>listfile</literal> are relative.</entry>
<entry>n/a</entry>
<entry>Yes</entry>
<entry>Yes (or file)</entry>
</row>
<row>
<entry><literal>file</literal></entry>
<entry><literal role="type">String</literal></entry>
<entry>The directory, to which the paths given in <literal>files
</literal>or <literal>listfile</literal> are relative.</entry>
<entry>n/a</entry>
<entry>Yes (or dir)</entry>
</row>
<row>
<entry><literal>files</literal></entry>
Expand Down
5 changes: 4 additions & 1 deletion etc/phing-grammar.rng
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,10 @@
<data type="IDREF"/>
</attribute>
<group>
<attribute name="dir"/>
<choice>
<attribute name="dir"/>
<attribute name="file"/>
</choice>
<optional>
<choice>
<attribute name="id">
Expand Down