This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .select2-container--bootstrap { | |
| display: block; | |
| /*------------------------------------* #COMMON STYLES | |
| \*------------------------------------*/ | |
| /** | |
| * Search field in the Select2 dropdown. | |
| */ | |
| /** | |
| * No outline for all search fields - in the dropdown | |
| * and inline in multi Select2s. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from lxml import etree | |
| from lxml.builder import ElementMaker | |
| class NewRpcMessageEncoder(object): | |
| def _envelope(self, request_id, hold_requests): | |
| SOAP_ENV = "http://schemas.xmlsoap.org/soap/envelope/" | |
| SOAP_ENC = "http://schemas.xmlsoap.org/soap/encoding/" | |
| XSD = "http://www.w3.org/2001/XMLSchema" | |
| XSI = "http://www.w3.org/2001/XMLSchema-instance" |