0

CME で利用可能な動的コンポーネントを CME と同じフォルダー パスに公開するシナリオがあります。これらの動的コンポーネントが公開されるパスを制御できますか?

例) CME パス- C020 Global Content US English/Building Blocks/Dynamic Content/Article/Component1.xml Deployer ファイル システム パス- D:\C020 Global Content US English/Building Blocks/Dynamic Content/Article/Component1.xml

CME パス- C050 Local Content Spanish/Building Blocks/Dynamic Content/Communication/Component2.xml Deployer ファイル システム パス- D:\C050 Local Content Spanish\Building Blocks\Dynamic Content\Communication\Component2.xml

4

1 に答える 1

0

以下のタグで、CDA サーバーのストレージ構成ファイルにパスを定義できます。

 <ItemTypes defaultStorageId="defaultdb" cached="false">

    <Item typeMapping="Page" cached="false" storageId="defaultFile"/>
    <Item typeMapping="ComponentPresentation" itemExtension=".Xml" cached="true" storageId="defaultDataFile" />
    <Item typeMapping="ComponentPresentation" itemExtension=".rel" cached="true" storageId="defaultDataFile" />
    <Item typeMapping="ComponentPresentation" itemExtension=".ascx" cached="true" storageId="defaultDataFile" />
    <Item typeMapping="ComponentPresentation" itemExtension=".html" cached="true" storageId="defaultDataFile" />
    <Item typeMapping="Binary" itemExtension=".jpg" storageId="defaultFile" cached="true"/>
    <Item typeMapping="Binary" itemExtension=".gif" storageId="defaultFile" cached="true"/>
    <Item typeMapping="Binary" itemExtension=".pdf" storageId="defaultFile" cached="true"/>
    <Item typeMapping="Binary" itemExtension=".jpeg" storageId="defaultFile" cached="true"/>
    <Item typeMapping="Binary" itemExtension=".png" storageId="defaultFile" cached="true"/>
    <Item typeMapping="Binary" itemExtension=".ico" storageId="defaultFile" cached="true"/>
    <Item typeMapping="Comment" cached="false" storageId="Ugcdb" />
  <Item typeMapping="Rating" cached="false" storageId="Ugcdb" />
  <Item typeMapping="UGCUser" cached="false" storageId="Ugcdb" />
 <Item typeMapping="UGCItemStats" cached="false" storageId="Ugcdb" />

物理パスに保存する場合は、以下のタグ値も定義します

<Storage Type="filesystem" Class="com.tridion.storage.filesystem.FSDAOFactory" Id="defaultDataFile" defaultFilesystem="true" defaultStorage="true">
            <Root Path="c:\websites\Staging\data" />
        </Storage>

不明な場合はお知らせください

于 2013-09-03T07:58:24.043 に答える