通过 URL 从 Kiln 中提取文件的具体修订版?
我正在尝试设置源服务器来调试存储在 Kiln/Mercurial 存储库中的项目。
我需要通过以下数据获取文件的修订版:
- 存储库中的本地文件路径;
- 修订次数;
- 网址存储库。
我可以通过 URL 执行此操作吗?或者该问题还有其他解决方法?
PS 如果可能的话,我宁愿避免使用 Kiln API。
I am trying to set up source server for debugging projects that are stored on Kiln/Mercurial repository.
I need to get revision of the file by following data:
- Local file path in the repository;
- Number of revision;
- URL repository.
Can I do this via URL? Or there is another workaround for the issue?
P.S. I'd prefer to avoid using Kiln API if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不反对解析 HTML,则可以通过访问以下 URL 来查找包含变更集哈希的字符串:
在生成的 HTML 中,您可以搜索:
If you aren't opposed to parsing the HTML, you can find the string with the changeset hash by visiting the following URL:
In the resulting HTML, you can search for:
<a class="changeset" href="long path" rev="
rev you want">
我能够使用 Kiln API 完成这个解决方案。
有一个很棒的 .Net 库,它封装了对 Kiln API 的所有调用,名为 Kiln.Net
I was able to accomplish this solution using Kiln API.
There is awesome .Net library that wraps all call to Kiln API called Kiln.Net