INT-2618 - Document directory-expression attribute

* Add documentation directory-expression
* Add documentation for auto-create-directory attribute
* Refactor File Adapter chapter slightly so that it flows better

For reference see: https://jira.springsource.org/browse/INT-2618

INT-2618 - Doc updated due to changes in INT-805

* rebased
* clarified the file section in the reference doc
This commit is contained in:
Gunnar Hillert
2012-06-14 17:56:19 -04:00
committed by Oleg Zhurakousky
parent 9082512a48
commit 97b59c2acd
2 changed files with 168 additions and 76 deletions

View File

@@ -286,7 +286,7 @@ Only files matching this regular expression will be picked up by this adapter.
<xsd:annotation>
<xsd:documentation>
Extension used when uploading files. We change it after we know it's uploaded.
This attribute is mutualy exclusive with 'append' since the append is done to the
This attribute is mutualy exclusive with 'append' since the append is done to the
actual file and not its temporary counterpart. The default value of this attribute (i.e., .writing)
is ignored when 'append' is set to true.
</xsd:documentation>
@@ -295,10 +295,13 @@ Only files matching this regular expression will be picked up by this adapter.
<xsd:attribute name="append" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
Will append to the existing file if such file exists otherwise the new file will be created as usual
but once created the subsequent data will be appended to it.
This attribute is mutualy exclusive with the 'temporary-file-suffix' since append is done to the
actual file and not its temporary counterpart.
If set to 'true', the data will will be appended to the
existing file if such file exists, otherwise the new file
will be created as usual but once created the subsequent data
will be appended to it. This attribute is mutualy exclusive
with the 'temporary-file-suffix' since append is done to the
actual file and not its temporary counterpart. This attribute
defaults to 'false' if not set explicitly.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>