问题标签 [symphony-cms]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
112 浏览

xslt - 交响乐 xsl 包括

在我的 index.xsl 我有这个:

但我希望它仅在我第一次访问 index.xsl 时出现,而不是在浏览网站并返回主页后出现。

我试过了include_onceimport但都返回错误并打破页面。有任何想法吗?

谢谢!

0 投票
1 回答
434 浏览

xml - 如何计算 XSLT 中的条目?

我对 XSLT 很陌生,我想为events. 这是我的 XML:

我需要的是这样的:

这可以用 XSLT 以任何方式完成吗?

谢谢你的帮助!

0 投票
1 回答
165 浏览

frameworks - 新的 Symphony 安装卡在循环中

我似乎无法在我的服务器上安装 symphony,我只是将最新版本作为 .tar 文件获取,然后上传并解压缩。

我将它安装在子域中进行测试:

所以上传后,我转到 url,我得到一个无限重定向浏览器问题,现在 url 是:

如果我去,同样的事情会发生

0 投票
1 回答
81 浏览

symphony-cms - 删除特定部分的所有数据

我需要删除特定部分中的所有数据。因为我有几百个,我无法手动删除它们。

此外,我无法删除该部分并重新构建,因为该部分与第三方同步工具相关联。

0 投票
1 回答
183 浏览

.htaccess - 美化 Symphony CMS 中的网址?

我需要美化 Symphony CMS 中的网址。我有一个大约 10 个搜索的列表,静态 URL,如下所示: http ://www.domain.com/#!district=1®ion%5Bcity%5D=®ion%5Bregion%5D=&type=Butik&size%5Bmin%5D =0&size%5Bmax%5D=2500&string=&sort=1&page=sv%2Flediga-lokaler

目标是让它们看起来像这样: http: //www.domain.com/stockholm/butiker

实现这一目标的最快方法是什么?使用 .htaccess?这样的重写规则会是什么样子?

0 投票
1 回答
822 浏览

xml - 将 HTML 节点包含在

我想在元素的属性中包含 HTML(对于此处使用的数据清除属性:http: //foundation.zurb.com/docs/components/clearing.html)。我的<caption>数据有两种方式可用:

这是我的模板:

将节点中的标记与此模板mode=html匹配:<a><caption>

如果我使用“未格式化”的标题,它会保留<a>标签(期望的行为)。但是,当我使用该标题时,我无法使用“标记外部链接”模板来修复<a>标签。使用“格式化”标题,我可以<a>像我想要的那样处理标签,但是当我xsl:copy-of<img> <xsl:attribute>. 它将在属性之外正常显示,如下所示:

有没有办法让我的最终结果看起来像:

谢谢阅读。

0 投票
1 回答
1298 浏览

xml - 如何在 XSL 选择语句中使用变量?

我对 XSL 很陌生,我想$language在我的 XSL 中使用我的变量:

如何才能做到这一点?

这是我的 XML:

谢谢你的帮助!

0 投票
2 回答
121 浏览

xml - Group flattened RSS feed by year with XSLT

I realize many similar questions have been asked, but I have read about a dozen great examples and still been unable to combine them all into a working solution.

I have an RSS feed with the following structure:

It is flattened out because the feed has some very large nodes that slow the page down enormously, if it loads at all. Therefore, when I pull it in, I limit the data chosen to just the title and pubDate fields, which removes the hierarchy. (Other suggestions here maybe?)

I want to display the data grouped by year:

I can parse out the year with substring-before(substring-after(substring-after(substring-after(pubDate, ' '), ' '), ' '), ' '), and I have attempted to create a key with:

Which I then used:

But my output is:

I seem to be able to solve individual parts of this problem but I have not been able to get them all working together. There are many examples of grouping RSS by year and month, but that is just different enough from my problem (especially considering my flattened RSS) that I cannot emulate those examples.

If it helps to know, I am using XSLT / XPath 1.0 because I am using Symphony CMS, which relies on PHP's libxslt.

Any help is very welcome, thanks for reading.

0 投票
2 回答
125 浏览

xslt - XSL:有没有简单的方法来防止寡妇?

我希望打电话..

然后它会space在文本中查找最后一个并在完成时将其替换为#160;


应该可以支持

请使用不同的字符,例如#回答/证明,所以我测试时的结果是

0 投票
3 回答
591 浏览

php - 最大长度 XSLT,但在输出中保留完整段落

我已经使用 symphony 工作了几个星期,并且掌握了它的窍门,真的很喜欢所有的基本功能。

我有一个问题,因为我不太确定如何解决这个问题:我有一个我正在从事的项目的新闻/博客页面。有时文章很短有时很长。我想做的是显示一定数量的段落,但在找到 x 数量的字符时停止。我找到了计算字符串长度的方法,但我希望它像这样工作。

等等

现在我想配置最多 200 个字符。第二段会超过数量,但我希望内容同时显示第一段和第二段。所以它实际上是 320 个字符(不包括 html 和空格)。

我希望我不会含糊其辞,有人知道我应该去哪里。最好的选择是编辑我猜的数据源,但对我来说这似乎不是一个干净的方法,尽管它应该会稍微减少负载。

有人愿意指出我正确的方向吗?