Browse Source
Upgrade Play from 2.2.6 to 2.3.6
Upgrade Play from 2.2.6 to 2.3.6
* Upgrade sbt from 0.13.0 to 0.13.5. * Upgrade jsmessages from 1.6.1 to 1.6.2. * Downgrade play-2-mail from 1.0.0 to 0.9.1. * Split project/Build.scala into build.sbt and project/BuildConfig.scala. * Introduce sbt-less. * Introduce sbt-twirl, the new template engine for PlayFramework, and fix compile errors caused by it. * Import scala.collection.JavaConversions._ for conversion between Java and Scala collections. * Import java.lang_ and java.util._ to use java types. * Use implicitJavaLang imported from play.core.j.PlayMagicForJava._ instead of lang. * Use requestHeader imported from play.core.j.PlayMagicForJava._ instead of request. * Specify play.data.Form in full qualified name to avoid conflict with play.api.data.Form. * Fix the other template errors. * Etc * Use Result instead of deprecated SimpleResult. * Use java.nio.file.NotDirectoryException instead of scalax.file.NotDirectoryException. * Update README to say use "acvitator" command instead of "play". * Add methods to PlayServlet to support Servlet 3.1 IMPORTANT NOTE: You should modify the version of h2database on which Play depends from 1.3.175 to 1.3.176 in ~/.ivy2/cache/com.typesafe.play/play-jdbc_2.10/ivy-2.3.6.xml as follows: <dependency org="com.h2database" name="h2" rev="1.3.176" force="true" conf="compile->compile(*),master(*);runtime->runtime(*)"/> to avoid org.h2.jdbc.JdbcSQLException because of the bug that h2database 1.3.175 cannot create or alter sequence.pull/5/head
96 changed files with 494 additions and 421 deletions
Split View
Diff Options
-
49README.md
-
30app/Global.java
-
14app/actions/AbstractProjectCheckAction.java
-
6app/actions/AnonymousCheckAction.java
-
4app/actions/DefaultProjectCheckAction.java
-
8app/actions/IsAllowedAction.java
-
6app/actions/IsCreatableAction.java
-
6app/actions/IsOnlyGitAvailableAction.java
-
10app/actions/NullProjectCheckAction.java
-
2app/controllers/IssueApp.java
-
2app/controllers/PullRequestApp.java
-
2app/models/Attachment.java
-
10app/utils/AccessLogger.java
-
8app/utils/BasicAuthAction.java
-
2app/utils/ErrorViews.java
-
3app/utils/PlayServletContext.java
-
32app/utils/PlayServletRequest.java
-
16app/utils/PlayServletResponse.java
-
6app/utils/SiteManagerAuthAction.java
-
12app/utils/TemplateHelper.scala
-
10app/views/board/create.scala.html
-
4app/views/board/edit.scala.html
-
4app/views/board/view.scala.html
-
2app/views/code/branches.scala.html
-
4app/views/code/diff.scala.html
-
4app/views/code/history.scala.html
-
6app/views/code/nohead.scala.html
-
2app/views/common/commentForm.scala.html
-
2app/views/common/debug.scala.html
-
26app/views/common/scripts.scala.html
-
2app/views/common/select2.scala.html
-
187app/views/common/usermenu.scala.html
-
2app/views/error/forbidden.scala.html
-
2app/views/git/create.scala.html
-
2app/views/git/edit.scala.html
-
2app/views/git/fork.scala.html
-
4app/views/git/partial_list.scala.html
-
4app/views/git/partial_pull_request_event.scala.html
-
2app/views/git/partial_reviewlist.scala.html
-
2app/views/git/partial_state.scala.html
-
6app/views/git/viewChanges.scala.html
-
2app/views/help/keymap.scala.html
-
2app/views/index/partial_notifications.scala.html
-
2app/views/issue/create.scala.html
-
2app/views/issue/edit.scala.html
-
10app/views/issue/my_partial_list.scala.html
-
6app/views/issue/my_partial_list_quicksearch.scala.html
-
2app/views/issue/my_partial_search.scala.html
-
10app/views/issue/partial_list.scala.html
-
4app/views/issue/partial_list_quicksearch.scala.html
-
4app/views/issue/partial_list_wrap.scala.html
-
11app/views/issue/view.scala.html
-
2app/views/milestone/create.scala.html
-
2app/views/milestone/edit.scala.html
-
7app/views/organization/create.scala.html
-
2app/views/organization/partial_settingmenu.scala.html
-
2app/views/organization/setting.scala.html
-
2app/views/organization/view.scala.html
-
2app/views/project/change_vcs.scala.html
-
2app/views/project/create.scala.html
-
2app/views/project/delete.scala.html
-
2app/views/project/importing.scala.html
-
2app/views/project/list.scala.html
-
2app/views/project/partial_history.scala.html
-
2app/views/project/partial_settingmenu.scala.html
-
2app/views/project/setting.scala.html
-
2app/views/project/transfer.scala.html
-
5app/views/projectMenu.scala.html
-
4app/views/reviewthread/partial_list.scala.html
-
2app/views/search/partial_issue_comments.scala.html
-
2app/views/search/partial_issues.scala.html
-
2app/views/search/partial_milestones.scala.html
-
2app/views/search/partial_post_comments.scala.html
-
2app/views/search/partial_posts.scala.html
-
2app/views/search/partial_projects.scala.html
-
2app/views/search/partial_reviews.scala.html
-
2app/views/search/partial_users.scala.html
-
4app/views/site/mail.scala.html
-
2app/views/site/siteMngLayout.scala.html
-
2app/views/site/userList.scala.html
-
2app/views/user/edit.scala.html
-
2app/views/user/edit_emails.scala.html
-
2app/views/user/edit_notifications.scala.html
-
2app/views/user/edit_password.scala.html
-
2app/views/user/login.scala.html
-
10app/views/user/partial_issues.scala.html
-
8app/views/user/partial_projectlist.scala.html
-
2app/views/user/resetPassword.scala.html
-
2app/views/user/signup.scala.html
-
8app/views/user/view.scala.html
-
2app/views/welcome/secret.scala.html
-
75build.sbt
-
115project/Build.scala
-
45project/BuildConfig.scala
-
2project/build.properties
-
6project/plugins.sbt