7+ results for 'play.api.templates.TxtFormat' (0 ms)

Not the results you expected?

package.html (https://github.com/opensas/playdoces.git) HTML · 191 lines

144 </h4>

145 <p class="comment cmt">Helper for utilities Txt methods.</p>

146 </li><li visbl="pub" name="play.api.templates.TxtFormat" data-isabs="false">

147 <a id="TxtFormat:TxtFormat"></a>

148 <h4 class="signature">

SBTSettings.md (https://github.com/opensas/playdoces.git) Markdown · 111 lines

105 templatesTypes := {

106 case "html" => ("play.api.templates.Html", "play.api.templates.HtmlFormat")

107 case "txt" => ("play.api.templates.Txt", "play.api.templates.TxtFormat")

108 case "xml" => ("play.api.templates.Xml", "play.api.templates.XmlFormat")

109 }

Play22TemplateCompiler.java (https://github.com/play2-maven-plugin/play2-maven-plugin.git) Java · 168 lines

41 private static final String[] formatterTypes = {

42 "play.api.templates.HtmlFormat",

43 "play.api.templates.TxtFormat",

44 "play.api.templates.XmlFormat",

45 "play.api.templates.JavaScriptFormat" };

Play21TemplateCompiler.java (https://github.com/play2-maven-plugin/play2-maven-plugin.git) Java · 172 lines

45 private static final String[] formatterTypes = {

46 "play.api.templates.HtmlFormat",

47 "play.api.templates.TxtFormat",

48 "play.api.templates.XmlFormat" };

49

JsBuilder.scala (https://github.com/corespring/corespring-container.git) Scala · 57 lines

4 import org.corespring.container.client.views.txt.js.ServerLibraryWrapper

5 import play.api.libs.json.{ JsObject, Json }

6 import play.api.templates.TxtFormat

7

8 private[corespring] class JsBuilder(val resourcePath : ResourcePath) extends JsResource {

PlaySettings.scala (https://github.com/dctyler/Play20.git) Scala · 147 lines

141 templatesTypes := {

142 case "html" => ("play.api.templates.Html", "play.api.templates.HtmlFormat")

143 case "txt" => ("play.api.templates.Txt", "play.api.templates.TxtFormat")

144 case "xml" => ("play.api.templates.Xml", "play.api.templates.XmlFormat")

145 })

TwirlCompilerAdapterV22X.java (https://github.com/hansd/gradle.git) Java · 119 lines

112 return Arrays.<TwirlTemplateFormat>asList(

113 new DefaultTwirlTemplateFormat("html", "play.api.templates.HtmlFormat", Collections.singleton("views.html._")),

114 new DefaultTwirlTemplateFormat("txt", "play.api.templates.TxtFormat", Collections.singleton("views.txt._")),

115 new DefaultTwirlTemplateFormat("xml", "play.api.templates.XmlFormat", Collections.singleton("views.xml._")),

116 new DefaultTwirlTemplateFormat("js", "play.api.templates.JavaScriptFormat", Collections.singleton("views.js._"))