-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathChangeLog
2467 lines (1803 loc) · 84.1 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
commit c1c4b2df28db73564631c16c59c953d1024be206
Author: Sébastien Renard <[email protected]>
Date: Sun Jun 13 18:41:53 2010 +0200
Changelog update
commit 63e5c4997587fa98d20a23c048978b1889bfa4e1
Author: Sébastien Renard <[email protected]>
Date: Sun Jun 13 18:41:04 2010 +0200
Translation update for 0.15 release
commit 8f4389c3386ecba0013b1aef881364d187e51477
Author: Sébastien Renard <[email protected]>
Date: Fri May 28 15:18:53 2010 +0200
Fix desc color
commit a3f86b7cf3cbcb48fdc2c20a35742fa7fc22ce1a
Author: Sébastien Renard <[email protected]>
Date: Wed May 26 23:13:00 2010 +0200
Update for future 0.15 release
commit 7c78fda29c994a56b2419eaa22f803ae210e2620
Author: Sébastien Renard <[email protected]>
Date: Wed May 26 22:57:19 2010 +0200
Only show warning if PYSQL_WARNING env variable is set
commit 8cf359274731683fae432998f7ea7ff0b12f0d64
Author: Sébastien Renard <[email protected]>
Date: Wed May 26 22:46:24 2010 +0200
Code formating
commit a532bcca9bc46044c9305a3530a2e3701486c510
Author: Sébastien Renard <[email protected]>
Date: Wed May 26 22:46:12 2010 +0200
Remove warning about deprecated md5 module
commit 11fd89516476bbcdf0858e1e3bfe7aeb86290d87
Author: Sébastien Renard <[email protected]>
Date: Wed May 26 18:26:16 2010 +0200
Fix code alignement and broken dep function parser
commit 23a4cfe24c6abbca034756368f3160e392168a89
Author: Sébastien Delcros <[email protected]>
Date: Wed May 26 10:12:30 2010 +0200
Catches error on detailed desc (ex : no used blocks for synonyms)
commit 44d86fc08c079f652ed35dbc38d645cb03e8917c
Author: Sébastien Delcros <[email protected]>
Date: Wed May 5 22:22:00 2010 +0200
I18n requirements for next release
commit 79d8babab3c502622efef944d46f79c2f4ea3479
Author: Sébastien Delcros <[email protected]>
Date: Fri Apr 9 14:56:02 2010 +0200
Field shrinking in command 'session' for whiners
Get headers out of 'session' query to enable i18n
commit 6799141cb02f89e56b40afaa32ed6cf6dfa8df85
Author: Sébastien Delcros <[email protected]>
Date: Wed Apr 7 21:55:17 2010 +0200
Add session logon time in command 'session'
commit 406232714d0eb0d66cb68a9f71fee51e319a6af7
Author: Sébastien Renard <[email protected]>
Date: Thu Apr 1 23:35:32 2010 +0200
Add manual page contributed by Sebastien Delcros
commit 2c4f0b353379834cd78ae3b4f91a78be75e90e2d
Author: Sébastien Delcros <[email protected]>
Date: Tue Mar 30 22:14:06 2010 +0200
Disable title update for non-xterm terminals and some other minor fixes
commit 153c0b5c19509d023d8298c942a86d76f330e5d7
Author: Sébastien Delcros <[email protected]>
Date: Fri Mar 12 23:30:51 2010 +0100
Add sqltune based on AWR sqltune options in Oracle 10 and upper
commit cdc1092c0710b7f3b2eae98d53940cb4853a04f4
Author: Sébastien Delcros <[email protected]>
Date: Wed Mar 3 22:19:59 2010 +0100
minor fixes for assmrpt
commit 3b69c9e6c0884433d85706e76d8bf03abdf540b3
Author: Sébastien Delcros <[email protected]>
Date: Wed Mar 3 21:29:43 2010 +0100
New desc for users
commit 341d1ab514b810502552ead26669ba449d243a48
Author: Sébastien Delcros <[email protected]>
Date: Wed Mar 3 14:15:42 2010 +0100
Reformat help messages, add more i18n-ed strings and correct some display errors
commit 7ed0ebaeec8f12488749bf3ba1300f2ef93c1b68
Author: Sébastien Delcros <[email protected]>
Date: Mon Mar 1 17:56:55 2010 +0100
Add simple assm report to analyze table blocks clustering
commit 790304c0459f17c5d4e18583819550d2b0a6b478
Author: Sébastien Delcros <[email protected]>
Date: Mon Mar 1 15:03:01 2010 +0100
Add an instance attribute to simplify interactivity tests
commit 401dabb08d7ff7b5d0c000fc96aa30b388fe64e8
Author: Sébastien Delcros <[email protected]>
Date: Sat Feb 27 11:02:57 2010 +0100
Fix permission management in audit functions
commit 2dfe000a3a4b59c5f978857058ce50e06e8379bb
Author: Sébastien Delcros <[email protected]>
Date: Sat Feb 27 09:53:33 2010 +0100
Add a plain text storage report to follow biggest objets. Also add i18 and some cleanings.
commit 283d25e439072978cf62d9cc45e0216111a5fc32
Author: Sébastien Renard <[email protected]>
Date: Wed Feb 24 09:36:36 2010 +0100
Fix unicode warning
commit b745bccf7ddbd3db04cfc36338f8e06e8642b7a0
Author: Sébastien Delcros <[email protected]>
Date: Tue Feb 23 23:24:21 2010 +0100
New module pysqlaudit pour high-level audit fonctions such as performance reports. Also adds more internationalization.
commit d503fe5e9bbe1de1770a16e7caf553463aa8a7db
Author: Sébastien Delcros <[email protected]>
Date: Sat Feb 20 11:17:31 2010 +0100
Output beautification when not using a tty
commit ec1f402857229b76c2e49245242d18db52a79f2a
Author: Sébastien Renard <[email protected]>
Date: Fri Feb 19 23:34:07 2010 +0100
Guessing info for name and uppercase name is no more needed
commit dd88ffad731833d3bd79b4ce78126aabab003eb1
Author: Sébastien Renard <[email protected]>
Date: Fri Feb 19 23:11:15 2010 +0100
Factorize object status code
commit 8291572922bb1f3374b23f4233e3a1c4b6687218
Author: Sébastien Renard <[email protected]>
Date: Fri Feb 19 22:19:31 2010 +0100
If type is already defined, filter out object that does not match and return if nothing match.
commit ee1bfbed629735aa8cac33b15c6f629514e90dd5
Author: Sébastien Renard <[email protected]>
Date: Fri Feb 19 22:04:04 2010 +0100
Fix object owner
commit 80d974fb5a23f974832a2720e1a53b22006003d3
Author: Sébastien Renard <[email protected]>
Date: Fri Feb 19 21:55:16 2010 +0100
Huge update and cleanup
commit 767222321ad581f04193d86327a99210460fcc57
Author: Sébastien Renard <[email protected]>
Date: Fri Feb 19 19:09:57 2010 +0100
Use own object before public ones when desc encounter multiple objects
commit dd3d4d91c59ac128922d096663af6c8a913b33c1
Author: Sébastien Renard <[email protected]>
Date: Fri Feb 19 19:08:51 2010 +0100
Respect case for owner and name if quotes are used
commit 79638aa47a8e2ebd1870893b4f6e9bc78858c643
Author: Sébastien Renard <[email protected]>
Date: Fri Feb 19 08:41:08 2010 +0100
Allow to give object type in parenthisis to desc command
commit 3383c4bdc094ee8d65e91e2c0ce304f80057d1a5
Author: Sébastien Renard <[email protected]>
Date: Thu Feb 18 20:11:01 2010 +0100
Add interactive feature to desc when multiple object have the same name
commit c44bb6891d24c157f399c4136a9229f5ced27c39
Author: Sébastien Renard <[email protected]>
Date: Wed Feb 17 19:27:35 2010 +0100
Add hash and __eq__ function to object.
Use set instead of list in guessinfo
commit 333a6781bfdd7f29552cca7ecbc5f1d30609066f
Author: Sébastien Renard <[email protected]>
Date: Wed Feb 17 11:07:56 2010 +0100
Bump version to 0.15 (next release) and update changelog
commit d93c5b51b76e233e9587e18f60b7ad99d45e65e4
Author: Sébastien Delcros <[email protected]>
Date: Tue Feb 16 16:25:53 2010 +0100
Better internationalization
commit e9a379f0281e4b24aa3c60df8c8a570a26ed530e
Author: Sébastien Delcros <[email protected]>
Date: Mon Feb 15 18:01:48 2010 +0100
Add connection check when starting up in order to fix a crash case
commit 1398ef8d0ff1fa4922279cf57e50ddfce9b30145
Author: Sébastien Renard <[email protected]>
Date: Mon Feb 15 17:11:44 2010 +0100
Fix syntax error in i18n macro call. Update catalog
commit 09288366c529943861081795cb960c1675580be9
Author: Sébastien Delcros <[email protected]>
Date: Thu Feb 11 23:47:59 2010 +0100
Fix missing _() for better internalization
commit 0a4ed2be7b68d7b363bbd6786b796b807a98da35
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 14 21:51:27 2010 +0100
Message catalog and French translation update.
commit 8611d235e723d48a33f15b49c3446b0211aec99c
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 14 21:44:24 2010 +0100
update changelog
commit e5336264947e8f523d0e4f44bbff7ded2e6af066
Author: Sébastien Renard <[email protected]>
Date: Thu Feb 11 19:13:59 2010 +0100
Disable color when input or output is not a tty
commit b3bea60b3e3fe221d4d5cd8b071b622a86f94ded
Author: Sébastien Renard <[email protected]>
Date: Wed Feb 10 19:57:30 2010 +0100
Add waiting cursor when moving background query to foreground
Apply formating rules to code
commit 84177f8f426b413b256cb3054da3bc1f70fcfb0f
Author: Sébastien Renard <[email protected]>
Date: Thu Oct 29 11:45:14 2009 +0100
Don't call animate cursor twice for csv and exec function
commit cf5b588c94ad76a5ccd916e4342f2a3047ea5a2e
Author: Sébastien Renard <[email protected]>
Date: Tue Oct 20 20:18:04 2009 +0200
Use sys.stdout.write instead of print, to avoid extraspace when using animated cursor buffer
commit aca8d33280d81688f4d11606798a219a377a517e
Author: Sébastien Renard <[email protected]>
Date: Tue Oct 20 20:17:34 2009 +0200
Use getValue instead of readlines/writelines (simplification)
commit 491b2a146a30104823ed81ab5bf5456798d191da
Author: Sébastien Renard <[email protected]>
Date: Wed Oct 14 19:10:32 2009 +0200
Add a flag to disable animatedcursor (useful for unit test)
commit 47cb253609398539f9eb7af1ec6c014e3d302bc8
Author: Sébastien Renard <[email protected]>
Date: Wed Oct 14 18:58:29 2009 +0200
Allow to interrupt waiting cursor at any step, not only at the loop begining
commit fe7131cc9ce3afbef13b5c8d38cf0cc82a879fa2
Author: Sébastien Renard <[email protected]>
Date: Wed Oct 14 08:59:48 2009 +0200
Make stdout handler local to run method
commit b9fc08391f305c449b94cb1c7c8fe6dac4c52ea8
Author: Sébastien Renard <[email protected]>
Date: Wed Oct 14 08:54:11 2009 +0200
Pimp up waiting cursor
commit d921e5c1427f36e596259b4414840fbed6ed6fd7
Author: Sébastien Renard <[email protected]>
Date: Wed Oct 14 08:41:57 2009 +0200
Synchronise end of cursor and IO flush to avoid trashing output
commit a0a237994ad177e54170899c95d4ff3737932513
Author: Sébastien Renard <[email protected]>
Date: Tue Oct 13 23:24:44 2009 +0200
Simple dot waiting cursor - issue with readline
commit 5c7dcf5b7991efa23f3962f335ff97dd01b255ff
Author: Sébastien Renard <[email protected]>
Date: Wed Feb 10 08:58:34 2010 +0100
Backup stdout instead of restoring it from system to avoid unit test mess up
commit 36849c8ae91b8e4933a2423ce8088ebd8cf76326
Author: Sébastien Renard <[email protected]>
Date: Wed Feb 10 08:56:53 2010 +0100
Make cx_Oracle advanced stuff (startup/shutdown) optionnal to allow 9i/10g client and old Cx_Oracle
Reformat code
commit 64e10f4ca2b5821aeba3607d374163d066a2c968
Author: Sébastien Delcros <[email protected]>
Date: Fri Jan 22 00:31:50 2010 +0100
Add of startup and shutdown commands for 10r2 instances
commit fa125b145523fdde85a4127b5e42dfb2bce65904
Author: Sébastien Delcros <[email protected]>
Date: Thu Jan 21 17:11:25 2010 +0100
add of high-level functions for startup and shutdown
commit 05fed71e8b93aa19aef8ee57a7bf4f0546b35d77
Author: Sébastien Renard <[email protected]>
Date: Tue Feb 9 22:13:42 2010 +0100
Use all_tables instead of all_tab_statistics that is only available since 10g
commit 07c6235047ddef76a72314ca31497b262828fe73
Author: Sébastien Delcros <[email protected]>
Date: Tue Jan 19 17:19:38 2010 +0100
Use os.environ to get env settings instead of os.path.expandvars
commit d590f2ef14e35bec563a913c56502ae205a0f481
Author: Sébastien Delcros <[email protected]>
Date: Tue Jan 19 13:45:34 2010 +0100
Use current user by default for searchObject method (more convinient for end user)
commit 8766a271bf4c40eff14466d53a6ce7653757678f
Author: Sébastien Delcros <[email protected]>
Date: Mon Jan 18 22:01:42 2010 +0100
More help for end users
commit 215ca5e41ff228cdd4e152f0506ce7c2cb6b3f8c
Author: Sébastien Delcros <[email protected]>
Date: Thu Dec 31 19:08:04 2009 +0100
Minor corrections
commit bcda91b7b1e16b705f8ec528b192090b293f41e9
Author: Sébastien Delcros <[email protected]>
Date: Thu Dec 31 15:39:57 2009 +0100
Add help for csv and time commands
commit eefeb837aa0185e3c45751b3903ccf29714f9150
Author: Sébastien Renard <[email protected]>
Date: Sun Dec 20 22:03:58 2009 +0100
update changelog and translation
commit c486b6adb836b7803e584c3b51a28d315da5a9a4
Author: Sébastien Renard <[email protected]>
Date: Mon Dec 14 22:28:02 2009 +0100
Code convention
commit b40b6a77d65b8e717216030a982a6de9d6c10af1
Author: Sébastien Renard <[email protected]>
Date: Mon Dec 14 22:22:08 2009 +0100
Fix crash on datafile desc
commit b7376415a911f4509f8876d1653e93c62e538aa5
Author: Sébastien Delcros <[email protected]>
Date: Fri Oct 30 11:10:52 2009 +0100
Removes a debug print from diskusage function
commit 9bd0111cbdb96586811398b2383747f4d0e853fa
Author: Sébastien Delcros <[email protected]>
Date: Fri Oct 30 11:10:07 2009 +0100
Best support for paritionned objects in diskusage function
commit cc0a9eb0665729db89096ca2ed4d0a39bd339544
Author: Sébastien Renard <[email protected]>
Date: Tue Nov 3 19:39:04 2009 +0100
Handle case of bad or unset ORACLE_HOME
commit 05c28f9d7df7988ce96b5f678dc655fe98eace6b
Author: Sébastien Renard <[email protected]>
Date: Thu Oct 29 20:01:34 2009 +0100
Remove dash (-) as completion separator
commit ee4e6e184337bf4a16a22ea57be27c52fd31f14c
Author: Sébastien Delcros <[email protected]>
Date: Tue Oct 27 21:59:44 2009 +0100
Rewrite of the diskusage function
commit 13210ba84031cdb4af550c2a637aed97b88979c0
Author: Sébastien Delcros <[email protected]>
Date: Mon Oct 26 15:03:18 2009 +0100
Rectify an omission in conf parameters verification
commit bafee5ef6188677c8d592dca1b59462c2ab1a6fc
Author: Sébastien Delcros <[email protected]>
Date: Sun Oct 25 14:54:50 2009 +0100
Suppress graphviz warnings in graphical functions (brutal redirection of stdout during picture generation)
commit 539d8ae74c94234c4b1016d68111e284c8c28bdf
Author: Sébastien Delcros <[email protected]>
Date: Sun Oct 25 14:22:04 2009 +0100
Use full file path in generateImage function (graphics). Easier for troubleshooting.
commit 94d42c07dc79e63d2d16db58203aca671eebdda6
Author: Sébastien Delcros <[email protected]>
Date: Thu Oct 22 15:29:14 2009 +0200
Fix bug for index display in diskusage function (mistake in the query; maybe a bloody copy/paste from hell)
commit 266a1a023c1b00bfc1fa7cfae430504c72ec4d03
Author: Sébastien Delcros <[email protected]>
Date: Thu Oct 22 15:26:28 2009 +0200
Fix bug for password-less connection string in batch mode (i.e. when stdin is not a tty)
commit f8665ec2c506e8beebd04468fe2900f7924565d4
Author: Sébastien Renard <[email protected]>
Date: Wed Oct 14 19:15:22 2009 +0200
Fix as sysdba unit test
commit 4f18356eec38e21ac5beaecc7036f071d94d677e
Author: Sébastien Delcros <[email protected]>
Date: Mon Oct 12 17:09:40 2009 +0200
Rewrite ambiguous boolean expression in mode test
commit 12a4492b92989344814e8700306950742a0b0e33
Author: Sébastien Delcros <[email protected]>
Date: Mon Oct 12 15:07:15 2009 +0200
Fix bug for nolog connection (bug added in commit ac0b57ed4bccb9b041d5b36c16ef3e19e76e8a08)
commit 0b7b2f0283f0064a7186881ca4946fc14dba863f
Author: Sébastien Delcros <[email protected]>
Date: Sun Oct 11 22:17:33 2009 +0200
Add space in "@licence" tag for pysql doc generation (epydoc)
commit 4f8a10d5d49c966df73905e7469ebb59947cb08a
Author: Sébastien Delcros <[email protected]>
Date: Sun Oct 11 21:45:49 2009 +0200
Enhance prompt support for multiline commands
commit ac0b57ed4bccb9b041d5b36c16ef3e19e76e8a08
Author: Sébastien Delcros <[email protected]>
Date: Sat Oct 10 22:55:50 2009 +0200
Fix "as sysdba" support in command line
commit 63d0e927241899bec6dbc3cbcc5e896e3fe49538
Author: Sébastien Delcros <[email protected]>
Date: Thu Oct 8 15:47:09 2009 +0200
Add unit support in diskusage function (index display was forgotten last time)
commit c627acd9dfbf45eaf8ea872d4b5c3ad942aba473
Author: Sébastien Delcros <[email protected]>
Date: Thu Oct 8 15:27:31 2009 +0200
Fix diskusage function: allow unprivileged users to use 'du' for themselves (but, of course, they still cannot use 'du' for others)
commit de2067aba6f3aee5ae551431e5f91aad47feb74e
Author: Sébastien Delcros <[email protected]>
Date: Wed Oct 7 13:57:27 2009 +0200
Add unit support in diskusage function
commit 610b2f0258ee44019679d32ca05367e659fb433a
Author: Sébastien Delcros <[email protected]>
Date: Wed Oct 7 13:33:21 2009 +0200
Fix counter display in datamodel function
commit 0fb95113d3f0a67f439db0f88073a64c1ff6545e
Author: Sébastien Delcros <[email protected]>
Date: Wed Oct 7 09:58:42 2009 +0200
Fix graphics generation bug (filter chosen by user was ignored)
commit 09a561b0e6898c39688d08888813551b79cc6a48
Author: Sébastien Renard <[email protected]>
Date: Sat Aug 1 15:08:15 2009 +0200
Cast version to int to avoid stupid release sorting
commit 494b8f5114b7b14d4123ebaa279c4ccd6bdd3727
Author: Sébastien Renard <[email protected]>
Date: Sat Aug 1 14:55:47 2009 +0200
Fix test. Negative value are just considered as zero
commit 99fac9cb5849096062135715515c49bb70e8163b
Author: Sébastien Delcros <[email protected]>
Date: Fri Jul 31 17:57:56 2009 +0200
Add of 2 new options on pysql command line: -S (silent mode for batch) and -L (one try login)
commit 4f0bad43968188707c455adf78c6b272cb069157
Author: Sébastien Renard <[email protected]>
Date: Thu Jul 30 22:41:49 2009 +0200
Remove the espaping code from parser that break option cluster and is useless for pysql
commit eb3ff8dd6a0dedfa20744b8a86c981e92b731fd2
Author: Sébastien Renard <[email protected]>
Date: Thu Jul 30 22:09:06 2009 +0200
Tolerate extra space in line when parsing option
commit 83494f93b41cfdc089cc86e975663209627a9dab
Author: Sébastien Delcros <[email protected]>
Date: Thu Jul 30 14:01:39 2009 +0200
Add display options to DESC command
commit d3fa82c458fe3f9ea767a4fadf314bd0bf492fa6
Author: Sébastien Delcros <[email protected]>
Date: Thu Jul 30 13:39:11 2009 +0200
Add some more statistics on table (nb blocks, avg row length)
commit 589c75fdf93825b2712bc18f8164ccc5cf352d3d
Author: Sébastien Delcros <[email protected]>
Date: Wed Jul 29 14:04:26 2009 +0200
DESC function enhancement (status, creation and last DDL dates & stats)
commit d8fd8daa91d55c9c79f74bc3b77f8a7f04b08c2c
Author: Sébastien Delcros <[email protected]>
Date: Wed Jul 29 14:00:50 2009 +0200
Dont force upper object names (wait for next try)
commit 62ea6b2e4f33fd0dddbde3fcba5bc03686c00bbe
Author: Sébastien Delcros <[email protected]>
Date: Wed Jul 29 13:46:29 2009 +0200
Code spacing alignement
commit 7fbe8ff298e76555bfb40f54384c3f1c8b473cee
Author: Sébastien Renard <[email protected]>
Date: Tue Jul 28 13:32:45 2009 +0200
Bump version for next release
commit 7fc54b3ece87062a3aeddacab190c06c6a9312fe
Author: Sébastien Renard <[email protected]>
Date: Tue Jul 28 13:30:20 2009 +0200
Fix encoding warning on disk_usage function
commit 02414129ede079c58596bea707067de070dfd1d9
Author: Sébastien Renard <[email protected]>
Date: Sun Apr 5 17:40:01 2009 +0200
Translation update
commit e257de9922ac7ebaa38865ecfcb735763dffa4cb
Author: Sébastien Renard <[email protected]>
Date: Sun Apr 5 17:31:18 2009 +0200
Fix message: args must be out gettext macro
commit c83dd9b008e0f9093ad8d35f8caf5479a8c69613
Author: Sébastien Renard <[email protected]>
Date: Sun Apr 5 17:29:58 2009 +0200
Add "immediate" option to kill session
commit 530ec3f5ff6ac97fec722e14d7443c66a7d9be34
Author: Sébastien Renard <[email protected]>
Date: Sat Mar 14 22:06:41 2009 +0100
Update LICENSE file to GPL v3 according to pysql license change
commit e3251da77918eeae739bd037b2f8f42d81e82db0
Author: Sébastien Renard <[email protected]>
Date: Sat Mar 14 19:18:40 2009 +0100
Add number of rows and last analyzed date to desc table
commit 0641435cb8f528a01a0eaa1dcab72137927c9a15
Author: Sébastien Renard <[email protected]>
Date: Thu Mar 12 08:24:09 2009 +0100
Add a search feature to session display function
commit 926dcfae0ee37c70744ec70018d8bdee145c1aa6
Author: Sébastien Renard <[email protected]>
Date: Tue Mar 10 19:35:51 2009 +0100
Add role and profile search (thanks to Sebastien Delcros)
commit 0451e98b8d1c1a0a6aa669dab169412118b7f9bf
Author: Sébastien Renard <[email protected]>
Date: Tue Mar 10 19:29:53 2009 +0100
Fix xprop call. Use real hostname as default
commit 8ae5e46b8cb22330d441617e3490ad47cb94dddc
Author: Sébastien Renard <[email protected]>
Date: Mon Mar 2 10:57:15 2009 +0100
Use tput instead of stty to get terminal width. Fix wrong
terminal width computation on AIX.
commit d82df41214e69d50a709f08cf6eb43f1cb97c435
Author: Sébastien Renard <[email protected]>
Date: Mon Mar 2 10:43:38 2009 +0100
Don't break if there's no X display to get title
commit 03a1d3351093acbc6ef4c77895dd159b9b7cbc7f
Author: Sébastien Renard <[email protected]>
Date: Wed Feb 18 19:59:59 2009 +0100
Squash nasty \r that blow out display with stupid SQL request
commit 760d4509c41e165d727a781e8dec5e5c5f2124d5
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 15 22:46:43 2009 +0100
Automatic terminal width determination for Unix system
commit 55c5e397c4e7a4eb13edee93cee30b4dbb478903
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 15 17:50:29 2009 +0100
Update changelog. Bump version to 0.13
commit 987255b3a20c6c695ca487e659308f050d44939d
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 15 17:37:13 2009 +0100
Fix broken messages in compare function that make it crash
commit b7865c890fe564f12522d88a25e2f615d46b573e
Author: Sébastien Renard <[email protected]>
Date: Tue Feb 10 21:51:56 2009 +0100
Add more unit test for do_dependencies
commit ec2226f7ecabc7d6524369806f49b9f6c4203192
Author: Sébastien Renard <[email protected]>
Date: Tue Feb 10 21:50:45 2009 +0100
Don't output help on stderr
commit 287f3b6d93dbb4a60e4dfe3a7efa6b16610b4600
Author: Sébastien Renard <[email protected]>
Date: Tue Feb 10 19:59:44 2009 +0100
Display a nice message if no tables found
commit e47f17b6cb858e70658e7ad7b0ae2bb76f56167f
Author: Sébastien Renard <[email protected]>
Date: Tue Feb 10 19:59:24 2009 +0100
Add unit test for do_dependencies and do_datamodel
commit 61af6f478b157912f2e7449da90b50139560b8ed
Author: Sébastien Renard <[email protected]>
Date: Tue Feb 10 19:58:30 2009 +0100
No need for global variable for CONNECT_STRING
commit d9059aa893ffd4ee32b69c347758afaa80e8da82
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 1 22:53:28 2009 +0100
Add unittest for count and describe function
commit 177fd5fc0b9e82778eca458add33e1e455d450df
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 1 22:42:42 2009 +0100
Add missing translation on desc function
commit 6474aff310f2b7f78b193f302bfdf253a43a336f
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 1 20:34:24 2009 +0100
Add unittest for commit and rollback functions
commit a7e0e7b8cd28e65df6a9bf170d06f046264333ff
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 1 20:14:39 2009 +0100
Factorise readline loading code
Add unittest for library command
commit 453bb8cd2937ace08f45c01cfefbed6e44fb2351
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 1 20:01:30 2009 +0100
Add completion for library command
commit 3455950e277060b4fa17cfb9f6fddddc0c9b5445
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 1 19:49:43 2009 +0100
Fix history test. Make connect string required for all tests
commit 750fa2dcd004c9e472c4a54095ecafa8dc8cc6d2
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 1 12:41:42 2009 +0100
Restore standard terminal name on windows at exit
commit 11112626006af092b7be61da54fea6047826ecf8
Author: Sébastien Renard <[email protected]>
Date: Sun Feb 1 12:38:31 2009 +0100
Catch Keyboard interrupt at command level. Needed since
standardError are also catched here now.
commit 46a8b2f69dadac6fac2ff8432518c6e14705f4bf
Author: Sébastien Renard <[email protected]>
Date: Sat Jan 31 18:44:50 2009 +0100
Use $sqltext instead of v$sql to get current statement in
session function in order to have full untruncated statement
commit c41ca3ada58c945d39431263c6f27a9938c8340f
Author: Sébastien Renard <[email protected]>
Date: Sat Jan 31 17:31:12 2009 +0100
Update message catalog and french translation
commit e1a73f93c41e572bbe5adb59622217cbc35ad58e
Author: Sébastien Renard <[email protected]>
Date: Sat Jan 31 17:26:02 2009 +0100
Move set/get Title in pysqlhelpers. Add some unit test
commit e18e64d51ebef2a6fb8d19799c67b2c54c58312b
Author: Sébastien Renard <[email protected]>
Date: Sat Jan 31 14:24:47 2009 +0100
Restore terminal name at exit
commit 6395fc758b2a6f41cd1fc094d6fba374e8d365cf
Author: Sébastien Renard <[email protected]>
Date: Fri Jan 30 12:36:49 2009 +0100
Fix missing unicode tag on some queries. (solve unicode warning on lock
command).
commit 0ff59bb076bdfdbe7d42b0a286c29b2d7c7a3e24
Author: Sébastien Renard <[email protected]>
Date: Thu Jan 29 14:12:19 2009 +0100
Add missing i18n
commit 185f0bf6b909352fd1c8fb4dd26095ccc6ee76ec
Author: Sébastien Renard <[email protected]>
Date: Thu Jan 29 13:00:02 2009 +0100
Really fix unicode connect string issue with cx_Oracle 5
commit 357571550580adbdff61e2471b2965643ead1ec5
Author: Sébastien Renard <[email protected]>
Date: Mon Jan 26 22:07:43 2009 +0100
Update changelog. Remove sql test that are now cover with unit test.
Release pysql 0.12 ! Houra.
commit 512edee53442cbc40493f748b369b6906417703f
Author: Sébastien Renard <[email protected]>
Date: Mon Jan 26 14:23:04 2009 +0100
I18n some strings, update french translation and remove
the private joke about JF and "not connected to Oracle" error message
commit b6da4eedf42607b14e73af285f9cf2087b7157cc
Author: Sébastien Renard <[email protected]>
Date: Mon Jan 26 12:35:22 2009 +0100
Add completion on command aliases
commit 5c799ff93ab6241fa68db9929c9a72e97ad0f22b
Author: Sébastien Renard <[email protected]>
Date: Sun Jan 25 23:05:30 2009 +0100
Don't rely on datetime.strftime because it does not support year
before 1900.
commit 72da63906dc39af078d9ceac1e13093fd60dead0
Author: Sébastien Renard <[email protected]>
Date: Fri Jan 23 18:19:23 2009 +0100
Add missing online help and add some comments
commit bedbc56302d0404a2c08c2ba270c0ac0d2ffc617
Author: Sébastien Renard <[email protected]>
Date: Fri Jan 23 14:08:53 2009 +0100
Catch graphviz errors to display nice message
Factorize graphiz call code a little
commit 32c5b2899e1bffd0844cde800c4f4450409ed256
Author: Sébastien Renard <[email protected]>
Date: Mon Jan 19 21:04:59 2009 +0100
Add user function to list schemas and doc cleanup (patch by S. Delcros)
commit f774ab91e53c52861fe33d63f703b6814daaa44f
Author: Sébastien Renard <[email protected]>
Date: Thu Jan 8 08:21:47 2009 +0100
Add unittest for do_disconnect and do_history
commit 0d0c20fa0d6f0642a82424b18997f5685d808f78
Author: Sébastien Renard <[email protected]>
Date: Thu Jan 8 08:20:31 2009 +0100
Add a debug function that dump current captured stdout on
real terminal stdout. Usefull for test debuging
commit 83d0c1f44c802508836a9dff91c0df61c05b0cce
Author: Sébastien Renard <[email protected]>
Date: Thu Jan 8 07:47:11 2009 +0100
Add ORA code catcher function
Add tests for do_connect
commit 0b2aaf1018d6a5cdc472c0f7bc0e64a41e4f3724
Author: Sébastien Renard <[email protected]>
Date: Thu Jan 8 07:45:59 2009 +0100
Add option to exception catcher to avoid cleaning the buffer
commit e82d6acb21e9523097f462f180eebae7e79c168e
Author: Sébastien Renard <[email protected]>
Date: Tue Jan 6 13:57:15 2009 +0100
Fix wrong argument checking for connect command
commit 4508834dda6da2f7529dc1cae9961546470aecc3
Author: Sébastien Renard <[email protected]>
Date: Tue Jan 6 13:52:59 2009 +0100
Move setUp() and TearDown() method on mother class
Add (empty) test case for completers commands
commit 9e0a8857ecb8d53638ae9e1a3bb697b3d960d467
Author: Sébastien Renard <[email protected]>
Date: Tue Jan 6 13:45:17 2009 +0100
Split shell tests in two TestCase: connected and not connected test
Create a mother class for shell unit test to factorise shell init
code.
Remove from .sql test file commands that are now tested in unit tests.
commit 91611423821a1a8c53da369aafe5c861e0217edb
Author: Sébastien Renard <[email protected]>
Date: Sun Jan 4 22:29:18 2009 +0100
Capture output before shell creation
because cmd.py __init__ copy sys.stdout
commit 19f76ff7593b17d4d4f635249f370c11cb5bf25a
Author: Sébastien Renard <[email protected]>
Date: Sun Jan 4 19:22:55 2009 +0100
Define a structure to be able to test pysql shell
Add unit test for bg commands as a proof of concept
commit a237eebb380ec81d190c7c162a9e8a7e7582ddef
Author: Sébastien Renard <[email protected]>
Date: Sun Jan 4 19:21:50 2009 +0100
Take care of user locale
Disable colors during test to ease string comparison
Add an stdout capture mechanism to be able to test pysql shell
commit 3b28d5f26e9fa9d0e205e07984e88b02e73fb9ee
Author: Sébastien Renard <[email protected]>
Date: Fri Jan 2 18:12:28 2009 +0100
Factorise stacktrace dumping code in helper module
Display some debug info when dumping stacktrace : pysql release, cx Oracle release
and python release.
commit 60d3da25b15b351924739d7cfd0546d4a258905a
Author: Sébastien Renard <[email protected]>
Date: Fri Jan 2 17:29:22 2009 +0100
Send dist dir by default
commit f4716b7643e06afb109a62c24b090414dba0579c
Author: Sébastien Renard <[email protected]>
Date: Fri Jan 2 16:54:56 2009 +0100
cx_Oracle v > 5.0 does not like unicode connection string.
So encode it with default user encoding
commit c51e546fb6ba7ef399e914a27143c8964c19d019
Author: Sébastien Renard <[email protected]>
Date: Wed Dec 31 16:58:42 2008 +0100
Fix version displaying under Unix for standard and devel install
commit 7816d935c28bed483944bb201d71d44347a1de5c
Author: Sébastien Renard <[email protected]>
Date: Wed Dec 31 00:05:04 2008 +0100
Update po catalog and french translation
commit a9567d5045de5a5a962c5d0539ef8e7d7222c321
Author: Sébastien Renard <[email protected]>
Date: Wed Dec 31 00:02:57 2008 +0100
Move locale dir to src/share dir. This allow translation testing even
if pysql is not installed (just untar)
commit 589a552aab98fcdbb7186ce04ffaf9ab7eaea82f
Author: Sébastien Renard <[email protected]>
Date: Tue Dec 30 23:33:34 2008 +0100
Small cleanup
commit b11c25a1aa6225184cf12c3a6c7040748238ae0d
Author: Sébastien Renard <[email protected]>
Date: Tue Dec 30 23:00:40 2008 +0100
Unit test for which function and corner case fix
commit e06a7ce0b7b4c7faff868bdc6ffa9cd476584b86
Author: Sébastien Renard <[email protected]>
Date: Tue Dec 30 22:50:54 2008 +0100
One more unit test for removeComment... and one more bug killed
commit 7253fbc922c5bd52f69bef5ba1fc480c3a0dc7f3
Author: Sébastien Renard <[email protected]>
Date: Tue Dec 30 20:07:43 2008 +0100
Fix many bugs in removeComment function and adds unit tests
commit 4f1f7a470c171c1d930bbc699b37104129e4dff7
Author: Sébastien Renard <[email protected]>
Date: Tue Dec 30 15:14:31 2008 +0100
Add some basic but usefull unit test. Starting with pysqlhelpers module
commit b5f64bd01427a5149af4713848f3e2101dbbb964
Author: Sébastien Renard <[email protected]>
Date: Tue Dec 30 15:10:21 2008 +0100
Fix parsing bugs in generatewhere function thanks to new unit test suite
commit a0297421f924d015c04ec453773634035dc6534b