检索/迭代Redmine wiki内容并返回它?

发布于 2024-10-16 20:34:05 字数 135 浏览 4 评论 0原文

我正在尝试实现一个简单的插件,它获取当前的 wiki 页面内容,并在每次通过正则表达式出现单词时进行匹配/替换/正则表达式部分本身很简单,我更感兴趣的是如何检索/迭代 wiki 内容并更换后退回。我该怎么做?

谢谢!

丹尼斯

I'm trying to achieve a simple plugin that takes the current wiki page content and matches/replaces everytime a word occurs via regular expression/ The regular expression part itself is easy, I'm more interested in how to retrieve/iterate the wiki content and return it after replacing. How can I do this?

Thanks!

Dennis

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高跟鞋的旋律 2024-10-23 20:34:05

如果您正在编写插件,我确信您知道其源代码可以在 github 上找到,
如果你检查一下,你可以使用他们已经提供的模型。我还没有测试过,但看起来如果你:

require "#{path_to_redmine_source}/app/models/wiki_content"
WikiContent.all.each do |post|
  post.text.gsub!(/important_data/, "nonsense")
  post.save!
end

那应该可以工作,并且它将使用任何适配器的 redmine 已经配置的。然而,它需要加载 redmine 使用的所有插件,这可能很糟糕。

If you're writing a plugin, I'm sure you know their source is available on github,
and if you check that out you can use the models they already provide. I haven't tested, but it looks like if you:

require "#{path_to_redmine_source}/app/models/wiki_content"
WikiContent.all.each do |post|
  post.text.gsub!(/important_data/, "nonsense")
  post.save!
end

that should work, and it will use whatever adapter's redmine already has configured. It will, however, require loading all the plugins that redmine uses, which could suck.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文