From detlev at xs4all.nl Mon Jun 5 14:00:59 2017 From: detlev at xs4all.nl (Detlev Hauschildt) Date: Mon, 5 Jun 2017 14:00:59 +0200 Subject: [Act] repo out of sync for tpc-2017-amsterdam (rather urgent...) In-Reply-To: <4DF7BDFF-4291-497C-8D92-CEBDD2F76E95@gmail.com> References: <3D058181-5578-48A9-906A-5F2B9FE871C7@gmail.com> <00e3224a-c844-f1b4-02cb-319976e50e26@boivin.eu> <4DF7BDFF-4291-497C-8D92-CEBDD2F76E95@gmail.com> Message-ID: <7ff75d72-32b8-b8c0-85be-fa8617e989fc@xs4all.nl> Dear ACT team, We've run into a bit of an issue yesterday when working on the website for the upcoming YAPC-EU (aka tpc-2017-amsterdam). One team member audaciously reset the head of the master branch of our github repo (https://github.com/Act-Conferences/tpc-2017-amsterdam) to an earlier node to clean up some experiments, but we noticed that this doesn't get reflected in the live environment that the website is served from (fortunately only the test site is affected). From what I can see it appears that the files are served from another git repo that doesn't actually follow the state of our github repo, but rather merges our branches into its branches. The live repo still has all the commits that are gone from our repo after the reset. And when we make other commits now we sometimes end up with files on the live server that have git merge conflict markers in them - which doesn't make for pretty HTML! These markers are not present in our repo so it's hard to do something about them. So, it would be of great help if you could clone our current master branch to the live repo. And maybe structurally it would be better to have a setup where the live server follows the github repo exactly, as this might trip up other people too. I suppose the current setup only works if you restrict yourself to adding commits, but not when moving the head of the branch. Thanks for you help!!! Detlev From sebastien at aperghis.net Mon Jun 5 22:30:33 2017 From: sebastien at aperghis.net (=?utf-8?Q?S=C3=A9bastien?= Aperghis-Tramoni) Date: Mon, 5 Jun 2017 22:30:33 +0200 (CEST) Subject: [Act] repo out of sync for tpc-2017-amsterdam (rather urgent...) In-Reply-To: <7ff75d72-32b8-b8c0-85be-fa8617e989fc@xs4all.nl> Message-ID: <1004637963.265954893.1496694633983.JavaMail.root@spooler3-g27.priv.proxad.net> Detlev Hauschildt wrote: > Dear ACT team, > > We've run into a bit of an issue yesterday when working on the > website for the upcoming YAPC-EU (aka tpc-2017-amsterdam). One > team member audaciously reset the head of the master branch of > our github repo (https://github.com/Act-Conferences/tpc-2017-amsterdam) > to an earlier node to clean up some experiments, but we > noticed that this doesn't get reflected in the live environment > that the website is served from (fortunately only the test site > is affected). > > From what I can see it appears that the files are served from > another git repo that doesn't actually follow the state of our > github repo, but rather merges our branches into its branches. > The live repo still has all the commits that are gone from our > repo after the reset. And when we make other commits now we > sometimes end up with files on the live server that have git > merge conflict markers in them - which doesn't make for pretty > HTML! These markers are not present in our repo so it's hard > to do something about them. > > So, it would be of great help if you could clone our current master > branch to the live repo. > > And maybe structurally it would be better to have a setup where > the live server follows the github repo exactly, as this might > trip up other people too. I suppose the current setup only works > if you restrict yourself to adding commits, but not when moving > the head of the branch. Actually, the repositories on the Act server are directly updated from GitHub, with no intermediate repository, using git pull: ? https://github.com/book/Act/blob/master/bin/gitupdate Maybe git pull isn't the correct way to update a repository? To be honest, git has always been a maze of traps for me. I don't have access to the server right now, but Laurent is working on the repository, so the site should soon be fixed. -- S?bastien Aperghis-Tramoni Close the world, txEn eht nepO. From cpan2 at tinita.de Mon Jun 5 22:50:56 2017 From: cpan2 at tinita.de (=?ISO-8859-15?Q?Tina_M=FCller?=) Date: Mon, 5 Jun 2017 22:50:56 +0200 (CEST) Subject: [Act] repo out of sync for tpc-2017-amsterdam (rather urgent...) In-Reply-To: <1004637963.265954893.1496694633983.JavaMail.root@spooler3-g27.priv.proxad.net> References: <1004637963.265954893.1496694633983.JavaMail.root@spooler3-g27.priv.proxad.net> Message-ID: On Mon, 5 Jun 2017, S?bastien Aperghis-Tramoni wrote: > Actually, the repositories on the Act server are directly updated > from GitHub, with no intermediate repository, using git pull: > ? https://github.com/book/Act/blob/master/bin/gitupdate > > Maybe git pull isn't the correct way to update a repository? It should be enough if nobody ever uses a forced push. To deal with that, you could do the following: git fetch git reset --hard origin/master # or production, ... Or, you could protect those branches on github, so people cannot do a forced push. cheers, tina From elbeho at boivin.eu Mon Jun 5 22:51:16 2017 From: elbeho at boivin.eu (L Boivin) Date: Mon, 5 Jun 2017 22:51:16 +0200 Subject: [Act] repo out of sync for tpc-2017-amsterdam (rather urgent...) In-Reply-To: <7ff75d72-32b8-b8c0-85be-fa8617e989fc@xs4all.nl> References: <3D058181-5578-48A9-906A-5F2B9FE871C7@gmail.com> <00e3224a-c844-f1b4-02cb-319976e50e26@boivin.eu> <4DF7BDFF-4291-497C-8D92-CEBDD2F76E95@gmail.com> <7ff75d72-32b8-b8c0-85be-fa8617e989fc@xs4all.nl> Message-ID: <446b292f-2be3-1cc3-4058-31ba03a66b1d@boivin.eu> Hi Detlev, Pb fixed (conflict at merge on templates/cms/topic/speakers/index.tt) It should now be OK. (sorry for test commits on production and master, and their revert) Cheers Laurent On 05/06/2017 14:00, Detlev Hauschildt wrote: > Dear ACT team, > > We've run into a bit of an issue yesterday when working on the website > for the upcoming YAPC-EU (aka tpc-2017-amsterdam). One team member > audaciously reset the head of the master branch of our github repo > (https://github.com/Act-Conferences/tpc-2017-amsterdam) to an earlier > node to clean up some experiments, but we noticed that this doesn't get > reflected in the live environment that the website is served from > (fortunately only the test site is affected). > > From what I can see it appears that the files are served from another > git repo that doesn't actually follow the state of our github repo, but > rather merges our branches into its branches. The live repo still has > all the commits that are gone from our repo after the reset. And when we > make other commits now we sometimes end up with files on the live server > that have git merge conflict markers in them - which doesn't make for > pretty HTML! These markers are not present in our repo so it's hard to > do something about them. > > So, it would be of great help if you could clone our current master > branch to the live repo. > > And maybe structurally it would be better to have a setup where the live > server follows the github repo exactly, as this might trip up other > people too. I suppose the current setup only works if you restrict > yourself to adding commits, but not when moving the head of the branch. > > Thanks for you help!!! > > Detlev > _______________________________________________ > Act mailing list > Act at mongueurs.net > http://listes.mongueurs.net/mailman/listinfo/act -- Laurent Boivin -- mailto:elbeho at boivin.eu Member of Mongueurs de Perl -- http://www.mongueurs.net/ Member of YAPC::Europe Foundation -- http://www.yapceurope.org/ Member of OSDC.fr -- http://osdc.fr/ From sebastien at aperghis.net Mon Jun 5 22:58:33 2017 From: sebastien at aperghis.net (=?utf-8?Q?S=C3=A9bastien?= Aperghis-Tramoni) Date: Mon, 5 Jun 2017 22:58:33 +0200 (CEST) Subject: [Act] repo out of sync for tpc-2017-amsterdam (rather urgent...) In-Reply-To: Message-ID: <29063187.266026001.1496696313902.JavaMail.root@spooler3-g27.priv.proxad.net> Tina M?ller wrote: > On Mon, 5 Jun 2017, S?bastien Aperghis-Tramoni wrote: > > > Actually, the repositories on the Act server are directly updated > > from GitHub, with no intermediate repository, using git pull: > > ? https://github.com/book/Act/blob/master/bin/gitupdate > > > > Maybe git pull isn't the correct way to update a repository? > > It should be enough if nobody ever uses a forced push. > To deal with that, you could do the following: > > git fetch > git reset --hard origin/master # or production, ... > > Or, you could protect those branches on github, so people cannot > do a forced push. No need to annoy the few people who still use Act with that. I'll go with your solution of fetch/reset. Thanks! -- S?bastien Aperghis-Tramoni Close the world, txEn eht nepO. From detlev at xs4all.nl Tue Jun 6 00:03:33 2017 From: detlev at xs4all.nl (Detlev Hauschildt) Date: Tue, 6 Jun 2017 00:03:33 +0200 Subject: [Act] repo out of sync for tpc-2017-amsterdam (rather urgent...) In-Reply-To: <29063187.266026001.1496696313902.JavaMail.root@spooler3-g27.priv.proxad.net> References: <29063187.266026001.1496696313902.JavaMail.root@spooler3-g27.priv.proxad.net> Message-ID: <4514068e-da78-9e2a-d5ca-4b4687ef2129@xs4all.nl> Thanks a bundle S?bastien, Laurent and Tina for your quick intervention! Our repo is back in sync now. 'git pull' indeed does a merge, that much is clear from 'man git-pull'. I'll tell the other contributors not to move the branch head around for now, just to be safe, but I guess with Tina's suggestion it wouldn't be a problem. Cheers, Detlev On 2017-06-05 22:58, S?bastien Aperghis-Tramoni wrote: > Tina M?ller wrote: > >> On Mon, 5 Jun 2017, S?bastien Aperghis-Tramoni wrote: >> >>> Actually, the repositories on the Act server are directly updated >>> from GitHub, with no intermediate repository, using git pull: >>> ? https://github.com/book/Act/blob/master/bin/gitupdate >>> >>> Maybe git pull isn't the correct way to update a repository? >> It should be enough if nobody ever uses a forced push. >> To deal with that, you could do the following: >> >> git fetch >> git reset --hard origin/master # or production, ... >> >> Or, you could protect those branches on github, so people cannot >> do a forced push. > No need to annoy the few people who still use Act with that. I'll > go with your solution of fetch/reset. Thanks! > From vorstand at frankfurt.pm Thu Jun 15 21:04:41 2017 From: vorstand at frankfurt.pm (Vorstand Frankfurt Perlmongers) Date: Thu, 15 Jun 2017 21:04:41 +0200 Subject: [Act] Double-registrations and non-existing users? Message-ID: <7868583a-05cb-5c98-079f-d56b03d41b47@frankfurt.pm> Hello all, on our Act instance, I see People that are double-registered: http://act.yapc.eu/gpw2017/payments For example "Durrani Osman" (User 12111) But I cannot click on that user to see details, as I then get a 404 error for http://act.yapc.eu/gpw2017/user/12111 The double-registration issue would be more important to me, as our calculations and invoices are somewhat based on that list. But the user information (or lack thereof) is also somewhat an issue for me if I want to mail the speakers... -max -- -- Frankfurt Perlmongers c/o Max Maischein R?derbergweg 167 60385 Frankfurt UStId./VAT-Id: DE282955092 Vorstandsmitglieder Ren?e B?cker - Wieland Pusch - Max Maischein From th.j.v.hoesel at gmail.com Thu Jun 15 21:42:57 2017 From: th.j.v.hoesel at gmail.com (Theo van Hoesel) Date: Thu, 15 Jun 2017 20:42:57 +0100 Subject: [Act] Double-registrations and non-existing users? In-Reply-To: <7868583a-05cb-5c98-079f-d56b03d41b47@frankfurt.pm> References: <7868583a-05cb-5c98-079f-d56b03d41b47@frankfurt.pm> Message-ID: <8FC85F22-8416-4577-B1F3-FB4940A07207@gmail.com> it is an issue with The Perl Conference in Amsterdam as well but among all other annoyances, this one got on the TODO list for us. you get double registrations, and double payments too --- according to the list > On 15 Jun 2017, at 20:04, Vorstand Frankfurt Perlmongers wrote: > > Hello all, > > on our Act instance, I see People that are double-registered: > > http://act.yapc.eu/gpw2017/payments > > For example "Durrani Osman" (User 12111) > > But I cannot click on that user to see details, as I then get a 404 error for > > http://act.yapc.eu/gpw2017/user/12111 > > The double-registration issue would be more important to me, as our calculations and invoices are somewhat based on that list. But the user information (or lack thereof) is also somewhat an issue for me if I want to mail the speakers... > > -max > > -- > -- > Frankfurt Perlmongers > c/o Max Maischein > R?derbergweg 167 > 60385 Frankfurt > > UStId./VAT-Id: DE282955092 > > Vorstandsmitglieder > Ren?e B?cker - Wieland Pusch - Max Maischein > > _______________________________________________ > Act mailing list > Act at mongueurs.net > http://listes.mongueurs.net/mailman/listinfo/act From elbeho at boivin.eu Mon Jun 19 22:41:22 2017 From: elbeho at boivin.eu (L Boivin) Date: Mon, 19 Jun 2017 22:41:22 +0200 Subject: [Act] Double-registrations and non-existing users? In-Reply-To: <8FC85F22-8416-4577-B1F3-FB4940A07207@gmail.com> References: <7868583a-05cb-5c98-079f-d56b03d41b47@frankfurt.pm> <8FC85F22-8416-4577-B1F3-FB4940A07207@gmail.com> Message-ID: <8408cc19-8ffd-dfb8-02a3-2de3f28df129@boivin.eu> Hi, I' aware of the pb. It is in my todo list. I hope we can do something very soon. Laurent On 15/06/2017 21:42, Theo van Hoesel wrote: > it is an issue with The Perl Conference in Amsterdam as well > > but among all other annoyances, this one got on the TODO list for us. > > you get double registrations, and double payments too --- according to the list > > >> On 15 Jun 2017, at 20:04, Vorstand Frankfurt Perlmongers wrote: >> >> Hello all, >> >> on our Act instance, I see People that are double-registered: >> >> http://act.yapc.eu/gpw2017/payments >> >> For example "Durrani Osman" (User 12111) >> >> But I cannot click on that user to see details, as I then get a 404 error for >> >> http://act.yapc.eu/gpw2017/user/12111 >> >> The double-registration issue would be more important to me, as our calculations and invoices are somewhat based on that list. But the user information (or lack thereof) is also somewhat an issue for me if I want to mail the speakers... >> >> -max >> >> -- >> -- >> Frankfurt Perlmongers >> c/o Max Maischein >> R?derbergweg 167 >> 60385 Frankfurt >> >> UStId./VAT-Id: DE282955092 >> >> Vorstandsmitglieder >> Ren?e B?cker - Wieland Pusch - Max Maischein >> >> _______________________________________________ >> Act mailing list >> Act at mongueurs.net >> http://listes.mongueurs.net/mailman/listinfo/act > > _______________________________________________ > Act mailing list > Act at mongueurs.net > http://listes.mongueurs.net/mailman/listinfo/act > -- Laurent Boivin -- mailto:elbeho at boivin.eu Member of Mongueurs de Perl -- http://www.mongueurs.net/ Member of YAPC::Europe Foundation -- http://www.yapceurope.org/ Member of OSDC.fr -- http://osdc.fr/ From barbie at missbarbell.co.uk Wed Jun 21 11:41:46 2017 From: barbie at missbarbell.co.uk (Barbie) Date: Wed, 21 Jun 2017 10:41:46 +0100 Subject: [Act] www.yapcna.org redirect In-Reply-To: <95DCFF38-9D30-4F5E-B974-F60C09B6375D@cpanel.net> References: <036f57c9-c613-c7c6-5c08-d5266c013d80@boivin.eu> <95DCFF38-9D30-4F5E-B974-F60C09B6375D@cpanel.net> Message-ID: Hi guys, Following on from this I'm not able to access anything for the conference surveys, due to the URL and code name changes. I've tried a few combinations and was expecting the following to work: http://act.perlconference.org/tpc-2017-dc/api/get_attendees?api_key=<......> Can you let me know the correct URL for both get_attendees and get_talks, together with the correct codes for the US & EU conferences. Also do I need a new API Key? Cheers, Barbie. -- Birmingham.pm - http://birmingham.pm.org CPAN Testers - http://cpantesters.org YAPC Surveys - http://yapc-surveys.org Perl Jam - http://perljam.info On Tue, May 30, 2017 at 5:09 PM, Todd Rinaldo wrote: > Thank you! > > > On May 29, 2017, at 3:59 PM, L Boivin wrote: > > > > Sorry Todd. I forgot. My bad. > > As I told on IRC, it's now done. > > > > Bye > > Laurent > > > > On 27/05/2017 02:11, Todd Rinaldo wrote: > >>> On May 14, 2017, at 11:14 AM, Todd Rinaldo toddr at cpanel.net>> wrote: > >>> > >>> Hi, > >>> > >>> Could you please set the base URL redirect for www.yapcna.org < > http://www.yapcna.org> to point to http://www.perlconference.us/ > tpc-2017-dc/ > >>> > >>> Thanks, > >>> Todd > >> Ping? I've not heard anything back. From what I can tell it's still > pointing to last year's site: > >> $>curl www.yapcna.org > >> > >> > >> 301 Moved Permanently > >> > >>

Moved Permanently

> >> The document has moved here.

> >> > >> Todd > >> _______________________________________________ > >> Act mailing list > >> Act at mongueurs.net > >> http://listes.mongueurs.net/mailman/listinfo/act > > > > > > -- > > Laurent Boivin -- mailto:elbeho at boivin.eu > > Member of Mongueurs de Perl -- http://www.mongueurs.net/ > > Member of YAPC::Europe Foundation -- http://www.yapceurope.org/ > > Member of OSDC.fr -- http://osdc.fr/ > > > > _______________________________________________ > > Act mailing list > > Act at mongueurs.net > > http://listes.mongueurs.net/mailman/listinfo/act > > > _______________________________________________ > Act mailing list > Act at mongueurs.net > http://listes.mongueurs.net/mailman/listinfo/act > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From toddr at cpanel.net Wed Jun 21 14:01:20 2017 From: toddr at cpanel.net (Todd E Rinaldo) Date: Wed, 21 Jun 2017 07:01:20 -0500 Subject: [Act] www.yapcna.org redirect In-Reply-To: References: <036f57c9-c613-c7c6-5c08-d5266c013d80@boivin.eu> <95DCFF38-9D30-4F5E-B974-F60C09B6375D@cpanel.net> Message-ID: <32C7870C-CCF5-4095-AA95-D639C0CCD97C@cpanel.net> Barbie, There is no ACT site this year > On Jun 21, 2017, at 4:41 AM, Barbie wrote: > > Hi guys, > > Following on from this I'm not able to access anything for the conference surveys, due to the URL and code name changes. I've tried a few combinations and was expecting the following to work: > > http://act.perlconference.org/tpc-2017-dc/api/get_attendees?api_key=<......> > > Can you let me know the correct URL for both get_attendees and get_talks, together with the correct codes for the US & EU conferences. > > Also do I need a new API Key? > > Cheers, > Barbie. > > > -- > Birmingham.pm - http://birmingham.pm.org > CPAN Testers - http://cpantesters.org > YAPC Surveys - http://yapc-surveys.org > Perl Jam - http://perljam.info > >> On Tue, May 30, 2017 at 5:09 PM, Todd Rinaldo wrote: >> Thank you! >> >> > On May 29, 2017, at 3:59 PM, L Boivin wrote: >> > >> > Sorry Todd. I forgot. My bad. >> > As I told on IRC, it's now done. >> > >> > Bye >> > Laurent >> > >> > On 27/05/2017 02:11, Todd Rinaldo wrote: >> >>> On May 14, 2017, at 11:14 AM, Todd Rinaldo > wrote: >> >>> >> >>> Hi, >> >>> >> >>> Could you please set the base URL redirect for www.yapcna.org to point to http://www.perlconference.us/tpc-2017-dc/ >> >>> >> >>> Thanks, >> >>> Todd >> >> Ping? I've not heard anything back. From what I can tell it's still pointing to last year's site: >> >> $>curl www.yapcna.org >> >> >> >> >> >> 301 Moved Permanently >> >> >> >>

Moved Permanently

>> >> The document has moved here.

>> >> >> >> Todd >> >> _______________________________________________ >> >> Act mailing list >> >> Act at mongueurs.net >> >> http://listes.mongueurs.net/mailman/listinfo/act >> > >> > >> > -- >> > Laurent Boivin -- mailto:elbeho at boivin.eu >> > Member of Mongueurs de Perl -- http://www.mongueurs.net/ >> > Member of YAPC::Europe Foundation -- http://www.yapceurope.org/ >> > Member of OSDC.fr -- http://osdc.fr/ >> > >> > _______________________________________________ >> > Act mailing list >> > Act at mongueurs.net >> > http://listes.mongueurs.net/mailman/listinfo/act >> >> >> _______________________________________________ >> Act mailing list >> Act at mongueurs.net >> http://listes.mongueurs.net/mailman/listinfo/act >> > > _______________________________________________ > Act mailing list > Act at mongueurs.net > http://listes.mongueurs.net/mailman/listinfo/act -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2364 bytes Desc: not available URL: From dan at dwright.org Wed Jun 21 20:08:04 2017 From: dan at dwright.org (Daniel Wright) Date: Wed, 21 Jun 2017 14:08:04 -0400 Subject: [Act] www.yapcna.org redirect In-Reply-To: <32C7870C-CCF5-4095-AA95-D639C0CCD97C@cpanel.net> References: <036f57c9-c613-c7c6-5c08-d5266c013d80@boivin.eu> <95DCFF38-9D30-4F5E-B974-F60C09B6375D@cpanel.net> <32C7870C-CCF5-4095-AA95-D639C0CCD97C@cpanel.net> Message-ID: Barbie, They are using EventBrite for event registration this year. If I got you a CSV export of name, email, would that be sufficient to at least send out the general event survey? -Dan > On Jun 21, 2017, at 8:01 AM, Todd E Rinaldo wrote: > > Barbie, > > There is no ACT site this year > > On Jun 21, 2017, at 4:41 AM, Barbie > wrote: > >> Hi guys, >> >> Following on from this I'm not able to access anything for the conference surveys, due to the URL and code name changes. I've tried a few combinations and was expecting the following to work: >> >> http://act.perlconference.org/tpc-2017-dc/api/get_attendees?api_key= <......> >> >> Can you let me know the correct URL for both get_attendees and get_talks, together with the correct codes for the US & EU conferences. >> >> Also do I need a new API Key? >> >> Cheers, >> Barbie. >> >> >> -- >> Birmingham.pm - http://birmingham.pm.org >> CPAN Testers - http://cpantesters.org >> YAPC Surveys - http://yapc-surveys.org >> Perl Jam - http://perljam.info >> >> On Tue, May 30, 2017 at 5:09 PM, Todd Rinaldo > wrote: >> Thank you! >> >> > On May 29, 2017, at 3:59 PM, L Boivin > wrote: >> > >> > Sorry Todd. I forgot. My bad. >> > As I told on IRC, it's now done. >> > >> > Bye >> > Laurent >> > >> > On 27/05/2017 02:11, Todd Rinaldo wrote: >> >>> On May 14, 2017, at 11:14 AM, Todd Rinaldo >> wrote: >> >>> >> >>> Hi, >> >>> >> >>> Could you please set the base URL redirect for www.yapcna.org > to point to http://www.perlconference.us/tpc-2017-dc/ >> >>> >> >>> Thanks, >> >>> Todd >> >> Ping? I've not heard anything back. From what I can tell it's still pointing to last year's site: >> >> $>curl www.yapcna.org > >> >> >> >> >> >> 301 Moved Permanently >> >> >> >>

Moved Permanently

>> >> The document has moved here.

>> >> >> >> Todd >> >> _______________________________________________ >> >> Act mailing list >> >> Act at mongueurs.net >> >> http://listes.mongueurs.net/mailman/listinfo/act >> > >> > >> > -- >> > Laurent Boivin -- mailto:elbeho at boivin.eu >> > Member of Mongueurs de Perl -- http://www.mongueurs.net/ >> > Member of YAPC::Europe Foundation -- http://www.yapceurope.org/ >> > Member of OSDC.fr -- http://osdc.fr/ >> > >> > _______________________________________________ >> > Act mailing list >> > Act at mongueurs.net >> > http://listes.mongueurs.net/mailman/listinfo/act >> >> >> _______________________________________________ >> Act mailing list >> Act at mongueurs.net >> http://listes.mongueurs.net/mailman/listinfo/act >> >> >> _______________________________________________ >> Act mailing list >> Act at mongueurs.net >> http://listes.mongueurs.net/mailman/listinfo/act > _______________________________________________ > Act mailing list > Act at mongueurs.net > http://listes.mongueurs.net/mailman/listinfo/act -------------- section suivante -------------- Une pi?ce jointe HTML a ?t? nettoy?e... URL: From barbie at missbarbell.co.uk Wed Jun 21 21:07:54 2017 From: barbie at missbarbell.co.uk (Barbie) Date: Wed, 21 Jun 2017 20:07:54 +0100 Subject: [Act] www.yapcna.org redirect In-Reply-To: References: <036f57c9-c613-c7c6-5c08-d5266c013d80@boivin.eu> <95DCFF38-9D30-4F5E-B974-F60C09B6375D@cpanel.net> <32C7870C-CCF5-4095-AA95-D639C0CCD97C@cpanel.net> Message-ID: Hi Dan, No worries, Brock has sorted me out with the needed data. Hopefully have it all running shortly. Cheers, Barbie. -- Birmingham.pm - http://birmingham.pm.org CPAN Testers - http://cpantesters.org YAPC Surveys - http://yapc-surveys.org Perl Jam - http://perljam.info On Wed, Jun 21, 2017 at 7:08 PM, Daniel Wright wrote: > Barbie, > > They are using EventBrite for event registration this year. If I got > you a CSV export of name, email, would that be sufficient to at least send > out the general event survey? > > -Dan > > > > On Jun 21, 2017, at 8:01 AM, Todd E Rinaldo wrote: > > Barbie, > > There is no ACT site this year > > On Jun 21, 2017, at 4:41 AM, Barbie wrote: > > Hi guys, > > Following on from this I'm not able to access anything for the conference > surveys, due to the URL and code name changes. I've tried a few > combinations and was expecting the following to work: > > http://act.perlconference.org/tpc-2017-dc/api/get_attendees?api_key= > <......> > > Can you let me know the correct URL for both get_attendees and get_talks, > together with the correct codes for the US & EU conferences. > > Also do I need a new API Key? > > Cheers, > Barbie. > > -- > Birmingham.pm - http://birmingham.pm.org > CPAN Testers - http://cpantesters.org > YAPC Surveys - http://yapc-surveys.org > Perl Jam - http://perljam.info > > On Tue, May 30, 2017 at 5:09 PM, Todd Rinaldo wrote: > >> Thank you! >> >> > On May 29, 2017, at 3:59 PM, L Boivin wrote: >> > >> > Sorry Todd. I forgot. My bad. >> > As I told on IRC, it's now done. >> > >> > Bye >> > Laurent >> > >> > On 27/05/2017 02:11, Todd Rinaldo wrote: >> >>> On May 14, 2017, at 11:14 AM, Todd Rinaldo > toddr at cpanel.net>> wrote: >> >>> >> >>> Hi, >> >>> >> >>> Could you please set the base URL redirect for www.yapcna.org < >> http://www.yapcna.org> to point to http://www.perlconference.us/t >> pc-2017-dc/ >> >>> >> >>> Thanks, >> >>> Todd >> >> Ping? I've not heard anything back. From what I can tell it's still >> pointing to last year's site: >> >> $>curl www.yapcna.org >> >> >> >> >> >> 301 Moved Permanently >> >> >> >>

Moved Permanently

>> >> The document has moved here.

>> >> >> >> Todd >> >> _______________________________________________ >> >> Act mailing list >> >> Act at mongueurs.net >> >> http://listes.mongueurs.net/mailman/listinfo/act >> > >> > >> > -- >> > Laurent Boivin -- mailto:elbeho at boivin.eu >> > Member of Mongueurs de Perl -- http://www.mongueurs.net/ >> > Member of YAPC::Europe Foundation -- http://www.yapceurope.org/ >> > Member of OSDC.fr -- >> http://osdc.fr/ >> > >> > _______________________________________________ >> > Act mailing list >> > Act at mongueurs.net >> > http://listes.mongueurs.net/mailman/listinfo/act >> >> >> _______________________________________________ >> Act mailing list >> Act at mongueurs.net >> http://listes.mongueurs.net/mailman/listinfo/act >> >> > _______________________________________________ > Act mailing list > Act at mongueurs.net > http://listes.mongueurs.net/mailman/listinfo/act > > _______________________________________________ > Act mailing list > Act at mongueurs.net > http://listes.mongueurs.net/mailman/listinfo/act > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From philippe.bruhat at free.fr Fri Jun 23 00:57:10 2017 From: philippe.bruhat at free.fr (Philippe Bruhat (BooK)) Date: Fri, 23 Jun 2017 00:57:10 +0200 Subject: [Act] Double-registrations and non-existing users? In-Reply-To: <8408cc19-8ffd-dfb8-02a3-2de3f28df129@boivin.eu> References: <7868583a-05cb-5c98-079f-d56b03d41b47@frankfurt.pm> <8FC85F22-8416-4577-B1F3-FB4940A07207@gmail.com> <8408cc19-8ffd-dfb8-02a3-2de3f28df129@boivin.eu> Message-ID: <20170622225710.r7n3omk3mlcw7yh6@zok> On Mon, Jun 19, 2017 at 10:41:22PM +0200, Laurent Boivin wrote: > Hi, > > I' aware of the pb. > It is in my todo list. > I hope we can do something very soon. > Laurent and myself did a remote pair programming session, and found the bug, which we fixed. We also cleaned the production database of all duplicates. -- Philippe Bruhat (BooK) Wisdom cannot be bought. It can, at best, be rented until you can find your own. (Moral from Groo The Wanderer #66 (Epic)) From elbeho at boivin.eu Fri Jun 23 00:57:41 2017 From: elbeho at boivin.eu (L Boivin) Date: Fri, 23 Jun 2017 00:57:41 +0200 Subject: [Act] Double-registrations and non-existing users? In-Reply-To: <8408cc19-8ffd-dfb8-02a3-2de3f28df129@boivin.eu> References: <7868583a-05cb-5c98-079f-d56b03d41b47@frankfurt.pm> <8FC85F22-8416-4577-B1F3-FB4940A07207@gmail.com> <8408cc19-8ffd-dfb8-02a3-2de3f28df129@boivin.eu> Message-ID: <05f81839-9846-bc25-89b1-295aa492518c@boivin.eu> Hi guys, The bug has been found, fixed, tested and push in prod. Prod database has been cleaned. It should be OK. Let us know if it's not. Kind Regards BooK and elbeho On 19/06/2017 22:41, L Boivin wrote: > Hi, > > I' aware of the pb. > It is in my todo list. > I hope we can do something very soon. > > Laurent > > On 15/06/2017 21:42, Theo van Hoesel wrote: >> it is an issue with The Perl Conference in Amsterdam as well >> >> but among all other annoyances, this one got on the TODO list for us. >> >> you get double registrations, and double payments too --- according to >> the list >> >> >>> On 15 Jun 2017, at 20:04, Vorstand Frankfurt Perlmongers >>> wrote: >>> >>> Hello all, >>> >>> on our Act instance, I see People that are double-registered: >>> >>> http://act.yapc.eu/gpw2017/payments >>> >>> For example "Durrani Osman" (User 12111) >>> >>> But I cannot click on that user to see details, as I then get a 404 >>> error for >>> >>> http://act.yapc.eu/gpw2017/user/12111 >>> >>> The double-registration issue would be more important to me, as our >>> calculations and invoices are somewhat based on that list. But the >>> user information (or lack thereof) is also somewhat an issue for me >>> if I want to mail the speakers... >>> >>> -max >>> >>> -- >>> -- >>> Frankfurt Perlmongers >>> c/o Max Maischein >>> R?derbergweg 167 >>> 60385 Frankfurt >>> >>> UStId./VAT-Id: DE282955092 >>> >>> Vorstandsmitglieder >>> Ren?e B?cker - Wieland Pusch - Max Maischein >>> >>> _______________________________________________ >>> Act mailing list >>> Act at mongueurs.net >>> http://listes.mongueurs.net/mailman/listinfo/act -- Laurent Boivin -- mailto:elbeho at boivin.eu Member of Mongueurs de Perl -- http://www.mongueurs.net/ Member of YAPC::Europe Foundation -- http://www.yapceurope.org/ Member of OSDC.fr -- http://osdc.fr/ From vorstand at frankfurt.pm Fri Jun 23 09:13:19 2017 From: vorstand at frankfurt.pm (Vorstand Frankfurt Perlmongers) Date: Fri, 23 Jun 2017 09:13:19 +0200 Subject: [Act] Double-registrations and non-existing users? In-Reply-To: <05f81839-9846-bc25-89b1-295aa492518c@boivin.eu> References: <7868583a-05cb-5c98-079f-d56b03d41b47@frankfurt.pm> <8FC85F22-8416-4577-B1F3-FB4940A07207@gmail.com> <8408cc19-8ffd-dfb8-02a3-2de3f28df129@boivin.eu> <05f81839-9846-bc25-89b1-295aa492518c@boivin.eu> Message-ID: Hello elbeho and BooK! Indeed the DB looks good now Thank you very much for looking after this and fixing things! -max Am 23.06.2017 um 00:57 schrieb L Boivin: > Hi guys, > > The bug has been found, fixed, tested and push in prod. > Prod database has been cleaned. > > It should be OK. > Let us know if it's not. > > Kind Regards > BooK and elbeho > > > On 19/06/2017 22:41, L Boivin wrote: >> Hi, >> >> I' aware of the pb. >> It is in my todo list. >> I hope we can do something very soon. >> >> Laurent >> >> On 15/06/2017 21:42, Theo van Hoesel wrote: >>> it is an issue with The Perl Conference in Amsterdam as well >>> >>> but among all other annoyances, this one got on the TODO list for us. >>> >>> you get double registrations, and double payments too --- according >>> to the list >>> >>> >>>> On 15 Jun 2017, at 20:04, Vorstand Frankfurt Perlmongers >>>> wrote: >>>> >>>> Hello all, >>>> >>>> on our Act instance, I see People that are double-registered: >>>> >>>> http://act.yapc.eu/gpw2017/payments >>>> >>>> For example "Durrani Osman" (User 12111) >>>> >>>> But I cannot click on that user to see details, as I then get a 404 >>>> error for >>>> >>>> http://act.yapc.eu/gpw2017/user/12111 >>>> >>>> The double-registration issue would be more important to me, as our >>>> calculations and invoices are somewhat based on that list. But the >>>> user information (or lack thereof) is also somewhat an issue for me >>>> if I want to mail the speakers... >>>> >>>> -max >>>> >>>> -- >>>> -- >>>> Frankfurt Perlmongers >>>> c/o Max Maischein >>>> R?derbergweg 167 >>>> 60385 Frankfurt >>>> >>>> UStId./VAT-Id: DE282955092 >>>> >>>> Vorstandsmitglieder >>>> Ren?e B?cker - Wieland Pusch - Max Maischein >>>> >>>> _______________________________________________ >>>> Act mailing list >>>> Act at mongueurs.net >>>> http://listes.mongueurs.net/mailman/listinfo/act > > > -- -- Frankfurt Perlmongers c/o Max Maischein R?derbergweg 167 60385 Frankfurt UStId./VAT-Id: DE282955092 Vorstandsmitglieder Ren?e B?cker - Wieland Pusch - Max Maischein From leejo.65535 at gmail.com Fri Jun 30 15:37:50 2017 From: leejo.65535 at gmail.com (Lee J) Date: Fri, 30 Jun 2017 15:37:50 +0200 Subject: [Act] github Act-Conferences perms for leejo Message-ID: Hi all, Pete has managed to rope me into sorting out the lpw2017 ACT site (didn't take much TBH). I need to create a repo in the Act-Conferences org on github but don't have perms to do that - could someone take a look (github user: leejo, I'm already part of the org). Also - is there anything that needs to happen to get the test site/db/etc up? Other than creating the repo under Act-Conferences and then pushing the mater branch out? Cheers! Lee. Lee A Johnson https://leejo.github.io -------------- next part -------------- An HTML attachment was scrubbed... URL: