feisal / python-Updateinfo

Forked from a deleted repository 4 years ago
Clone

c2a4353 Initial move to pagure.io

Authored and Committed by jcpunk 4 years ago
124 files changed. 53154 lines added. 3 lines removed.
.coverage
file added
+0
.gitignore
file added
+6
CHANGES.txt
file added
+1
Makefile
file added
+9
PKG-INFO
file added
+20
README.md
file removed
-3
README.txt
file added
+74
docs/README
file added
+141
docs/data_from_SL_contrib_template.py
file added
+258
docs/data_from_srpm_repo.py
file added
+178
docs/data_from_updateinfo_xml.py
file added
+322
docs/get_update_by_id.py
file added
+105
docs/merge_or_format_files.py
file added
+90
docs/samples/EPEL6-updateinfo.xml
file added
+3666
docs/samples/Fedora-updateinfo.xml
file added
+4163
docs/samples/Fedora29-modular-updateinfo.xml
file added
+533
docs/samples/sample.spec
file added
+38
docs/samples/simple.xml
file added
+58
docs/samples/sl65-x86_64-updateinfo.xml
file added
+18380
docs/show_missing_updates.py
file added
+56
docs/show_update_age_pkgname.py
file added
+110
docs/show_update_dates.py
file added
+104
docs/updateinfo.rng
file added
+42
docs/updateinfo.xsd
file added
+638
docs/updateinfo.xsl
file added
+278
docs/updateinfo_for_django/README
file added
+35
python-Updateinfo.spec
file added
+249
setup.py
file added
+50
updateinfo/__init__.py
file added
+50
updateinfo/about.py
file added
+10
updateinfo/collection/__init__.py
file added
+59
updateinfo/collection/events.py
file added
+148
updateinfo/collection/models.py
file added
+211
updateinfo/collection/store/__init__.py
file added
+46
updateinfo/collection/store/events.py
file added
+118
updateinfo/collection/store/models.py
file added
+195
updateinfo/collection/store/tests.py
file added
+1563
updateinfo/collection/store/views.py
file added
+207
updateinfo/collection/tests.py
file added
+1425
updateinfo/collection/views.py
file added
+226
updateinfo/helpers/__init__.py
file added
+29
updateinfo/helpers/dates.py
file added
+41
updateinfo/helpers/finders.py
file added
+200
updateinfo/helpers/repo.py
file added
+235
updateinfo/helpers/suggested.py
file added
+42
updateinfo/helpers/tests.py
file added
+1592
updateinfo/helpers/xmltools.py
file added
+118
updateinfo/helpers/yamltools.py
file added
+62
updateinfo/package/__init__.py
file added
+53
updateinfo/package/events.py
file added
+81
updateinfo/package/models.py
file added
+284
updateinfo/package/store/__init__.py
file added
+37
updateinfo/package/store/events.py
file added
+3
updateinfo/package/store/models.py
file added
+222
updateinfo/package/store/tests.py
file added
+571
updateinfo/package/store/views.py
file added
+3
updateinfo/package/tests.py
file added
+1802
updateinfo/package/views.py
file added
+313
updateinfo/reference/__init__.py
file added
+53
updateinfo/reference/events.py
file added
+36
updateinfo/reference/models.py
file added
+155
updateinfo/reference/store/__init__.py
file added
+46
updateinfo/reference/store/events.py
file added
+121
updateinfo/reference/store/models.py
file added
+185
updateinfo/reference/store/tests.py
file added
+957
updateinfo/reference/store/views.py
file added
+189
updateinfo/reference/tests.py
file added
+692
updateinfo/reference/views.py
file added
+201
updateinfo/tests/__main__.py
file added
+60
updateinfo/update/__init__.py
file added
+55
updateinfo/update/events.py
file added
+42
updateinfo/update/models.py
file added
+498
updateinfo/update/tests.py
file added
+3933
updateinfo/update/views.py
file added
+393
updateinfo/updateinfo/__init__.py
file added
+54
updateinfo/updateinfo/events.py
file added
+308
updateinfo/updateinfo/models.py
file added
+215
updateinfo/updateinfo/tests.py
file added
+1567
updateinfo/updateinfo/views.py
file added
+230
updateinfo/updateinfo_django_app/__init__.py
file added
+21
updateinfo/updateinfo_django_app/admin.py
file added
+120
updateinfo/updateinfo_django_app/apps.py
file added
+34
updateinfo/updateinfo_django_app/fixtures/addons.json
file added
+1
updateinfo/updateinfo_django_app/fixtures/test_package.yaml
file added
+33
updateinfo/updateinfo_django_app/migrations/0001_initial.py
file added
+238
updateinfo/updateinfo_django_app/migrations/0002_initial_data_types.py
file added
+106
updateinfo/updateinfo_django_app/migrations/__init__.py
file added
+0
updateinfo/updateinfo_django_app/models/__init__.py
file added
+35
updateinfo/updateinfo_django_app/models/collection.py
file added
+158
updateinfo/updateinfo_django_app/models/collectionstore.py
file added
+109
updateinfo/updateinfo_django_app/models/package.py
file added
+213
updateinfo/updateinfo_django_app/models/packagesumstore.py
file added
+56
updateinfo/updateinfo_django_app/models/reference.py
file added
+140
updateinfo/updateinfo_django_app/models/referencestore.py
file added
+139
updateinfo/updateinfo_django_app/models/update.py
file added
+229
updateinfo/updateinfo_django_app/models/updateinfo.py
file added
+46
updateinfo/updateinfo_django_app/signals.py
file added
+32
updateinfo/updateinfo_django_app/static/updateinfo_for_django/css/index.css
file added
+144
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/gnome-reload.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/pk-package-downloaded.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/pk-update-bugfix.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/pk-update-enhancement.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/pk-update-high.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/pk-update-low.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/pk-update-normal.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/pk-update-security.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/system-shutdown.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/images/xfce-system-exit.png
file added
+0
updateinfo/updateinfo_django_app/static/updateinfo_for_django/js/toggledisplay.js
file added
+7
updateinfo/updateinfo_django_app/templates/updateinfo_for_django/base.html
file added
+29
updateinfo/updateinfo_django_app/templates/updateinfo_for_django/detail.html
file added
+85
updateinfo/updateinfo_django_app/templates/updateinfo_for_django/index.html
file added
+34
updateinfo/updateinfo_django_app/templates/updateinfo_for_django/paginate.html
file added
+31
updateinfo/updateinfo_django_app/templates/updateinfo_for_django/xml.html
file added
+0
updateinfo/updateinfo_django_app/tests/__init__.py
file added
+0
updateinfo/updateinfo_django_app/tests/not_working/test_collection.py
file added
+199
updateinfo/updateinfo_django_app/tests/not_working/test_helpers.py
file added
+68
updateinfo/updateinfo_django_app/tests/not_working/test_update.py
file added
+485
updateinfo/updateinfo_django_app/tests/not_working/test_updateinfo.py
file added
+225
updateinfo/updateinfo_django_app/tests/test_package.py
file added
+332
updateinfo/updateinfo_django_app/tests/test_packagestore.py
file added
+95
updateinfo/updateinfo_django_app/tests/test_reference.py
file added
+77
updateinfo/updateinfo_django_app/urls.py
file added
+38
updateinfo/updateinfo_django_app/views.py
file added
+55
    Initial move to pagure.io
    
        
file added
+0
empty file added
file added
+6
file added
+1
file added
+9
file added
+20
file removed
-3
file added
+74
file added
+141
file added
+42
file added
+638
file added
+278
file added
+249
file added
+50
file added
+10