Page 1 of 1

Report ("{Path}") not working

Posted: 25 Dec 2010 00:43
by serendipity
Sometime after v9.80.0106 the Report ("{Path}"); is not working. Hope its an easy fix.

Re: Report ("{Path}") not working

Posted: 26 Dec 2010 10:13
by admin
Yep, easy, thanks!

Re: Report ("{Path}") not working

Posted: 27 Dec 2010 10:05
by ogroeger
Are you sure (9.80.0126)?

Re: Report ("{Path}") not working

Posted: 27 Dec 2010 10:15
by admin
ogroeger wrote:Are you sure (9.80.0126)?
Yes. Something not working?

Re: Report ("{Path}") not working

Posted: 27 Dec 2010 13:30
by ogroeger
Hm, i'm not sure. Executing

Code: Select all

::text report ("{path}");
while in xyplorer's directory results in

Code: Select all

{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}
Is this the expected result?

Re: Report ("{Path}") not working

Posted: 27 Dec 2010 16:53
by serendipity
ogroeger wrote:Hm, i'm not sure. Executing

Code: Select all

::text report ("{path}");
while in xyplorer's directory results in

Code: Select all

{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}
Is this the expected result?
{Path} is meant for use in "search results only" where it would make sense. For other places use:

Code: Select all

::text get ("path");

Re: Report ("{Path}") not working

Posted: 27 Dec 2010 21:15
by admin
serendipity wrote:
ogroeger wrote:Hm, i'm not sure. Executing

Code: Select all

::text report ("{path}");
while in xyplorer's directory results in

Code: Select all

{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}{path}
Is this the expected result?
{Path} is meant for use in "search results only" where it would make sense. For other places use:

Code: Select all

::text get ("path");
Or {fullpath} which works for Browse and Find modes:

Code: Select all

::text report ("{fullpath}<crlf>");

Re: Report ("{Path}") not working

Posted: 28 Dec 2010 09:33
by ogroeger
Oops :oops:

Thanks, i got it. I admit that i use at most 20% of the features of XY. Sorry!