PageRenderTime 71ms CodeModel.GetById 31ms RepoModel.GetById 1ms app.codeStats 0ms

/scalate-core/src/main/resources/WEB-INF/scalate/archetypes/resources/ResourceParams.index.scaml

http://github.com/scalate/scalate
Unknown | 48 lines | 42 code | 6 blank | 0 comment | 0 complexity | e14cc8e461f3d1ea854ba450422fea32 MD5 | raw file
  1. -#
  2. -# Copyright (C) 2009-2011 the original author or authors.
  3. -# See the notice.md file distributed with this work for additional
  4. -# information regarding copyright ownership.
  5. -#
  6. -# Licensed under the Apache License, Version 2.0 (the "License");
  7. -# you may not use this file except in compliance with the License.
  8. -# You may obtain a copy of the License at
  9. -#
  10. -# http://www.apache.org/licenses/LICENSE-2.0
  11. -#
  12. -# Unless required by applicable law or agreed to in writing, software
  13. -# distributed under the License is distributed on an "AS IS" BASIS,
  14. -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. -# See the License for the specific language governing permissions and
  16. -# limitations under the License.
  17. -#
  18. -# A form to capture the ResourceParams
  19. -@ val title: String = "Create Resource"
  20. -@ val body: String = ""
  21. %h2= title
  22. %p= body
  23. %form(action={requestUri} method="post" class="createArchetype")
  24. %table.form
  25. %tr
  26. %td
  27. %label(for="resourceUri") Resource URI
  28. %td
  29. %input(type="text" name="resourceUri" size="40" value="/sample")
  30. %tr
  31. %td
  32. %label(for="className") Resource Class Name
  33. %td
  34. %input(type="text" name="className" size="40" value="SampleResource")
  35. %tr
  36. %td
  37. %label(for="packageName") Package Name
  38. %td
  39. %input(type="text" name="packageName" size="40" value={System.getProperty("scalate.package.resources", "com.acme.demo.resources")})
  40. %tr
  41. %td(colspan="2" align="center")
  42. %input(type="submit" value="Create")