Thanks! perfect. <div><br></div><div>I am working with a vendor who sends cover templates with standardized file names so this is fairly safe.  I am providing for exceptions.</div><div><br></div><div>FredZ<br clear="all"><div>

<br></div><br><br>
<br><br><div class="gmail_quote">On Tue, Sep 20, 2011 at 01:22, a.l.e <span dir="ltr"><<a href="mailto:ale.comp_06@xox.ch">ale.comp_06@xox.ch</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

On Mon, 19 Sep 2011 15:44:40 -0400<br>
Fred Zimmerman <<a href="mailto:wfz@nimblebooks.com">wfz@nimblebooks.com</a>> wrote:<br>
<br>
> No, I mean to check in the scripter whether the name of the Scribus<br>
> document that the scripter is working on includes a given string.<br>
> There is a getDocName patch for v 1.5.0<br>
> <a href="http://bugs.scribus.net/view.php?id=8597" target="_blank">http://bugs.scribus.net/view.php?id=8597</a> but I am hoping for another<br>
> approach that will work in 1.4.0 rc5.  There are os.path.split and<br>
> os.path.basename commands in python (import os) but I can't get them<br>
> to work.<br>
<br>
getDocName() seems to be a regular function of scribus...<br>
<br>
however, this is what you are looking for:<br>
<br>
import scribus<br>
import os<br>
import re<br>
scribus.getDocName()<br>
name = os.path.basename(scribus.getDocName())<br>
if (re.search("stringtomatch", name)) :<br>
  scribus.messageBox("name", name)<br>
else :<br>
  scribus.messageBox("name", "none")<br>
<br>
<br>
<br>
<br>
<br>
just replace "stringtomatch" by the string you want to match.<br>
(btw, i don't think that what you want to do is really something i would want to do... matching the file name? brrrrr... :-)<br>
<br>
<br>
ciao<br>
a.l.e<br>
<br>
___<br>
Scribus Mailing List: <a href="mailto:scribus@lists.scribus.net">scribus@lists.scribus.net</a><br>
Edit your options or unsubscribe:<br>
<a href="http://lists.scribus.net/mailman/listinfo/scribus" target="_blank">http://lists.scribus.net/mailman/listinfo/scribus</a><br>
See also:<br>
<a href="http://wiki.scribus.net" target="_blank">http://wiki.scribus.net</a><br>
<a href="http://forums.scribus.net" target="_blank">http://forums.scribus.net</a><br>
</blockquote></div><br></div>