GNOME GitLab instance slow?

2018-07-27 Thread Luca Bacci via gtk-devel-list
Hi, do you experience too general slowness in GNOME's GitLab?

In general the workflow is too sluggish and this gets a bit in the way.

But the real problem is that I'm not able to create a Merge Request. It
waits for about 30 seconds and fails with: "502 Whoops, GitLab is taking
too much time to respond."

Also I get errors in many places like "Error loading viewer", even though
everything seems to work fine!

I don't know if the problem is related to GitLab or the GNOME instance /
installation

Is it me or do you encounter these problems too?
Just to ask..

Thank You!
Luca
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: Combined search and combobox?

2018-07-27 Thread Reuben Rissler

On 07/27/2018 12:15 AM, Dov Grobgeld wrote:
Thanks. This is exactly what I was looking for! I didn't realize that 
a combobox can be attached to a model, and that a model can be filtered.

Gtk models are powerful, but with great power comes great complexity ;)


Imo multiple partial string match should be default behavior, which it 
is unfortunately not. E.g. inkscape only matches in the beginning of 
the string.

Agreed.


Is there a GNOME guide line about this?

Not that I have seen in my travels using Gtk.

I came up with this tool out of necessity for my accounting/small 
business system. I never gave it a thought somebody else would find it 
useful until your post to this mailing list. When you posted, I thought 
you might find this interesting. So would this be useful to a wider 
audience? I don't know if the Gtk devs would consider making a special 
combo with this feature, as it seems so easy to setup. After you know how :)


Glad to be of help,
Reuben
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: GNOME GitLab instance slow?

2018-07-27 Thread Tristan Van Berkom via gtk-devel-list
This is probably better on another list, maybe d-d-l, since this would effect 
everyone.

I can say that since 2 weeks ago, the gitlab.com instance seems to have 
deployed a huge and sluggish JS payload which brings my browser to a crawl, i 
dont know if we've opted into that update on the GNOME instance, though.

Cheers,
-Tristan

> On Jul 27, 2018, at 8:17 PM, Luca Bacci via gtk-devel-list 
>  wrote:
> 
> Hi, do you experience too general slowness in GNOME's GitLab?
> 
> In general the workflow is too sluggish and this gets a bit in the way.
> 
> But the real problem is that I'm not able to create a Merge Request. It waits 
> for about 30 seconds and fails with: "502 Whoops, GitLab is taking too much 
> time to respond."
> 
> Also I get errors in many places like "Error loading viewer", even though 
> everything seems to work fine!
> 
> I don't know if the problem is related to GitLab or the GNOME instance / 
> installation
> 
> Is it me or do you encounter these problems too?
> Just to ask..
> 
> Thank You!
> Luca
> ___
> gtk-devel-list mailing list
> gtk-devel-list@gnome.org
> https://mail.gnome.org/mailman/listinfo/gtk-devel-list

___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: GNOME GitLab instance slow?

2018-07-27 Thread Luca Bacci via gtk-devel-list
Thank you very much, Tristan. What is d-d-l?

In the meantime I have been able to push the Merge Request, but after
trying some times over three hours without success

Luca

2018-07-27 15:19 GMT+02:00 Tristan Van Berkom <
tristan.vanber...@codethink.co.uk>:

> This is probably better on another list, maybe d-d-l, since this would
> effect everyone.
>
> I can say that since 2 weeks ago, the gitlab.com instance seems to have
> deployed a huge and sluggish JS payload which brings my browser to a crawl,
> i dont know if we've opted into that update on the GNOME instance, though.
>
> Cheers,
> -Tristan
>
> > On Jul 27, 2018, at 8:17 PM, Luca Bacci via gtk-devel-list <
> gtk-devel-list@gnome.org> wrote:
> >
> > Hi, do you experience too general slowness in GNOME's GitLab?
> >
> > In general the workflow is too sluggish and this gets a bit in the way.
> >
> > But the real problem is that I'm not able to create a Merge Request. It
> waits for about 30 seconds and fails with: "502 Whoops, GitLab is taking
> too much time to respond."
> >
> > Also I get errors in many places like "Error loading viewer", even
> though everything seems to work fine!
> >
> > I don't know if the problem is related to GitLab or the GNOME instance /
> installation
> >
> > Is it me or do you encounter these problems too?
> > Just to ask..
> >
> > Thank You!
> > Luca
> > ___
> > gtk-devel-list mailing list
> > gtk-devel-list@gnome.org
> > https://mail.gnome.org/mailman/listinfo/gtk-devel-list
>
>
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: Combined search and combobox?

2018-07-27 Thread Dov Grobgeld via gtk-devel-list
I agree that setting this up is a bit too complex, and it would be nice if
there was a standalone widget that this everything for you.

Meanwhile I tried converting your widget into C (with the intention of
replacing the font selection widget in gucharmap), and something is not
working. I get lots of warnings about:

(gucharmap:30880): Gtk-CRITICAL **: 17:41:07.804: gtk_entry_set_text:
assertion 'text != NULL' failed

This happens e.g. when I'm using the up down arrows within the text entry.
Btw, this happens also if I only replace (without setting up all the
connections), gtk_combo_box_new() with gtk_combo_box_new_with_entry(). I'm
still trying to figure out what went wrong.

Regards,
Dov


On Fri, Jul 27, 2018 at 2:25 PM Reuben Rissler  wrote:

> On 07/27/2018 12:15 AM, Dov Grobgeld wrote:
>
> Thanks. This is exactly what I was looking for! I didn't realize that a
> combobox can be attached to a model, and that a model can be filtered.
>
> Gtk models are powerful, but with great power comes great complexity ;)
>
>
> Imo multiple partial string match should be default behavior, which it is
> unfortunately not. E.g. inkscape only matches in the beginning of the
> string.
>
> Agreed.
>
>
> Is there a GNOME guide line about this?
>
> Not that I have seen in my travels using Gtk.
>
> I came up with this tool out of necessity for my accounting/small business
> system. I never gave it a thought somebody else would find it useful until
> your post to this mailing list. When you posted, I thought you might find
> this interesting. So would this be useful to a wider audience? I don't know
> if the Gtk devs would consider making a special combo with this feature, as
> it seems so easy to setup. After you know how :)
>
> Glad to be of help,
> Reuben
> ___
> gtk-devel-list mailing list
> gtk-devel-list@gnome.org
> https://mail.gnome.org/mailman/listinfo/gtk-devel-list
>
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-devel-list