forked from matplotlib/matplotlib.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutline.html
More file actions
819 lines (800 loc) · 23.1 KB
/
outline.html
File metadata and controls
819 lines (800 loc) · 23.1 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Docs outline — Matplotlib 1.2.0 documentation</title>
<link rel="stylesheet" href="../_static/mpl.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '1.2.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 1.2.0 documentation"
href="../_static/opensearch.xml"/>
<link rel="top" title="Matplotlib 1.2.0 documentation" href="../index.html" />
<link rel="up" title="The Matplotlib Developers’ Guide" href="index.html" />
<link rel="next" title="Toolkits" href="../mpl_toolkits/index.html" />
<link rel="prev" title="Adding new scales and projections to matplotlib" href="add_new_projection.html" />
</head>
<body>
<!-- Piwik -->
<script type="text/javascript">
if ("matplotlib.sourceforge.net" == document.location.hostname ||
"matplotlib.sf.net" == document.location.hostname) {
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/matplotlib/" : "http://apps.sourceforge.net/piwik/matplotlib/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script type="text/javascript">
if ("matplotlib.sourceforge.net" == document.location.hostname ||
"matplotlib.sf.net" == document.location.hostname) {
piwik_action_name = '';
piwik_idsite = 1;
piwik_url = pkBaseURL + "piwik.php";
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
document.write(unescape('%3Cobject%3E%3Cnoscript%3E%3Cp%3E%3Cimg src="http://apps.sourceforge.net/piwik/matplotlib/piwik.php?idsite=1" alt="piwik"/%3E%3C/p%3E%3C/noscript%3E%3C/object%3E'));
}
</script>
<!-- End Piwik Tag -->
<link rel="shortcut icon" href="_static/favicon.ico">
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<a href="../index.html"><img src="../_static/logo2.png" border="0" alt="matplotlib"/></a>
</div>
<!-- The "Fork me on github" ribbon -->
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" usemap="#ribbonmap"/>
<map name="ribbonmap">
<area shape="poly" coords="20,2,148,-1,148,135" href="https://github.com/matplotlib/matplotlib" alt="Fork me on GitHub" />
</map>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="../mpl_toolkits/index.html" title="Toolkits"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="add_new_projection.html" title="Adding new scales and projections to matplotlib"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">home</a>| </li>
<li><a href="../search.html">search</a>| </li>
<li><a href="../examples/index.html">examples</a>| </li>
<li><a href="../gallery.html">gallery</a>| </li>
<li><a href="../contents.html">docs</a> »</li>
<li><a href="index.html" accesskey="U">The Matplotlib Developers’ Guide</a> »</li>
</ul>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3><a href="../contents.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Docs outline</a><ul>
<li><a class="reference internal" href="#reviewer-notes">Reviewer notes</a><ul>
<li><a class="reference internal" href="#mathtext-user-s-guide-reviewed-by-jdh">mathtext user’s guide– reviewed by JDH</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="add_new_projection.html"
title="previous chapter">Adding new scales and projections to matplotlib</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="../mpl_toolkits/index.html"
title="next chapter">Toolkits</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/devel/outline.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="docs-outline">
<span id="outline"></span><h1>Docs outline<a class="headerlink" href="#docs-outline" title="Permalink to this headline">¶</a></h1>
<p>Proposed chapters for the docs, who has responsibility for them, and
who reviews them. The “unit” doesn’t have to be a full chapter
(though in some cases it will be), it may be a chapter or a section in
a chapter.</p>
<table border="1" class="docutils">
<colgroup>
<col width="34%" />
<col width="25%" />
<col width="14%" />
<col width="27%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">User’s guide unit</th>
<th class="head">Author</th>
<th class="head">Status</th>
<th class="head">Reviewer</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>plotting 2-D arrays</td>
<td>Eric</td>
<td>has author</td>
<td>Perry ? Darren</td>
</tr>
<tr class="row-odd"><td>colormapping</td>
<td>Eric</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>quiver plots</td>
<td>Eric</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>histograms</td>
<td>Manuel ?</td>
<td>no author</td>
<td>Erik Tollerud ?</td>
</tr>
<tr class="row-even"><td>bar / errorbar</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>x-y plots</td>
<td>?</td>
<td>no author</td>
<td>Darren</td>
</tr>
<tr class="row-even"><td>time series plots</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>date plots</td>
<td>John</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>working with data</td>
<td>John</td>
<td>has author</td>
<td>Darren</td>
</tr>
<tr class="row-odd"><td>custom ticking</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>masked data</td>
<td>Eric</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>patches</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>legends</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>animation</td>
<td>John</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>collections</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>text - mathtext</td>
<td>Michael</td>
<td>accepted</td>
<td>John</td>
</tr>
<tr class="row-even"><td>text - usetex</td>
<td>Darren</td>
<td>accepted</td>
<td>John</td>
</tr>
<tr class="row-odd"><td>text - annotations</td>
<td>John</td>
<td>submitted</td>
<td>?</td>
</tr>
<tr class="row-even"><td>fonts et al</td>
<td>Michael ?</td>
<td>no author</td>
<td>Darren</td>
</tr>
<tr class="row-odd"><td>pyplot tut</td>
<td>John</td>
<td>submitted</td>
<td>Eric</td>
</tr>
<tr class="row-even"><td>configuration</td>
<td>Darren</td>
<td>submitted</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>win32 install</td>
<td>Charlie ?</td>
<td>no author</td>
<td>Darren</td>
</tr>
<tr class="row-even"><td>os x install</td>
<td>Charlie ?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>linux install</td>
<td>Darren</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>artist api</td>
<td>John</td>
<td>submitted</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>event handling</td>
<td>John</td>
<td>submitted</td>
<td>?</td>
</tr>
<tr class="row-even"><td>navigation</td>
<td>John</td>
<td>submitted</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>interactive usage</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>widgets</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>ui - gtk</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>ui - wx</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>ui - tk</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>ui - qt</td>
<td>Darren</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>backend - pdf</td>
<td>Jouni ?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>backend - ps</td>
<td>Darren</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>backend - svg</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>backend - agg</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>backend - cairo</td>
<td>?</td>
<td>no author</td>
<td>?</td>
</tr>
</tbody>
</table>
<p>Here is the ouline for the dev guide, much less fleshed out</p>
<table border="1" class="docutils">
<colgroup>
<col width="37%" />
<col width="21%" />
<col width="16%" />
<col width="26%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Developer’s guide unit</th>
<th class="head">Author</th>
<th class="head">Status</th>
<th class="head">Reviewer</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>the renderer</td>
<td>John</td>
<td>has author</td>
<td>Michael ?</td>
</tr>
<tr class="row-odd"><td>the canvas</td>
<td>John</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-even"><td>the artist</td>
<td>John</td>
<td>has author</td>
<td>?</td>
</tr>
<tr class="row-odd"><td>transforms</td>
<td>Michael</td>
<td>submitted</td>
<td>John</td>
</tr>
<tr class="row-even"><td>documenting mpl</td>
<td>Darren</td>
<td>submitted</td>
<td>John, Eric, Mike?</td>
</tr>
<tr class="row-odd"><td>coding guide</td>
<td>John</td>
<td>complete</td>
<td>Eric</td>
</tr>
<tr class="row-even"><td>and_much_more</td>
<td>?</td>
<td>?</td>
<td>?</td>
</tr>
</tbody>
</table>
<p>We also have some work to do converting docstrings to ReST for the API
Reference. Please be sure to follow the few guidelines described in
<a class="reference internal" href="documenting_mpl.html#formatting-mpl-docs"><em>Formatting</em></a>. Once it is converted, please include the module in
the API documentation and update the status in the table to “converted”. Once
docstring conversion is complete and all the modules are available in the docs,
we can figure out how best to organize the API Reference and continue from
there.</p>
<table border="1" class="docutils">
<colgroup>
<col width="29%" />
<col width="16%" />
<col width="55%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Module</th>
<th class="head">Author</th>
<th class="head">Status</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>backend_agg</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_cairo</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_cocoa</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_emf</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_fltkagg</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_gdk</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_gtk</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_gtkagg</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_gtkcairo</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_mixed</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_pdf</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_ps</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_qt</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_qtagg</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_qt4</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_qt4agg</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_svg</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_template</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_tkagg</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backend_wx</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>backend_wxagg</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>backends/tkagg</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>config/checkdep</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>config/cutils</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>config/mplconfig</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>config/mpltraits</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>config/rcparams</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>config/rcsetup</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>config/tconfig</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>config/verbose</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>projections/__init__</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>projections/geo</td>
<td>Mike</td>
<td>converted (not included–experimental)</td>
</tr>
<tr class="row-even"><td>projections/polar</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>afm</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-even"><td>artist</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>axes</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-even"><td>axis</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>backend_bases</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-even"><td>cbook</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>cm</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-even"><td>collections</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>colorbar</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-even"><td>colors</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>contour</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>dates</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>dviread</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>figure</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>finance</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>font_manager</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>fontconfig_pattern</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-even"><td>image</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>legend</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>lines</td>
<td>Mike & ???</td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>mathtext</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-even"><td>mlab</td>
<td>John/Mike</td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>mpl</td>
<td> </td>
<td>N/A</td>
</tr>
<tr class="row-even"><td>patches</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>path</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-even"><td>pylab</td>
<td> </td>
<td>N/A</td>
</tr>
<tr class="row-odd"><td>pyplot</td>
<td> </td>
<td>converted</td>
</tr>
<tr class="row-even"><td>quiver</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>rcsetup</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>scale</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>table</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>texmanager</td>
<td>Darren</td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>text</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-even"><td>ticker</td>
<td>John</td>
<td>converted</td>
</tr>
<tr class="row-odd"><td>transforms</td>
<td>Mike</td>
<td>converted</td>
</tr>
<tr class="row-even"><td>type1font</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-odd"><td>units</td>
<td> </td>
<td>needs conversion</td>
</tr>
<tr class="row-even"><td>widgets</td>
<td> </td>
<td>needs conversion</td>
</tr>
</tbody>
</table>
<p>And we might want to do a similar table for the FAQ, but that may also be overkill...</p>
<p>If you agree to author a unit, remove the question mark by your name
(or add your name if there is no candidate), and change the status to
“has author”. Once you have completed draft and checked it in, you
can change the status to “submitted” and try to find a reviewer if you
don’t have one. The reviewer should read your chapter, test it for
correctness (eg try your examples) and change the status to “complete”
when done.</p>
<p>You are free to lift and convert as much material from the web site or
the existing latex user’s guide as you see fit. The more the better.</p>
<p>The UI chapters should give an example or two of using mpl with your
GUI and any relevant info, such as version, installation, config,
etc... The backend chapters should cover backend specific
configuration (eg PS only options), what features are missing, etc...</p>
<p>Please feel free to add units, volunteer to review or author a
chapter, etc...</p>
<p>It is probably easiest to be an editor. Once you have signed up to be
an editor, if you have an author pester the author for a submission
every so often. If you don’t have an author, find one, and then pester
them! Your only two responsibilities are getting your author to
produce and checking their work, so don’t be shy. You <em>do not</em> need
to be an expert in the subject you are editing – you should know
something about it and be willing to read, test, give feedback and
pester!</p>
<div class="section" id="reviewer-notes">
<h2>Reviewer notes<a class="headerlink" href="#reviewer-notes" title="Permalink to this headline">¶</a></h2>
<p>If you want to make notes for the authorwhen you have reviewed a
submission, you can put them here. As the author cleans them up or
addresses them, they should be removed.</p>
<div class="section" id="mathtext-user-s-guide-reviewed-by-jdh">
<h3>mathtext user’s guide– reviewed by JDH<a class="headerlink" href="#mathtext-user-s-guide-reviewed-by-jdh" title="Permalink to this headline">¶</a></h3>
<p>This looks good (see <a class="reference internal" href="../users/mathtext.html#mathtext-tutorial"><em>Writing mathematical expressions</em></a>) – there are a few
minor things to close the book on this chapter:</p>
<ol class="arabic">
<li><dl class="first docutils">
<dt>The main thing to wrap this up is getting the mathtext module</dt>
<dd><p class="first last">ported over to rest and included in the API so the links from the
user’s guide tutorial work.</p>
</dd>
</dl>
<ul class="simple">
<li>There’s nothing in the mathtext module that I really consider a
“public” API (i.e. that would be useful to people just doing
plots). If mathtext.py were to be documented, I would put it in
the developer’s docs. Maybe I should just take the link in the
user’s guide out. - MGD</li>
</ul>
</li>
<li><p class="first">This section might also benefit from a little more detail on the
customizations that are possible (eg an example fleshing out the rc
options a little bit). Admittedly, this is pretty clear from
readin ghte rc file, but it might be helpful to a newbie.</p>
<ul class="simple">
<li>The only rcParam that is currently useful is mathtext.fontset,
which is documented here. The others only apply when
mathtext.fontset == ‘custom’, which I’d like to declare
“unsupported”. It’s really hard to get a good set of math fonts
working that way, though it might be useful in a bind when
someone has to use a specific wacky font for mathtext and only
needs basics, like sub/superscripts. - MGD</li>
</ul>
</li>
<li><p class="first">There is still a TODO in the file to include a complete list of symbols</p>
<ul class="simple">
<li>Done. It’s pretty extensive, thanks to STIX... - MGD</li>
</ul>
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="../mpl_toolkits/index.html" title="Toolkits"
>next</a> |</li>
<li class="right" >
<a href="add_new_projection.html" title="Adding new scales and projections to matplotlib"
>previous</a> |</li>
<li><a href="../index.html">home</a>| </li>
<li><a href="../search.html">search</a>| </li>
<li><a href="../examples/index.html">examples</a>| </li>
<li><a href="../gallery.html">gallery</a>| </li>
<li><a href="../contents.html">docs</a> »</li>
<li><a href="index.html" >The Matplotlib Developers’ Guide</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2012 John Hunter, Darren Dale, Eric Firing, Michael Droettboom and the matplotlib development team.
Last updated on Nov 13, 2012.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html>