HTMLリソース - Cloud - 7.3

Talend Studioユーザーガイド

Version
Cloud
7.3
Language
日本語
Product
Talend Big Data
Talend Big Data Platform
Talend Cloud
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
ジョブデザインと開発
Last publication date
2024-02-13
対象製品...

Data Fabric

MDM Platform

このタスクについて

CSS (Cascading Style Sheets)とJavaScriptのリソースがある場合は、URLアドレス指定可能である必要があります。

手順

  1. <TomcatPath>/webapps/内にディレクトリーを作成します。それに、たとえばproductという名前を付けます。
  2. そのディレクトリーにCSSファイルとJSファイルをドロップします。
  3. これで、プロセスエディターでXSLTパラメーターの<head>セクション内のリソースを次のように定義できます。
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">  
        <xsl:output method="html" indent="yes"/>  
        <xsl:template match="/" priority="1"> 
            <html> 
    <head>
    <title>Product</title>
    <link rel="stylesheet" type="text/css" href="/product/greatlookandfeel.css" media="all">
    <script type="text/javascript" src="/product/javascriptsuff.js"></script>
    </head>
    <!-- rest omitted -->