[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kwrite-devel
Subject:    Re: Broken Git repos scanning in project plugin
From:       Valentin Rouet <v.rouet () gmail ! com>
Date:       2015-10-31 17:28:53
Message-ID: CACAhqFWW=Si6Uo0ZBs3osSFUDPR2DT9-j=tp2hZE66Lwq7i7aA () mail ! gmail ! com
[Download RAW message or body]

[Attachment #2 (multipart/related)]

[Attachment #4 (multipart/alternative)]


OK, I've been investigating the source code, and have narrowed down the
place where it happens. It does seem to come from some change in Qt.

The problem is in file addons/project/kateprojectworker.cpp at line 358:

> if (relpathUtf8.isEmpty() ) { // git_object_lookup_bypath is not able to
> resolv "." as path
>
It seems this line relies on the fact that Qdir::relativeFilePath() would
return an empty string when called with the current working dir as
argument, but what it actually returns is the string "."

When replacing that test with the following, the content loads:

> if (relpathUtf8.isEmpty() || relpathUtf8 == ".") {

But it's not a full solution, because then what you get is this:

​ As you can see, there is a "." folder, instead of the files at the
project's root being displayed directly. This makes me think that this
change of Qt functions from returning an empty string to returning "." is
affecting other places of the code. I also wonder if it really is
Qt-related or if it has to do with an underlying OS-dependent mechanism...
Anyways I haven't been able to find any reference to such change in Qt's
changelogs.

On Sat, Oct 31, 2015 at 6:03 PM, Valentin Rouet <v.rouet@gmail.com> wrote:

> OK, I've been investigating the source code, and have narrowed down the
> place where it happens. It does seem to come from some change in Qt.
>
> The problem is in file addons/project/kateprojectworker.cpp at line 358:
>
>> if (relpathUtf8.isEmpty() ) { // git_object_lookup_bypath is not able to
>> resolv "." as path
>>
> It seems this line relies on the fact that Qdir::relativeFilePath() would
> return an empty string when called with the current working dir as
> argument, but what it actually returns is the string "."
>
> When replacing that test with the following, the content loads:
>
>> if (relpathUtf8.isEmpty() || relpathUtf8 == ".") {
>
> But it's not a full solution, because then what you get is this:
>
> ​As you can see, there is a "." folder, instead of the files at the
> project's root being displayed directly. This makes me think that this
> change of Qt functions from returning an empty string to returning "." is
> affecting other places of the code. I also wonder if it really is
> Qt-related or if it has to do with an underlying OS-dependent mechanism...
> Anyways I haven't been able to find any reference to such change in Qt's
> changelogs.
>
> On Sat, Oct 31, 2015 at 3:13 PM, Michal Humpula <
> michal.humpula@hudrydum.cz> wrote:
>
>> Are you capable of downgrading to Qt5.4, just for the fun of testing?:)
>>
>> On Saturday 31 of October 2015 15:11:12 Valentin Rouet wrote:
>> > Hi,
>> >
>> > I'm not completely sure after which update this started to happen, but
>> from
>> > what I see in my packages cache, I was on Qt 5.5.0 since august and it
>> was
>> > working.
>> >
>> > 2 updates I see are:
>> > - Kate 15.08.1 to 15.08.2 on october 13th
>> > - Qt 5.5.0 to 5.5.1 on october 16th
>> >
>> >
>> > The problem must have been introduced by one of these 2 updates, but I
>> > don't know which.
>> >
>> > On Sat, Oct 31, 2015 at 3:00 PM, Michal Humpula <
>> michal.humpula@hudrydum.cz>
>> > wrote:
>> > > Hi Valentin,
>> > >
>> > > can you pinpoint the time when it started to happen? Could it be after
>> > > upgrade
>> > > to Qt5.5?:) I have a very similar issue to yours, which is
>> reproducible on
>> > > Qt5.5 but not on Qt5.4:)
>> > >
>> > > Cheers
>> > > Michal
>> > >
>> > > On Saturday 31 of October 2015 13:51:07 Valentin Rouet wrote:
>> > > > Dear Kate developers,
>> > > >
>> > > > First of all, before talking about problems, let me thank you for
>> the
>> > >
>> > > great
>> > >
>> > > > pieces of software that Kate/Kwrite are. I've been using them for
>> about
>> > >
>> > > 10
>> > >
>> > > > years, and they've always been fulfilling my text-editing and
>> > > > programming
>> > > > needs.
>> > > >
>> > > > I have already reported the bug I'm having on the bugtracker (
>> > > > https://bugs.kde.org/show_bug.cgi?id=354494), but didn't get any
>> > >
>> > > feedback
>> > >
>> > > > from any dev, so I'd just like to be sure you're aware of its
>> existence,
>> > >
>> > > as
>> > >
>> > > > it seems to me that one major feature is involved. Someone did
>> confirm
>> > >
>> > > thay
>> > >
>> > > > had the same problem though, on a different distro but with the same
>> > > > package version.
>> > > >
>> > > > The Git repo scanning feature is great and absolutely necessary.
>> I've
>> > >
>> > > been
>> > >
>> > > > working without it for a few days, using the files browser plugin
>> > >
>> > > instead,
>> > >
>> > > > but it's really not filling the void...
>> > > >
>> > > > If you need any additional information to track down the bug,
>> please let
>> > >
>> > > me
>> > >
>> > > > know.
>> > > >
>> > > > Thanks in advance,
>> > > >
>> > > > Valentin Rouet
>>
>>
>

[Attachment #7 (text/html)]

<div dir="ltr"><div><div><div>OK, I&#39;ve been investigating the source code, and \
have narrowed down  the place where it happens. It does seem to come from some change \
in  Qt.<br><br></div>The problem is in file addons/project/kateprojectworker.cpp at \
line 358:<br><blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid \
rgb(204,204,204);padding-left:1ex" class="gmail_quote">if (relpathUtf8.isEmpty() ) { \
// git_object_lookup_bypath is not able to resolv &quot;.&quot; as \
path<br></blockquote>It  seems this line relies on the fact that \
Qdir::relativeFilePath() would  return an empty string when called with the current \
working dir as  argument, but what it actually returns is the string \
&quot;.&quot;<br><br></div>When replacing that test with the following, the content \
loads:<br><blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid \
rgb(204,204,204);padding-left:1ex" class="gmail_quote">if (relpathUtf8.isEmpty() || \
relpathUtf8 == &quot;.&quot;) {</blockquote><div>But it&#39;s not a full solution, \
because then what you get is this:<br><img class="" \
src="cid:ii_igfc3wyk0_150bed7d2b8e127e" height="156" width="273"><br></div>​ As you \
can see, there is a &quot;.&quot; folder, instead of the files at the  project&#39;s \
root being displayed directly. This makes me think that this  change of Qt functions \
from returning an empty string to returning &quot;.&quot;  is affecting other places \
of the code. I also wonder if it really is  Qt-related or if it has to do with an \
underlying OS-dependent  mechanism... Anyways I haven&#39;t been able to find any \
reference to such  change in Qt&#39;s changelogs. <br></div></div><div \
class="gmail_extra"><br><div class="gmail_quote">On Sat, Oct 31, 2015 at 6:03 PM, \
Valentin Rouet <span dir="ltr">&lt;<a href="mailto:v.rouet@gmail.com" \
target="_blank">v.rouet@gmail.com</a>&gt;</span> wrote:<br><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr"><div><div>OK, I&#39;ve been investigating the \
source code, and have narrowed down  the place where it happens. It does seem to come \
from some change in  Qt.<br><br></div>The problem is in file \
addons/project/kateprojectworker.cpp at line 358:<br><blockquote style="margin:0px \
0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" \
class="gmail_quote">if (relpathUtf8.isEmpty() ) { // git_object_lookup_bypath is not \
able to resolv &quot;.&quot; as path<br></blockquote>It  seems this line relies on \
the fact that Qdir::relativeFilePath() would  return an empty string when called with \
the current working dir as  argument, but what it actually returns is the string \
&quot;.&quot;<br><br></div>When replacing that test with the following, the content \
loads:<br><blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid \
rgb(204,204,204);padding-left:1ex" class="gmail_quote">if (relpathUtf8.isEmpty() || \
relpathUtf8 == &quot;.&quot;) {</blockquote><div>But it&#39;s not a full solution, \
because then what you get is this:<br><img src="cid:ii_igfc3wyk0_150bed7d2b8e127e" \
height="156" width="273"><br></div><div>​As you can see, there is a &quot;.&quot; \
folder, instead of the files at the project&#39;s root being displayed directly. This \
makes me think that this change of Qt functions from returning an empty string to \
returning &quot;.&quot; is affecting other places of the code. I also wonder if it \
really is Qt-related or if it has to do with an underlying OS-dependent mechanism... \
Anyways I haven&#39;t been able to find any reference to such change in Qt&#39;s \
changelogs. <br></div></div><div class="HOEnZb"><div class="h5"><div \
class="gmail_extra"><br><div class="gmail_quote">On Sat, Oct 31, 2015 at 3:13 PM, \
Michal Humpula <span dir="ltr">&lt;<a href="mailto:michal.humpula@hudrydum.cz" \
target="_blank">michal.humpula@hudrydum.cz</a>&gt;</span> wrote:<br><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex">Are you capable of downgrading to Qt5.4, just for the fun of \
testing?:)<br> <div><div><br>
On Saturday 31 of October 2015 15:11:12 Valentin Rouet wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; I&#39;m not completely sure after which update this started to happen, but \
from<br> &gt; what I see in my packages cache, I was on Qt 5.5.0 since august and it \
was<br> &gt; working.<br>
&gt;<br>
&gt; 2 updates I see are:<br>
&gt; - Kate 15.08.1 to 15.08.2 on october 13th<br>
&gt; - Qt 5.5.0 to 5.5.1 on october 16th<br>
&gt;<br>
&gt;<br>
&gt; The problem must have been introduced by one of these 2 updates, but I<br>
&gt; don&#39;t know which.<br>
&gt;<br>
&gt; On Sat, Oct 31, 2015 at 3:00 PM, Michal Humpula &lt;<a \
href="mailto:michal.humpula@hudrydum.cz" \
target="_blank">michal.humpula@hudrydum.cz</a>&gt;<br> &gt; wrote:<br>
&gt; &gt; Hi Valentin,<br>
&gt; &gt;<br>
&gt; &gt; can you pinpoint the time when it started to happen? Could it be after<br>
&gt; &gt; upgrade<br>
&gt; &gt; to Qt5.5?:) I have a very similar issue to yours, which is reproducible \
on<br> &gt; &gt; Qt5.5 but not on Qt5.4:)<br>
&gt; &gt;<br>
&gt; &gt; Cheers<br>
&gt; &gt; Michal<br>
&gt; &gt;<br>
&gt; &gt; On Saturday 31 of October 2015 13:51:07 Valentin Rouet wrote:<br>
&gt; &gt; &gt; Dear Kate developers,<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; First of all, before talking about problems, let me thank you for \
the<br> &gt; &gt;<br>
&gt; &gt; great<br>
&gt; &gt;<br>
&gt; &gt; &gt; pieces of software that Kate/Kwrite are. I&#39;ve been using them for \
about<br> &gt; &gt;<br>
&gt; &gt; 10<br>
&gt; &gt;<br>
&gt; &gt; &gt; years, and they&#39;ve always been fulfilling my text-editing and<br>
&gt; &gt; &gt; programming<br>
&gt; &gt; &gt; needs.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; I have already reported the bug I&#39;m having on the bugtracker (<br>
&gt; &gt; &gt; <a href="https://bugs.kde.org/show_bug.cgi?id=354494" rel="noreferrer" \
target="_blank">https://bugs.kde.org/show_bug.cgi?id=354494</a>), but didn&#39;t get \
any<br> &gt; &gt;<br>
&gt; &gt; feedback<br>
&gt; &gt;<br>
&gt; &gt; &gt; from any dev, so I&#39;d just like to be sure you&#39;re aware of its \
existence,<br> &gt; &gt;<br>
&gt; &gt; as<br>
&gt; &gt;<br>
&gt; &gt; &gt; it seems to me that one major feature is involved. Someone did \
confirm<br> &gt; &gt;<br>
&gt; &gt; thay<br>
&gt; &gt;<br>
&gt; &gt; &gt; had the same problem though, on a different distro but with the \
same<br> &gt; &gt; &gt; package version.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; The Git repo scanning feature is great and absolutely necessary. \
I&#39;ve<br> &gt; &gt;<br>
&gt; &gt; been<br>
&gt; &gt;<br>
&gt; &gt; &gt; working without it for a few days, using the files browser plugin<br>
&gt; &gt;<br>
&gt; &gt; instead,<br>
&gt; &gt;<br>
&gt; &gt; &gt; but it&#39;s really not filling the void...<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; If you need any additional information to track down the bug, please \
let<br> &gt; &gt;<br>
&gt; &gt; me<br>
&gt; &gt;<br>
&gt; &gt; &gt; know.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Thanks in advance,<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Valentin Rouet<br>
<br>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>


["kate1.png" (image/png)]
[Attachment #9 (text/plain)]

_______________________________________________
KWrite-Devel mailing list
KWrite-Devel@kde.org
https://mail.kde.org/mailman/listinfo/kwrite-devel


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic