~ubuntu-branches/debian/experimental/spyder/experimental

« back to all changes in this revision

Viewing changes to spyderlib/utils/inspector/templates/layout.html

  • Committer: Package Import Robot
  • Author(s): Picca Frédéric-Emmanuel
  • Date: 2013-01-20 12:19:54 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20130120121954-1jt1xa924bshhvh0
Tags: 2.2.0~beta1+dfsg-2
fix typo ipython-qtconsol -> ipython-qtconsole

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{#
 
2
    layout.html
 
3
    ~~~~~~~~~~~
 
4
 
 
5
    Layout template for the object inspector
 
6
 
 
7
    :copyright: Copyright 2012 by the Spyder team.
 
8
    :copyright: Copyright 2009 by Tim Dumol <tim@timdumol.com>
 
9
    :license: BSD license
 
10
#}
 
11
 
 
12
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 
13
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
14
 
 
15
<html>
 
16
 
 
17
<head>
 
18
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
19
    <link rel="stylesheet" href="{{css_path}}/default.css" type="text/css" />
 
20
    <link rel="stylesheet" href="{{css_path}}/pygments.css" type="text/css" />
 
21
    <script type="text/javascript" src="{{jquery_path}}"></script>
 
22
    
 
23
    {% if right_sphinx_version and math_on %}
 
24
    {# DON'T try to load MathJax from the net. It's slow and sometimes gives
 
25
       errors. See this thread for more info:
 
26
       http://tex.stackexchange.com/questions/2692/comparing-mathjax-and-mathml
 
27
    #}
 
28
    <script type="text/javascript" 
 
29
    src="{{mathjax_path}}?config=TeX-AMS-MML_SVG-full">
 
30
    </script>
 
31
    {% endif %}
 
32
</head>
 
33
 
 
34
<script type="text/javascript" charset="utf-8"> {% include js_path + "/math_config.js" %} </script>
 
35
<script src="{{js_path}}/utils.js" type="text/javascript" charset="utf-8"></script>
 
36
<script src="{{js_path}}/copy_button.js" type="text/javascript" charset="utf-8"></script>
 
37
 
 
38
<body>
 
39
    {# Docstring header #}
 
40
    {% if Title %}
 
41
    <div class="title"> <h1> {{Title}} </h1> </div>
 
42
 
 
43
    {% if argspec or note %}
 
44
    <div class="metadata">
 
45
        {% if argspec %}
 
46
        <p> <b>Definition :</b> <span class="def"> {{Title}}{{argspec}} </span> </p>
 
47
        {% endif %}
 
48
 
 
49
        {% if note %}
 
50
        <p> <b>Type :</b> {{note}} </p>
 
51
        {% endif %}
 
52
    </div>
 
53
    {% endif %}
 
54
 
 
55
    {% endif %}
 
56
    
 
57
    {# Docstring text #}
 
58
    <div class="docstring">
 
59
        {% block body %}{% endblock %}
 
60
    </div>
 
61
</body>
 
62
 
 
63
</html>