NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: Larry Sand on June 18, 2012, 08:36:14 AM

Title: netweba.tpw %gNetWebFolder constant
Post by: Larry Sand on June 18, 2012, 08:36:14 AM
Hi Bruce,

I'm looking at controlling what's being copied and gzipped and found that In netweba.tpw the code to set the source folder for the copy batch file builds an invalid path.  Currently it is:
----
  #IF(%gNetWebFolder = '')
    #IF(%cwversion<7000)
      #SET(%srcDir,%root & '3rdparty\libsrc\netweb\web\*.*')
      #SET(%bindir,%root & '3rdparty\bin')
    #ELSE
      #SET(%srcDir,%root & 'accessory\libsrc\win\netweb\web\*.*')
      #SET(%bindir,%root & 'accessory\bin')
    #ENDIF
  #ELSE
    #SET(%srcdir,%gNetWebFolder &' \web')
  #ENDIF
----

This line:
    #SET(%srcdir,%gNetWebFolder &' \web')

And it looks like it should be:
    #SET(%srcdir,%gNetWebFolder &'\web\*.*')

Thanks,
Larry Sand
Title: Re: netweba.tpw %gNetWebFolder constant
Post by: Bruce on June 18, 2012, 10:10:34 PM
fixed in 6.34, thanks.