<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/lib/printer_driver, branch talloc-2.3.0</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/'/>
<entry>
<title>lib:printer_driver: Retrieve Class value</title>
<updated>2019-01-28T14:44:18+00:00</updated>
<author>
<name>Justin Stephenson</name>
<email>jstephen@redhat.com</email>
</author>
<published>2018-11-20T16:24:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=7783c62bbf7d4237a3df02a02196c43d1152ed27'/>
<id>7783c62bbf7d4237a3df02a02196c43d1152ed27</id>
<content type='text'>
Retrieve the Class value from the inf file [Version] section.

Signed-off-by: Justin Stephenson &lt;jstephen@redhat.com&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Retrieve the Class value from the inf file [Version] section.

Signed-off-by: Justin Stephenson &lt;jstephen@redhat.com&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib:printer_driver: Don't overwrite printprocessor</title>
<updated>2019-01-28T14:44:18+00:00</updated>
<author>
<name>Justin Stephenson</name>
<email>jstephen@redhat.com</email>
</author>
<published>2018-11-16T21:53:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=5442355cdb527ddcaae509538c751b801a77a78c'/>
<id>5442355cdb527ddcaae509538c751b801a77a78c</id>
<content type='text'>
If the printprocessor is parsed from the inf file in the codepath:

setup_driver_name
  find_driver_files
    process_driver_section_printprocessor

Don't overwrite the value later on in setup_driver_name with the default "winprint"

Signed-off-by: Justin Stephenson &lt;jstephen@redhat.com&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the printprocessor is parsed from the inf file in the codepath:

setup_driver_name
  find_driver_files
    process_driver_section_printprocessor

Don't overwrite the value later on in setup_driver_name with the default "winprint"

Signed-off-by: Justin Stephenson &lt;jstephen@redhat.com&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib:printer_driver: Parse SourceDisksNames section</title>
<updated>2019-01-28T14:44:18+00:00</updated>
<author>
<name>Justin Stephenson</name>
<email>jstephen@redhat.com</email>
</author>
<published>2018-11-16T21:11:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=166380111ba3a82b087ab3a54687d0ecabe5e819'/>
<id>166380111ba3a82b087ab3a54687d0ecabe5e819</id>
<content type='text'>
This allows a driver inf with a [SourceDisksNames] section
excluding the system architecture to be parsed.

https://docs.microsoft.com/en-us/windows-hardware/drivers/install/inf-sourcedisksnames-section?f=255&amp;MSPPError=-2147217396

Signed-off-by: Justin Stephenson &lt;jstephen@redhat.com&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows a driver inf with a [SourceDisksNames] section
excluding the system architecture to be parsed.

https://docs.microsoft.com/en-us/windows-hardware/drivers/install/inf-sourcedisksnames-section?f=255&amp;MSPPError=-2147217396

Signed-off-by: Justin Stephenson &lt;jstephen@redhat.com&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib:printer_driver: Handle PrintProcessor string</title>
<updated>2019-01-28T14:44:18+00:00</updated>
<author>
<name>Justin Stephenson</name>
<email>jstephen@redhat.com</email>
</author>
<published>2018-11-16T21:03:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=04d92b002024c5265c93ce7bd2a7064aaa187abc'/>
<id>04d92b002024c5265c93ce7bd2a7064aaa187abc</id>
<content type='text'>
This fixes an issue parsing the section of a certain HP
driver inf file:

PrintProcessor=%PRINT_PROCESSOR%

where %PRINT_PROCESSOR% is a [Strings] substituted value,
gp_inifile_getstring_ext() performs the substitution correctly.

Signed-off-by: Justin Stephenson &lt;jstephen@redhat.com&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes an issue parsing the section of a certain HP
driver inf file:

PrintProcessor=%PRINT_PROCESSOR%

where %PRINT_PROCESSOR% is a [Strings] substituted value,
gp_inifile_getstring_ext() performs the substitution correctly.

Signed-off-by: Justin Stephenson &lt;jstephen@redhat.com&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib:printer_driver: Add printer_driver library to parse printer driver inf files</title>
<updated>2019-01-28T14:44:18+00:00</updated>
<author>
<name>Guenther Deschner</name>
<email>gd@samba.org</email>
</author>
<published>2018-10-08T15:14:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=b6712ab902ab160bc66a3040eba8fc5c7d921dde'/>
<id>b6712ab902ab160bc66a3040eba8fc5c7d921dde</id>
<content type='text'>
Pair-Programmed-With: Justin Stephenson &lt;jstephen@redhat.com&gt;
Signed-off-by: Guenther Deschner &lt;gd@samba.org&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pair-Programmed-With: Justin Stephenson &lt;jstephen@redhat.com&gt;
Signed-off-by: Guenther Deschner &lt;gd@samba.org&gt;
Reviewed-by: Andreas Schneider &lt;asn@samba.org&gt;
Reviewed-by: Bjoern Jacke &lt;bjacke@samba.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
