https://bugs.documentfoundation.org/show_bug.cgi?id=142522

--- Comment #9 from Michael Stahl (allotropia) <[email protected]> ---
i think this could easily be implemented in ODF filter because ODF already has
these filter-or and filter-and elements that don't care if the condition inside
them is a string match or a color... but i have no idea about XLSX

  <rng:define name="table-filter">
    <rng:element name="table:filter">
      <rng:ref name="table-filter-attlist"/>
      <rng:choice>
        <rng:ref name="table-filter-condition"/>
        <rng:ref name="table-filter-and"/>
        <rng:ref name="table-filter-or"/>
      </rng:choice>
    </rng:element>
  </rng:define>
  <rng:define name="table-filter-and">
    <rng:element name="table:filter-and">
      <rng:oneOrMore>
        <rng:choice>
          <rng:ref name="table-filter-or"/>
          <rng:ref name="table-filter-condition"/>
        </rng:choice>
      </rng:oneOrMore>
    </rng:element>
  </rng:define>
  <rng:define name="table-filter-or">
    <rng:element name="table:filter-or">
      <rng:oneOrMore>
        <rng:choice>
          <rng:ref name="table-filter-and"/>
          <rng:ref name="table-filter-condition"/>
        </rng:choice>
      </rng:oneOrMore>
    </rng:element>
  </rng:define>

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to