ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* toppath
@ 2012-11-27  7:43 Procházka Lukáš Ing. - Pontex s. r. o.
  2012-11-27  8:44 ` toppath Hans Hagen
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Procházka Lukáš Ing. - Pontex s. r. o. @ 2012-11-27  7:43 UTC (permalink / raw)
  To: ConTeXt

[-- Attachment #1: Type: text/plain, Size: 909 bytes --]

Hello,

there was a discussion about 'toppath' or 'pathrelativetome'.

Is 'toppath:' prefix working?

Or what other way is to refer to the path of the current file (i.e. the file I'm referring from)?

The following code doesn't work - "t-Hello.mkiv" is not found although it's located in the same directory as "t-TopPath.mkiv"; the "t-TopPath.mkiv" is compiled from ONE LEVEL UP.

So e.g. let's have:

c:\Lukas\ConTeXt\Test\t-TopPath.mkiv
c:\Lukas\ConTeXt\Test\t-Hello.mkiv

and let's switch to current (working) directory to:

c:\Lukas\ConTeXt

and call:

context.exe Test\t-TopPath.mkiv

In this situation compilation fails.

How to make it work?

TIA.

Best regards,

Lukas


-- 
Ing. Lukáš Procházka [mailto:LPr@pontex.cz]
Pontex s. r. o.      [mailto:pontex@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 244 062 238
Fax: +420 244 461 038

[-- Attachment #2: t-Hello.mkiv --]
[-- Type: application/octet-stream, Size: 33 bytes --]

\starttext
  Hello!
\stoptext

[-- Attachment #3: t-TopPath.mkiv --]
[-- Type: application/octet-stream, Size: 85 bytes --]

\enabletrackers[resolvers]

\starttext
  \input toppath:/t-Hello.mkiv
\stoptext

[-- Attachment #4: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: toppath
  2012-11-27  7:43 toppath Procházka Lukáš Ing. - Pontex s. r. o.
@ 2012-11-27  8:44 ` Hans Hagen
  2012-11-27  9:33   ` toppath Procházka Lukáš Ing. - Pontex s. r. o.
  2012-11-28  7:53 ` toppath Procházka Lukáš Ing. - Pontex s. r. o.
  2012-11-29 19:34 ` toppath Andre Caldas
  2 siblings, 1 reply; 7+ messages in thread
From: Hans Hagen @ 2012-11-27  8:44 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 11/27/2012 8:43 AM, Procházka Lukáš Ing. - Pontex s. r. o. wrote:
> Hello,
>
> there was a discussion about 'toppath' or 'pathrelativetome'.
>
> Is 'toppath:' prefix working?
>
> Or what other way is to refer to the path of the current file (i.e. the
> file I'm referring from)?
>
> The following code doesn't work - "t-Hello.mkiv" is not found although
> it's located in the same directory as "t-TopPath.mkiv"; the
> "t-TopPath.mkiv" is compiled from ONE LEVEL UP.
>
> So e.g. let's have:
>
> c:\Lukas\ConTeXt\Test\t-TopPath.mkiv
> c:\Lukas\ConTeXt\Test\t-Hello.mkiv
>
> and let's switch to current (working) directory to:
>
> c:\Lukas\ConTeXt
>
> and call:
>
> context.exe Test\t-TopPath.mkiv
>
> In this situation compilation fails.
>
> How to make it work?

mtxrun --path=Test --script context t-TopPath.mkiv

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: toppath
  2012-11-27  8:44 ` toppath Hans Hagen
@ 2012-11-27  9:33   ` Procházka Lukáš Ing. - Pontex s. r. o.
  2012-11-29 19:37     ` toppath Andre Caldas
  0 siblings, 1 reply; 7+ messages in thread
From: Procházka Lukáš Ing. - Pontex s. r. o. @ 2012-11-27  9:33 UTC (permalink / raw)
  To: ConTeXt

... I'd need to refer to a file from within a file, not in via '--path' option...

My case is more complicated - a file is included from more other files in various directory levels.

BTW: I was also thinking about \processedfile (http://wiki.contextgarden.net/Command/processedfile) and about splitting it (taking the part up to the last / or \) but \processedfile gives nothing - try:

----
\enabletrackers[resolvers]

\starttext
   T

   \processedfile

   %\input toppath:/t-Hello.mkiv
\stoptext
----

Lukas


On Tue, 27 Nov 2012 09:44:08 +0100, Hans Hagen <pragma@wxs.nl> wrote:

> On 11/27/2012 8:43 AM, Procházka Lukáš Ing. - Pontex s. r. o. wrote:
>> Hello,
>>
>> there was a discussion about 'toppath' or 'pathrelativetome'.
>>
>> Is 'toppath:' prefix working?
>>
>> Or what other way is to refer to the path of the current file (i.e. the
>> file I'm referring from)?
>>
>> The following code doesn't work - "t-Hello.mkiv" is not found although
>> it's located in the same directory as "t-TopPath.mkiv"; the
>> "t-TopPath.mkiv" is compiled from ONE LEVEL UP.
>>
>> So e.g. let's have:
>>
>> c:\Lukas\ConTeXt\Test\t-TopPath.mkiv
>> c:\Lukas\ConTeXt\Test\t-Hello.mkiv
>>
>> and let's switch to current (working) directory to:
>>
>> c:\Lukas\ConTeXt
>>
>> and call:
>>
>> context.exe Test\t-TopPath.mkiv
>>
>> In this situation compilation fails.
>>
>> How to make it work?
>
> mtxrun --path=Test --script context t-TopPath.mkiv
>
> -----------------------------------------------------------------
>                                            Hans Hagen | PRAGMA ADE
>                Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>      tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
>                                               | www.pragma-pod.nl
> -----------------------------------------------------------------
>


-- 
Ing. Lukáš Procházka [mailto:LPr@pontex.cz]
Pontex s. r. o.      [mailto:pontex@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 244 062 238
Fax: +420 244 461 038

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: toppath
  2012-11-27  7:43 toppath Procházka Lukáš Ing. - Pontex s. r. o.
  2012-11-27  8:44 ` toppath Hans Hagen
@ 2012-11-28  7:53 ` Procházka Lukáš Ing. - Pontex s. r. o.
  2012-11-29 19:34 ` toppath Andre Caldas
  2 siblings, 0 replies; 7+ messages in thread
From: Procházka Lukáš Ing. - Pontex s. r. o. @ 2012-11-28  7:53 UTC (permalink / raw)
  To: ConTeXt

On Tue, 27 Nov 2012 08:43:25 +0100, Procházka Lukáš Ing. - Pontex s. r. o. <LPr@pontex.cz> wrote:

> Is 'toppath:' prefix working?

... My observation so far:

'toppath' works with \component, so if one needs to include a file, it's better to include it via:

\component file.tex

where 'topttath' works as well:

\component toppath:/path-relative-to-me/file.tex

whilst

\input path-relative-to-me/file.tex

works "traditionally", so path is always relative to the directory the compilation is launched from.

Best regards,

Lukas


-- 
Ing. Lukáš Procházka [mailto:LPr@pontex.cz]
Pontex s. r. o.      [mailto:pontex@pontex.cz] [http://www.pontex.cz]
Bezová 1658
147 14 Praha 4

Tel: +420 244 062 238
Fax: +420 244 461 038

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: toppath
  2012-11-27  7:43 toppath Procházka Lukáš Ing. - Pontex s. r. o.
  2012-11-27  8:44 ` toppath Hans Hagen
  2012-11-28  7:53 ` toppath Procházka Lukáš Ing. - Pontex s. r. o.
@ 2012-11-29 19:34 ` Andre Caldas
  2012-11-29 19:56   ` toppath Hans Hagen
  2 siblings, 1 reply; 7+ messages in thread
From: Andre Caldas @ 2012-11-29 19:34 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hello!

> Is 'toppath:' prefix working?

I use it only with \component, \environment, \product, \project. It
works even if I do like this:

$ mkdir build
$ cd build
$ context ../src/products/assorted.tex


> context.exe Test\t-TopPath.mkiv
> In this situation compilation fails.
> How to make it work?

It seems your observations in an e-mail below are right. Prefixes do
not seem to work with \input. I don't know if prefixes are supposed to
work or not with \input... but this issue is not related to toppath.


Cheers,
André Caldas.
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: toppath
  2012-11-27  9:33   ` toppath Procházka Lukáš Ing. - Pontex s. r. o.
@ 2012-11-29 19:37     ` Andre Caldas
  0 siblings, 0 replies; 7+ messages in thread
From: Andre Caldas @ 2012-11-29 19:37 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hello!

> My case is more complicated - a file is included from more other files in
> various directory levels.

I do this with \component:
https://bitbucket.org/andrecaldas/math-video-classes/src/92a8e5b1a6eee07ed3475e20b54b0a566ab57738/src/products/assorted.tex?at=default


André Caldas.
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: toppath
  2012-11-29 19:34 ` toppath Andre Caldas
@ 2012-11-29 19:56   ` Hans Hagen
  0 siblings, 0 replies; 7+ messages in thread
From: Hans Hagen @ 2012-11-29 19:56 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On 11/29/2012 8:34 PM, Andre Caldas wrote:
> Hello!
>
>> Is 'toppath:' prefix working?
>
> I use it only with \component, \environment, \product, \project. It
> works even if I do like this:
>
> $ mkdir build
> $ cd build
> $ context ../src/products/assorted.tex
>
>
>> context.exe Test\t-TopPath.mkiv
>> In this situation compilation fails.
>> How to make it work?
>
> It seems your observations in an e-mail below are right. Prefixes do
> not seem to work with \input. I don't know if prefixes are supposed to
> work or not with \input... but this issue is not related to toppath.

input is rather low level (we have \component, processfile, readfile etc 
instead)

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-11-29 19:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-27  7:43 toppath Procházka Lukáš Ing. - Pontex s. r. o.
2012-11-27  8:44 ` toppath Hans Hagen
2012-11-27  9:33   ` toppath Procházka Lukáš Ing. - Pontex s. r. o.
2012-11-29 19:37     ` toppath Andre Caldas
2012-11-28  7:53 ` toppath Procházka Lukáš Ing. - Pontex s. r. o.
2012-11-29 19:34 ` toppath Andre Caldas
2012-11-29 19:56   ` toppath Hans Hagen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).