在 Semantic MediaWiki 中计算日期范围
该查询
{{#ask: [[Category:Event]]
| ?name | ?datefrom | ?dateto
}}
返回一个表,其中两个日期位于不同的列中,例如 2011 年 5 月 21 日 和 2011 年 5 月 28 日。
有没有办法在一列中获取类似 2011 年 5 月 21-28 日 的内容?
The query
{{#ask: [[Category:Event]]
| ?name | ?datefrom | ?dateto
}}
returns a table with two dates in separate columns, for instance 21 May 2011 and 28 May 2011.
Is there a way to get something like 21-28 May 2011 in one column?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的,但您必须预处理每个事件页面内的间隔。
如果您使用模板,您可以做的最简单的事情就是创建一个语义标记,如下所示
[[dateinterval::{{{datefrom}}} - {{{dateto}}}]]
如果您想要更详细的信息,例如您提出的
2011 年 5 月 21-28 日
,那将会更加困难,而且我找不到任何扩展来计算日期间隔。也许您必须自己编写。
Yes, it's possible, but you'd have to pre-process the interval within each event page.
If you're using templates, the easiest thing that you can do is to create a semantic tag like this
[[dateinterval::{{{datefrom}}} - {{{dateto}}}]]
If you want anything more elaborate like the
21-28 May 2011
you proposed, that will be more difficult and I can't find any extension to calculate date intervals.Perhaps you'll have to write your own.