The version of Apache log4j used by SoundHelix.

[[ 🗃 ^aEp6o apache-log4j ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/aEp6o

SSH: git clone USERNAME@vervis.peers.community:aEp6o

Branches

Tags

PRE_UGLI_MOVE :: examples / src / joran / implicit /

implicit1.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE foo>

<foo>

  <!-- These elements will print due to the implcit rule -->
  <xyz printme="true">
    <abc printme="true"/>
  </xyz>

  <!-- This element has no associated rule and no implicit rule 
       applies for it because the printme attribute is not set. -->  
  <xyz/>

  
  
  <!-- This element will not be printed even if its printme 
       attribute  is set because implicit rules are invoked only 
       if no explicit rule matches the element. The */foo rule
       mathches the following element.
       --> 
  <foo printme="true"/>

</foo>
[See repo JSON]