通过 URL 从 Kiln 中提取文件的具体修订版?

发布于 2024-12-02 19:40:53 字数 217 浏览 4 评论 0原文

我正在尝试设置源服务器来调试存储在 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 技术交流群。

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

发布评论

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

评论(2

酷遇一生 2024-12-09 19:40:53

如果您不反对解析 HTML,则可以通过访问以下 URL 来查找包含变更集哈希的字符串:

http://<Kiln URL>/File/<path from hg root>/<filename>/rev=<rev #>

在生成的 HTML 中,您可以搜索:

If you aren't opposed to parsing the HTML, you can find the string with the changeset hash by visiting the following URL:

http://<Kiln URL>/File/<path from hg root>/<filename>/rev=<rev #>

In the resulting HTML, you can search for:

<a class="changeset" href="long path" rev="rev you want">

倚栏听风 2024-12-09 19:40:53

我能够使用 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

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