-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added NGWelcomePage (a nicer initial response for a new application)
- Loading branch information
1 parent
fea64a6
commit fcd43f1
Showing
5 changed files
with
39 additions
and
3 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
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,11 @@ | ||
package x.junk; | ||
|
||
import ng.appserver.NGComponent; | ||
import ng.appserver.NGContext; | ||
|
||
public class NGWelcomePage extends NGComponent { | ||
|
||
public NGWelcomePage( NGContext context ) { | ||
super( context ); | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
ng-appserver/src/main/resources/components/NGWelcomePage.wo/NGWelcomePage.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,18 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Welcome!</title> | ||
<style> | ||
body { | ||
font-family: sans-serif; | ||
padding: 40px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h2>Welcome to ng-objects!</h2> | ||
<p>This is the start page for a new ng-objects application.<p> | ||
<p>Eventually it will contain something really cool and useful!</p> | ||
</body> | ||
</html> |
Empty file.
4 changes: 4 additions & 0 deletions
4
ng-appserver/src/main/resources/components/NGWelcomePage.wo/NGWelcomePage.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"; | ||
} |