-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
3117 lines (2173 loc) · 109 KB
/
ChangeLog
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
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2005-02-08 18:27 paultcochrane
* examples/view2DMeshExample.py: Added setSize() command
2005-02-08 18:26 paultcochrane
* examples/contourPlotExample.py, website/todo/todo_body.part:
Trivial change.
2005-02-08 18:19 paultcochrane
* MANIFEST.in: Change CHANGES to ChangeLog. May be a dumb idea to
use the automatically generated ChangeLog instead of a
handwritten one, but the CHANGES file doesn't yet exist, and
ChangeLog does...
2005-02-08 18:17 paultcochrane
* setup.py: Trivial change.
2005-02-08 18:15 paultcochrane
* MANIFEST: Now reflects list of files that should now be
distributed.
2005-02-08 18:12 paultcochrane
* MANIFEST.in: Changed plotExample to simplePlotExample (as this is
what it is now called), and fixed typo with multiCurvePlotExample
2005-02-08 18:02 paultcochrane
* website/devel/devel_body.part: Added mention of the plplot and
opendx renderer modules structure being in place, and the
existence of the skel_module.py script for generating renderer
module directory structures.
2005-02-08 17:59 paultcochrane
* admin/skel_module.py: Updated to use cvs revision keyword for the
__revision__ attribute.
2005-02-08 17:55 paultcochrane
* pyvisi/renderers/__init__.py: Trivial change
2005-02-08 17:51 paultcochrane
* pyvisi/renderers/: gnuplot/axes.py, gnuplot/camera.py,
gnuplot/common.py, gnuplot/image.py, gnuplot/item.py,
gnuplot/plane.py, gnuplot/plot.py, gnuplot/renderer.py,
gnuplot/scene.py, gnuplot/text.py, vtk/axes.py, vtk/camera.py,
vtk/common.py, vtk/image.py, vtk/item.py, vtk/plane.py,
vtk/plot.py, vtk/renderer.py, vtk/scene.py, vtk/text.py:
De-implemented the getRevision() function. Found it is
marginally more useful to have the cvs revision keyword as the
__revision__ attribute.
2005-02-08 17:46 paultcochrane
* pyvisi/renderers/povray/: axes.py, camera.py, common.py,
image.py, item.py, plane.py, plot.py, renderer.py, scene.py,
text.py: Found it is marginally more useful to have the cvs
revision keyword as the __revision__ attribute.
2005-02-08 17:46 paultcochrane
* pyvisi/renderers/povray/__init__.py: Removed the Image classes
that aren't yet overridden by the povray renderer module.
2005-02-08 17:42 paultcochrane
* pyvisi/renderers/opendx/: axes.py, camera.py, common.py,
image.py, item.py, plane.py, plot.py, renderer.py, scene.py,
text.py: Found it is marginally more useful to have the cvs
revision keyword as the __revision__ attribute.
2005-02-08 17:38 paultcochrane
* pyvisi/renderers/plplot/: axes.py, camera.py, common.py, item.py,
plane.py, renderer.py, text.py: Found it is marginally more
useful to have the cvs revision keyword as the __revision__
attribute.
2005-02-08 17:37 paultcochrane
* pyvisi/renderers/plplot/scene.py: Fixed Scene as BaseScene import
error. Found it is marginally more useful to use the cvs
revision keyword for the __revision__ attribute.
2005-02-08 17:37 paultcochrane
* pyvisi/renderers/plplot/: image.py, plot.py: Fixed indentation
errors in class definitions. Removed overrideWarning import.
Found it is marginally more useful to use the cvs revision
keyword for the __revision__ attribute.
2005-02-08 17:31 paultcochrane
* pyvisi/renderers/: plplot/__init__.py, opendx/__init__.py: Fixed
formatting problem.
2005-02-08 17:28 paultcochrane
* pyvisi/renderers/opendx/: axes.py, camera.py, item.py, plane.py,
renderer.py, text.py: The overrideWarning function isn't used and
isn't even defined in common.py, and was causing an error, so
removed it.
2005-02-08 17:27 paultcochrane
* pyvisi/renderers/opendx/scene.py: Corrected Scene and Renderer
import statements.
2005-02-08 17:27 paultcochrane
* pyvisi/renderers/opendx/: image.py, plot.py: Corrected
indentation errors for class names, and removed overrideWarning
function import as it isn't in common.py.
2005-02-08 17:24 paultcochrane
* admin/skel_module.py: Fixed a formatting error, and fixed a
problem where by BaseClasses should be imported along the lines
of Class as BaseClass. Fixed class statements being incorrectly
indented.
2005-02-08 16:54 paultcochrane
* pyvisi/renderers/__init__.py: Testing to see if __revision__
attribute should really be Revision keyword of cvs.
2005-02-08 16:40 paultcochrane
* admin/skel_module.py: Now using getRevision instead of hard
coding the __revision__ attribute.
2005-02-08 16:36 paultcochrane
* pyvisi/renderers/vtk/: axes.py, camera.py, image.py, item.py,
plane.py, plot.py, renderer.py, scene.py, text.py: Implemented
the use of getRevision() function as defined in common.py instead
of hard-coding the value into each file.
2005-02-08 16:35 paultcochrane
* pyvisi/renderers/vtk/common.py: Implemented a getRevision()
function to be able to pass the rendererRevision around.
2005-02-08 16:24 paultcochrane
* pyvisi/renderers/gnuplot/: axes.py, camera.py, image.py, item.py,
plane.py, plot.py, renderer.py, scene.py, text.py: Implemented
the use of getRevision() function as defined in common.py instead
of hard-coding the value into each file.
2005-02-08 16:23 paultcochrane
* pyvisi/renderers/gnuplot/common.py: Implemented a getRevision()
function to be able to pass the rendererRevision around.
2005-02-08 16:17 paultcochrane
* pyvisi/renderers/: opendx/axes.py, opendx/camera.py,
opendx/image.py, opendx/item.py, opendx/plane.py, opendx/plot.py,
opendx/renderer.py, opendx/scene.py, opendx/text.py,
plplot/axes.py, plplot/camera.py, plplot/image.py,
plplot/item.py, plplot/plane.py, plplot/plot.py,
plplot/renderer.py, plplot/scene.py, plplot/text.py: Added
Renderer object import to scene.py and corrected __revision__
attribute in all files.
2005-02-08 16:14 paultcochrane
* admin/skel_module.py: The scene.py file needs to import the
module-specific renderer object as well, so added an if loop to
do this.
2005-02-08 16:03 paultcochrane
* website/main.aap: Added all html files in examples directory to
publication list. Added examples directory aap file to be
processed.
2005-02-08 16:02 paultcochrane
* pyvisi/scene.py: Fixed incorrect type description in docstring.
2005-02-08 15:57 paultcochrane
* pyvisi/renderers/opendx/tests/: test_axes.py, test_camera.py,
test_image.py, test_item.py, test_plane.py, test_plot.py,
test_renderer.py, test_scene.py, test_text.py: Initial import to
repository. These are the skeleton test files for the opendx
renderer module as generated by skel_module.py
2005-02-08 15:57 paultcochrane
* pyvisi/renderers/opendx/: __init__.py, axes.py, camera.py,
common.py, image.py, item.py, plane.py, plot.py, renderer.py,
scene.py, text.py: Initial import to repository. These are the
skeleton files for the opendx renderer module as generated by
skel_module.py
2005-02-08 15:56 paultcochrane
* pyvisi/renderers/plplot/tests/: test_axes.py, test_camera.py,
test_image.py, test_item.py, test_plane.py, test_plot.py,
test_renderer.py, test_scene.py, test_text.py: Initial import to
repository. These are the skeleton test files for the plplot
renderer module as generated by skel_module.py
2005-02-08 15:56 paultcochrane
* pyvisi/renderers/plplot/: __init__.py, axes.py, camera.py,
common.py, image.py, item.py, plane.py, plot.py, renderer.py,
scene.py, text.py: Initial import to repository. These are the
skeleton files for the plplot renderer module as generated by
skel_module.py
2005-02-08 15:54 paultcochrane
* admin/skel.py: Updated the copyright information. Corrected use
of @param and added @type to docstrings. Added a call to the
BaseClass (which the developer/maintainer will have to supply).
Now using debugMsg() and overrideWarning() functions. Importing
using absolute imports.
2005-02-08 15:48 paultcochrane
* admin/skel_module.py: Initial import to repository. This is the
module skeleton building script. Call the script from within
pyvisi/renderers/ with the name of the module to create as its
argument, and it will generate the module directory, the tests
subdirectory, the a skeleton for the set of currently defined
objects, and the skeleton tests for those objects.
2005-02-08 12:05 paultcochrane
* pyvisi/: __init__.py, axes.py, camera.py, common.py, image.py,
item.py, plane.py, plot.py, renderer.py, scene.py, text.py,
renderers/__init__.py, renderers/gnuplot/__init__.py,
renderers/gnuplot/axes.py, renderers/gnuplot/camera.py,
renderers/gnuplot/common.py, renderers/gnuplot/image.py,
renderers/gnuplot/item.py, renderers/gnuplot/plane.py,
renderers/gnuplot/plot.py, renderers/gnuplot/renderer.py,
renderers/gnuplot/scene.py, renderers/gnuplot/text.py,
renderers/povray/__init__.py, renderers/povray/axes.py,
renderers/povray/camera.py, renderers/povray/common.py,
renderers/povray/image.py, renderers/povray/item.py,
renderers/povray/plane.py, renderers/povray/plot.py,
renderers/povray/renderer.py, renderers/povray/scene.py,
renderers/povray/text.py, renderers/vtk/__init__.py,
renderers/vtk/axes.py, renderers/vtk/camera.py,
renderers/vtk/common.py, renderers/vtk/image.py,
renderers/vtk/item.py, renderers/vtk/plane.py,
renderers/vtk/plot.py, renderers/vtk/renderer.py,
renderers/vtk/scene.py, renderers/vtk/text.py: Updated copyright
information.
2005-02-08 11:55 paultcochrane
* examples/: multiCurvePlotExample.py, simplePlotExample.py,
singleArrayPlotExample.py: Updated copyright information.
2005-02-08 11:53 paultcochrane
* website/examples/examples_body.part: Added some explanatory text
to the examples.
2005-02-08 11:47 paultcochrane
* website/examples/examples_body.part: Ripped out the hand-coded
example text, and added links to automatically generated html
output (pretty printed using enscript) of the relevant example
python files.
2005-02-08 11:46 paultcochrane
* website/examples/main.aap: Initial import to repository. This is
the main aap file for the examples directory. Implemented
grabbing the python example files and generating the html output
using enscript.
2005-02-08 11:04 paultcochrane
* examples/simplePlotExample.py: Initial import to repository.
This is what used to be the plotExample.py file.
2005-02-08 10:58 paultcochrane
* website/examples/examples_body.part: Removed basicExample
example, not that relevant anymore.
2005-02-07 19:07 paultcochrane
* website/news/news_body.part: Fixed itemDate class declaration
2005-02-07 19:03 paultcochrane
* setup.py: Updated version information. Removed scripts tag.
Added renderers, renderers.gnuplot and renderers.vtk to list of
packages.
2005-02-07 18:50 paultcochrane
* doc/manual/plottingExamples.tex: Updated example to reflect
changes made to format argument of scene.save() method.
2005-02-07 18:47 paultcochrane
* pyvisi/: text.py, renderers/gnuplot/text.py,
renderers/povray/text.py, renderers/vtk/text.py: Added and
implemented setFont and getFont methods.
2005-02-07 18:21 paultcochrane
* examples/singleArrayPlotExample.py: Implemented using the
PngImage() and PsImage() objects as the format instead of a
string.
2005-02-07 18:17 paultcochrane
* examples/: plotExample.py, multiCurvePlotExample.py: Implemented
using the PngImage() and PsImage() objects as the format instead
of a string.
2005-02-07 18:11 paultcochrane
* doc/pyvisi_class_structure.dia: Updated.
2005-02-07 18:10 paultcochrane
* doc/manual/main.aap: Added a target for generating the dia
figures automatically from the .dia file. Fixed the pdf_figs
target.
2005-02-07 18:09 paultcochrane
* doc/manual/developerManual.tex: Added pyvisi class structure
diagram (generated from dia) to the developer docs.
2005-02-07 18:05 paultcochrane
* pyvisi/renderers/vtk/image.py: Removed need for the format to be
passed into the Image() base class. The subclasses now set their
own instance attribute for the format. The scene object is now
an optional argument, and if is specified, then does all of the
things as per normal for playing with an Image object. Without
the scene argument, it is just basically a container for
information to help scene.save() do its work.
2005-02-07 17:58 paultcochrane
* pyvisi/renderers/vtk/scene.py: Implemented using an image object
as the format passed into the scene.save() method.
2005-02-07 17:47 paultcochrane
* pyvisi/image.py: Backpropagating changes made in gnuplot renderer
module. Now have scene object as being an optional argument, and
if is specified then setting the renderer attribute.
2005-02-07 17:42 paultcochrane
* pyvisi/renderers/gnuplot/image.py: Added a PbmImage subclass of
Image so that can output pbm images as per one of the supported
gnuplot image output formats. Implemented using the scene object
argument as being optional so that can just pass the object
directly to the scene.save() method, without actually having to
associate the Image instance with the scene.
2005-02-07 17:39 paultcochrane
* pyvisi/image.py: Added a PbmImage class subclass of Image().
2005-02-07 17:39 paultcochrane
* pyvisi/renderers/gnuplot/scene.py: Implemented change from using
a format string to directly using an Image object subclass to
define the image format for output.
2005-02-07 17:22 paultcochrane
* pyvisi/renderers/gnuplot/image.py: Removed checks in Image()
subclasses for the scene object.
2005-02-07 17:15 paultcochrane
* pyvisi/renderers/gnuplot/image.py: Added format instance variable
to Image() subclasses.
2005-02-07 17:13 paultcochrane
* pyvisi/renderers/gnuplot/image.py: Removed the format argument
from the Image() class, and from the calls to the __init__ method
of the Image() class from its subclasses.
2005-02-07 17:10 paultcochrane
* pyvisi/image.py: Added a format instance variable to each of the
subclasses of Image().
2005-02-07 17:04 paultcochrane
* pyvisi/image.py: Removed the format argument from the Image()
class, don't think it's useful, and complicates matters when
subclassing the Image class. Fixed the subclasses call to the
base class' __init__ method by actually passing through the scene
object.
2005-02-07 16:53 paultcochrane
* doc/manual/figures/: pyvisi_class_structure.eps,
pyvisi_class_structure.pdf: Initial import to repository. These
are the eps and pdf files of the pyvisi class structure as drawn
by dia.
2005-02-07 16:36 paultcochrane
* doc/manual/titlepage.tex: Made titlepage a bit simpler.
2005-02-07 16:06 paultcochrane
* doc/manual/pyvisi_doc.tex: Added the inclusion of the install and
plottingExamples files.
2005-02-07 16:06 paultcochrane
* doc/manual/plottingExamples.tex: Added plotExample.py (as it
currently stands) as a plotting example. Have added figures
showing both the gnuplot and vtk versions of the output.
2005-02-07 16:05 paultcochrane
* doc/manual/misc_defs.tex: Changed release number to pre-alpha-1
2005-02-07 16:04 paultcochrane
* doc/manual/main.aap: Corrected pdf_figs target. Added pdf_figs
target to all target. Added install.tex and plottingExamples.tex
to list of files to check when building the docs. Fixed the eps
to pdf rule.
2005-02-07 16:02 paultcochrane
* doc/manual/developerManual.tex: Started to flesh out the methods
required in the interface. Am wondering if this is at all
worthwhile, as it is far more up to date and better presented by
epydoc on the pyvisi web site.
2005-02-07 16:01 paultcochrane
* doc/manual/abstract.tex: Added pylint to list of supporting
development tools.
2005-02-07 15:48 paultcochrane
* doc/manual/figures/: plotExampleGnuplot.pdf, plotExampleVTK.pdf:
Initial import to repository. These are the gnuplot and vtk pdf
files for the very simple plot example.
2005-02-07 15:47 paultcochrane
* doc/manual/figures/: plotExampleGnuplot.eps, plotExampleVTK.eps:
Initial import to repository. These are the gnuplot and vtk eps
files for the very simple plot example.
2005-02-07 14:44 paultcochrane
* doc/manual/plottingExamples.tex: Initial import to repository.
This is the file to discuss the examples of plotting using
pyvisi.
2005-02-07 14:43 paultcochrane
* doc/manual/install.tex: Initial import to repository. This is
the file to hold information about the installation instructions.
2005-02-07 14:31 paultcochrane
* website/devel/devel_body.part: Fixed up comment about debug
statements to reflect the way that they are now handled.
2005-02-07 14:28 paultcochrane
* pyvisi/: scene.py, renderers/gnuplot/scene.py,
renderers/povray/scene.py, renderers/vtk/scene.py: Reduced the
number of hashes printed when showing the evaluation stack.
2005-02-07 14:25 paultcochrane
* website/support/support_body.part: Added gnuplot-py and pylint
web sites to list of supporting software.
2005-02-07 14:21 paultcochrane
* website/index/index_body.part: Fixed link to renderers web page.
2005-02-07 14:20 paultcochrane
* pyvisi/: __init__.py, renderers/gnuplot/__init__.py,
renderers/povray/__init__.py, renderers/vtk/__init__.py: Removed
wildcard imports by explicitly specifying the objects to import.
2005-02-07 14:07 paultcochrane
* website/todo/todo_body.part: Marked todo item as done
2005-02-07 14:06 paultcochrane
* README: Removed comment about how to install by hand. Added a
section called 'Dependencies' where I mention the renderer
modules currently supported, and what is necessary to be
installed before the renderer modules can be used.
2005-02-07 13:53 paultcochrane
* examples/imageLoadExample.py: Updated to new syntax for load()
method.
2005-02-07 13:51 paultcochrane
* examples/: plotExample.py, multiCurvePlotExample.py,
singleArrayPlotExample.py: Removed scene.add() as is now
unnecessary.
2005-02-07 13:45 paultcochrane
* pyvisi/renderers/: gnuplot/image.py, vtk/image.py: Changed
ordering of arguments in Image.__init__ (format is now last).
Added call to __init__ method of base class for Image subobjects.
2005-02-07 13:43 paultcochrane
* pyvisi/renderers/: gnuplot/__init__.py, vtk/__init__.py,
povray/__init__.py: Made some of the imports specific. Ie, not
using wildcard imports.
2005-02-07 13:27 paultcochrane
* pyvisi/renderers/vtk/text.py: Added a check for scene object
being passed to __init__().
2005-02-07 13:26 paultcochrane
* pyvisi/renderers/gnuplot/: __init__.py, axes.py, camera.py,
common.py, image.py, item.py, plane.py, plot.py, renderer.py,
scene.py, text.py: Removal of invalid token in file.
2005-02-07 13:11 paultcochrane
* MANIFEST.in: Added some headings for what the bits are. Made the
include of .py files non-recursive, so now have better control
over what is added. Added the specific examples that are working
(plus supporting files).
2005-02-07 13:07 paultcochrane
* pyvisi/text.py: Implemented absolute instead of relative imports.
Added __revision__ attribute. Now calling __init__ method of
base class. Implemented use of debugMsg() function. Added some
docstrings. Tidied text a bit. Removed explicit return from
__init__ method. Fixed old implementation of inheriting from the
Scene class instead of Item as is now the case.
2005-02-07 13:06 paultcochrane
* pyvisi/scene.py: Implemented calling __init__ method of base
class as necessary. Removed explicit return of __init__ methods.
Implemented use of debugMsg() function. Added type information
to some docstrings. Some tidying of text. Changed name of file
argument to fname as it clashed with internal python name. Added
__revision__ attribute.
2005-02-07 13:04 paultcochrane
* pyvisi/renderer.py: Added __revision__ attribute. Removed
explicity return from __init__. Added call of __init__ method of
base class. Changed relative imports to absolute imports.
Implemented use of debugMsg() function. Added type information
to docstrings.
2005-02-07 13:03 paultcochrane
* pyvisi/plot.py: Now calling __init__ method of base class as
required by good python programming practice. Added __revision__
attribute. Some text tidying. Implemented use of debugMsg()
function. Now using absolute instead of relative imports.
Removed explicity returns from __init__ methods. Added some type
information to docstrings.
2005-02-07 13:03 paultcochrane
* pyvisi/plane.py: Using absolute instead of relative imports.
Added __revision__ attribute. Tidied some text. Implemented use
of debugMsg() function. Calling base class' __init__ method.
2005-02-07 13:02 paultcochrane
* pyvisi/item.py: Now calling base class' __init__() method. Added
__revision__ attribute. Now using absolute instead of relative
imports. Implemented use of debugMsg() function.
2005-02-07 13:00 paultcochrane
* pyvisi/image.py: Major changes. Now calling base class' __init__
method. Changed file argument to load() and other methods to
fname as file clashes with a python standard name. Implemented
the new use of unsupportedError() and debugMsg(). Tidied the
text slightly. Removed explicit return from __init__ methods.
Added __revision__ attribute. Now using absolute imports instead
of relative ones. Implemented use of unsupportedError(),
fileCheck() and overrideWarning() functions.
2005-02-07 12:59 paultcochrane
* pyvisi/common.py: Implemented debugMsg() function and fileCheck()
function. Changed pyvisi version and revision variables to be
private. Added __revision__ attribute. Changed version and
revision variables to be explicitly strings.
2005-02-07 12:56 paultcochrane
* pyvisi/camera.py: Now using absolute imports, have implemented
the debugMsg() function defined in common.py to handle debug
message output (also simplifies debugging output a lot).
Implemented use of overrideWarning() function. Now calling
__init__() method of base class. Added some type information to
the docstrings. Implemented elevation and azimuth attributes.
Tidied up some of the text as well. Added __revision__ attribute
as required by good python programming practice. Added some
docstrings also.
2005-02-07 12:55 paultcochrane
* pyvisi/axes.py: Implemented use of debugMsg() function. Now
using absolute imports instead of relative. Added __revision__
attribute.
2005-02-07 12:53 paultcochrane
* pyvisi/__init__.py: Added some docstrings, changed the
pyvisiVersion and pyvisiRevision variables to be private. Made
the import statements absolute as opposed to relative.
2005-02-07 11:57 paultcochrane
* pyvisi/renderers/__init__.py: Added docstrings and the
__revision__ attribute.
2005-02-07 11:55 paultcochrane
* pyvisi/renderers/povray/text.py: Implemented absolute instead of
relative imports. Added __revision__ attribute. Now calling
__init__ method of base class. Implemented use of debugMsg()
function. Added some docstrings. Tidied text a bit. Removed
explicit return from __init__ method.
2005-02-07 11:55 paultcochrane
* pyvisi/renderers/povray/scene.py: Implemented calling __init__
method of base class as necessary. Removed explicit return of
__init__ methods. Implemented use of debugMsg() function. Added
type information to some docstrings. Some tidying of text.
Changed name of file argument to fname as it clashed with
internal python name. Added __revision__ attribute. Removed
printing of module revision and version etc. This is now in
__init__.py.
2005-02-07 11:54 paultcochrane
* pyvisi/renderers/povray/renderer.py: Added __revision__
attribute. Removed explicity return from __init__. Added call
of __init__ method of base class. Changed relative imports to
absolute imports. Implemented use of debugMsg() function. Added
more docstrings.
2005-02-07 11:54 paultcochrane
* pyvisi/renderers/povray/plot.py: Now calling __init__ method of
base class as required by good python programming practice.
Added __revision__ attribute. Some text tidying. Implemented
use of debugMsg() function. Now using absolute instead of
relative imports. Removed explicity returns from __init__
methods. Added some type information to docstrings.
2005-02-07 11:53 paultcochrane
* pyvisi/renderers/povray/plane.py: Using absolute instead of
relative imports. Added __revision__ attribute. Tidied some
text. Implemented use of debugMsg() function. Calling base
class' __init__ method.
2005-02-07 11:52 paultcochrane
* pyvisi/renderers/povray/item.py: Now calling base class'
__init__() method. Added __revision__ attribute. Now using
absolute instead of relative imports. Removed dict argument to
__init__ method. Implemented use of debugMsg() function.
2005-02-07 11:52 paultcochrane
* pyvisi/renderers/povray/image.py: Major changes. Now calling
base class' __init__ method. Changed file argument to load() and
other methods to fname as file clashes with a python standard
name. Implemented the new use of unsupportedError() and
debugMsg(). Tidied the text slightly. Removed explicit return
from __init__ methods. Added __revision__ attribute. Now using
absolute imports instead of relative ones.
2005-02-07 11:51 paultcochrane
* pyvisi/renderers/povray/common.py: Added unsupportedError()
function to here. Implemented debugMsg() function for simpler
debugging output. Changed global variables for rendererName,
Version and Revision to be private variables. Added__revision__
attribute as per good python programming practice.
2005-02-07 11:51 paultcochrane
* pyvisi/renderers/povray/camera.py: Now using absolute imports,
have implemented the debugMsg() function defined in common.py to
handle debug message output (also simplifies debugging output a
lot). Now calling __init__() method of base class. Added some
type information to the docstrings. Implemented elevation and
azimuth attributes. Tidied up some of the text as well. Added
__revision__ attribute as required by good python programming
practice. Added some docstrings also.
2005-02-07 11:50 paultcochrane
* pyvisi/renderers/povray/axes.py: Now using absolute imports, have
implemented the debugMsg() function defined in common.py to
handle debug message output (also simplifies debugging output a
lot). Added __revision__ attribute as required by good python
programming practice. Added some docstrings also.
2005-02-07 11:48 paultcochrane
* pyvisi/renderers/gnuplot/text.py: This is to fix an erroneous
commit message added just previously. Implemented absolute
instead of relative imports. Added __revision__ attribute. Now
calling __init__ method of base class. Implemented use of
debugMsg() function. Added some docstrings. Tidied text a bit.
Removed explicit return from __init__ method.
2005-02-07 11:48 paultcochrane
* pyvisi/renderers/gnuplot/scene.py: This is to fix an erroneous
commit message added just previously. Implemented calling
__init__ method of base class as necessary. Removed explicit
return of __init__ methods. Implemented use of debugMsg()
function. Added type information to some docstrings. Some
tidying of text. Changed name of file argument to fname as it
clashed with internal python name. Added __revision__ attribute.
Removed printing of module revision and version etc. This is
now in __init__.py.
2005-02-07 11:47 paultcochrane
* pyvisi/renderers/gnuplot/renderer.py: This is to fix an erroneous
commit message added just previously. Added __revision__
attribute. Removed explicity return from __init__. Added call
of __init__ method of base class. Changed relative imports to
absolute imports. Implemented use of debugMsg() function.
2005-02-07 11:47 paultcochrane
* pyvisi/renderers/gnuplot/plot.py: This is to fix an erroneous
commit message added just previously. Now calling __init__
method of base class as required by good python programming
practice. Added __revision__ attribute. Some text tidying.
Implemented use of debugMsg() function. Now using absolute
instead of relative imports. Removed explicity returns from
__init__ methods. Added some type information to docstrings.
2005-02-07 11:46 paultcochrane
* pyvisi/renderers/gnuplot/plane.py: This is to fix an erroneous
commit message added just previously. Using absolute instead of
relative imports. Added __revision__ attribute. Tidied some
text. Implemented use of debugMsg() function. Calling base
class' __init__ method.
2005-02-07 11:46 paultcochrane
* pyvisi/renderers/gnuplot/item.py: This is to fix an erroneous
commit message added just previously. Now calling base class'
__init__() method. Added __revision__ attribute. Now using
absolute instead of relative imports. Removed dict argument to
__init__ method. Implemented use of debugMsg() function.
2005-02-07 11:45 paultcochrane
* pyvisi/renderers/gnuplot/image.py: This is to fix an erroneous
commit message added just previously. Major changes. Now
calling base class' __init__ method. Changed file argument to
load() and other methods to fname as file clashes with a python
standard name. Implemented the new use of unsupportedError() and
debugMsg(). Tidied the text slightly. Removed explicit return
from __init__ methods. Added __revision__ attribute. Now using
absolute imports instead of relative ones.
2005-02-07 11:45 paultcochrane
* pyvisi/renderers/gnuplot/common.py: This is to fix an erronenous
commit message added just previously. Added unsupportedError()
function to here. Implemented debugMsg() function for simpler
debugging output. Changed global variables for rendererName,
Version and Revision to be private variables. Added__revision__
attribute as per good python programming practice.
2005-02-07 11:44 paultcochrane
* pyvisi/renderers/gnuplot/camera.py: This is to fix an erroneous
commit message added just previously. Now using absolute
imports, have implemented the debugMsg() function defined in
common.py to handle debug message output (also simplifies
debugging output a lot). Now calling __init__() method of base
class. Added some type information to the docstrings.
Implemented elevation and azimuth attributes. Tidied up some of
the text as well. Added __revision__ attribute as required by
good python programming practice. Added some docstrings also.
2005-02-07 11:44 paultcochrane
* pyvisi/renderers/gnuplot/axes.py: This is to fix an erroneous
commit message added just previously. Now using absolute
imports, have implemented the debugMsg() function defined in
common.py to handle debug message output (also simplifies
debugging output a lot). Added __revision__ attribute as
required by good python programming practice. Added some
docstrings also.
2005-02-07 11:43 paultcochrane
* pyvisi/renderers/gnuplot/__init__.py: This to fix an erroneous
commit message added just previously. Added docstrings. Added
rendererVersion and rendererRevision variables, and moved the
information output about what version and revision of the
renderer module into here from scene.py. Added __version__ and
__revision__ variables to agree with python coding standards.
Changed relative imports of modules to absolute imports (safer
coding practice).
2005-02-07 11:38 paultcochrane
* pyvisi/renderers/vtk/text.py: Implemented absolute instead of
relative imports. Added __revision__ attribute. Now calling
__init__ method of base class. Implemented use of debugMsg()
function. Added some docstrings. Tidied text a bit. Removed
explicit return from __init__ method.
2005-02-07 11:36 paultcochrane
* pyvisi/renderers/vtk/scene.py: Implemented calling __init__
method of base class as necessary. Removed explicit return of
__init__ methods. Implemented use of debugMsg() function. Added
type information to some docstrings. Some tidying of text.
Changed name of file argument to fname as it clashed with
internal python name. Added __revision__ attribute. Removed
printing of module revision and version etc. This is now in
__init__.py.
2005-02-07 11:34 paultcochrane
* pyvisi/renderers/vtk/renderer.py: Added __revision__ attribute.
Removed explicity return from __init__. Added call of __init__
method of base class. Changed relative imports to absolute
imports. Implemented use of debugMsg() function.
2005-02-07 11:32 paultcochrane
* pyvisi/renderers/vtk/plot.py: Now calling __init__ method of base
class as required by good python programming practice. Added
__revision__ attribute. Some text tidying. Implemented use of
debugMsg() function. Now using absolute instead of relative
imports. Removed explicity returns from __init__ methods. Added
some type information to docstrings.
2005-02-07 11:30 paultcochrane
* pyvisi/renderers/vtk/plane.py: Using absolute instead of relative
imports. Added __revision__ attribute. Tidied some text.
Implemented use of debugMsg() function. Calling base class'
__init__ method.
2005-02-07 11:28 paultcochrane
* pyvisi/renderers/vtk/item.py: Now calling base class' __init__()
method. Added __revision__ attribute. Now using absolute
instead of relative imports. Removed dict argument to __init__
method. Implemented use of debugMsg() function.
2005-02-07 11:27 paultcochrane
* pyvisi/renderers/vtk/image.py: Major changes. Now calling base
class' __init__ method. Changed file argument to load() and
other methods to fname as file clashes with a python standard
name. Implemented the new use of unsupportedError() and
debugMsg(). Tidied the text slightly. Removed explicit return
from __init__ methods. Added __revision__ attribute. Now using
absolute imports instead of relative ones.
2005-02-07 11:24 paultcochrane
* pyvisi/renderers/vtk/common.py: Added unsupportedError() function
to here. Implemented debugMsg() function for simpler debugging
output. Changed global variables for rendererName, Version and
Revision to be private variables. Added__revision__ attribute as
per good python programming practice.
2005-02-07 11:22 paultcochrane
* pyvisi/renderers/vtk/camera.py: Now using absolute imports, have
implemented the debugMsg() function defined in common.py to
handle debug message output (also simplifies debugging output a
lot). Now calling __init__() method of base class. Added some
type information to the docstrings. Implemented elevation and
azimuth attributes. Tidied up some of the text as well. Added
__revision__ attribute as required by good python programming
practice. Added some docstrings also.
2005-02-07 11:20 paultcochrane
* pyvisi/renderers/vtk/axes.py: Now using absolute imports, have
implemented the debugMsg() function defined in common.py to
handle debug message output (also simplifies debugging output a
lot). Added __revision__ attribute as required by good python
programming practice. Added some docstrings also.
2005-02-07 11:18 paultcochrane
* pyvisi/renderers/povray/__init__.py: Added docstrings. Added
rendererVersion and rendererRevision variables, and moved the
information output about what version and revision of the
renderer module into here from scene.py. Added __version__ and
__revision__ variables to agree with python coding standards.
Changed relative imports of modules to absolute imports (safer
coding practice).
2005-02-07 11:13 paultcochrane
* pyvisi/renderers/gnuplot/: __init__.py, axes.py, camera.py,
common.py, image.py, item.py, plane.py, plot.py, renderer.py,
scene.py, text.py: cvs status: Examining examples cvs status:
Examining htmlbuild cvs status: Examining images cvs status:
Examining index cvs status: Examining links cvs status: Examining
news cvs status: Examining support cvs status: Examining todo
cochrane@shake56 website $ gnuplot
G N U P L O T Version 3.7 patchlevel 3 last modified Thu Dec 12
13:00:00 GMT 2002 System: Linux 2.6.8-1.521smp
Copyright(C) 1986 - 1993, 1998 - 2002 Thomas Williams, Colin
Kelley and many others
Type GNU bash, version 2.05b.0(1)-release (i386-redhat-linux-gnu)
These shell commands are defined internally. Type `help' to see
this list. Type `help name' to find out more about the function
`name'. Use `info bash' to find out more about the shell in
general. Use `man -k' or `info' to find out more about commands
not in this list.
A star (*) next to a name means that the command is disabled.
%[DIGITS | WORD] [&] (( expression ))
. filename :
[ arg... ] [[ expression ]]
alias [-p] [name[=value] ... ] bg [job_spec]
bind [-lpvsPVS] [-m keymap] [-f fi break [n]
builtin [shell-builtin [arg ...]] case WORD in [PATTERN [|
PATTERN].
cd [-L|-P] [dir] command [-pVv] command [arg
...]
compgen [-abcdefgjksuv] [-o option complete [-abcdefgjksuv]
[-pr] [-o
continue [n] declare [-afFirtx] [-p]
name[=valu
dirs [-clpv] [+N] [-N] disown [-h] [-ar] [jobspec
...]
echo [-neE] [arg ...] enable [-pnds] [-a] [-f
filename]
eval [arg ...] exec [-cl] [-a name] file
[redirec
exit [n] export [-nf] [name[=value]
...] or
false fc [-e ename] [-nlr] [first]
[last
fg [job_spec] for NAME [in WORDS ... ;] do
COMMA
for (( exp1; exp2; exp3 )); do COM function NAME { COMMANDS ; }
or NA
getopts optstring name [arg] hash [-lr] [-p pathname]
[-dt] [na
help [-s] [pattern ...] history [-c] [-d offset] [n]
or hi
if COMMANDS; then COMMANDS; [ elif jobs [-lnprs] [jobspec ...]
or job