-
Notifications
You must be signed in to change notification settings - Fork 38
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
Minor fix and improve #102
Conversation
Line breaks and spaces are now preserved.
Thanks for this! Now, what's the motivation? Was there a problem having profiles mixed with other packages? I'm not keen on making Allzpark behave differently from Rez on the command-line. It's meant to act as a visual version of that. This seems to produce different search results, one including profiles and the other not. :S |
Just found out that this Lines 359 to 363 in 62ed58d
The profile package's Edit : |
Yes, mainly hope to opt-out profile packages when, for example using
to find all profiles when needed, is nicer than filtering out profiles when you just need to find regular packages (which I imaging this would happens really often). |
Yes, that was the idea :P Oh, the |
Sorry for the chaos, I reviewed my changes again and looks like all I need was to add back those profile path in |
Hmmm.., after I found that and re-think about what you have said, instead of adding I'll revert the |
Ooo, yes that would be much preferable. I hope you get what I'm saying; it's important to preserve the use of command-line as an alternative to Allzpark. Allzpark is sugar on-top of Rez, nothing more. If you think of new features or use, we'll either have to find a way to do it with vanilla-Rez (like you seem to have done just now) or think long and hard about whether and how to deviate with Allzpark. |
After I switch to use additional
Turns out my mongodb based package repository path ( Lines 941 to 945 in 62ed58d
I wonder, do we need this ? |
No you're right. This was a concious oversight, given the first user of the project was file-based only. We can safely remove that I think. Ideally, we'd normalise if we're sure it's a path (which I think we can programatically determine), but it's a luxury that the user can manage. |
Yeah, and I think Rez doesn't change paths (e.g. With the last commit, everything works now. |
To visualize what changes did I made in commit 2b94ae6 : Before After |
I'm happy with this when you are, feel free to merge. :) |
Thanks :D |
This PR propose to add
profiles_path
toallzparkconfig.py
, which would optionally allow to exclude profile packages path from Rez'spackages_path
when working out side of Allzpark.Beside that, this PR also...
list_profile
in 2df97d8.