/scalate-website/ext/Website.scala

http://github.com/scalate/scalate · Scala · 73 lines · 42 code · 7 blank · 24 comment · 0 complexity · 67c83feb9194029414e8cc616de967e6 MD5 · raw file

  1. import org.fusesource.scalate.RenderContext
  2. /**
  3. * Copyright (C) 2009-2010 the original author or authors.
  4. * See the notice.md file distributed with this work for additional
  5. * information regarding copyright ownership.
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. */
  19. package
  20. /**
  21. * <p>
  22. * </p>
  23. *
  24. * @author <a href="http://hiramchirino.com">Hiram Chirino</a>
  25. */
  26. object Website {
  27. val project_name= "Scalate"
  28. val project_slogan= "Scala Template Engine: like JSP without the crap but with added Scala coolness"
  29. val project_id= "scalate"
  30. val project_jira_key= "SCALATE"
  31. val project_issue_url= "http://scalate.assembla.com/spaces/scalate/support/tickets"
  32. val project_forums_url= "http://scalate.fusesource.org/community.html"
  33. val project_wiki_url= "http://wiki.github.com/scalate/scalate/"
  34. val project_logo= "/images/project-logo.png"
  35. val project_version= "1.6.1"
  36. val project_snapshot_version= "1.7.0-SNAPSHOT"
  37. val project_versions = List(
  38. project_version,
  39. "1.5.3",
  40. "1.5.2",
  41. "1.5.1",
  42. "1.5.0",
  43. "1.4.1",
  44. "1.4.0",
  45. "1.3.2",
  46. "1.3.1",
  47. "1.3",
  48. "1.2",
  49. "1.1",
  50. "1.0")
  51. val non_tagged_versions = Set("1.5.3","1.5.2","1.5.1","1.5.0","1.4.1",
  52. "1.4.0","1.3.2","1.3.1","1.3","1.2","1.1","1.0")
  53. val github_page= "https://github.com/scalate/scalate"
  54. val git_user_url= "git://github.com/scalate/scalate.git"
  55. val git_commiter_url= "git@github.com:scalate/scalate.git"
  56. val git_branch= "master"
  57. val git_edit_page_base = github_page+"/edit/"+git_branch+"/scalate-website/src"
  58. val disqus_shortname = project_id
  59. val scala_compat_tag = "2.10"
  60. // -------------------------------------------------------------------
  61. val project_svn_url= "http://fusesource.com/forge/svn/%s/trunk".format(project_id)
  62. val project_svn_branches_url= "http://fusesource.com/forge/svn/%s/branches".format(project_id)
  63. val project_svn_tags_url= "http://fusesource.com/forge/svn/%s/tags".format(project_id)
  64. val project_maven_groupId= "org.fusesource.%s".format(project_id)
  65. val project_maven_artifactId= "scalate-core"
  66. }