forked from fedora-infra/packagedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3543 lines (2798 loc) · 157 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
2009-06-14 Toshio Kuratomi <[email protected]> - r355
Update NEWS for new release.
2009-06-14 Toshio Kuratomi <[email protected]> - r354
Update version of API changes to reflect 0.5.0 is the target.
2009-06-14 Toshio Kuratomi <[email protected]> - r353
Prevent retired packages from having group acls changed.
2009-06-14 Toshio Kuratomi <[email protected]> - r352
Fix sending group information -- optparse now generates a dict so we don't
need to fix it up manually.
2009-06-14 Toshio Kuratomi <[email protected]> - r351
edit_package(): Default to devel branch
Fix group acl changes.
2009-06-14 Toshio Kuratomi <[email protected]> - r350
Fix add package to save extra package information like groups, comaint, etc.
2009-06-14 Toshio Kuratomi <[email protected]> - r349
* Can only add one package at a time (prevents typos from adding packages)
* Must specify add or edit
2009-06-14 Toshio Kuratomi <[email protected]> - r348
Fix case of status.
2009-06-13 Toshio Kuratomi <[email protected]> - r347
Update to new test release.
2009-06-12 Toshio Kuratomi <[email protected]> - r346
Change bugs listing so that it finds bugs in Fedora EPEL as well as Fedora.
2009-06-09 Toshio Kuratomi <[email protected]> - r345
Includejavacript that goes at the bottom of pages too.
2009-06-09 Toshio Kuratomi <[email protected]> - r344
Switch from mochikit 1.3 + a few scripts to mochikit-1.4.
2009-06-09 Toshio Kuratomi <[email protected]> - r343
Fix issues with setting acls in the javascript code.
2009-06-09 Toshio Kuratomi <[email protected]> - r342
Fix problem where unretiring a package showed blank boxes for package acls.
2009-06-09 Toshio Kuratomi <[email protected]> - r341
Fix call to set_bugzilla_owner().
2009-06-08 Toshio Kuratomi <[email protected]> - r340
Fix syntax error -- one too many parens.
2009-06-08 Toshio Kuratomi <[email protected]> - r339
Make all options to pkgdb-client part of either the add or edit command.
2009-06-06 Toshio Kuratomi <[email protected]> - r338
Update release and spec file for new test release.
2009-06-06 Toshio Kuratomi <[email protected]> - r337
Change bugzilla list to display all non-removed packages. Once a package has
gone to the repositories it must have a bugzilla entry even if that directs to
orphan.
2009-06-06 Toshio Kuratomi <[email protected]> - r336
Use string formatting instead of concat to construct path.
2009-06-06 Toshio Kuratomi <[email protected]> - r335
Have bugzilla list show orphans as well.
2009-06-06 Toshio Kuratomi <[email protected]> - r334
Need to install babel as well.
2009-06-02 Toshio Kuratomi <[email protected]> - r333
Fix for Throbber ids: ids can't begin with a number.
2009-05-28 Toshio Kuratomi <[email protected]> - r332
Fix Status backrefs to work with sqlalchemy-0.5
2009-05-19 Toshio Kuratomi <[email protected]> - r331
Merge kolesovdv's changes for autopromoting comaintainers and changing
pkgdb-client to separate add from edit.
2009-05-19 Toshio Kuratomi <[email protected]> - r330
Fix some issues with the pkgpage not updating correctlt when retired and
unretired.
2009-05-16 Toshio Kuratomi <[email protected]> - r329
Set the pkgpage to not display an ownership button while the package is
retired and to show it again when the package is unretired.
2009-05-16 Toshio Kuratomi <[email protected]> - r328
Prevent owner from changing while a package is retired.
2009-05-15 Toshio Kuratomi <[email protected]> - r327
Add comment that python-bugzilla>= 0.5 is needed.
2009-05-15 Toshio Kuratomi <[email protected]> - r326
Fix usercache to actually store user information.
2009-05-15 Toshio Kuratomi <[email protected]> - r325
Require python-bugzilla>= 0.5
2009-05-15 Toshio Kuratomi <[email protected]> - r324
Make AJAX calls handle query strings in the URLs.
2009-05-15 Toshio Kuratomi <[email protected]> - r323
Convert from checking orphan user to checking orphan statuscode.
2009-05-15 Toshio Kuratomi <[email protected]> - r322
Also take the opportunity to fix up packages which still have orphan statuscodes
even though they are now owned.
2009-05-14 Toshio Kuratomi <[email protected]> - r321
* Make orphan page use status instead of owner
* Make orphan page not display EOL distributions by default.
2009-05-14 Toshio Kuratomi <[email protected]> - r320
Redirect old orphan page to the new orphan page.
2009-05-14 Toshio Kuratomi <[email protected]> - r319
Fix syntax error.
2009-05-14 Toshio Kuratomi <[email protected]> - r318
Allow userpkg pages to turn off filtering on EOL distributions.
2009-05-14 Toshio Kuratomi <[email protected]> - r317
Also prevent EOL mass branching in the dispatcher.
2009-05-14 Toshio Kuratomi <[email protected]> - r316
Do not show mass branch UI for EOL distributions.
2009-05-14 Toshio Kuratomi <[email protected]> - r315
Fix traceback when returning json from /packages/name
2009-05-14 Toshio Kuratomi <[email protected]> - r314
Fix quoting of create bug link: https://fedorahosted.org/packagedb/ticket/145
2009-05-14 Toshio Kuratomi <[email protected]> - r313
Bump version for new test release.
2009-05-14 Toshio Kuratomi <[email protected]> - r312
Workaround an issue with TurboGears version of gettext.
2009-05-14 Toshio Kuratomi <[email protected]> - r311
Simplifysome code using the STATUS dict.
2009-05-14 Toshio Kuratomi <[email protected]> - r310
Change usage of status entries from the statustranslation table to use STATUS
2009-05-14 Toshio Kuratomi <[email protected]> - r309
Convert all uses of a statuscodeid to use global utils.STATUS.
2009-05-14 Toshio Kuratomi <[email protected]> - r308
Instructions for running under mod_wsgi, working with translations, and making
a release.
2009-05-14 Toshio Kuratomi <[email protected]> - r307
Update pot file.
2009-05-13 Toshio Kuratomi <[email protected]> - r306
Change order of imports to break an unresolvable circular import.
2009-05-13 Toshio Kuratomi <[email protected]> - r305
Update Copyright date for files that have changed recently.
2009-05-13 Toshio Kuratomi <[email protected]> - r304
Fix synax error.
2009-05-13 Toshio Kuratomi <[email protected]> - r303
* Switch to global pgdb.utils.STATUS
* Mark translatable strings.
2009-05-13 Toshio Kuratomi <[email protected]> - r302
GROUP_MAP is no longer needed.
2009-05-13 Toshio Kuratomi <[email protected]> - r301
Mark translatable strings.
2009-05-13 Toshio Kuratomi <[email protected]> - r300
Mark translatable strings
Correct docstrings for sphinx.
2009-05-13 Toshio Kuratomi <[email protected]> - r299
Switch from locally defined status cache to global pkgdb.util.STATUS
2009-05-13 Toshio Kuratomi <[email protected]> - r298
* Mark translatable strings
* Fix docstring
2009-05-13 Toshio Kuratomi <[email protected]> - r297
Mark translatable strings
Fix up docstrings for sphinx
2009-05-13 Toshio Kuratomi <[email protected]> - r296
Mark translatable strings and fix a typo.
2009-05-13 Toshio Kuratomi <[email protected]> - r295
* Convert to use fedora.tg.util.request_format()
* Mark translatable strings.
2009-05-12 Toshio Kuratomi <[email protected]> - r294
Explicitly import the pieces of the model that we need.
2009-05-12 Toshio Kuratomi <[email protected]> - r293
Switch from locally cached statuses to utils.STATUS.
2009-05-12 Toshio Kuratomi <[email protected]> - r292
* Change logging to use the global utils.LOG
* Mark translatable strings.
2009-05-12 Toshio Kuratomi <[email protected]> - r291
* Mark translatable strings
* Fix up docstrings for sphinx
2009-05-12 Toshio Kuratomi <[email protected]> - r290
Fix imports to get _() and remove unused StatusTranslation
2009-05-12 Toshio Kuratomi <[email protected]> - r289
Convert from caching statuscodes locally to pkgdb.utils.STATUS
2009-05-12 Toshio Kuratomi <[email protected]> - r288
remove unused removedStatus cache.
2009-05-12 Toshio Kuratomi <[email protected]> - r287
Depend on python-fedora to have jsonify_validation_errors() now.
2009-05-12 Toshio Kuratomi <[email protected]> - r286
Switch from getting removedStatus locally to using STATUS['Removed']
2009-05-12 Toshio Kuratomi <[email protected]> - r285
Fix construction of title now that parameters are passed in as lazystring.
2009-05-12 Toshio Kuratomi <[email protected]> - r284
Fix some syntax errors introduced when marking i18n'able strings.
2009-05-12 Toshio Kuratomi <[email protected]> - r283
Update paginate decorator from deprecated allow_limit_override to max_limit.
2009-05-12 Toshio Kuratomi <[email protected]> - r282
* Fix to invokation of init_globals()
* Fix to import of fedora.tg.util
2009-05-12 Toshio Kuratomi <[email protected]> - r281
require a newer python-fedora for jsonfas2 identity provider.
2009-05-12 Toshio Kuratomi <[email protected]> - r280
Fix build to substitute sbindir correctly.
2009-05-12 Toshio Kuratomi <[email protected]> - r279
Fix a typo in pavement.py.
2009-05-05 Toshio Kuratomi <[email protected]> - r278
Sphinxify docstring.
2009-05-05 Toshio Kuratomi <[email protected]> - r277
* Mark translatable strings.
* Correct docstrings
2009-05-05 Toshio Kuratomi <[email protected]> - r276
Start writing install tasks for paver
2009-05-05 Toshio Kuratomi <[email protected]> - r275
Correct typo in install of database schemas.
2009-04-22 Toshio Kuratomi <[email protected]> - r274
Add update-schema files
2009-04-22 Toshio Kuratomi <[email protected]> - r273
Include translations in tarball.
2009-04-22 Toshio Kuratomi <[email protected]> - r272
Add pot file. This is woefully incomplete at the moment.
2009-04-22 Toshio Kuratomi <[email protected]> - r271
Add message_extractors so babel can extract messages.
2009-04-22 Toshio Kuratomi <[email protected]> - r270
Import gettext.
2009-04-22 Toshio Kuratomi <[email protected]> - r269
Mark strings for translation.
2009-04-22 Toshio Kuratomi <[email protected]> - r268
Mark strings for translations
2009-04-22 Toshio Kuratomi <[email protected]> - r267
Mark strings for translation
2009-04-22 Toshio Kuratomi <[email protected]> - r266
Directories for l10n files.
2009-04-22 Toshio Kuratomi <[email protected]> - r265
Still need setup.py in the tarball because install isn't ported yet.
2009-04-21 Toshio Kuratomi <[email protected]> - r264
Use paver for the build step -- just have install left to port.
Add things so mod_wsgi runs out of the box.
2009-04-21 Toshio Kuratomi <[email protected]> - r263
Create a substitution task to edit path information in files at build time.
2009-04-21 Toshio Kuratomi <[email protected]> - r262
Remove update-schema/* sfrom scripts target. We don't want those to be
installed in /usr/bin.
2009-04-21 Toshio Kuratomi <[email protected]> - r261
Add python interpreter shebang.
2009-04-21 Toshio Kuratomi <[email protected]> - r260
Add Apache configuration for mod_wsgi driven pkgdb.
2009-04-20 Toshio Kuratomi <[email protected]> - r259
Merge fix to json return values from kolesovdv.
2009-04-19 Toshio Kuratomi <[email protected]> - r258
Add wsgi script to pavement.py
2009-04-19 Toshio Kuratomi <[email protected]> - r257
Update for paver-1.0.
2009-04-19 Toshio Kuratomi <[email protected]> - r256
Move log formatters into pkgdb.cfg: site admins are likely to want to
configure that.
Make the default config more suited to running under mod_wsgi
2009-04-19 Toshio Kuratomi <[email protected]> - r255
Fix a problem wiht how globals are defined when called from on_startup().
2009-04-19 Toshio Kuratomi <[email protected]> - r254
Merge change to create branches via Package.create_listing() from kolesovdv.
2009-04-18 Toshio Kuratomi <[email protected]> - r253
Fix bug where packages that were removed from Fedora were listed on the
collection page.
2009-04-18 Toshio Kuratomi <[email protected]> - r252
Workaround for new yum repodata.
2009-04-18 Toshio Kuratomi <[email protected]> - r251
Note kolesovdv's new contributions.
2009-04-18 Toshio Kuratomi <[email protected]> - r250
Add remove user functionality from kolesovdv
2009-04-18 Toshio Kuratomi <[email protected]> - r249
Update the yum repos with repositories that are accessible from within PHX.
2009-04-08 Toshio Kuratomi <[email protected]> - r248
Update extras repos since they've all been moved to archives.
2009-03-20 Toshio Kuratomi <[email protected]> - r247
Add kolesovdv to the AUTHORs file.
2009-03-18 Toshio Kuratomi <[email protected]> - r246
Need to append rather than call turbogears.startup.call_on_startup
2009-03-18 Toshio Kuratomi <[email protected]> - r245
Update qa-contact schema as well.
2009-03-18 Toshio Kuratomi <[email protected]> - r244
Merge mapleoin's branch with fixes for userid => username and db schema changes.
2009-03-18 Toshio Kuratomi <[email protected]> - r243
Another place where id needs to be changed to username
2009-03-18 Toshio Kuratomi <[email protected]> - r242
Update utils.startup() => utils.init_globals().
2009-03-17 Toshio Kuratomi <[email protected]> - r241
Allow login() method to be used by json.
2009-03-17 Toshio Kuratomi <[email protected]> - r240
* Set admin and pkger group at load time otherwise they will be set to None
when identity decorators are created.
* Set the groups in the config file.
2009-03-17 Toshio Kuratomi <[email protected]> - r239
Branch.clone() no longer takes a userid.
2009-03-17 Toshio Kuratomi <[email protected]> - r238
Remove ownername as it's no longer needed.
2009-03-17 Toshio Kuratomi <[email protected]> - r237
Add the things that need to be invoked on startup to the wsgi script.
Make the wsgi script get directory information from the build.
Rename pkgd.utils.startup to init_globals()
2009-03-17 Toshio Kuratomi <[email protected]> - r236
dos2unix
2009-03-16 Toshio Kuratomi <[email protected]> - r235
* Remove GroupCache as it's no longer needed.
* Rewrite UseraCache to only cache specific users on demand.
* dispatcher: Change person_by_username() calls to use the cache instead.
2009-03-16 Toshio Kuratomi <[email protected]> - r234
remove import of pkgdb.utils.fas as it's no longer used here.
2009-03-16 Toshio Kuratomi <[email protected]> - r233
Remove fas.cache dependence.
2009-03-16 Toshio Kuratomi <[email protected]> - r232
Remove use of fas.cache and no longer send the author_id through the
massbranch() and clone() methods as we're able to use the author_name.
2009-03-16 Toshio Kuratomi <[email protected]> - r231
No longer have to send ownerName specially since the db field is a username
rather than userid.
2009-03-16 Toshio Kuratomi <[email protected]> - r230
userid => username fix.
2009-03-16 Toshio Kuratomi <[email protected]> - r229
Fix up packages to not use fas now that we have username and groupname in the
pkgdb.
2009-03-16 Toshio Kuratomi <[email protected]> - r228
Remove dependence on fas.cache now that we store username in the db.
2009-03-16 Toshio Kuratomi <[email protected]> - r227
Use jsonfas2 as the identity provider.
2009-03-04 Toshio Kuratomi <[email protected]> - r226
Another typo in a substitution pattern
2009-03-04 Toshio Kuratomi <[email protected]> - r225
Set transform-ids.py to be built and installed.
2009-03-04 Toshio Kuratomi <[email protected]> - r224
Fix missing @ for substitution.
2009-03-04 Toshio Kuratomi <[email protected]> - r223
Merge maploins changes for retiring packages.
2009-03-02 Toshio Kuratomi <[email protected]> - r222
Fix include of schema updates.
2009-03-02 Toshio Kuratomi <[email protected]> - r221
Update MANIFEST.in to include doc files.
2009-03-02 Toshio Kuratomi <[email protected]> - r220
Update version for a prerelease.
2009-03-02 Toshio Kuratomi <[email protected]> - r219
First stab at csrf token handling in the dojo BaseClient.
2009-03-02 Toshio Kuratomi <[email protected]> - r218
Stylesheets merged.
2009-03-01 Toshio Kuratomi <[email protected]> - r217
Add the csrf token to the calls to the server.
2009-03-01 Toshio Kuratomi <[email protected]> - r216
Get rid of compat javascript vars.
2009-03-01 Toshio Kuratomi <[email protected]> - r215
Global identity variablesrenamed from things like: tgUserUserName =>
fedora.identity.username
2009-03-01 Toshio Kuratomi <[email protected]> - r214
Update to new form of python-fedora loginform
2009-03-01 Toshio Kuratomi <[email protected]> - r213
Switch to using jsglobals from python-fedora.
2009-03-01 Toshio Kuratomi <[email protected]> - r212
Add PEP8 link.
2009-03-01 Toshio Kuratomi <[email protected]> - r211
Merge changes from maploin
2009-02-24 Toshio Kuratomi <[email protected]> - r210
Remove NEEDINFO as it isn't really a bug state.
2009-02-21 Toshio Kuratomi <[email protected]> - r209
Make use of login and logout methods from python-fedora.
2009-02-21 Toshio Kuratomi <[email protected]> - r208
CSS for new login boxes and some merges have made it to fedora.css.
2009-02-21 Toshio Kuratomi <[email protected]> - r207
Updated login and layout templates that load login sections from python-fedora.
2009-02-21 Toshio Kuratomi <[email protected]> - r206
Call the enable_csrf() function on startup.
2009-02-21 Toshio Kuratomi <[email protected]> - r205
Correct spelling.
2009-02-21 Toshio Kuratomi <[email protected]> - r204
Initial wsgi script from mmcgrath.
2009-02-16 Ionuț Arțăriși <[email protected]> - r203
merged with mapleoin-devel for userid>username and groupid>groupname change
2009-02-14 Frank Chiulli <frank@flinux> - r202
Merge and fix conflict in dispatcher.py
2009-02-14 Toshio Kuratomi <[email protected]> - r201
Import the controllers LOG object so we can log when bugzilla is disabled.
2009-02-14 Toshio Kuratomi <[email protected]> - r200
Add more information about the assignee.
2009-02-14 Toshio Kuratomi <[email protected]> - r199
config option to not reassign ownership of bugs in bugzilla. This is needed
to turn off functionality when running a test server.
2009-02-13 Toshio Kuratomi <[email protected]> - r198
Merge fix to email alias list generation.
2009-02-08 Frank Chiulli <frank@flinux> - r197
Fix rendering - blank area at top of page.
2009-02-07 Toshio Kuratomi <[email protected]> - r196
Revert path => path_info change as it doesn't work with the production code.
Have to wait for the updated identity controller with CSRF fixes.
2009-02-03 Ionuț Arțăriși <[email protected]> - r195
* pkgdb/search.py: fix typo in search pagination
2009-02-03 Toshio Kuratomi <[email protected]> - r194
Update the forward_url to use path_info.
2009-02-03 Toshio Kuratomi <[email protected]> - r193
merge Frank Chiulli's doc fixes.
2009-02-03 Toshio Kuratomi <[email protected]> - r192
We go to some trouble to give package name matches precedence over description
matches. So take out default order from paginate.
2009-02-03 Toshio Kuratomi <[email protected]> - r191
Fix traceback in searching packages.
2009-01-25 Toshio Kuratomi <[email protected]> - r190
Update the new variable names a little.
2009-01-24 Toshio Kuratomi <[email protected]> - r189
Update to_unicode() to handle non-str objects.
2009-01-22 Toshio Kuratomi <[email protected]> - r188
Update for 0.3.10.1 release.
2009-01-22 Toshio Kuratomi <[email protected]> - r187
Call python-bugzilla so that it uses a temporary file for cookies.
2009-01-22 Toshio Kuratomi <[email protected]> - r186
Have the bugs interface use pkgdb.utils.bugzilla.
2009-01-22 Toshio Kuratomi <[email protected]> - r185
Create a temporary file for bugzilla cookies to be saved in.
Setup onstartup and onshutdown handlers.
2009-01-22 Toshio Kuratomi <[email protected]> - r184
We aren't ready to use an entrypoint yet.
2009-01-21 Toshio Kuratomi <[email protected]> - r183
Update for 0.3.10 release.
== 0.3.10 ==
2009-01-21 Toshio Kuratomi <[email protected]> - r182
Add Jon Stanley to the AUTHORS file.
2009-01-21 Toshio Kuratomi <[email protected]> - r181
Update NEWS for 0.3.10 release.
2009-01-21 Toshio Kuratomi <[email protected]> - r180
Bump version for new release.
2009-01-21 Toshio Kuratomi <[email protected]> - r179
Update Copyright date.
2009-01-21 Toshio Kuratomi <[email protected]> - r178
Merge README from trunk
2009-01-21 Toshio Kuratomi <[email protected]> - r177
Fixes for the bugzilla checking code.
2009-01-21 Toshio Kuratomi <[email protected]> - r176
Change in the class name for Bugs
2009-01-17 Toshio Kuratomi <[email protected]> - r175
Update pkgpage template so the provenpackager checkbox is insensitive unless
you are a cvsadmin.
2009-01-17 Toshio Kuratomi <[email protected]> - r174
Policy change: only cvsadmins can change whether provenpackager is allowed
to modify a package.
2009-01-17 Toshio Kuratomi <[email protected]> - r173
Add postgresql-contrib.
2009-01-17 Toshio Kuratomi <[email protected]> - r172
When adding people to watchbugzilla or owner, make sure their email address
is a valid bugzilla address.
2009-01-17 Toshio Kuratomi <[email protected]> - r171
Move bugzilla initialization into utils so we can use it from multiple
places.
2009-01-17 Toshio Kuratomi <[email protected]> - r170
Remove generated html file.
2009-01-17 Toshio Kuratomi <[email protected]> - r169
Fix typo.
2009-01-11 pkgdb <[email protected]> - r168
merge to 0.3.x branch
2009-01-11 pkgdb <[email protected]> - r167
Added reassigning bugs on taking ownership
== 0.3.9.2 ==
2008-11-05 Toshio Kuratomi <[email protected]> - r503
* Update for 0.3.9.2
2008-11-05 Toshio Kuratomi <[email protected]> - r502
* Fix group handling when no groups are given.
* Create groups_dict when adding a new package as well.
2008-11-05 Toshio Kuratomi <[email protected]> - r501
Remove duplicate __init__ that was moved to logs.py.
== 0.3.9.1 ==
2008-11-05 Toshio Kuratomi <[email protected]> - r500
Commit ChangeLog for the 0.3.9.1 release.
2008-11-05 Toshio Kuratomi <[email protected]> - r499
Merge changes from jstanley to make bugzilla sync use python-bugzilla.
2008-11-05 Toshio Kuratomi <[email protected]> - r498
Update for 0.3.9.1
2008-11-05 Toshio Kuratomi <[email protected]> - r497
Email a log of the branching status to the person who invoked it.
2008-11-04 Toshio Kuratomi <[email protected]> - r496
Fix missing comma in config file.
2008-11-04 Toshio Kuratomi <[email protected]> - r495
Use os.path.expanduser() to expand the user config file.
2008-11-04 Toshio Kuratomi <[email protected]> - r494
Update ChangeLog for new release.
== 0.3.9 ==
2008-11-04 Toshio Kuratomi <[email protected]> - r493
Update for 0.3.9 release.
2008-11-04 Toshio Kuratomi <[email protected]> - r492
Parse a per-user config file in addition to the global config.
2008-11-04 Toshio Kuratomi <[email protected]> - r491
Rename uberpackager to provenpackager
2008-11-04 Toshio Kuratomi <[email protected]> - r490
Update the client to display a message from the server when mass_branching
occurs.
2008-11-04 Toshio Kuratomi <[email protected]> - r489
Restructure mass branch to do its work in the background and in a child
process. This allows the client to exit without getting a timeout (because
the process takes so long) and allows the server to mass branch without
memory usage ballooning.
2008-11-04 Toshio Kuratomi <[email protected]> - r488
Revert all the lazy loading. We are going to go back to lazy loading by
default and specify explicit eager loading on appropriate queries. This is
because we end up with memory and processing problems when chains of
eagerloaded queries occur. Lazy is the conservative default and eagerloading
can be added on demand.
2008-11-04 Toshio Kuratomi <[email protected]> - r487
Notes on how the internal code will be reorganized.
2008-11-03 Toshio Kuratomi <[email protected]> - r486
Fix for reasking of password every time.
2008-11-02 Toshio Kuratomi <[email protected]> - r485
* Reorganize pkgdb-client so re-authentication works for all cases
* Change how the password is retrieved so we can get it from stdin.
* Add a debug commandline flag.
* Move mass_branch() method to collection.py; remove admin controller.
* Update deprecated varargs to sqlalchemy.in_()
* Explicitly call session.rollback() when errors occur in clone_branch().
* Numerous fixes so clone_bracnch() works.
2008-11-02 Toshio Kuratomi <[email protected]> - r484
Changes to enable a mass branch button.
2008-11-01 Toshio Kuratomi <[email protected]> - r483
Update for new pkgdb dump.
2008-11-01 Toshio Kuratomi <[email protected]> - r482
Fix status handling.
2008-10-31 Toshio Kuratomi <[email protected]> - r481
Add a mass branch link
2008-10-31 Toshio Kuratomi <[email protected]> - r480
Use json_or_redirect decorator on mass_branch()
2008-10-31 Toshio Kuratomi <[email protected]> - r479
Add koji related variables.
2008-10-31 Toshio Kuratomi <[email protected]> - r478
Mass branch added to an admin.py file.
2008-10-31 Toshio Kuratomi <[email protected]> - r477
* Display the disabled shouldopen if the user lacks permissions.
* Make the description a <pre> as packages put text-formatted data in there.
2008-10-31 Toshio Kuratomi <[email protected]> - r476
Add mass-branch option.
2008-10-31 Toshio Kuratomi <[email protected]> - r475
Mark client config file as %config
2008-10-31 Toshio Kuratomi <[email protected]> - r474
Use lazyload to fix performance regression in search speed
2008-10-31 Toshio Kuratomi <[email protected]> - r473
Add Exceptions, fedora.dojo.ancestor() filter function, and Throbber updates.
Update throbber test.
2008-10-31 Toshio Kuratomi <[email protected]> - r472
Include the js directory with the dojo-based javascript.
2008-10-31 Toshio Kuratomi <[email protected]> - r471
More db optimizations.
2008-10-31 Toshio Kuratomi <[email protected]> - r470
Convert template to use listings2
2008-10-30 Toshio Kuratomi <[email protected]> - r469
Lazyload the mapped classes in the collections interface as we don't use the
relations in the data.
2008-10-30 Toshio Kuratomi <[email protected]> - r468
Ad config file for pkgdb-bugzilla-sync.
2008-10-29 Toshio Kuratomi <[email protected]> - r467
Don't eager load compat interfaces as it makes the temporary join table too
big.
2008-10-29 Toshio Kuratomi <[email protected]> - r466
Fix collections join.
2008-10-29 Toshio Kuratomi <[email protected]> - r465
Fix bug in saving new cache entries.
2008-10-29 Toshio Kuratomi <[email protected]> - r464
Missing comma SyntaxError
2008-10-29 Toshio Kuratomi <[email protected]> - r463
* Add a GroupCache as well as the UserCache
* Port all methods to use the cache where possible. Only three places that
don't use the cache because they need to know what groups a user belongs to.
2008-10-29 Toshio Kuratomi <[email protected]> - r462
Optimize mappers by setting many relations to eager load.
2008-10-29 Toshio Kuratomi <[email protected]> - r461
Do not attempt to cache the fas user's credentials on the filesystem.
2008-10-29 Toshio Kuratomi <[email protected]> - r460
Download the cache on startup instead of the first time it's requested.
2008-10-26 Toshio Kuratomi <[email protected]> - r459
Change newlines to spaces in summary field.
2008-10-26 Toshio Kuratomi <[email protected]> - r458
Normalize the variables we send from python into javascript. Now they're all
namespaced into either `tg` for turbogears variables or a per page namespace.
2008-10-24 Toshio Kuratomi <[email protected]> - r457
Include xdomain versionsof dojoaswell.
2008-10-24 Toshio Kuratomi <[email protected]> - r456
Rebuilddojofromsource.
2008-10-23 Toshio Kuratomi <[email protected]> - r455
Add baseurl to the variables we hand from python to javascript. Make the
variables names follow convention.
2008-10-23 Toshio Kuratomi <[email protected]> - r454
Link usernames to the list of packages owned by the user instead of the empty
info page.
2008-10-22 Toshio Kuratomi <[email protected]> - r453
Remove jquery dependency. Also remove unneeded tooltip code.
2008-10-22 Toshio Kuratomi <[email protected]> - r452
dojo.BaseClient update:
* Move the attribute definitions into the constructor.
* Remove session_name as it's not applicable to an in-browser javascript client.
* Have the exception handler return extras data as well.
2008-10-22 Toshio Kuratomi <[email protected]> - r451
Throbber fixes
2008-10-22 Toshio Kuratomi <[email protected]> - r450
Add an inactive image.
2008-10-22 Toshio Kuratomi <[email protected]> - r449
Fix typo in code.
2008-10-21 Toshio Kuratomi <[email protected]> - r448
Add documentation about changes we'll make to the database model.
2008-10-21 Toshio Kuratomi <[email protected]> - r447
Add documentation of fedora.dojo.BaseClient.
2008-10-21 Toshio Kuratomi <[email protected]> - r446
First round of a mass_branch-in-server method.
2008-10-21 Toshio Kuratomi <[email protected]> - r445
images to make the throbber work.
2008-10-21 Toshio Kuratomi <[email protected]> - r444
Add a clone_branch method to the dispatcher API.
2008-10-21 Toshio Kuratomi <[email protected]> - r443
utils file with a STATUS mapping. Can begin migrating all in class statuses
to use this instead.
2008-10-21 Toshio Kuratomi <[email protected]> - r442
Add some more intrusive cleanups including PEP8ifying the API.
2008-10-21 Toshio Kuratomi <[email protected]> - r441
Add dojo, a static dojotest page, a BaseClient based on dojo, and a throbber
also based on dojo.
2008-10-16 Toshio Kuratomi <[email protected]> - r440
Better docstring for Collection keying function.
2008-10-16 Toshio Kuratomi <[email protected]> - r439
Replace usage of translations with locale.
2008-10-16 Toshio Kuratomi <[email protected]> - r438
Add slimming of the data returned to the requirements.
2008-10-16 Toshio Kuratomi <[email protected]> - r437
First cut at a pavement.py file. currently this is only expected to work for
pylint and docs.
2008-10-16 Toshio Kuratomi <[email protected]> - r436
Documentation on how we're going to be developing the API.
2008-10-15 Toshio Kuratomi <[email protected]> - r435
Asecond shot at fixing the approveacl detection.
2008-10-15 Toshio Kuratomi <[email protected]> - r434
Fix approveacls detection -- was checking statuscode improperly.
2008-10-14 Toshio Kuratomi <[email protected]> - r433
More pylint cleanups.
2008-10-14 Toshio Kuratomi <[email protected]> - r432
Update translations => locale for model change.
Fix a few pylint warnings
2008-10-14 Toshio Kuratomi <[email protected]> - r431
Fix pylint warning and reformat comments as a definition list.
2008-10-14 Toshio Kuratomi <[email protected]> - r430
Update bugs to work with python-bugzilla-0.4.
Comments for each pylint disablings.
2008-10-14 Toshio Kuratomi <[email protected]> - r429
Pylint fixups
2008-10-14 Toshio Kuratomi <[email protected]> - r428
Add comment for why we're disabling certain pylint checks.
2008-10-14 Toshio Kuratomi <[email protected]> - r427
Adjust collections for new model.
2008-10-14 Toshio Kuratomi <[email protected]> - r426
Rename translations2 attributes to locale.
2008-10-14 Toshio Kuratomi <[email protected]> - r425
Simplify a query with SQLAlchemy-0.4 methods.
2008-10-14 Toshio Kuratomi <[email protected]> - r424
Move logs to their own file.
2008-10-14 Toshio Kuratomi <[email protected]> - r423
Move status model to its own file and make translations into a dict.
2008-10-13 Toshio Kuratomi <[email protected]> - r422
Add dictionary listings for acls, people, and groups.
2008-10-13 Toshio Kuratomi <[email protected]> - r421
Fix typo.
2008-10-13 Toshio Kuratomi <[email protected]> - r420
Comment was in wrong file.
2008-10-13 Toshio Kuratomi <[email protected]> - r419
* Separate the db model for acls, collections, and packages into their own
files.
* Make dictionary mappings for packagelistings in collections and
packagelistings in packages.
2008-10-11 Toshio Kuratomi <[email protected]> - r418
* Fix client config file -- list type is just comma separated values
* Make pkgdb-client executable and rename.
2008-10-11 Toshio Kuratomi <[email protected]> - r417
Fix group definition to allow people just in packager to own packages.
2008-10-09 Toshio Kuratomi <[email protected]> - r416
* Install the client
2008-10-09 Toshio Kuratomi <[email protected]> - r415
fix a traceback when a group doesn't have a commit acl at all.
2008-10-09 Toshio Kuratomi <[email protected]> - r414
Update for 0.3.8 release.
== packagedb 0.3.8 ==
2008-10-09 Toshio Kuratomi <[email protected]> - r413
The config file moved.
2008-10-09 Toshio Kuratomi <[email protected]> - r412
Updates for the 0.3.8 release.
2008-10-09 Toshio Kuratomi <[email protected]> - r411
Changes to hide the packager group.
2008-09-23 Toshio Kuratomi <badger@Clingman> - r410
Fix a unicode issue.
2008-09-22 Toshio Kuratomi <badger@Clingman> - r409
Fix for changing usernames to bz email addresses twice.
2008-09-15 Toshio Kuratomi <badger@Clingman> - r408
Change add_edit_package() call to use kw args.
2008-09-15 Toshio Kuratomi <badger@Clingman> - r407
Changes so packager is excluded by default but uberpackager is allowed.
2008-09-15 Toshio Kuratomi <badger@Clingman> - r406
Update for new clone_branch() in python-fedora.
2008-09-15 Toshio Kuratomi <badger@Clingman> - r405
Some clarifications and update for pkgdb.cfg => pkgdb.cfg.sample rename.
2008-09-15 Toshio Kuratomi <badger@Clingman> - r404
Add Valholla's work on bz-sync and pkgdb-client.
2008-09-15 Toshio Kuratomi <badger@Clingman> - r403
Organize a bit better and remove one obsolete option. This merges everything
we have in the fedora deployment that is generic.
2008-09-06 Mike Watters <[email protected]> - r402
converted pkgdb-client from TurboGears to ConfigObj
2008-09-06 Mike Watters <[email protected]> - r401
forgot to splitline the configspec
2008-09-06 Mike Watters <[email protected]> - r400
Converted from TurboGears to ConfigObj
2008-09-03 Mike Watters <[email protected]> - r399
merge
2008-09-01 Toshio Kuratomi <badger@Clingman> - r398
Add the script changes from Mike Watters.
2008-09-01 Toshio Kuratomi <badger@Clingman> - r397
Distribute the .cfg.sample file instead of pkgdb.cfg.
2008-09-01 Toshio Kuratomi <badger@Clingman> - r396
* Rename pkgdb.cfg to pkgdb.cfg.sample so people don't commit their fas
username nad password by mistake.
2008-09-01 Toshio Kuratomi <badger@Clingman> - r395
Add a note about a problem in the update.
2008-08-25 Toshio Kuratomi <badger@Clingman> - r394
* Set package status to Approved when a package is unorphaned.
2008-08-22 Toshio Kuratomi <badger@Clingman> - r393
Add bugfixes to NEWS.
2008-08-22 Toshio Kuratomi <badger@Clingman> - r392
* Fix (un)orphaning of packages
* Fix shouldopen checkbox showing wrong information
2008-08-22 Toshio Kuratomi <badger@Clingman> - r391
Fix sending the pkg id.
2008-08-13 Toshio Kuratomi <badger@Clingman> - r390
* Port to python-fedora-0.3.x
* Sync with some changes in puppet on Fedora Infrastructure. Need to move
config values to a config file and then we can run this from the package.
2008-08-13 Toshio Kuratomi <badger@Clingman> - r389
Fix a bug with the new code being more strict about non-keyword arguments.