calendar/import-export/calHtmlExport.html
author Daniel Darnell <daniel@thunderbird.net>
Tue, 15 Jul 2025 19:27:35 +0000 (2 hours ago)
changeset 45488 ee5f36ccf323d1c6064c156c128be30a3fb30822
parent 39131 cdc9451d1d761b3912e59829942ac0c7aaef3e61
permissions -rw-r--r--
Bug 1974153 - Port bug 1968612: Adapt merge_automation changes to work with treescript. r=coreycb Differential Revision: https://phabricator.services.mozilla.com/D257303
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title id="title"></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <style type="text/css" id="sheet">
      .vevent {
        border: 1px solid black;
        padding: 0;
        margin-bottom: 10px;
      }

      .key {
        font-style: italic;
        margin-left: 3px;
      }

      .value {
        margin-left: 20px;
      }

      abbr {
        border: none;
      }

      .summarykey {
        display: none;
      }

      .summary {
        font-weight: bold;
        margin: 0;
        padding: 3px;
      }

      .description {
        white-space: pre-wrap;
      }
    </style>
  </head>
  <body id="item-container">
    <!-- Note on the use of the summarykey class:
         This node is hidden by default for better readability. If you would
         like to show the key, remove the display style above. -->
    <div id="templates">
      <div class="vevent" id="item-template">
        <div class="row summaryrow">
          <div class="key summarykey"></div>
          <div class="value summary"></div>
        </div>
        <div class="row intervalrow">
          <div class="key intervalkey"></div>
          <div class="value">
            <abbr class="dtstart"></abbr>
          </div>
        </div>
        <div class="row locationrow">
          <div class="key locationkey"></div>
          <div class="value location"></div>
        </div>
        <div class="row descriptionrow">
          <div class="key descriptionkey"></div>
          <div class="value description"></div>
        </div>
      </div>
    </div>
  </body>
</html>