Portal_skins 文件夹中的嵌套覆盖
如何覆盖嵌套的 Portal_skins 文件夹中的文件?
默认行为似乎是,如果您想覆盖单个文件,则需要复制整个文件夹结构。这是维护的噩梦。
例如,如何覆盖 file:
Producs.TinyMCE/skins/tinymce/plugins/table/js/table.js
... 而无需为整个 Products.TinyMCE 皮肤代码库创建副本?
How one could override files in nested portal_skins folder?
The default behavior seems to be that you need to copy whole folder structures if you want to override a single file. This is a maintenance nightmare.
E.g. how to override file:
Producs.TinyMCE/skins/tinymce/plugins/table/js/table.js
... without needing to create a duplicate for the whole Products.TinyMCE skins codebase?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 z3c.jbot,并将一个名为 Products.TinyMCE 的文件放入 jbot 模板目录中。皮肤.tinymce.plugins.table.js.table.js
Use z3c.jbot, and put a file in your jbot template directory called Products.TinyMCE.skins.tinymce.plugins.table.js.table.js
您无法覆盖嵌套皮肤文件夹结构的部分内容。如果您想自定义一些东西,最好创建一个新的tinymce插件(如mytables)并仅复制该插件的文件。
You cannot override parts of a nested skins folder structure. If you want to customize things, best to create a new tinymce plugin (like mytables) and copy only the files for that plugin.