-
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.
Adding the TextSearchDemo example from WOWODC 2010
- Loading branch information
Pascal Robert
committed
Aug 13, 2012
1 parent
175278c
commit 6276b4f
Showing
63 changed files
with
216,019 additions
and
1 deletion.
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
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,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="src" path="Sources"/> | ||
<classpathentry kind="con" path="WOFramework/ERMoviesLogic"/> | ||
<classpathentry kind="con" path="WOFramework/ERExtensions"/> | ||
<classpathentry kind="con" path="WOFramework/ERJars"/> | ||
<classpathentry kind="con" path="WOFramework/ERPrototypes"/> | ||
<classpathentry kind="con" path="WOFramework/JavaWOExtensions"/> | ||
<classpathentry kind="con" path="WOFramework/WOOgnl"/> | ||
<classpathentry kind="con" path="WOFramework/JavaEOAccess"/> | ||
<classpathentry kind="con" path="WOFramework/JavaEOControl"/> | ||
<classpathentry kind="con" path="WOFramework/JavaFoundation"/> | ||
<classpathentry kind="con" path="WOFramework/JavaJDBCAdaptor"/> | ||
<classpathentry kind="con" path="WOFramework/JavaWebObjects"/> | ||
<classpathentry kind="con" path="WOFramework/JavaXML"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
<classpathentry kind="con" path="WOFramework/ERIndexing"/> | ||
<classpathentry kind="con" path="WOFramework/Ajax"/> | ||
<classpathentry kind="con" path="WOFramework/ERTaggable"/> | ||
<classpathentry kind="con" path="WOFramework/ERAttachment"/> | ||
<classpathentry kind="con" path="WOFramework/H2PlugIn"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
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,6 @@ | ||
target | ||
bin | ||
build | ||
*.xcodeproj | ||
*.pbxproj | ||
ant.* |
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,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>TextSearchDemo</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.objectstyle.wolips.incrementalbuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
<nature>org.objectstyle.wolips.incrementalapplicationnature</nature> | ||
</natures> | ||
</projectDescription> |
2 changes: 2 additions & 0 deletions
2
Examples/Misc/TextSearchDemo/.settings/org.eclipse.core.resources.prefs
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,2 @@ | ||
eclipse.preferences.version=1 | ||
encoding//Components=UTF-8 |
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<wodefinitions> | ||
<wo wocomponentcontent="false" class="AutoSuggest.java"> | ||
|
||
</wo> | ||
</wodefinitions> |
21 changes: 21 additions & 0 deletions
21
Examples/Misc/TextSearchDemo/Components/AutoSuggest.wo/AutoSuggest.html
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,21 @@ | ||
<webobject name = "PageWrapper"> | ||
<h1>Auto Suggest</h1> | ||
<webobject name = "PrimeIndexLink">Prime Index</webobject> | ||
<div id="SearchWrapper"> | ||
<wo:form> | ||
<h4>Search</h4> | ||
<wo:AjaxAutoComplete class="textfield" list="$currentValues" value="$searchString"/> <wo:submit value="Search" action="$searchAction"></wo:submit> | ||
</wo:form> | ||
<table> | ||
<tr><th>Index</th><th>Title</th><th>Rank</th></tr> | ||
<wo:if condition = "$foundScoreDocsCount"> | ||
<wo:loop count = "$foundScoreDocsCount" index = "$foundSetIndex"> | ||
<tr><td><wo:str value="$foundSetIndex" /></td><td><wo:link action="$showDetailsAction"><wo:str value="$currentDocument.title//VALID" /></wo:link></td><td><wo:str value="$currentDocument.score" /></td></tr> | ||
</wo:loop> | ||
</wo:if> | ||
<wo:if condition = "$foundScoreDocsCount" negate="$true"> | ||
<tr><td>-</td><td><em>No Results Found</em></td><td>-</td></tr> | ||
</wo:if> | ||
</table> | ||
</div> | ||
</webobject> |
8 changes: 8 additions & 0 deletions
8
Examples/Misc/TextSearchDemo/Components/AutoSuggest.wo/AutoSuggest.wod
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,8 @@ | ||
PageWrapper : PageWrapper { | ||
pageTitle = "Auto Suggest"; | ||
} | ||
|
||
PrimeIndexLink : WOHyperlink { | ||
action = indexMoviesAction; | ||
class = "Button PrimeIndexButton"; | ||
} |
4 changes: 4 additions & 0 deletions
4
Examples/Misc/TextSearchDemo/Components/AutoSuggest.wo/AutoSuggest.woo
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,4 @@ | ||
{ | ||
"WebObjects Release" = "WebObjects 5.0"; | ||
encoding = "UTF-8"; | ||
} |
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<wodefinitions> | ||
<wo wocomponentcontent="false" class="DidYouMean.java"> | ||
|
||
</wo> | ||
</wodefinitions> |
24 changes: 24 additions & 0 deletions
24
Examples/Misc/TextSearchDemo/Components/DidYouMean.wo/DidYouMean.html
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,24 @@ | ||
<webobject name = "PageWrapper"> | ||
<h1>Did You Mean...</h1> | ||
<webobject name = "PrimeIndexLink">Prime Index</webobject> | ||
<div id="SearchWrapper"> | ||
<wo:form> | ||
<h4>Search</h4> | ||
<wo:textfield class="textfield" value="$searchString"/> <wo:submit value="Search" action="$searchAction"></wo:submit> | ||
</wo:form> | ||
<wo:if condition="$suggestion"> | ||
<em>Did you mean: <wo:link action="$useSuggestionAction"><wo:str value="$suggestion"/></wo:link></em> | ||
</wo:if> | ||
<table> | ||
<tr><th>Index</th><th>Title</th><th>Rank</th></tr> | ||
<wo:if condition = "$foundScoreDocsCount"> | ||
<wo:loop count = "$foundScoreDocsCount" index = "$foundSetIndex"> | ||
<tr><td><wo:str value="$foundSetIndex" /></td><td><wo:str value="$currentDocument.title//VALID" /></td><td><wo:str value="$currentDocument.score" /></td></tr> | ||
</wo:loop> | ||
</wo:if> | ||
<wo:if condition = "$foundScoreDocsCount" negate="$true"> | ||
<tr><td>-</td><td><em>No Results Found</em></td><td>-</td></tr> | ||
</wo:if> | ||
</table> | ||
</div> | ||
</webobject> |
8 changes: 8 additions & 0 deletions
8
Examples/Misc/TextSearchDemo/Components/DidYouMean.wo/DidYouMean.wod
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,8 @@ | ||
PageWrapper : PageWrapper { | ||
pageTitle = "Did You Mean..."; | ||
} | ||
|
||
PrimeIndexLink : WOHyperlink { | ||
action = createDidYouMeanIndexAction; | ||
class = "Button PrimeIndexButton"; | ||
} |
4 changes: 4 additions & 0 deletions
4
Examples/Misc/TextSearchDemo/Components/DidYouMean.wo/DidYouMean.woo
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,4 @@ | ||
{ | ||
"WebObjects Release" = "WebObjects 5.0"; | ||
encoding = "UTF-8"; | ||
} |
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,5 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<wodefinitions> | ||
<wo wocomponentcontent="false" class="Main.java"> | ||
</wo> | ||
</wodefinitions> |
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 @@ | ||
<webobject name = "PageWrapper"> | ||
<h1>Full Text Search Demo</h1> | ||
<ul id="Choices"> | ||
<li><webobject name = "SimpleSearchLink">Simple Search</webobject></li> | ||
<li><webobject name = "SpellCheckLink">Spell Check</webobject></li> | ||
<li><webobject name = "DidYouMeanLink">Did You Mean...</webobject></li> | ||
<li><webobject name = "AutoSuggestLink">Auto Suggest</webobject></li> | ||
</ul> | ||
</webobject> |
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,23 @@ | ||
PageWrapper : PageWrapper { | ||
pageTitle = "WOWODC : WOOT!"; | ||
} | ||
|
||
SimpleSearchLink : WOHyperlink { | ||
directActionName = "page"; | ||
?p = "SimpleSearch"; | ||
} | ||
|
||
DidYouMeanLink : WOHyperlink { | ||
directActionName = "page"; | ||
?p = "DidYouMean"; | ||
} | ||
|
||
SpellCheckLink : WOHyperlink { | ||
directActionName = "page"; | ||
?p = "SpellCheck"; | ||
} | ||
|
||
AutoSuggestLink : WOHyperlink { | ||
directActionName = "page"; | ||
?p = "AutoSuggest"; | ||
} |
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,4 @@ | ||
{ | ||
"WebObjects Release" = "WebObjects 5.0"; | ||
encoding = "UTF-8"; | ||
} |
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<wodefinitions> | ||
<wo wocomponentcontent="false" class="MovieDetails.java"> | ||
|
||
</wo> | ||
</wodefinitions> |
10 changes: 10 additions & 0 deletions
10
Examples/Misc/TextSearchDemo/Components/MovieDetails.wo/MovieDetails.html
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,10 @@ | ||
<webobject name = "PageWrapper"> | ||
<h1>Simple Search</h1> | ||
<table id="MovieDetails"> | ||
<tr><th>Title</th><td><wo:str value="$movie.title"/></td></tr> | ||
<tr><th>Revenue</th><td><wo:str value="$movie.revenue"/></td></tr> | ||
<tr><th>Release Date</th><td><wo:str value="$movie.dateReleased"/></td></tr> | ||
<tr><th>Starring</th><td><wo:str value="$movieTalent"/></td></tr> | ||
<tr><th>Director</th><td><wo:str value="$movieDirectors"/></td></tr> | ||
</table> | ||
</webobject> |
4 changes: 4 additions & 0 deletions
4
Examples/Misc/TextSearchDemo/Components/MovieDetails.wo/MovieDetails.wod
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,4 @@ | ||
PageWrapper : PageWrapper { | ||
title = movie; | ||
backPage = backPage; | ||
} |
4 changes: 4 additions & 0 deletions
4
Examples/Misc/TextSearchDemo/Components/MovieDetails.wo/MovieDetails.woo
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,4 @@ | ||
{ | ||
"WebObjects Release" = "WebObjects 5.0"; | ||
encoding = "UTF-8"; | ||
} |
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" standalone="no"?> | ||
<wodefinitions> | ||
<wo class="PageWrapper.java" wocomponentcontent="true"> | ||
|
||
<binding name="pageTitle"/> | ||
|
||
<binding name="backPage"/> | ||
</wo> | ||
</wodefinitions> |
19 changes: 19 additions & 0 deletions
19
Examples/Misc/TextSearchDemo/Components/PageWrapper.wo/PageWrapper.html
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,19 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
|
||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | ||
<title><webobject name = "PageTitle"/></title> | ||
<webobject name = "PageCSS"/> | ||
<webobject name = "AutoCompleteCSS"/> | ||
</head> | ||
<body> | ||
<div id="Content"> | ||
<webobject name = "Content"/> | ||
</div> | ||
<webobject name = "ShowBackButton"> | ||
<webobject name = "BackButton">« Back</webobject> | ||
</webobject> | ||
</body> | ||
</html> |
27 changes: 27 additions & 0 deletions
27
Examples/Misc/TextSearchDemo/Components/PageWrapper.wo/PageWrapper.wod
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,27 @@ | ||
Content : WOComponentContent { | ||
|
||
} | ||
|
||
PageTitle : WOString { | ||
value = ^pageTitle; | ||
valueWhenEmpty = "Untitled"; | ||
} | ||
|
||
PageCSS : ERXStyleSheet { | ||
filename = "default.css"; | ||
framework = "app"; | ||
} | ||
|
||
AutoCompleteCSS : ERXStyleSheet { | ||
filename = "autocomplete.css"; | ||
framework = "app"; | ||
} | ||
|
||
BackButton : WOHyperlink { | ||
action = returnAction; | ||
class = "Button" | ||
} | ||
|
||
ShowBackButton : WOConditional { | ||
condition = showBackButton; | ||
} |
4 changes: 4 additions & 0 deletions
4
Examples/Misc/TextSearchDemo/Components/PageWrapper.wo/PageWrapper.woo
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,4 @@ | ||
{ | ||
"WebObjects Release" = "WebObjects 5.0"; | ||
encoding = "UTF-8"; | ||
} |
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<wodefinitions> | ||
<wo wocomponentcontent="false" class="SearchResults.java"> | ||
|
||
</wo> | ||
</wodefinitions> |
Empty file.
Empty file.
4 changes: 4 additions & 0 deletions
4
Examples/Misc/TextSearchDemo/Components/SearchResults.wo/SearchResults.woo
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,4 @@ | ||
{ | ||
"WebObjects Release" = "WebObjects 5.0"; | ||
encoding = "UTF-8"; | ||
} |
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<wodefinitions> | ||
<wo wocomponentcontent="false" class="SimpleSearch.java"> | ||
|
||
</wo> | ||
</wodefinitions> |
21 changes: 21 additions & 0 deletions
21
Examples/Misc/TextSearchDemo/Components/SimpleSearch.wo/SimpleSearch.html
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,21 @@ | ||
<webobject name = "PageWrapper"> | ||
<h1>Simple Search</h1> | ||
<webobject name = "PrimeIndexLink">Prime Index</webobject> | ||
<div id="SearchWrapper"> | ||
<wo:form> | ||
<h4>Search</h4> | ||
<wo:textfield class="textfield" value="$searchString"/> <wo:submit value="Search" action="$searchAction"></wo:submit> | ||
</wo:form> | ||
<table> | ||
<tr><th>Index</th><th>Title</th><th>Rank</th></tr> | ||
<wo:if condition = "$foundScoreDocsCount"> | ||
<wo:loop count = "$foundScoreDocsCount" index = "$foundSetIndex"> | ||
<tr><td><wo:str value="$foundSetIndex" /></td><td><wo:link action="$showDetailsAction"><wo:str value="$currentDocument.title//VALID" /></wo:link></td><td><wo:str value="$currentDocument.score" /></td></tr> | ||
</wo:loop> | ||
</wo:if> | ||
<wo:if condition = "$foundScoreDocsCount" negate="$true"> | ||
<tr><td>-</td><td><em>No Results Found</em></td><td>-</td></tr> | ||
</wo:if> | ||
</table> | ||
</div> | ||
</webobject> |
9 changes: 9 additions & 0 deletions
9
Examples/Misc/TextSearchDemo/Components/SimpleSearch.wo/SimpleSearch.wod
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 @@ | ||
PageWrapper : PageWrapper { | ||
pageTitle = "Simple Search"; | ||
backPage = backPage; | ||
} | ||
|
||
PrimeIndexLink : WOHyperlink { | ||
action = indexMoviesAction; | ||
class = "Button PrimeIndexButton"; | ||
} |
4 changes: 4 additions & 0 deletions
4
Examples/Misc/TextSearchDemo/Components/SimpleSearch.wo/SimpleSearch.woo
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,4 @@ | ||
{ | ||
"WebObjects Release" = "WebObjects 5.0"; | ||
encoding = "UTF-8"; | ||
} |
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<wodefinitions> | ||
<wo wocomponentcontent="false" class="SpellCheck.java"> | ||
|
||
</wo> | ||
</wodefinitions> |
Oops, something went wrong.