0:05 AM
ephemer0l has quit
2019-06-01 15242, 2019
0:18 AM
ephemer0l_ joined the channel
2019-06-01 15247, 2019
0:56 AM
ephemer0l_ is now known as ephemer0l
2019-06-01 15211, 2019
2:37 AM
D4RK-PH0ENiX joined the channel
2019-06-01 15257, 2019
2:41 AM
D4RK-PH0ENiX has quit
2019-06-01 15202, 2019
4:19 AM
legoktm has quit
2019-06-01 15241, 2019
4:19 AM
legoktm joined the channel
2019-06-01 15208, 2019
4:31 AM
Mr_Monkey has quit
2019-06-01 15209, 2019
4:33 AM
pristine__ has quit
2019-06-01 15242, 2019
4:33 AM
imdeni has quit
2019-06-01 15227, 2019
4:36 AM
spellew has quit
2019-06-01 15239, 2019
4:40 AM
spellew joined the channel
2019-06-01 15232, 2019
4:51 AM
imdeni joined the channel
2019-06-01 15217, 2019
4:54 AM
pristine__ joined the channel
2019-06-01 15222, 2019
4:56 AM
Mr_Monkey joined the channel
2019-06-01 15222, 2019
5:04 AM
amCap1712
To get the description and the summarized contents of a collection, perform a lookup request with the collection MBID and the appropriate entity subquery and To get the contents of a collection, perform a browse request on the appropriate entity endpoint, using the collection MBID as a parameter:
2019-06-01 15248, 2019
5:04 AM
amCap1712
What is the difference between the approaches?
2019-06-01 15208, 2019
5:05 AM
amCap1712
reosarevok, bitmap, yvanzo: ^
2019-06-01 15203, 2019
5:09 AM
bitmap
the "summarized" one has a harcoded limit of 25 entities, and you can't use inc parameters to include additional info for the entities if you need it
2019-06-01 15201, 2019
5:10 AM
bitmap
the other is a browse request so you could use limit/offset params to fetch all items, use inc params, etc.
2019-06-01 15236, 2019
5:10 AM
chhavi_ joined the channel
2019-06-01 15224, 2019
5:30 AM
BrainzGit
2019-06-01 15224, 2019
5:43 AM
amCap1712
thanks bitmap
2019-06-01 15231, 2019
6:12 AM
Wizzup has quit
2019-06-01 15229, 2019
6:19 AM
Wizzup joined the channel
2019-06-01 15249, 2019
7:01 AM
pristine__
can anyone tell me what artist_count, ref_count refers to in artist_credit table in MusicBrainz DB?
2019-06-01 15246, 2019
7:03 AM
reosarevok
pristine__: IIRC artist_count is how many artists are in that credit, ref_count is how many times it is used
2019-06-01 15240, 2019
7:04 AM
pristine__
reosarevok: credit as in?
2019-06-01 15250, 2019
7:04 AM
reosarevok
artist credit? :D
2019-06-01 15217, 2019
7:05 AM
reosarevok
2019-06-01 15255, 2019
7:05 AM
pristine__
oh okay!
2019-06-01 15257, 2019
7:05 AM
pristine__
thanks!
2019-06-01 15251, 2019
7:47 AM
Wizzup has quit
2019-06-01 15245, 2019
7:58 AM
Wizzup joined the channel
2019-06-01 15258, 2019
8:04 AM
Cyna
I want the js equivalent of form_row_name_with_guesscase
2019-06-01 15201, 2019
8:12 AM
Cyna
I guess there are some utilities in /root/entity/alias/edit_form.t that havent been converted to js
2019-06-01 15242, 2019
8:15 AM
reosarevok
Cyna: yes, you need to convert it, you can use root/components/FormRow(Whatever) files as examples
2019-06-01 15208, 2019
8:16 AM
Cyna
I dont even know the working of it 😅
2019-06-01 15223, 2019
8:16 AM
Cyna
I'll searching for the tt function right now
2019-06-01 15214, 2019
8:17 AM
Cyna
It is used everywhere but I cant find the definition of the function
2019-06-01 15252, 2019
8:17 AM
reosarevok
2019-06-01 15201, 2019
8:18 AM
reosarevok
root/components/forms.tt
2019-06-01 15214, 2019
8:21 AM
D4RK-PH0ENiX joined the channel
2019-06-01 15208, 2019
8:22 AM
Protab joined the channel
2019-06-01 15208, 2019
8:22 AM
Rotab has quit
2019-06-01 15225, 2019
8:23 AM
Wizzup has quit
2019-06-01 15232, 2019
8:26 AM
D4RK-PH0ENiX has quit
2019-06-01 15215, 2019
8:40 AM
D4RK-PH0ENiX joined the channel
2019-06-01 15219, 2019
8:47 AM
Cyna
reosarevok: what does this mean ? { class => 'with-guesscase' _ (options.guessfeat ? '-guessfeat' : '') }
2019-06-01 15225, 2019
8:47 AM
Cyna
```{ class => 'with-guesscase' _ (options.guessfeat ? '-guessfeat' : '') }```
2019-06-01 15205, 2019
8:48 AM
reosarevok
the class is "with-guesscase", but if there's also guessfeat in options then it gets concatenated and you get "with-guesscase-guessfeat"
2019-06-01 15242, 2019
8:48 AM
Cyna
```[% r.text('name', { class => 'with-guesscase' _ (options.guessfeat ? '-guessfeat' : '') }) %]```
2019-06-01 15254, 2019
8:48 AM
Cyna
in here, class refers to the className of input tag ?
2019-06-01 15258, 2019
8:49 AM
chhavi_ has quit
2019-06-01 15203, 2019
8:53 AM
reosarevok
Yes
2019-06-01 15205, 2019
8:53 AM
reosarevok
<input class="with-guesscase" id="id-edit-alias.name" name="edit-alias.name" required="required" type="text" value="Symphonie à grand orchestre en Ré majeur: II. Andante" />
2019-06-01 15209, 2019
8:53 AM
reosarevok
For an example
2019-06-01 15218, 2019
8:53 AM
Cyna
ohh
2019-06-01 15237, 2019
8:53 AM
reosarevok
2019-06-01 15236, 2019
8:58 AM
Cyna
reosarevok: this should be right for ``` [% r.text('name', { class => 'with-guesscase' _ (options.guessfeat ? '-guessfeat' : '') }) %]```
2019-06-01 15252, 2019
8:58 AM
Cyna
```<input
2019-06-01 15252, 2019
8:58 AM
Cyna
className={options.guessfeat ? 'with-guesscase-guessfeat' : 'with-guesscase'}
2019-06-01 15252, 2019
8:58 AM
Cyna
defaultValue={field.value || ''}
2019-06-01 15252, 2019
8:58 AM
Cyna
id={'id-' + field.html_name}
2019-06-01 15252, 2019
8:58 AM
Cyna
name={field.html_name}
2019-06-01 15253, 2019
8:58 AM
Cyna
required={required}
2019-06-01 15253, 2019
8:58 AM
Cyna
type={type}
2019-06-01 15254, 2019
8:58 AM
Cyna
{...inputProps}
2019-06-01 15254, 2019
8:58 AM
Cyna
/>```
2019-06-01 15256, 2019
8:58 AM
Cyna
right ?
2019-06-01 15251, 2019
9:04 AM
reosarevok
Seems like it might be right :)
2019-06-01 15255, 2019
9:04 AM
reosarevok
Try it, of course, but
2019-06-01 15207, 2019
9:19 AM
CatQuest
reosarevok: :D
2019-06-01 15225, 2019
9:19 AM
Cyna
I guess I've made the convertion
2019-06-01 15232, 2019
9:19 AM
Cyna
How do I test it 🤔
2019-06-01 15257, 2019
9:29 AM
D4RK-PH0ENiX has quit
2019-06-01 15234, 2019
9:30 AM
D4RK-PH0ENiX joined the channel
2019-06-01 15212, 2019
9:31 AM
Wizzup joined the channel
2019-06-01 15258, 2019
9:45 AM
D4RK-PH0ENiX has quit
2019-06-01 15239, 2019
9:46 AM
Wizzup has quit
2019-06-01 15235, 2019
9:53 AM
Wizzup joined the channel
2019-06-01 15218, 2019
10:11 AM
reosarevok
Cyna: same as with other forms you converted before :)
2019-06-01 15257, 2019
10:11 AM
reosarevok
The right controller should be lib/MusicBrainz/Server/Controller/Role/Alias.pm IIRC
2019-06-01 15204, 2019
10:32 AM
CatQuest
2019-06-01 15211, 2019
10:32 AM
CatQuest
also if there is any thing to add/remove
2019-06-01 15257, 2019
10:32 AM
CatQuest
esp definition of "moin" sine i hella don't know it
2019-06-01 15226, 2019
10:46 AM
Cyna
okay
2019-06-01 15231, 2019
10:58 AM
Wizzup has quit
2019-06-01 15236, 2019
11:09 AM
Wizzup joined the channel
2019-06-01 15247, 2019
11:48 AM
Wizzup has quit
2019-06-01 15255, 2019
11:48 AM
Wizzup joined the channel
2019-06-01 15252, 2019
12:01 PM
Wizzup has quit
2019-06-01 15205, 2019
12:08 PM
Wizzup joined the channel
2019-06-01 15207, 2019
12:14 PM
D4RK-PH0ENiX joined the channel
2019-06-01 15256, 2019
12:14 PM
Wizzup has quit
2019-06-01 15234, 2019
12:18 PM
Wizzup joined the channel
2019-06-01 15258, 2019
12:18 PM
D4RK-PH0ENiX has quit
2019-06-01 15234, 2019
12:36 PM
Protab is now known as Rotab
2019-06-01 15242, 2019
12:42 PM
Cyna
what are guessoptions ? reosarevok
2019-06-01 15249, 2019
12:42 PM
Cyna
I've having trouble finding those
2019-06-01 15205, 2019
12:44 PM
reosarevok
Cyna: where are you seeing the reference?
2019-06-01 15223, 2019
12:44 PM
Cyna
test.musicbrainz
2019-06-01 15235, 2019
12:44 PM
reosarevok
More specific link?
2019-06-01 15249, 2019
12:44 PM
Cyna
2019-06-01 15225, 2019
12:46 PM
reosarevok
Cyna: oh, they're just the options for the guess case :D Click the gear
2019-06-01 15237, 2019
12:46 PM
Cyna
Yea
2019-06-01 15249, 2019
12:46 PM
Cyna
I need a way to find those options
2019-06-01 15207, 2019
12:47 PM
reosarevok
2019-06-01 15210, 2019
12:47 PM
reosarevok
Also in forms.tt
2019-06-01 15256, 2019
12:47 PM
reosarevok
That uses knockout I guess, which I haven't really used much. bitmap would be able to help you more
2019-06-01 15210, 2019
12:48 PM
Cyna
Converting them to react in a bit
2019-06-01 15236, 2019
12:52 PM
Cyna
Guess case options is a React table component
2019-06-01 15218, 2019
12:54 PM
Cyna
I converted GuessCaseOptions to react
2019-06-01 15208, 2019
12:55 PM
Cyna
but it is not linked with form_row_name_with_guesscase
2019-06-01 15201, 2019
12:56 PM
Cyna
2019-06-01 15212, 2019
12:56 PM
Cyna
This is my FormRowNameWithGuesscase file
2019-06-01 15230, 2019
12:56 PM
Cyna
I dont know from where to get the props required
2019-06-01 15238, 2019
12:58 PM
Cyna
2019-06-01 15219, 2019
12:59 PM
Cyna
here is my EditForm component
2019-06-01 15255, 2019
12:59 PM
Wizzup has quit
2019-06-01 15254, 2019
13:01 PM
Wizzup joined the channel
2019-06-01 15212, 2019
13:04 PM
Cyna
I am unable to pass options
2019-06-01 15210, 2019
13:07 PM
reosarevok
I honestly don't know, would need to check further and don't have the time at the moment. bitmap should arrive in a couple hours tops I hope :)
2019-06-01 15247, 2019
13:09 PM
Cyna
okay
2019-06-01 15209, 2019
13:21 PM
CatQuest
reosarevok: why don't we have a release-release / RG-RG "is the highlights release of" (in the wein of "ep/single released in assoc. with) ???
2019-06-01 15221, 2019
13:21 PM
CatQuest
probably RG RG is best
2019-06-01 15244, 2019
13:31 PM
Wizzup has quit
2019-06-01 15259, 2019
13:48 PM
Wizzup joined the channel
2019-06-01 15208, 2019
13:57 PM
Wizzup has quit
2019-06-01 15220, 2019
14:02 PM
D4RK-PH0ENiX joined the channel
2019-06-01 15231, 2019
14:05 PM
ruaok
Mr_Monkey: bitmap: iliekcomputers: zas: invoices please
2019-06-01 15216, 2019
14:07 PM
D4RK-PH0ENiX has quit
2019-06-01 15254, 2019
14:07 PM
Wizzup joined the channel
2019-06-01 15226, 2019
14:12 PM
bitmap
Cyna: I can help in a min, but not sure I understand the question - which options are you unable to pass?
2019-06-01 15221, 2019
14:13 PM
D4RK-PH0ENiX joined the channel
2019-06-01 15205, 2019
14:19 PM
D4RK-PH0ENiX has quit
2019-06-01 15232, 2019
14:40 PM
Wizzup has quit
2019-06-01 15218, 2019
14:57 PM
Wizzup joined the channel
2019-06-01 15203, 2019
15:05 PM
Wizzup has quit
2019-06-01 15244, 2019
15:06 PM
ruaok
aight. if you had sent an invoice by now, payment will go out monday. next round of payments will happen tuesday.
2019-06-01 15223, 2019
15:09 PM
chhavi_ joined the channel
2019-06-01 15227, 2019
15:19 PM
D4RK-PH0ENiX joined the channel
2019-06-01 15232, 2019
15:24 PM
D4RK-PH0ENiX has quit
2019-06-01 15228, 2019
15:32 PM
Wizzup joined the channel
2019-06-01 15210, 2019
15:43 PM
Wizzup has quit
2019-06-01 15224, 2019
15:53 PM
travis-ci joined the channel
2019-06-01 15224, 2019
15:53 PM
travis-ci
2019-06-01 15224, 2019
15:53 PM
travis-ci has left the channel
2019-06-01 15205, 2019
16:00 PM
Wizzup joined the channel
2019-06-01 15212, 2019
16:04 PM
Wizzup has quit