~ubuntu-branches/ubuntu/utopic/texworks/utopic-proposed

« back to all changes in this revision

Viewing changes to modules/QtPDF/docs/layout.mustache

  • Committer: Package Import Robot
  • Author(s): Atsuhito KOHDA
  • Date: 2013-06-04 14:11:27 UTC
  • mfrom: (1.1.17)
  • Revision ID: package-import@ubuntu.com-20130604141127-mjaxh41lyfkv3a29
Tags: 0.5~svn1288-1
* New Upstream Release (rev 1288).
* Fixed rules clean target.  obj -> objs
* Fixed control file.  Added zlib1g-dev to Build-Depends field.
  (Closes: #710102)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html>
 
2
<html>
 
3
<head>
 
4
  <meta http-equiv="content-type" content="text/html;charset=utf-8">
 
5
  <title>{{ url }}</title>
 
6
  <link rel="stylesheet" href="http://sharpie.github.com/TeXworks/resources/docs.css">
 
7
</head>
 
8
<body>
 
9
<div id='container'>
 
10
  <div id="background"></div>
 
11
 
 
12
  <!-- Navbar -->
 
13
  <div id="fadeout"></div>
 
14
  <div id="flybar">
 
15
    <a id="title" href="#top"><h1>{{ file }}</h1></a>
 
16
 
 
17
    <div class="navigation about">
 
18
      <div class="button">
 
19
        About
 
20
      </div>
 
21
      <div class="contents">
 
22
        <p>This documentation was built using Ryan Tomayko's <strong>Rocco</strong> tool:</p>
 
23
        <a href="http://rtomayko.github.com/rocco">rtomayko.github.com/rocco</a>
 
24
 
 
25
        <p>Which is based on <strong>Docco</strong> by Jeremy Ashkenas:</p>
 
26
        <a href="http://jashkenas.github.com/docco">jashkenas.github.com/docco</a>
 
27
 
 
28
        <p>The code from this navigation bar was borrowed from the <strong>CoffeeScript</strong> project, also by Jeremy:</p>
 
29
        <a href="http://jashkenas.github.com/coffee-script">jashkenas.github.com/coffee-script</a>
 
30
 
 
31
        <p>The templates used to create this page may be found on GitHub:</p>
 
32
        <a href="http://github.com/Sharpie/TeXworks/tree/master/CMake/docs">github.com/Sharpie/TeXworks</a>
 
33
 
 
34
      </div>
 
35
    </div>
 
36
 
 
37
    {{#sources?}}
 
38
    <div class="navigation toc">
 
39
      <div class="button">
 
40
        Browse Source
 
41
      </div>
 
42
      <div class="contents menu">
 
43
        {{#sources}}
 
44
          <a class="source" href="{{ url }}">{{ path }}</a>
 
45
        {{/sources}}
 
46
      </div>
 
47
    </div>
 
48
    {{/sources?}}
 
49
    <div id="error" style="display:none;"></div>
 
50
  </div>
 
51
 
 
52
  <!-- Content -->
 
53
  <span class="bookmark" id="top"></span>
 
54
 
 
55
  <table cellspacing=0 cellpadding=0>
 
56
  <thead>
 
57
    <tr>
 
58
      <th class=docs><h1>{{ file }}</h1></th>
 
59
      <th class=code></th>
 
60
    </tr>
 
61
  </thead>
 
62
  <tbody>
 
63
    {{#sections}}
 
64
    <tr>
 
65
      <td class=docs>
 
66
        <div class="pilwrap">
 
67
          <a class="pilcrow" href="#section-{{ section_id }}">&#182;</a>
 
68
          <span class="bookmark" id="section-{{ section_id }}"></span>
 
69
        </div>
 
70
        {{{ docs }}}
 
71
      </td>
 
72
      <td class=code>
 
73
        <div class='highlight'><pre>{{{ code }}}</pre></div>
 
74
      </td>
 
75
    </tr>
 
76
    {{/sections}}
 
77
  </table>
 
78
</div>
 
79
 
 
80
  <!-- Navbar Scripting -->
 
81
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
 
82
  <script type="text/javascript">
 
83
    var closeMenus;
 
84
    closeMenus = function() {
 
85
      return $('.navigation.active').removeClass('active');
 
86
    };
 
87
    $('.navigation').click(function(e) {
 
88
      if (e.target.tagName.toLowerCase() === 'a') {
 
89
        return;
 
90
      }
 
91
      if ($(e.target).closest('.repl_wrapper').length) {
 
92
        return false;
 
93
      }
 
94
      if ($(this).hasClass('active')) {
 
95
        closeMenus();
 
96
      } else {
 
97
        closeMenus();
 
98
        $(this).addClass('active');
 
99
      }
 
100
      return false;
 
101
    });
 
102
  </script>
 
103
 
 
104
</body>
 
105
</html>