问题标签 [atlassian-fisheye]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
316 浏览

svn - 使新创建的分支在鱼眼界面中可见

我在使用 svn 时从我的存储库创建了一个新分支,但我还希望当我在浏览器中打开时,新创建的分支在 fishheye 界面中可见,以便我可以跟踪该特定分支正在发生的签入,你能请告知如何使新创建的分支在鱼眼中可见我需要在鱼眼中进行什么设置才能看到新创建的分支。

0 投票
0 回答
352 浏览

unity3d - 是否可以将 Unity Asset Server 与 Atlassian Crucible/Fisheye 一起使用?

我正在研究如何将代码审查工具与 Unity3D 开发结合使用。
我们使用 Unity Asset 服务器作为我们的存储库。显然,Atlassian Crucible/Fisheye 不支持开箱即用的这个存储库,我也找不到任何插件支持它。

有没有人能够找出解决配置的方法?也许将 SVN 与 Unity Asset Server 或其他方法结合使用?

或者其他与 Unity3D Asset Server 兼容的代码审查工具?

0 投票
0 回答
44 浏览

jira - 带有外部存储库的 FishEye SmartCommits

外部存储库 (LightSCM)是否支持智能提交?

我正在为PlasticSCM开发一个外部存储库提供程序,我想使用 PlasticSCM 签入(提交)消息执行以下操作:

  • 关闭/解决 JIRA 问题
  • 创建坩埚评论

我不确定 API 是否支持它。

0 投票
3 回答
11916 浏览

git - 如何在 Git 树中删除具有 null sha1 的条目

我继承了一个带有空 sha1 的 git 存储库,用于树中的提交条目,阻止 FishEye 索引存储库。

寻找给定的树给我以下结果:

查看历史记录,我发现它SomeDirectory最初是一个 git 子模块,并且似乎导致问题的提交是同时删除了.gitmodulesSomeDirectory. 现在,有一个真正的目录被称为SomeDirectory与罪魁祸首完全相同的地方。
尽管我仍然可以尝试修复运行 agit filter-branch以查看最终结果,但它不起作用:

我接下来应该尝试什么,知道在导致问题的提交之前没有我知道的备份。

0 投票
1 回答
31 浏览

web - 鱼眼中标题的左侧部分

我想知道 atlassian 鱼眼中标题左侧的名称是什么。

例如,标题的右侧部分是system.header.item

我已经搜索了fisheye的源代码,但仍然找不到答案。

所谓的FishEye Web 项目位置的“文档”是不完整的。

0 投票
1 回答
103 浏览

version-control - Is it possible to add labels using smart commits in Fisheye?

This seems to imply that it is only possible to change status and not possible to add labels https://confluence.atlassian.com/display/FISHEYE/Using+smart+commits

Is there a workaround or other way of achieving this?

0 投票
1 回答
1979 浏览

git - 我可以在 GitHub 中查看合并功能分支的所有提交吗?

我们在工作中使用 GitHub 作为我们的代码存储库,使用 JIRA 作为我们的问题跟踪器,与 Crucible 和 FishEye 集成以进行代码报告和审查。我们用功能分支编号标记每个提交。

此设置有一个非常有用的功能:通过从 JIRA 票证的评论选项卡中创建 Crucible 评论,我们可以获得所有文件的漂亮树形视图,显示特定分支的所有更改,即使该分支已合并到 master 之后。

这是一个例子:

在此处输入图像描述

我们现在计划将问题跟踪移至 GitHub 问题。我已经很仔细地看了,但我在 GitHub 中看不到任何与之对应的内容。GitHub compare 让我在合并之前可以很好地查看特定分支的所有文件更改,但是之后呢?看起来检查合并分支中更改的唯一方法是将其与分支合并之前的 master 中的提交进行比较。

GitHub 有没有办法查看合并分支的所有提交,或者描述中具有特定功能分支编号的所有提交?

0 投票
0 回答
509 浏览

git - unsupported filetype when running git diff

I have a git repo which I'm trying to index in Fisheye/Crucible. The problem is it's failing on a specific change and throwing an unsupported filetype on a file extn ".Pdf". There is only one file with this extension causing the problem and the other with .PDF or .pdf work fine. The command being called is git.exe diff -M --no-abbrev --full-index -U0 721dd161c288bd43b15874c03a8bfc4ae0f6aa32..af0a23599eef5612236d00ccf9cb913277171f28

The is reproducible outside of Fisheye which points to something between git and the file??

I've tried different versions of Git (msysgit-1.9.0, 1.9.2, 1.9.4) and all exhibit the same issue. I have also added the extn to the .gitattributes file (*.Pdf diff=astextplain) also without success.

When running gitk I get the following:

Not sure what to do next other than re-write the history but this will have ramifications as this is working repo used by the team.

Any suggestions?

0 投票
2 回答
980 浏览

atlassian-fisheye - 如何在 EyeQL 中为给定用户选择所有提交?

在 Crucible 中,我使用高级搜索。

我尝试为未审查的指定用户选择所有提交

以下查询:

工作正常,但如果我尝试为作者添加 where 子句,它就不起作用。

作者看起来像“First Last”(例如“John Smith”)。

我尝试使用(之前and not reviewed):

  • and author=First Last
  • and author='First Last'
  • and author="First Last"
  • and author in (First Last)
  • and author in ('First Last')
  • and author in ("First Last")

但有一些问题:

  • 情况1:

    /li>
  • 案例4:

    /li>

或者它不返回结果(案例:2、3、5、6)。

我确信“First Last”存在,因为可以使用上面的查询找到它。

如何创建查询?

0 投票
1 回答
148 浏览

java - Atlassian FishEye 插件和 Spring LDAP 类

我的 FishEye 插件应该可以访问我们的 Active Directory 并为 FishEye 实现更多功能。该插件应该每隔 X 分钟与目录同步一次,因此它基于 SAL 调度程序。当我尝试使用 com.sun.jndi.ldap.LdapCtxFactory 时,我发现它只适用于 REST 插件,但即使我重新定义了类加载器,与 SAL 一起使用也不会加载这些类。无论如何,我使用 Spring LDAP 重新实现了我的功能,当我尝试将我的插件部署到 FishEye 时,我得到了:

好的。我用谷歌搜索并发现https://developer.atlassian.com/docs/faq/troubleshooting/dependency-issues-during-plugin-initialisation 有文字说我必须将依赖范围更改为提供以避免冲突。好的,我做到了。但现在我有另一个例外:

我试图将 spring-ldap-core-1.3.2.RELEASE.jar 放入 $fisheyeDir/lib 并且没有任何反应 - 引导加载程序没有拾取这个 JAR。

有谁知道在这种情况下可以做什么?我应该使用另一个 LDAP 框架还是可以将这些 ldap 客户端实现推送到类路径?

FishEye 版本 3.6.1(最新),将 jar 放入类路径版本 3.0.5.RELEASE。我的 spring-security-ldap 依赖也是 3.0.5.RELEASE。

提前致谢。