-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<wodefinitions> | ||
<wo class="ERXPartialWrapper.java" wocomponentcontent="true"> | ||
<binding name="key"/> | ||
<validation message="'key' is a required binding."> | ||
<unbound name="key"/> | ||
</validation> | ||
</wo> | ||
</wodefinitions> |
9 changes: 9 additions & 0 deletions
9
Frameworks/Core/ERExtensions/Components/ERXPartialWrapper.api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<wodefinitions> | ||
<wo class="ERXPartialWrapper.java" wocomponentcontent="true"> | ||
<binding name="key"/> | ||
<validation message="'key' is a required binding."> | ||
<unbound name="key"/> | ||
</validation> | ||
</wo> | ||
</wodefinitions> |
9 changes: 9 additions & 0 deletions
9
Frameworks/Core/ERExtensions/Components/ERXUniquingWrapper.api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<wodefinitions> | ||
<wo class="ERXUniquingWrapper.java" wocomponentcontent="true"> | ||
<binding name="id"/> | ||
<validation message="'id' is a required binding."> | ||
<unbound name="id"/> | ||
</validation> | ||
</wo> | ||
</wodefinitions> |
2f06f7a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do any of these components even do, Johann? Do you use them? Just curious.
2f06f7a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did use the partial stuff once in a demo project. It allows you to generate content for the response that is inserted at a different place within the response as the template parsing order would imply. So a component could create HTML code that is located outside of its scope.
From time to time I take some arbitrary classes from Wonder and check what they do. Lots of new ideas arise by that and you never stop to discover new gems :)