Custom Query (292 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 292)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#229 fixed smbprint inconsitently works Herwig Bauernfeind abwillis
Description

I was finding problems with smbprint where it worked inconsistently. It did not work at all initially with smbprint.exe in the samba directory but worked for one printer (pdfwrite to create PDFs) but not for another (real printer) when I moved it to the spool directory. I found

-            ok = VRPrintFile( smbprintername, directory'\'spoolfile, , JobName )
+            ok = VRPrintFile( smbprintername, spoolfile, , JobName )

where directory is never set to anything. Removing the directory'/' and now both printers objects work even with smbprint in samba. I initially set directory=directory() - I had still had smbprint in the spool directory- and that will work as well but as the sysdelete function worked all along and it is without the directory information I decided to just remove it and it worked fine. I am adding a full diff file for context but it has some other changes I did for seeing more information (and changed one German word to English so that I knew what it was telling me).

#249 fixed build brand potentially wrong revision abwillis
Description

When doing a build brand you can end up with the wrong revision if you are not at the latest revision. The query being done pulls the current revision and not the local revision.

Index: build.cmd
===================================================================
--- build.cmd	(revision 862)
+++ build.cmd	(working copy)
@@ -368,7 +368,7 @@
 NeedBranding: procedure expose revision brand build_parms
     svninfo = "svninfo"
     svninfo_tmp = "svninfo_tmp"
-    address cmd 'svn status -q -u | grep "^Status against revision:" | sed -e "s/Status against revision: *//">'svninfo_tmp
+    address cmd 'svn info | grep "^Revision:" | sed -e "s/Revision: *//">'svninfo_tmp
     revision = strip(translate(linein(svninfo_tmp)))
     ok = stream(svninfo_tmp,'c','close')
     revision_old = strip(translate(linein(svninfo)))

#280 fixed dbg instead of xqs abwillis
Description

dbg files are now used instead of xqs files but zip building is still expecting xqs.

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.