calendar/base/content/dialogs/chooseCalendarDialog.xhtml
author Ben Campbell <benc@thunderbird.net>
Tue, 15 Jul 2025 16:30:40 +1200 (29 minutes ago)
changeset 45480 b6ea70cc1a2127bce0281e9b14eed283558877ab
parent 43783 3cb85afec9d62ff7ea5e697dd9c151135735944b
permissions -rw-r--r--
Bug 1970018 - Use folder IDs instead of xpcom objects to reference folders in FolderDatabase. r=darktrojan Differential Revision: https://phabricator.services.mozilla.com/D256594
<?xml version="1.0" encoding="UTF-8"?>
<!-- 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/. -->

<!DOCTYPE html SYSTEM "chrome://calendar/locale/calendar.dtd">
<html
  xmlns="http://www.w3.org/1999/xhtml"
  xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  xmlns:html="http://www.w3.org/1999/xhtml"
  scrolling="false"
  lightweightthemes="true"
  persist="screenX screenY"
>
  <head>
    <title>&calendar.select.dialog.title;</title>
    <meta
      http-equiv="Content-Security-Policy"
      content="default-src chrome:; script-src chrome: 'unsafe-inline'; style-src chrome: 'unsafe-inline'"
    />
    <link rel="localization" href="branding/brand.ftl" />
    <link rel="stylesheet" href="chrome://messenger/skin/messenger.css" />
    <link rel="stylesheet" href="chrome://messenger/skin/colors.css" />
    <link rel="stylesheet" href="chrome://messenger/skin/themeableDialog.css" />
    <link rel="stylesheet" href="chrome://calendar/skin/shared/dialogs/chooseCalendarDialog.css" />
    <script defer="defer" src="chrome://messenger/content/dialogShadowDom.js"></script>
    <script defer="defer" src="chrome://calendar/content/calendar-ui-utils.js"></script>
    <script defer="defer" src="chrome://calendar/content/chooseCalendarDialog.js"></script>
  </head>
  <body>
    <xul:dialog
      buttons="accept,cancel"
      xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    >
      <label id="prompt" control="calendar-list" />
      <richlistbox id="calendar-list" seltype="single" />
      <description id="promptNotify" />
    </xul:dialog>
  </body>
</html>