Re: [Kicad-developers] Developer doc web page down

2019-05-15 Thread Andrew Lutsenko
Seet, thanks Nick
Those graphs are quite handy.

On Wed, May 15, 2019 at 2:25 PM Nick Østergaard  wrote:

> Fixed.
>
> On Wed, 15 May 2019 at 16:56, Nick Østergaard  wrote:
> >
> > Hi Andrew
> >
> > I can confirm that the png's are not available.
> >
> > The doxygen stuff is built in
> >
> https://github.com/KiCad/kicad-doc-website/blob/master/.docker/Dockerfile.kicad-doc-doxygen
> >
> > It is clear from the docker image, that the images are indeed missing.
> > docker run -it kicadeda/kicad-docs-website ash -c 'find
> > /usr/share/nginx/html/doxygen-python  -name "*png"'
> >
> > It looks like the kicad build script is buggy or I call the wrong make
> targets.
> >
> > make doxygen-docs
> > make doxygen-python
> >
> > It looks like some dependencies are unstable? Sometimes I get
> > ../build/pcbnew/doxygen-python and sometimes not...
> >
> > If we do inspect the kicad-doc-doxygen image with a Dockerfile as:
> > FROM busybox
> > FROM kicadeda/kicad-doc-doxygen:master
> > COPY --from=0 / /
> >
> > And run with:
> > docker run -it  sh -c "ls doxygen-python_html |grep
> png"
> >
> > We don't see the class png images.
> >
> > I guess we should continue this on the bug tracker.
> > https://github.com/KiCad/kicad-doc-website/issues/21
> >
> > Nick
> >
> >
> > On Fri, 10 May 2019 at 22:44, Andrew Lutsenko 
> wrote:
> > >
> > > Hi Nick,
> > > Any chance you can get pictures in python docs fixed too? Like
> inheritance graph here
> > >
> http://docs.kicad-pcb.org/doxygen-python/classpcbnew_1_1BOARD__ITEM.html
> > > This has been broken for a while.
> > >
> > > On Fri, May 10, 2019 at 7:59 AM Nick Østergaard 
> wrote:
> > >>
> > >> Disclamier: I disabled the auto update for now as the change is not
> merged pending review. I will fix it after the weekend.
> > >>
> > >> fre. 10. maj 2019 16.54 skrev Jon Evans :
> > >>>
> > >>> Thanks, Nick!
> > >>>
> > >>> On Thu, May 9, 2019 at 4:38 PM Nick Østergaard 
> wrote:
> > 
> >  It should work now, and it may also be a bit more responsive.
> > 
> >  On Thu, 9 May 2019 at 16:16, Nick Østergaard 
> wrote:
> >  >
> >  > I know. I will report back when it works.
> >  >
> >  > tor. 9. maj 2019 16.15 skrev Jon Evans :
> >  >>
> >  >> Still down
> >  >>
> >  >> On Wed, May 8, 2019 at 3:27 PM Wayne Stambaugh <
> stambau...@gmail.com> wrote:
> >  >>>
> >  >>> Still no luck :(
> >  >>>
> >  >>> On 5/8/19 10:12 AM, Nick Østergaard wrote:
> >  >>> > Ok, thank you for the notification.
> >  >>> >
> >  >>> > It looks like the publish job jot stuck in a retry loop, I
> have
> >  >>> > restarted it and it should be back within half an hour I hope.
> >  >>> >
> >  >>> > On Wed, 8 May 2019 at 15:15, Ben Hest 
> wrote:
> >  >>> >>
> >  >>> >> It's down for me.
> >  >>> >>
> >  >>> >> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh <
> stambau...@gmail.com> wrote:
> >  >>> >>>
> >  >>> >>> Can anyone else get to the developers doc web page?  I
> still getting a
> >  >>> >>> 504 Gateway Time-out error since yesterday afternoon.  I am
> in the
> >  >>> >>> process of finishing up the v6 road map along with some
> other developer
> >  >>> >>> doc updates and I wanted to see if anything else needed
> updating.  Any
> >  >>> >>> help would be appreciated.
> >  >>> >>>
> >  >>> >>> Cheers,
> >  >>> >>>
> >  >>> >>> Wayne
> >  >>> >>>
> >  >>> >>> ___
> >  >>> >>> Mailing list: https://launchpad.net/~kicad-developers
> >  >>> >>> Post to : kicad-developers@lists.launchpad.net
> >  >>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
> >  >>> >>> More help   : https://help.launchpad.net/ListHelp
> >  >>> >>
> >  >>> >>
> >  >>> >>
> >  >>> >> --
> >  >>> >>
> >  >>> >> -Ben
> >  >>> >> ___
> >  >>> >> Mailing list: https://launchpad.net/~kicad-developers
> >  >>> >> Post to : kicad-developers@lists.launchpad.net
> >  >>> >> Unsubscribe : https://launchpad.net/~kicad-developers
> >  >>> >> More help   : https://help.launchpad.net/ListHelp
> >  >>>
> >  >>> ___
> >  >>> Mailing list: https://launchpad.net/~kicad-developers
> >  >>> Post to : kicad-developers@lists.launchpad.net
> >  >>> Unsubscribe : https://launchpad.net/~kicad-developers
> >  >>> More help   : https://help.launchpad.net/ListHelp
> > >>
> > >> ___
> > >> Mailing list: https://launchpad.net/~kicad-developers
> > >> Post to : kicad-developers@lists.launchpad.net
> > >> Unsubscribe : https://launchpad.net/~kicad-developers
> > >> More help   : https://help.launchpad.net/ListHelp
>
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : 

Re: [Kicad-developers] Developer doc web page down

2019-05-15 Thread Nick Østergaard
Fixed.

On Wed, 15 May 2019 at 16:56, Nick Østergaard  wrote:
>
> Hi Andrew
>
> I can confirm that the png's are not available.
>
> The doxygen stuff is built in
> https://github.com/KiCad/kicad-doc-website/blob/master/.docker/Dockerfile.kicad-doc-doxygen
>
> It is clear from the docker image, that the images are indeed missing.
> docker run -it kicadeda/kicad-docs-website ash -c 'find
> /usr/share/nginx/html/doxygen-python  -name "*png"'
>
> It looks like the kicad build script is buggy or I call the wrong make 
> targets.
>
> make doxygen-docs
> make doxygen-python
>
> It looks like some dependencies are unstable? Sometimes I get
> ../build/pcbnew/doxygen-python and sometimes not...
>
> If we do inspect the kicad-doc-doxygen image with a Dockerfile as:
> FROM busybox
> FROM kicadeda/kicad-doc-doxygen:master
> COPY --from=0 / /
>
> And run with:
> docker run -it  sh -c "ls doxygen-python_html |grep png"
>
> We don't see the class png images.
>
> I guess we should continue this on the bug tracker.
> https://github.com/KiCad/kicad-doc-website/issues/21
>
> Nick
>
>
> On Fri, 10 May 2019 at 22:44, Andrew Lutsenko  wrote:
> >
> > Hi Nick,
> > Any chance you can get pictures in python docs fixed too? Like inheritance 
> > graph here
> > http://docs.kicad-pcb.org/doxygen-python/classpcbnew_1_1BOARD__ITEM.html
> > This has been broken for a while.
> >
> > On Fri, May 10, 2019 at 7:59 AM Nick Østergaard  wrote:
> >>
> >> Disclamier: I disabled the auto update for now as the change is not merged 
> >> pending review. I will fix it after the weekend.
> >>
> >> fre. 10. maj 2019 16.54 skrev Jon Evans :
> >>>
> >>> Thanks, Nick!
> >>>
> >>> On Thu, May 9, 2019 at 4:38 PM Nick Østergaard  wrote:
> 
>  It should work now, and it may also be a bit more responsive.
> 
>  On Thu, 9 May 2019 at 16:16, Nick Østergaard  wrote:
>  >
>  > I know. I will report back when it works.
>  >
>  > tor. 9. maj 2019 16.15 skrev Jon Evans :
>  >>
>  >> Still down
>  >>
>  >> On Wed, May 8, 2019 at 3:27 PM Wayne Stambaugh  
>  >> wrote:
>  >>>
>  >>> Still no luck :(
>  >>>
>  >>> On 5/8/19 10:12 AM, Nick Østergaard wrote:
>  >>> > Ok, thank you for the notification.
>  >>> >
>  >>> > It looks like the publish job jot stuck in a retry loop, I have
>  >>> > restarted it and it should be back within half an hour I hope.
>  >>> >
>  >>> > On Wed, 8 May 2019 at 15:15, Ben Hest  
>  >>> > wrote:
>  >>> >>
>  >>> >> It's down for me.
>  >>> >>
>  >>> >> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh 
>  >>> >>  wrote:
>  >>> >>>
>  >>> >>> Can anyone else get to the developers doc web page?  I still 
>  >>> >>> getting a
>  >>> >>> 504 Gateway Time-out error since yesterday afternoon.  I am in 
>  >>> >>> the
>  >>> >>> process of finishing up the v6 road map along with some other 
>  >>> >>> developer
>  >>> >>> doc updates and I wanted to see if anything else needed 
>  >>> >>> updating.  Any
>  >>> >>> help would be appreciated.
>  >>> >>>
>  >>> >>> Cheers,
>  >>> >>>
>  >>> >>> Wayne
>  >>> >>>
>  >>> >>> ___
>  >>> >>> Mailing list: https://launchpad.net/~kicad-developers
>  >>> >>> Post to : kicad-developers@lists.launchpad.net
>  >>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
>  >>> >>> More help   : https://help.launchpad.net/ListHelp
>  >>> >>
>  >>> >>
>  >>> >>
>  >>> >> --
>  >>> >>
>  >>> >> -Ben
>  >>> >> ___
>  >>> >> Mailing list: https://launchpad.net/~kicad-developers
>  >>> >> Post to : kicad-developers@lists.launchpad.net
>  >>> >> Unsubscribe : https://launchpad.net/~kicad-developers
>  >>> >> More help   : https://help.launchpad.net/ListHelp
>  >>>
>  >>> ___
>  >>> Mailing list: https://launchpad.net/~kicad-developers
>  >>> Post to : kicad-developers@lists.launchpad.net
>  >>> Unsubscribe : https://launchpad.net/~kicad-developers
>  >>> More help   : https://help.launchpad.net/ListHelp
> >>
> >> ___
> >> Mailing list: https://launchpad.net/~kicad-developers
> >> Post to : kicad-developers@lists.launchpad.net
> >> Unsubscribe : https://launchpad.net/~kicad-developers
> >> More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-15 Thread Nick Østergaard
Hi Andrew

I can confirm that the png's are not available.

The doxygen stuff is built in
https://github.com/KiCad/kicad-doc-website/blob/master/.docker/Dockerfile.kicad-doc-doxygen

It is clear from the docker image, that the images are indeed missing.
docker run -it kicadeda/kicad-docs-website ash -c 'find
/usr/share/nginx/html/doxygen-python  -name "*png"'

It looks like the kicad build script is buggy or I call the wrong make targets.

make doxygen-docs
make doxygen-python

It looks like some dependencies are unstable? Sometimes I get
../build/pcbnew/doxygen-python and sometimes not...

If we do inspect the kicad-doc-doxygen image with a Dockerfile as:
FROM busybox
FROM kicadeda/kicad-doc-doxygen:master
COPY --from=0 / /

And run with:
docker run -it  sh -c "ls doxygen-python_html |grep png"

We don't see the class png images.

I guess we should continue this on the bug tracker.
https://github.com/KiCad/kicad-doc-website/issues/21

Nick


On Fri, 10 May 2019 at 22:44, Andrew Lutsenko  wrote:
>
> Hi Nick,
> Any chance you can get pictures in python docs fixed too? Like inheritance 
> graph here
> http://docs.kicad-pcb.org/doxygen-python/classpcbnew_1_1BOARD__ITEM.html
> This has been broken for a while.
>
> On Fri, May 10, 2019 at 7:59 AM Nick Østergaard  wrote:
>>
>> Disclamier: I disabled the auto update for now as the change is not merged 
>> pending review. I will fix it after the weekend.
>>
>> fre. 10. maj 2019 16.54 skrev Jon Evans :
>>>
>>> Thanks, Nick!
>>>
>>> On Thu, May 9, 2019 at 4:38 PM Nick Østergaard  wrote:

 It should work now, and it may also be a bit more responsive.

 On Thu, 9 May 2019 at 16:16, Nick Østergaard  wrote:
 >
 > I know. I will report back when it works.
 >
 > tor. 9. maj 2019 16.15 skrev Jon Evans :
 >>
 >> Still down
 >>
 >> On Wed, May 8, 2019 at 3:27 PM Wayne Stambaugh  
 >> wrote:
 >>>
 >>> Still no luck :(
 >>>
 >>> On 5/8/19 10:12 AM, Nick Østergaard wrote:
 >>> > Ok, thank you for the notification.
 >>> >
 >>> > It looks like the publish job jot stuck in a retry loop, I have
 >>> > restarted it and it should be back within half an hour I hope.
 >>> >
 >>> > On Wed, 8 May 2019 at 15:15, Ben Hest  wrote:
 >>> >>
 >>> >> It's down for me.
 >>> >>
 >>> >> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh 
 >>> >>  wrote:
 >>> >>>
 >>> >>> Can anyone else get to the developers doc web page?  I still 
 >>> >>> getting a
 >>> >>> 504 Gateway Time-out error since yesterday afternoon.  I am in the
 >>> >>> process of finishing up the v6 road map along with some other 
 >>> >>> developer
 >>> >>> doc updates and I wanted to see if anything else needed updating.  
 >>> >>> Any
 >>> >>> help would be appreciated.
 >>> >>>
 >>> >>> Cheers,
 >>> >>>
 >>> >>> Wayne
 >>> >>>
 >>> >>> ___
 >>> >>> Mailing list: https://launchpad.net/~kicad-developers
 >>> >>> Post to : kicad-developers@lists.launchpad.net
 >>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
 >>> >>> More help   : https://help.launchpad.net/ListHelp
 >>> >>
 >>> >>
 >>> >>
 >>> >> --
 >>> >>
 >>> >> -Ben
 >>> >> ___
 >>> >> Mailing list: https://launchpad.net/~kicad-developers
 >>> >> Post to : kicad-developers@lists.launchpad.net
 >>> >> Unsubscribe : https://launchpad.net/~kicad-developers
 >>> >> More help   : https://help.launchpad.net/ListHelp
 >>>
 >>> ___
 >>> Mailing list: https://launchpad.net/~kicad-developers
 >>> Post to : kicad-developers@lists.launchpad.net
 >>> Unsubscribe : https://launchpad.net/~kicad-developers
 >>> More help   : https://help.launchpad.net/ListHelp
>>
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-10 Thread Andrew Lutsenko
Hi Nick,
Any chance you can get pictures in python docs fixed too? Like inheritance
graph here
http://docs.kicad-pcb.org/doxygen-python/classpcbnew_1_1BOARD__ITEM.html
This has been broken for a while.

On Fri, May 10, 2019 at 7:59 AM Nick Østergaard  wrote:

> Disclamier: I disabled the auto update for now as the change is not merged
> pending review. I will fix it after the weekend.
>
> fre. 10. maj 2019 16.54 skrev Jon Evans :
>
>> Thanks, Nick!
>>
>> On Thu, May 9, 2019 at 4:38 PM Nick Østergaard  wrote:
>>
>>> It should work now, and it may also be a bit more responsive.
>>>
>>> On Thu, 9 May 2019 at 16:16, Nick Østergaard  wrote:
>>> >
>>> > I know. I will report back when it works.
>>> >
>>> > tor. 9. maj 2019 16.15 skrev Jon Evans :
>>> >>
>>> >> Still down
>>> >>
>>> >> On Wed, May 8, 2019 at 3:27 PM Wayne Stambaugh 
>>> wrote:
>>> >>>
>>> >>> Still no luck :(
>>> >>>
>>> >>> On 5/8/19 10:12 AM, Nick Østergaard wrote:
>>> >>> > Ok, thank you for the notification.
>>> >>> >
>>> >>> > It looks like the publish job jot stuck in a retry loop, I have
>>> >>> > restarted it and it should be back within half an hour I hope.
>>> >>> >
>>> >>> > On Wed, 8 May 2019 at 15:15, Ben Hest 
>>> wrote:
>>> >>> >>
>>> >>> >> It's down for me.
>>> >>> >>
>>> >>> >> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh <
>>> stambau...@gmail.com> wrote:
>>> >>> >>>
>>> >>> >>> Can anyone else get to the developers doc web page?  I still
>>> getting a
>>> >>> >>> 504 Gateway Time-out error since yesterday afternoon.  I am in
>>> the
>>> >>> >>> process of finishing up the v6 road map along with some other
>>> developer
>>> >>> >>> doc updates and I wanted to see if anything else needed
>>> updating.  Any
>>> >>> >>> help would be appreciated.
>>> >>> >>>
>>> >>> >>> Cheers,
>>> >>> >>>
>>> >>> >>> Wayne
>>> >>> >>>
>>> >>> >>> ___
>>> >>> >>> Mailing list: https://launchpad.net/~kicad-developers
>>> >>> >>> Post to : kicad-developers@lists.launchpad.net
>>> >>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
>>> >>> >>> More help   : https://help.launchpad.net/ListHelp
>>> >>> >>
>>> >>> >>
>>> >>> >>
>>> >>> >> --
>>> >>> >>
>>> >>> >> -Ben
>>> >>> >> ___
>>> >>> >> Mailing list: https://launchpad.net/~kicad-developers
>>> >>> >> Post to : kicad-developers@lists.launchpad.net
>>> >>> >> Unsubscribe : https://launchpad.net/~kicad-developers
>>> >>> >> More help   : https://help.launchpad.net/ListHelp
>>> >>>
>>> >>> ___
>>> >>> Mailing list: https://launchpad.net/~kicad-developers
>>> >>> Post to : kicad-developers@lists.launchpad.net
>>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
>>> >>> More help   : https://help.launchpad.net/ListHelp
>>>
>> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
>
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-10 Thread Nick Østergaard
Disclamier: I disabled the auto update for now as the change is not merged
pending review. I will fix it after the weekend.

fre. 10. maj 2019 16.54 skrev Jon Evans :

> Thanks, Nick!
>
> On Thu, May 9, 2019 at 4:38 PM Nick Østergaard  wrote:
>
>> It should work now, and it may also be a bit more responsive.
>>
>> On Thu, 9 May 2019 at 16:16, Nick Østergaard  wrote:
>> >
>> > I know. I will report back when it works.
>> >
>> > tor. 9. maj 2019 16.15 skrev Jon Evans :
>> >>
>> >> Still down
>> >>
>> >> On Wed, May 8, 2019 at 3:27 PM Wayne Stambaugh 
>> wrote:
>> >>>
>> >>> Still no luck :(
>> >>>
>> >>> On 5/8/19 10:12 AM, Nick Østergaard wrote:
>> >>> > Ok, thank you for the notification.
>> >>> >
>> >>> > It looks like the publish job jot stuck in a retry loop, I have
>> >>> > restarted it and it should be back within half an hour I hope.
>> >>> >
>> >>> > On Wed, 8 May 2019 at 15:15, Ben Hest 
>> wrote:
>> >>> >>
>> >>> >> It's down for me.
>> >>> >>
>> >>> >> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh <
>> stambau...@gmail.com> wrote:
>> >>> >>>
>> >>> >>> Can anyone else get to the developers doc web page?  I still
>> getting a
>> >>> >>> 504 Gateway Time-out error since yesterday afternoon.  I am in the
>> >>> >>> process of finishing up the v6 road map along with some other
>> developer
>> >>> >>> doc updates and I wanted to see if anything else needed
>> updating.  Any
>> >>> >>> help would be appreciated.
>> >>> >>>
>> >>> >>> Cheers,
>> >>> >>>
>> >>> >>> Wayne
>> >>> >>>
>> >>> >>> ___
>> >>> >>> Mailing list: https://launchpad.net/~kicad-developers
>> >>> >>> Post to : kicad-developers@lists.launchpad.net
>> >>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
>> >>> >>> More help   : https://help.launchpad.net/ListHelp
>> >>> >>
>> >>> >>
>> >>> >>
>> >>> >> --
>> >>> >>
>> >>> >> -Ben
>> >>> >> ___
>> >>> >> Mailing list: https://launchpad.net/~kicad-developers
>> >>> >> Post to : kicad-developers@lists.launchpad.net
>> >>> >> Unsubscribe : https://launchpad.net/~kicad-developers
>> >>> >> More help   : https://help.launchpad.net/ListHelp
>> >>>
>> >>> ___
>> >>> Mailing list: https://launchpad.net/~kicad-developers
>> >>> Post to : kicad-developers@lists.launchpad.net
>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
>> >>> More help   : https://help.launchpad.net/ListHelp
>>
>
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-10 Thread Jon Evans
Thanks, Nick!

On Thu, May 9, 2019 at 4:38 PM Nick Østergaard  wrote:

> It should work now, and it may also be a bit more responsive.
>
> On Thu, 9 May 2019 at 16:16, Nick Østergaard  wrote:
> >
> > I know. I will report back when it works.
> >
> > tor. 9. maj 2019 16.15 skrev Jon Evans :
> >>
> >> Still down
> >>
> >> On Wed, May 8, 2019 at 3:27 PM Wayne Stambaugh 
> wrote:
> >>>
> >>> Still no luck :(
> >>>
> >>> On 5/8/19 10:12 AM, Nick Østergaard wrote:
> >>> > Ok, thank you for the notification.
> >>> >
> >>> > It looks like the publish job jot stuck in a retry loop, I have
> >>> > restarted it and it should be back within half an hour I hope.
> >>> >
> >>> > On Wed, 8 May 2019 at 15:15, Ben Hest  wrote:
> >>> >>
> >>> >> It's down for me.
> >>> >>
> >>> >> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh <
> stambau...@gmail.com> wrote:
> >>> >>>
> >>> >>> Can anyone else get to the developers doc web page?  I still
> getting a
> >>> >>> 504 Gateway Time-out error since yesterday afternoon.  I am in the
> >>> >>> process of finishing up the v6 road map along with some other
> developer
> >>> >>> doc updates and I wanted to see if anything else needed updating.
> Any
> >>> >>> help would be appreciated.
> >>> >>>
> >>> >>> Cheers,
> >>> >>>
> >>> >>> Wayne
> >>> >>>
> >>> >>> ___
> >>> >>> Mailing list: https://launchpad.net/~kicad-developers
> >>> >>> Post to : kicad-developers@lists.launchpad.net
> >>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
> >>> >>> More help   : https://help.launchpad.net/ListHelp
> >>> >>
> >>> >>
> >>> >>
> >>> >> --
> >>> >>
> >>> >> -Ben
> >>> >> ___
> >>> >> Mailing list: https://launchpad.net/~kicad-developers
> >>> >> Post to : kicad-developers@lists.launchpad.net
> >>> >> Unsubscribe : https://launchpad.net/~kicad-developers
> >>> >> More help   : https://help.launchpad.net/ListHelp
> >>>
> >>> ___
> >>> Mailing list: https://launchpad.net/~kicad-developers
> >>> Post to : kicad-developers@lists.launchpad.net
> >>> Unsubscribe : https://launchpad.net/~kicad-developers
> >>> More help   : https://help.launchpad.net/ListHelp
>
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-09 Thread Nick Østergaard
It should work now, and it may also be a bit more responsive.

On Thu, 9 May 2019 at 16:16, Nick Østergaard  wrote:
>
> I know. I will report back when it works.
>
> tor. 9. maj 2019 16.15 skrev Jon Evans :
>>
>> Still down
>>
>> On Wed, May 8, 2019 at 3:27 PM Wayne Stambaugh  wrote:
>>>
>>> Still no luck :(
>>>
>>> On 5/8/19 10:12 AM, Nick Østergaard wrote:
>>> > Ok, thank you for the notification.
>>> >
>>> > It looks like the publish job jot stuck in a retry loop, I have
>>> > restarted it and it should be back within half an hour I hope.
>>> >
>>> > On Wed, 8 May 2019 at 15:15, Ben Hest  wrote:
>>> >>
>>> >> It's down for me.
>>> >>
>>> >> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh  
>>> >> wrote:
>>> >>>
>>> >>> Can anyone else get to the developers doc web page?  I still getting a
>>> >>> 504 Gateway Time-out error since yesterday afternoon.  I am in the
>>> >>> process of finishing up the v6 road map along with some other developer
>>> >>> doc updates and I wanted to see if anything else needed updating.  Any
>>> >>> help would be appreciated.
>>> >>>
>>> >>> Cheers,
>>> >>>
>>> >>> Wayne
>>> >>>
>>> >>> ___
>>> >>> Mailing list: https://launchpad.net/~kicad-developers
>>> >>> Post to : kicad-developers@lists.launchpad.net
>>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
>>> >>> More help   : https://help.launchpad.net/ListHelp
>>> >>
>>> >>
>>> >>
>>> >> --
>>> >>
>>> >> -Ben
>>> >> ___
>>> >> Mailing list: https://launchpad.net/~kicad-developers
>>> >> Post to : kicad-developers@lists.launchpad.net
>>> >> Unsubscribe : https://launchpad.net/~kicad-developers
>>> >> More help   : https://help.launchpad.net/ListHelp
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~kicad-developers
>>> Post to : kicad-developers@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~kicad-developers
>>> More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-09 Thread Nick Østergaard
I know. I will report back when it works.

tor. 9. maj 2019 16.15 skrev Jon Evans :

> Still down
>
> On Wed, May 8, 2019 at 3:27 PM Wayne Stambaugh 
> wrote:
>
>> Still no luck :(
>>
>> On 5/8/19 10:12 AM, Nick Østergaard wrote:
>> > Ok, thank you for the notification.
>> >
>> > It looks like the publish job jot stuck in a retry loop, I have
>> > restarted it and it should be back within half an hour I hope.
>> >
>> > On Wed, 8 May 2019 at 15:15, Ben Hest  wrote:
>> >>
>> >> It's down for me.
>> >>
>> >> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh 
>> wrote:
>> >>>
>> >>> Can anyone else get to the developers doc web page?  I still getting a
>> >>> 504 Gateway Time-out error since yesterday afternoon.  I am in the
>> >>> process of finishing up the v6 road map along with some other
>> developer
>> >>> doc updates and I wanted to see if anything else needed updating.  Any
>> >>> help would be appreciated.
>> >>>
>> >>> Cheers,
>> >>>
>> >>> Wayne
>> >>>
>> >>> ___
>> >>> Mailing list: https://launchpad.net/~kicad-developers
>> >>> Post to : kicad-developers@lists.launchpad.net
>> >>> Unsubscribe : https://launchpad.net/~kicad-developers
>> >>> More help   : https://help.launchpad.net/ListHelp
>> >>
>> >>
>> >>
>> >> --
>> >>
>> >> -Ben
>> >> ___
>> >> Mailing list: https://launchpad.net/~kicad-developers
>> >> Post to : kicad-developers@lists.launchpad.net
>> >> Unsubscribe : https://launchpad.net/~kicad-developers
>> >> More help   : https://help.launchpad.net/ListHelp
>>
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp
>>
>
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-09 Thread Jon Evans
Still down

On Wed, May 8, 2019 at 3:27 PM Wayne Stambaugh  wrote:

> Still no luck :(
>
> On 5/8/19 10:12 AM, Nick Østergaard wrote:
> > Ok, thank you for the notification.
> >
> > It looks like the publish job jot stuck in a retry loop, I have
> > restarted it and it should be back within half an hour I hope.
> >
> > On Wed, 8 May 2019 at 15:15, Ben Hest  wrote:
> >>
> >> It's down for me.
> >>
> >> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh 
> wrote:
> >>>
> >>> Can anyone else get to the developers doc web page?  I still getting a
> >>> 504 Gateway Time-out error since yesterday afternoon.  I am in the
> >>> process of finishing up the v6 road map along with some other developer
> >>> doc updates and I wanted to see if anything else needed updating.  Any
> >>> help would be appreciated.
> >>>
> >>> Cheers,
> >>>
> >>> Wayne
> >>>
> >>> ___
> >>> Mailing list: https://launchpad.net/~kicad-developers
> >>> Post to : kicad-developers@lists.launchpad.net
> >>> Unsubscribe : https://launchpad.net/~kicad-developers
> >>> More help   : https://help.launchpad.net/ListHelp
> >>
> >>
> >>
> >> --
> >>
> >> -Ben
> >> ___
> >> Mailing list: https://launchpad.net/~kicad-developers
> >> Post to : kicad-developers@lists.launchpad.net
> >> Unsubscribe : https://launchpad.net/~kicad-developers
> >> More help   : https://help.launchpad.net/ListHelp
>
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
>
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-08 Thread Wayne Stambaugh
Still no luck :(

On 5/8/19 10:12 AM, Nick Østergaard wrote:
> Ok, thank you for the notification.
> 
> It looks like the publish job jot stuck in a retry loop, I have
> restarted it and it should be back within half an hour I hope.
> 
> On Wed, 8 May 2019 at 15:15, Ben Hest  wrote:
>>
>> It's down for me.
>>
>> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh  wrote:
>>>
>>> Can anyone else get to the developers doc web page?  I still getting a
>>> 504 Gateway Time-out error since yesterday afternoon.  I am in the
>>> process of finishing up the v6 road map along with some other developer
>>> doc updates and I wanted to see if anything else needed updating.  Any
>>> help would be appreciated.
>>>
>>> Cheers,
>>>
>>> Wayne
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~kicad-developers
>>> Post to : kicad-developers@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~kicad-developers
>>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>>
>> --
>>
>> -Ben
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-08 Thread Mark Roszko
Nick,

Perhaps it should it upload the files to a temp folder first and then do a
move operation to swap the site afterwards? That would reduce the chances
it gets stuck just uploading.

On Wed, May 8, 2019 at 10:12 AM Nick Østergaard  wrote:

> Ok, thank you for the notification.
>
> It looks like the publish job jot stuck in a retry loop, I have
> restarted it and it should be back within half an hour I hope.
>
> On Wed, 8 May 2019 at 15:15, Ben Hest  wrote:
> >
> > It's down for me.
> >
> > On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh 
> wrote:
> >>
> >> Can anyone else get to the developers doc web page?  I still getting a
> >> 504 Gateway Time-out error since yesterday afternoon.  I am in the
> >> process of finishing up the v6 road map along with some other developer
> >> doc updates and I wanted to see if anything else needed updating.  Any
> >> help would be appreciated.
> >>
> >> Cheers,
> >>
> >> Wayne
> >>
> >> ___
> >> Mailing list: https://launchpad.net/~kicad-developers
> >> Post to : kicad-developers@lists.launchpad.net
> >> Unsubscribe : https://launchpad.net/~kicad-developers
> >> More help   : https://help.launchpad.net/ListHelp
> >
> >
> >
> > --
> >
> > -Ben
> > ___
> > Mailing list: https://launchpad.net/~kicad-developers
> > Post to : kicad-developers@lists.launchpad.net
> > Unsubscribe : https://launchpad.net/~kicad-developers
> > More help   : https://help.launchpad.net/ListHelp
>
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
>


-- 
Mark
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-08 Thread Nick Østergaard
Ok, thank you for the notification.

It looks like the publish job jot stuck in a retry loop, I have
restarted it and it should be back within half an hour I hope.

On Wed, 8 May 2019 at 15:15, Ben Hest  wrote:
>
> It's down for me.
>
> On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh  wrote:
>>
>> Can anyone else get to the developers doc web page?  I still getting a
>> 504 Gateway Time-out error since yesterday afternoon.  I am in the
>> process of finishing up the v6 road map along with some other developer
>> doc updates and I wanted to see if anything else needed updating.  Any
>> help would be appreciated.
>>
>> Cheers,
>>
>> Wayne
>>
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp
>
>
>
> --
>
> -Ben
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-08 Thread Ben Hest
It's down for me.

On Wed, May 8, 2019 at 6:20 AM Wayne Stambaugh  wrote:

> Can anyone else get to the developers doc web page?  I still getting a
> 504 Gateway Time-out error since yesterday afternoon.  I am in the
> process of finishing up the v6 road map along with some other developer
> doc updates and I wanted to see if anything else needed updating.  Any
> help would be appreciated.
>
> Cheers,
>
> Wayne
>
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
>


-- 

-Ben
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Developer doc web page down

2019-05-08 Thread Jon Evans
It is down for me since yesterday at least. A user also reported it on the
forums.

On Wed, May 8, 2019, 07:20 Wayne Stambaugh  wrote:

> Can anyone else get to the developers doc web page?  I still getting a
> 504 Gateway Time-out error since yesterday afternoon.  I am in the
> process of finishing up the v6 road map along with some other developer
> doc updates and I wanted to see if anything else needed updating.  Any
> help would be appreciated.
>
> Cheers,
>
> Wayne
>
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
>
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


[Kicad-developers] Developer doc web page down

2019-05-08 Thread Wayne Stambaugh
Can anyone else get to the developers doc web page?  I still getting a
504 Gateway Time-out error since yesterday afternoon.  I am in the
process of finishing up the v6 road map along with some other developer
doc updates and I wanted to see if anything else needed updating.  Any
help would be appreciated.

Cheers,

Wayne

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp