Sha256: baaf9cccadc9265dbe487feb9d44ce8cd5d04267aeda09d50cd739d972bf80f6
Contents?: true
Size: 1.22 KB
Versions: 6
Compression:
Stored size: 1.22 KB
Contents
=begin This file is part of Origami, PDF manipulation framework for Ruby Copyright (C) 2017 Guillaume Delugré. Origami is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Origami is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with Origami. If not, see <http://www.gnu.org/licenses/>. =end module Origami module XDP module Packet # # The _xdc_ packet encloses application-specific XFA driver configuration instruction. # class XDC < XFA::Element mime_type '' def initialize super("xsl:xdc") add_attribute 'xmlns:xdc', 'http://www.xfa.org/schema/xdc/1.0/' end end end end end
Version data entries
6 entries across 6 versions & 2 rubygems