forked from sakaiproject/sakai
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
094a875
commit dcd2e11
Showing
12 changed files
with
147 additions
and
95 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
13 changes: 11 additions & 2 deletions
13
tool/src/java/org/sakaiproject/gradebookng/GradebookNgApplication.properties
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 |
---|---|---|
@@ -1,4 +1,13 @@ | ||
app.title = GradebookNG | ||
|
||
link.gradebook = Gradebook | ||
link.gradebook.tooltip = Go to the gradebook | ||
link.gradebook = Grades | ||
link.gradebook.tooltip = Grades | ||
|
||
link.settings = Settings | ||
link.settings.tooltip = Settings | ||
|
||
link.importexport = Import / Export | ||
link.importexport.tooltip = Import / Export | ||
|
||
link.permissions = Permissions | ||
link.permissions.tooltip = Permissions |
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
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
18 changes: 18 additions & 0 deletions
18
tool/src/java/org/sakaiproject/gradebookng/tool/pages/ImportExportPage.java
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 @@ | ||
package org.sakaiproject.gradebookng.tool.pages; | ||
|
||
|
||
/** | ||
* Settings page | ||
* | ||
* @author Steve Swinsburg ([email protected]) | ||
* | ||
*/ | ||
public class ImportExportPage extends BasePage { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public ImportExportPage() { | ||
|
||
|
||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
tool/src/java/org/sakaiproject/gradebookng/tool/pages/PermissionsPage.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 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
<html xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd" > | ||
|
||
<body> | ||
<wicket:extend> | ||
|
||
|
||
</wicket:extend> | ||
</body> | ||
</html> |
18 changes: 18 additions & 0 deletions
18
tool/src/java/org/sakaiproject/gradebookng/tool/pages/PermissionsPage.java
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 @@ | ||
package org.sakaiproject.gradebookng.tool.pages; | ||
|
||
|
||
/** | ||
* Permissions page | ||
* | ||
* @author Steve Swinsburg ([email protected]) | ||
* | ||
*/ | ||
public class PermissionsPage extends BasePage { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public PermissionsPage() { | ||
|
||
|
||
} | ||
} |
19 changes: 0 additions & 19 deletions
19
tool/src/java/org/sakaiproject/gradebookng/tool/pages/SecondPage.java
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
tool/src/java/org/sakaiproject/gradebookng/tool/pages/SettingsPage.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 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
<html xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd" > | ||
|
||
<body> | ||
<wicket:extend> | ||
|
||
|
||
</wicket:extend> | ||
</body> | ||
</html> |
18 changes: 18 additions & 0 deletions
18
tool/src/java/org/sakaiproject/gradebookng/tool/pages/SettingsPage.java
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 @@ | ||
package org.sakaiproject.gradebookng.tool.pages; | ||
|
||
|
||
/** | ||
* Settings page | ||
* | ||
* @author Steve Swinsburg ([email protected]) | ||
* | ||
*/ | ||
public class SettingsPage extends BasePage { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public SettingsPage() { | ||
|
||
|
||
} | ||
} |