リボン バーに新しい機能を追加する SDL Tridion 用の新しいエディタを作成しました。これは、次のスニペットを editor.config に追加することで有効になります。
<!-- ItemCommenting PowerTool -->
<ext:extension assignid="ItemCommenting" name="Save and<br/>Comment" pageid="HomePage" groupid="ManageGroup" insertbefore="SaveCloseBtn">
<ext:command>PT_ItemCommenting</ext:command>
<ext:title>Save and Comment</ext:title>
<ext:issmallbutton>false</ext:issmallbutton>
<ext:dependencies>
<cfg:dependency>PowerTools.Commands</cfg:dependency>
</ext:dependencies>
<ext:apply>
<ext:view name="*" />
</ext:apply>
</ext:extension>
これは、ノードでワイルドカード値を使用してすべてのビューに適用されます。これにより、メイン ダッシュボードを含むすべてのビューのリボンに新しいボタンが追加されます。ダッシュボード以外のすべてのビューにこれを追加する方法はありますか? それとも、このようなものを作成する必要がありますか?
<ext:apply>
<ext:view name="PageView" />
<ext:view name="ComponentView" />
<ext:view name="SchemaView" />
</ext:apply>
これが必要な結果を得る唯一の方法である場合、すべてのビュー名のリストはどこかにありますか?