Home
last modified time | relevance | path

Searched refs:writer (Results 26 – 50 of 231) sorted by last modified time

12345678910

/plugin/dw2pdf/vendor/mpdf/mpdf/ttfonts/
H A DKhmerOFL.txt45 writer or other person who contributed to the Font Software.
H A DLateef font OFL.txt45 writer or other person who contributed to the Font Software.
H A DLohitKannadaOFL.txt46 writer or other person who contributed to the Font Software.
H A DXW Zar Font Info.txt44 writer or other person who contributed to the Font Software.
/plugin/ckgedit/ckeditor/
H A DLICENSE.md1355 writer or other person who contributed to the Font Software.
H A Dckeditor.js.unc6861 this.writer = new CKEDITOR.htmlParser.basicWriter;
6932 d = l.writer;
18500 b.dataProcessor.writer = a
H A Dckeditor.js932 …SimpleAmpersand;a.indentationChars=b.config.dataIndentationChars||"\t";b.dataProcessor.writer=a}});
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/
H A DXmlTest.php16 $writer = new Writer();
17 $writer->contextUri = $this->contextUri;
18 $writer->namespaceMap = $this->namespaceMap;
19 $writer->openMemory();
20 $writer->setIndent(true);
21 $writer->write($input);
22 return $writer->outputMemory();
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DSharingPlugin.php331 $writer = $this->server->xml->getWriter($this->server->getBaseUri());
332 $writer->openMemory();
333 $writer->startDocument();
334 $writer->startElement('{' . Plugin::NS_CALENDARSERVER . '}shared-as');
335 $writer->write(new Href($url));
336 $writer->endElement();
338 $response->setBody($writer->outputMemory());
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Property/
H A DAllowedSharingModes.php71 * @param Writer $writer
74 function xmlSerialize(Writer $writer) { argument
77 $writer->writeElement('{' . Plugin::NS_CALENDARSERVER . '}can-be-shared');
80 $writer->writeElement('{' . Plugin::NS_CALENDARSERVER . '}can-be-published');
H A DEmailAddressSet.php67 * @param Writer $writer
70 function xmlSerialize(Writer $writer) { argument
74 $writer->writeElement('{http://calendarserver.org/ns/}email-address', $email);
H A DSupportedCollationSet.php40 * @param Writer $writer
43 function xmlSerialize(Writer $writer) { argument
52 $writer->writeElement('{' . Plugin::NS_CALDAV . '}supported-collation', $collation);
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/Xml/Property/
H A DSupportedAddressData.php67 * @param Writer $writer
70 function xmlSerialize(Writer $writer) { argument
73 $writer->startElement('{' . Plugin::NS_CARDDAV . '}address-data-type');
74 $writer->writeAttributes([
78 $writer->endElement(); // address-data-type
H A DSupportedCollationSet.php36 * @param Writer $writer
39 function xmlSerialize(Writer $writer) { argument
42 $writer->writeElement('{urn:ietf:params:xml:ns:carddav}supported-collation', $coll);
/plugin/davcal/vendor/sabre/xml/
H A DREADME.md6 The sabre/xml library is a specialized XML reader and writer.
/plugin/davcal/vendor/sabre/xml/lib/
H A DXmlSerializable.php31 * @param Writer $writer
34 function xmlSerialize(Writer $writer); argument
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DCDataTest.php34 $writer = new Writer();
35 $writer->namespaceMap = [
45 $output = $writer->outputMemory();
H A DEater.php32 function xmlSerialize(Xml\Writer $writer) { argument
34 $writer->startElement('{http://sabredav.org/ns}elem1');
35 $writer->write('hiiii!');
36 $writer->endElement();
H A DElementsTest.php98 $writer = new Writer();
99 $writer->namespaceMap = [
109 $output = $writer->outputMemory();
H A DKeyValueTest.php147 $writer = new Writer();
148 $writer->namespaceMap = [
158 $output = $writer->outputMemory();
H A DMock.php24 function xmlSerialize(Xml\Writer $writer) { argument
26 $writer->startElement('{http://sabredav.org/ns}elem1');
27 $writer->write('hiiii!');
28 $writer->endElement();
H A DUriTest.php51 $writer->openMemory();
52 $writer->startDocument('1.0');
53 $writer->setIndent(true);
54 $writer->contextUri = 'http://example.org/';
61 $output = $writer->outputMemory();
H A DXmlFragmentTest.php119 $writer = new Writer();
120 $writer->namespaceMap = [
132 $output = $writer->outputMemory();
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/
H A DWriterTest.php7 protected $writer; variable in Sabre\\Xml\\WriterTest
11 $this->writer = new Writer();
12 $this->writer->namespaceMap = [
259 $this->writer->namespaceMap['http://sabredav.org/ns'] = null;
275 $this->writer->writeElement("{http://sabredav.org/ns}foo", 'content');
283 $this->assertEquals($output, $this->writer->outputMemory());
300 $this->assertEquals($output, $this->writer->outputMemory());
309 $this->writer->write(new \StdClass());
315 $this->writer->startElement("foo");
316 $this->writer->endElement();
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DResponse.php117 * @param Writer $writer
120 function xmlSerialize(Writer $writer) { argument
123 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
125 $writer->writeElement('{DAV:}href', $writer->contextUri . $this->getHref());
132 $writer->startElement('{DAV:}propstat');
133 $writer->writeElement('{DAV:}prop', $properties);
134 …$writer->writeElement('{DAV:}status', 'HTTP/1.1 ' . $status . ' ' . \Sabre\HTTP\Response::$statusC…
135 $writer->endElement(); // {DAV:}propstat

12345678910