hi, I added some CDs before I remembered that I had a musicbrainz account, and I am wondering how I can find those edits I submitted anonymously now?
herojoker
if you know which CDs you added you can look at their edit histories
pfctdayelise
one of the CDs I can't find, so i guess it didn't get accepted
and another is an australian version of an existing release, where the aus release had 2 extra tracks
KRSCuan
Added anonymously? Do you refer to CD Stubs?
Because you can't edit anything else without a MB account
pfctdayelise
KRSCuan: I'm not sure. it just came up in Sound Juicer in ubuntu, and I clicked "submit this info", and then on the musicbrainz site it tells you you can create an account or submit it the "simple" way, so i did the simple way
KRSCuan
The "simple way" is adding a CD Stub
I'm afraid you can only search them based on their title or artist.
If one of them wasn't accepted, that may be because we already have a DiscID (or another CD Stub) for the same CD
pfctdayelise
so should it come up in the search? because it doesn't
KRSCuan
Do you search for CD stubs?
Which releases are we dealing with?
DarkerAudit joined the channel
pfctdayelise
"Kicking Indifference" by The Pictures was one
I just put it in again and since I am logged in, i guess, it found a cd stub
cd stubs don't come up in the search? are they like waiting to be accepted?
KRSCuan
I'm not sure whether they can be looked up by clients like Picard or using the FreeDB gateway, but they aren't in the main database until they are imported by a registered user.
As part of cleaning up the ARs, I've attempted to reconcile and merge together all the different compiling, DJ mixing, mastering, mixing, remastering, remixing, and sampling terms, rather than having half of them redefined in each AR.
The only way to add a release to an existing release group is to go there and click on "Add release".
It's a bit clumsy because release groups were only added last year, but the code for other edits wasn't changed that much.
But you can merge the new release group into the existing one.
_Dave has left the channel
drsaunde joined the channel
curtis_ joined the channel
osmosis joined the channel
_Dave joined the channel
osmosis_ joined the channel
brianfreud
In case anyone is interested. I've not done attributes yet, but I've checked each AR against wiki, its proposal, and the server. Here's every AR we have (or should have), graphically: http://wiki.musicbrainz.org/User:BrianSchweitze...
i based that off of the rreplace line in the documentation example (that removes feat. artist from the title)
i did some testing with $if, and as far as i can tell, rsearch is not returning anything with that line
Leftmost
Hmm. Looks to me like you haven't actually specified any groups to match.
Quantum[Nugget]
i thought this: \\s\\\(feat. [^\)]+\\\)
was the group its supposed to match
Leftmost
So that'll match a string, but it has no groups, per se. I'm not sure how to explain it well, but you need to group things by surrounding them with parentheses.
Quantum[Nugget]
(\\s\\\(feat. [^\)]+\\\))
like that?
so the whole command would be:
Leftmost
Well, I'm guessing you only want to pull out the artist name, right?
i have my script looking for those parts before and after in the comment
so (feat. gets replaced with Featuring
and ) gets replaced with a .
Cuan has left the channel
Leftmost
Alright. Well, try that then.
Quantum[Nugget]
ok
thanks for your help
ima give that a try right now
i get an unexpected error
regarding the \
erm
the parentheses
Leftmost
Try escaping them with \
Quantum[Nugget]
k
Leftmost
I'm not sure, haven't tried to use regex in picard.
Quantum[Nugget]
k
whats confusing me is its not working the same as rreplace
i figured rreplace was just rsearch with the replacing functionality ended
Leftmost
Quantum[Nugget], it helps to be familiar with how regular expressions work outside of picard. Usually a match, the equivalent of rsearch, will just return true if something matches the string.
You can get specific parts of the string, however, by grouping them.
The parentheses, essentially.
Quantum[Nugget]
k, ill do some reading on regular expressions
i think escaping parenthesis just adds that to the string its searching for
thanks for your help, im going to read the link on regular expressions
to make sure im understanding what you said,
my command might be working, but rsearch is basically just saying "yeah, i found that" instead of actually handing it off, with substituions, to the $set function?
Leftmost
Without knowing the internals better, I can't say for sure, but I bet it's passing it off to the regular expression engine and then waiting for the engine to send back groups, where the engine is just being like "yep, that matches".
Quantum[Nugget]
i'm not sure if you'd be able to help me here, because you mentioned you dont know the internals