File: glodaFacetView.xhtml

package info (click to toggle)
icedove 1%3A45.8.0-3~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 1,488,584 kB
  • ctags: 1,068,813
  • sloc: cpp: 4,801,496; ansic: 1,929,291; python: 379,296; java: 252,018; xml: 173,182; asm: 146,741; sh: 89,229; makefile: 23,462; perl: 16,380; objc: 4,088; yacc: 1,841; lex: 1,222; exp: 499; php: 437; lisp: 228; awk: 152; pascal: 116; sed: 51; ruby: 47; csh: 31; ada: 16
file content (98 lines) | stat: -rw-r--r-- 4,392 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?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 PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" [
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
%brandDTD;
<!ENTITY % aboutDTD SYSTEM "chrome://global/locale/about.dtd" >
%aboutDTD;
<!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
%globalDTD;
<!ENTITY % facetViewDTD SYSTEM "chrome://messenger/locale/glodaFacetView.dtd">
%facetViewDTD;
]>
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:html="http://www.w3.org/1999/xhtml"
    xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    version="-//W3C//DTD XHTML 1.1//EN" xml:lang="en"
    dir="&locale.dir;">
<head>
  <!-- XBL bindings CSS -->
  <link rel="stylesheet"
      href="chrome://messenger/content/glodaFacetBindings.css"
      type="text/css"></link>
  <link rel="stylesheet" media="screen" type="text/css"
        href="chrome://messenger/skin/tagColors.css"/>
  <!-- Themes -->
  <link rel="stylesheet"
      href="chrome://messenger/skin/glodaFacetView.css"
      type="text/css"></link>
  <!-- Global Context -->
  <script type="application/javascript;version=1.8"
      src="chrome://messenger/content/glodaFacetView.js"></script>
  <!-- Libs -->
  <script type="application/javascript;version=1.8"
      src="chrome://messenger/content/protovis-r2.6-modded.js"></script>
  <!-- Facet Binding Stuff that doesn't belong in XBL -->
  <script type="application/javascript;version=1.8"
      src="chrome://messenger/content/glodaFacetVis.js"></script>
</head>
<body id="body" onload="reachOutAndTouchFrame()"
      onkeypress="if (event.keyCode == event.DOM_VK_ESCAPE) document.getElementById('popup-menu').hide();"
      onmouseup="return clickOnBody(event)">
  <div id="popup-menu" class="popup-menu" variety="invisible"/>
  <div id="table">
    <div>
        <div class="facets facets-sidebar" id="facets">
          <h1 id="filter-header-label">&glodaFacetView.filters.label;</h1>
          <div>
            <div id="facet-fromMe" class="facetious" type="boolean" attr="fromMe"
                 uninitialized="true" />
            <div id="facet-toMe" class="facetious" type="boolean" attr="toMe"
                 uninitialized="true" />
            <div id="facet-star" class="facetious" type="boolean" attr="star"
                 uninitialized="true"/><br />
            <div id="facet-attachmentTypes" class="facetious" type="boolean-filtered"
                 attr="attachmentTypes"
                 groupDisplayProperty="categoryLabel"
                 uninitialized="true"/>
          </div>
        </div>
        <div id="main-column">
          <div id="header">
            <div id="date-toggle" class="date-toggle" tabindex="0" role="button"
               onclick="FacetContext.toggleTimeline()"
               onkeypress="if (event.charCode == KeyEvent.DOM_VK_SPACE) { FacetContext.toggleTimeline(); event.preventDefault() }"/>
            <div id="search-value"/>
            <div id="query-explanation"/>
          </div>
          <div id="data-column">
            <div id="facet-date" class="facetious" type="date" />
            <div class="results" id="results" type="message" />
            <div class="loading" id="showLoading">
              <span class="loading">
                <img class="loading"
                     src="chrome://global/skin/icons/loading_16.png"/>
                &glodaFacetView.loading.label;
              </span>
             </div>
            <div class="empty"	id="showEmpty">
              <span class="empty">
                <img class="empty"
                     src="chrome://messenger/skin/icons/empty-search-results.png"/><br/>
                &glodaFacetView.empty.label;
              </span>
              </div>
            <div class="show-more" id="showMore" tabindex="0" role="button"
                 onclick="FacetContext.showMore()"
                 onkeypress="if (event.charCode == KeyEvent.DOM_VK_SPACE) { FacetContext.showMore(); event.preventDefault() }"
                 >&glodaFacetView.pageMore.label;</div>
          </div>
        </div>
      </div>
  </div>
</body>
</html>