-
Notifications
You must be signed in to change notification settings - Fork 675
Fix Moxie URL in build.xml (#1441) #1442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Apparently there are a bunch of hard coded paths containing |
|
@Uzume , can you tell me where you see this problem in this repo besides build.xml? Or did you mean that in connection with Moxie? Because for this repo it should all have been adjusted already. I'm not sure I understand which places you refer to. |
|
@flaix: I was referring to the
And of course you can search all the
Including similar broken links in these repos as well (as the two repos listed above):
I am not sure if the GitHub searches search the heads of all branches or not but that should provide you a start to the link problems being discussed. Does that help? I really hope someone cares enough to fix those 69 files across the 13 repos. |
|
Uzume, thank you for trying to help. Apparently I am too daft, because the search links you provided above result in zero hits when I click on them. Anyhows, I thought you had found links within this repository pointing to the gitblit project itself. But I was not able to find any of those. So I guess you were talking about links to other repositories. Which is true, the change of the group for all other gitblit repositories has not been accounted for so far. |
@flaix: No, it is probably not you but me. I have several GitHub "Feature preview"s turned on (including I suspect New Code Search and Code View). Try these links instead: I am sorry about that. I made sure those work without being logged in. I am not sure how to port some of the more advanced searches to the older search API but that should get you basically the same hits in this repo anyway. You really should search the code in the branches you checkout though and not rely on the online searches. I am showing changes needed in the following:
In addition to build.xml. |
|
Ah! That explains it, thank you. I considered turning the beta on, but didn't. Turns out that makes the difference. Anyhow, I do grep my local files. And yes, none of the links between different repos are adjusted. I just thought that you had seen a link within the gitblit repo to itself that I may have missed. |
@flaix: Well even the changes proposed in this PR are not about self referential links but local The only self referential links in this repo that need fixed are in src/test/java/com/gitblit/tests/StringUtilsTest.java. However, there are broken links in this repo to several things including:
These are all "404" links found in this repo to places defined by repos in this org but not defined by this repo, i.e., org self-referential but not repo self-referential. |
|
Yes, those I am aware of. |
@flaix: No, problem, but this PR was never about any repo self-referential link issues (though there is the one bunch at the bottom of So should I just spam PRs to all 13 repos with link updates? I am not planning on attempting to test anything (but in theory they should be better not worse off)? |
No, thank you for the offer, but I don't think that is necessary. But thank you for your comment anyways, I learned something new about Github's new code search. |
@flaix: Yes, I did too. I had gotten used to the new search features without thinking about things. I did notice that if I have that turned on (as I do for my account), when I click links for the older search interfaces, it translates the older search to the new search interface. Overall, I really like the new search. I cannot say I am as thrilled with the new code view that is part of the same package. You can minimize the new sidebars on the left and right (in some contexts) that default to open when you first turn it on. However it also adds indexed linking in code views (which can sometimes be irritating when trying to copy snippets and it instead jumps to definitions or other uses). It also seems to try and take over "Ctrl-F" for searching within the code view and unfortunately Firefox (which I am using) also uses that for search within the page (so I have to use menus for that now instead). |
Adjust other references to the old 'gitblit' organisation on Github to point to the new 'gitblit-org' organisation.
|
Thank you, Garrett! |
|
@Uzume , yes, I didn't bother because that is just a unit test operation on the string. It doesn't matter what the URL actually is, it is not retrieved. |
Looks like the GitHub org name changed at some point, and the Moxie URL in
build.xmlneeds to be updated.#1441