Custom Query (2152 matches)
Results (1015 - 1017 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#303 | fixed | Package history & diff & feed to show changes to tags, extras and resources | dread | dread |
Description |
Currently a package's history page (/package/history/xyz) and related feed only shows changes to the core package i.e. ones which create a PackageResource?. This doesn't include changes to tags, extras and resources. These need to be added. There is the complication that the 'diff' function doesn't currently work beyond PackageResource?. Unless this is quick and simple to fix, I suggest we let the diff remain slightly broken for now. Rufus suggests alongside the existing methods: pkg.all_revisions() pkg.diff() we have ones which also include the related objects (tags, extras, resources): pkg.all_revisions_full() pkg.diff_full() You could have a function which returned these related objects. Ideas: revobjlist = [ self, resources, extras ] list of tuples: (revobj, changed_revobjs) list of tuples: (revobj, {objtype: [changed_revobjs]}) tuple: (rev1, {Package: [ object_id, object_id], PackageTag: [object_id, object_id2] ...} |
|||
#152 | fixed | Package has editable 'Extra' fields | dread | dread |
Description |
Package edit page has fields for extra key-value pairs. Don't use formalchemy. The form displays the existing ones and new ones as follows: Key Value delete [ country ] [ uk, spain ] [x] When presenting the form, existing pairs and 3 blank pairs are provided. When saving the data, keys that are not changed use the existing PackageExtra object (perhaps with new value). Deleted keys put the PackageExtra state to deleted. For new keys, only create a new PackageExtra if there isn't a state=deleted one to resurrect. Validators ensure no repeated keys. |
|||
#105 | fixed | Package groups (view) | dread | rgrp |
Description |
As a user I want to be able to create groups of packages. This functionality is different from tags:
Group properties
Don't version groups for now. Groups address in the WUI will be:
Group editing and searching will be another ticket. Cost: 3d |