如何更改Redmine以支持每个问题中的版本化文件
它是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想在这种情况下最好的办法是修改 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.