本文整理汇总了Java中org.takes.rs.xe.XeStylesheet类的典型用法代码示例。如果您正苦于以下问题:Java XeStylesheet类的具体用法?Java XeStylesheet怎么用?Java XeStylesheet使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
XeStylesheet类属于org.takes.rs.xe包,在下文中一共展示了XeStylesheet类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: make
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
/**
* Make it.
* @param xsl XSL
* @param req Request
* @param src Source
* @return Response
*/
private static Response make(final String xsl, final Request req,
final Scalar<Iterable<XeSource>> src) {
final Response raw = new RsXembly(
new XeStylesheet(xsl),
new XeAppend(
"page",
new XeMillis(false),
new XeChain(src),
new XeMemory(),
new XeLinkHome(req),
new XeLinkSelf(req),
new XeMillis(true),
new XeDate(),
new XeSla(),
new XeLocalhost(),
new XeFlash(req),
new XeAppend(
"version",
new XeAppend("name", Manifests.read("Rehttp-Version")),
new XeAppend("revision", Manifests.read("Rehttp-Revision")),
new XeAppend("date", Manifests.read("Rehttp-Date"))
)
)
);
return new RsFork(
req,
new FkTypes(
"application/xml,text/xml",
new RsPrettyXml(new RsWithType(raw, "text/xml"))
),
new FkTypes(
"*/*",
new RsXslt(new RsWithType(raw, "text/html"))
)
);
}
示例2: make
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
/**
* Make it.
* @param req Request
* @param xsl XSL stylesheet
* @param src Sources
* @return Response
*/
@SuppressWarnings("PMD.AvoidDuplicateLiterals")
private static Response make(final Request req, final String xsl,
final Scalar<Iterable<XeSource>> src) {
final Response raw = new RsXembly(
new XeChain(
new XeStylesheet(
String.format("/org/jpeek/web/%s.xsl", xsl)
),
new XeAppend(
"page",
new XeChain(
new XeMillis(),
new XeDirectives(new Header()),
new XeChain(src),
new XeMillis(true)
)
)
)
);
return new RsFork(
req,
new FkTypes(
"text/html",
new RsXslt(new RsWithType(raw, "text/html"))
),
new FkTypes(
"application/vnd.jpeek+xml",
new RsPrettyXml(new RsWithType(raw, "text/xml"))
),
new FkTypes("*/*", raw)
);
}
示例3: act
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
@Override
public Response act(final Request req) throws IOException {
return new RsFork(
req,
new FkTypes(
"text/html",
new RsXSLT(new RsXembly(new XeStylesheet("/xsl/allServices.xsl"), this::servicesXML))
),
new FkTypes("text/xml,application/xml", new RsXembly(this::servicesXML)),
new FkTypes("application/json", new RsJSON(this::servicesJSON))
);
}
示例4: RsPage
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
/**
* Ctor.
* @param xsl XSL stylesheet name
* @param source Xembly source
*/
RsPage(final String xsl, final XeSource source) {
this.origin = new RsXslt(
new RsXembly(
new XeStylesheet(xsl),
new XeAppend(
"page",
new XeMillis(false),
source,
new XeMillis(true)
)
)
);
}
示例5: rendersViaStandardXsltTemplate
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
/**
* XeFlash can accept RsFlash cookie.
* @throws IOException If some problem inside
*/
@Test
public void rendersViaStandardXsltTemplate() throws IOException {
MatcherAssert.assertThat(
IOUtils.toString(
new RsXslt(
new RsXembly(
new XeStylesheet(
"/org/takes/facets/flash/test_flash.xsl"
),
new XeAppend(
"page",
new XeFlash(
new RqWithHeaders(
new RqFake(),
"Cookie: RsFlash=how are you?/INFO"
)
)
)
)
).body(),
StandardCharsets.UTF_8
),
XhtmlMatchers.hasXPaths(
"/xhtml:html/xhtml:p[.='how are you?']",
"/xhtml:html/xhtml:p[@class='flash flash-INFO']"
)
);
}
示例6: make
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
/**
* Make it.
* @param xsl XSL
* @param req Request
* @param base Base
* @param src Source
* @return Response
* @throws IOException If fails
* @checkstyle ParameterNumberCheck (5 lines)
*/
private static Response make(final String xsl, final Request req,
final Base base, final XeSource... src) throws IOException {
final Response raw = new RsXembly(
new XeStylesheet(xsl),
new XeAppend(
"page",
new XeMillis(false),
new XeChain(src),
new XeMillis(true),
new XeDate(),
new XeSLA(),
new XeLocalhost(),
new XeIdentity(req),
new XeAccount(base, req),
new XeFlash(req),
new XeFacebookLink(req, Manifests.read("libre-FacebookId")),
new XeLogoutLink(req),
new XeAppend(
"version",
new XeAppend("name", Manifests.read("libre-Version")),
new XeAppend(
"revision", Manifests.read("libre-Revision")
),
new XeAppend("date", Manifests.read("libre-Date"))
)
)
);
return new RsFork(
req,
new FkTypes(
"application/xml,text/xml",
new RsWithType(raw, "text/xml")
),
new FkTypes(
"*/*",
new RsXSLT(new RsWithType(raw, "text/html"))
)
);
}
示例7: make
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
/**
* Make it.
* @param xsl XSL
* @param base Base
* @param req Request
* @param src Source
* @return Response
* @throws IOException If fails
* @checkstyle ParameterNumberCheck (5 lines)
*/
private static Response make(final String xsl, final Base base,
final Request req, final XeSource... src) throws IOException {
final Response xbl = new RsXembly(
new XeStylesheet(xsl),
new XePage(base, req, src)
);
final Response raw = new RsWithType(xbl, "text/xml");
return new RsFork(
req,
new Fork() {
@Override
public Opt<Response> route(final Request rst)
throws IOException {
final RqHeaders hdr = new RqHeaders.Base(rst);
final Iterator<String> agent =
hdr.header("User-Agent").iterator();
final Opt<Response> opt;
if (agent.hasNext() && agent.next().contains("Firefox")) {
opt = new Opt.Single<Response>(
// @checkstyle MultipleStringLiteralsCheck (1 line)
new RsXSLT(new RsWithType(raw, "text/html"))
);
} else {
opt = new Opt.Empty<>();
}
return opt;
}
},
new FkTypes("application/xml,text/xml", new RsPrettyXML(raw)),
new FkTypes(
"*/*",
new RsXSLT(new RsWithType(raw, "text/html"))
)
);
}
示例8: make
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
/**
* Make it.
* @param xsl XSL
* @param req Request
* @param src Source
* @return Response
* @throws IOException If fails
*/
private static Response make(final String xsl, final Request req,
final Scalar<Iterable<XeSource>> src) throws IOException {
final Response raw = new RsXembly(
new XeStylesheet(xsl),
new XeAppend(
"page",
new XeMillis(false),
new XeChain(src),
new XeMemory(),
new XeLinkHome(req),
new XeLinkSelf(req),
new XeMillis(true),
new XeDate(),
new XeAppend(
"epoch",
Long.toString(System.currentTimeMillis())
),
new XeSla(),
new XeLocalhost(),
new XeFlash(req),
new XeWhen(
new RqAuth(req).identity().equals(Identity.ANONYMOUS),
new XeChain(
new XeGithubLink(
req, Manifests.read("ThreeCopies-GithubId")
)
)
),
new XeWhen(
!new RqAuth(req).identity().equals(Identity.ANONYMOUS),
new XeChain(
new XeIdentity(req),
new XeLogoutLink(req)
)
),
new XeAppend(
"version",
new XeAppend("name", Manifests.read("ThreeCopies-Version")),
new XeAppend(
"revision",
Manifests.read("ThreeCopies-Revision")
),
new XeAppend("date", Manifests.read("ThreeCopies-Date"))
)
)
);
return new RsFork(
req,
new FkTypes(
"application/xml,text/xml",
new RsPrettyXml(new RsWithType(raw, "text/xml"))
),
new FkTypes(
"*/*",
new RsXslt(new RsWithType(raw, "text/html"))
)
);
}
示例9: make
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
/**
* Make it.
* @param xsl XSL
* @param req Request
* @param src Source
* @return Response
* @throws IOException If fails
*/
private static Response make(final String xsl, final Request req,
final Iterable<XeSource> src) throws IOException {
final Response raw = new RsXembly(
new XeStylesheet(xsl),
new XeAppend(
"page",
new XeMillis(false),
new XeChain(src),
new XeLinkHome(req),
new XeLinkSelf(req),
new XeMillis(true),
new XeDate(),
new XeSla(),
new XeLocalhost(),
new XeFlash(req),
new XeWhen(
new RqAuth(req).identity().equals(Identity.ANONYMOUS),
new XeChain(
new XeGithubLink(req, Manifests.read("Jare-GithubId"))
)
),
new XeWhen(
!new RqAuth(req).identity().equals(Identity.ANONYMOUS),
new XeChain(
new XeIdentity(req),
new XeLogoutLink(req),
new XeLink("domains", "/domains")
)
),
new XeAppend(
"version",
new XeAppend("name", Manifests.read("Jare-Version")),
new XeAppend("revision", Manifests.read("Jare-Revision")),
new XeAppend("date", Manifests.read("Jare-Date"))
)
)
);
return new RsFork(
req,
new FkTypes(
"application/xml,text/xml",
new RsPrettyXml(new RsWithType(raw, "text/xml"))
),
new FkTypes(
"*/*",
new RsXslt(new RsWithType(raw, "text/html"))
)
);
}
示例10: make
import org.takes.rs.xe.XeStylesheet; //导入依赖的package包/类
/**
* Make it.
* @param xsl XSL
* @param req Request
* @param src Source
* @return Response
* @throws IOException If fails
*/
private static Response make(final String xsl, final Request req,
final Iterable<XeSource> src) throws IOException {
final Response raw = new RsXembly(
new XeStylesheet(xsl),
new XeAppend(
"page",
new XeMillis(false),
new XeChain(src),
new XeLinkHome(req),
new XeLinkSelf(req),
new XeMillis(true),
new XeDate(),
new XeSla(),
new XeMemory(),
new XeLocalhost(),
new XeIdentity(req),
new XeFlash(req),
new XeGithubLink(req, Manifests.read("Wring-GithubId")),
new XeLogoutLink(req),
new XeLink("pipes", "/pipes"),
new XeLink("favicon", "/favicon"),
new XeAppend(
"version",
new XeAppend("name", Manifests.read("Wring-Version")),
new XeAppend("revision", Manifests.read("Wring-Revision")),
new XeAppend("date", Manifests.read("Wring-Date"))
)
)
);
return new RsFork(
req,
new FkTypes(
"application/xml,text/xml",
new RsPrettyXml(new RsWithType(raw, "text/xml"))
),
new FkTypes(
"*/*",
new RsXslt(new RsWithType(raw, "text/html"))
)
);
}