如何更改Redmine以支持每个问题中的版本化文件

发布于 2024-08-02 11:16:19 字数 239 浏览 4 评论 0原文

它是 redmine,一个 Ruby on Rails 应用程序。目前,每一期都可以有一个或多个文件。但如果用户决定更新/更改它们,旧文件将被替换。我的任务是开发一些东西来允许每个问题的版本化文件:因此,如果用户更新现有问题的内容,则问题的先前状态将被保留,并且可以以某种形式显示。

我是 RoR 和 Redmine 开发的新手。

Its redmine, a Ruby on Rails application. Currently, every issue can have one or more files. But if a user decide to update/change them, the old files are replaced. My task is to develop something to allow versioned files for every issue: so, if a user update the content of an existing issue, the previous state of the issue is preserved and it can be displayed in some form.

I'm new to RoR and Redmine development.

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

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

发布评论

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

评论(1

谈情不如逗狗 2024-08-09 11:16:19

我想在这种情况下最好的办法是修改 Redmine,这样您就可以将文件放入 subversion 存储库,然后在问题中添加链接,而不是将文件上传到问题。

或者,允许添加多个文件,并修改代码以在每次上传文件时重命名它们 - 向每个文件名附加后缀(_1、_2 等)。

I guess the best thing in this case is to modify Redmine so that instead of uploading files to the issue, you put the files into a subversion repository and then add a link in the issue.

Alternatively, allow multiple files to be added, and modify to code to rename them everytime one is uploaded - appending a suffix (_1, _2 etc) to each filename.

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