aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-02-07fix wrong class for block messagesMichael Elkins
svn path=/branches/tk161/; revision=4301
2012-02-07split roa creation double confirmation into separate functions and formsMichael Elkins
svn path=/branches/tk161/; revision=4300
2012-02-07add glue function for converting string to resource_range_ipMichael Elkins
svn path=/branches/tk161/; revision=4299
2012-02-07add support for running in virtualenvMichael Elkins
svn path=/branches/tk161/; revision=4298
2012-02-07need to check max prefix length when checking new roaMichael Elkins
svn path=/branches/tk161/; revision=4297
2012-02-07coerce min/max value back to appropriate datum_type for the rangeMichael Elkins
svn path=/branches/tk161/; revision=4296
2012-02-06remove import cruftMichael Elkins
svn path=/branches/tk161/; revision=4295
2012-02-06create /usr/local/share/rpki if it doesn't existMichael Elkins
svn path=/branches/tk161/; revision=4294
2012-02-04format models.py according to pep8Michael Elkins
use narrower spans to display multi column fields in some templates to avoid unnecessary wrapping when the window is narrow add titles to buttons for some actions to provide some user help svn path=/branches/tk161/; revision=4291
2012-02-04fix import/export of XML files as part of the setup processMichael Elkins
svn path=/branches/tk161/; revision=4290
2012-02-03strip empty lines from irdbd schema. closes #163Michael Elkins
svn path=/branches/tk161/; revision=4289
2012-02-03SundialField needs to set __metaclass__. Closes #181Michael Elkins
svn path=/branches/tk161/; revision=4285
2012-02-02form validation must be prepared for None values in required fieldsMichael Elkins
svn path=/branches/tk161/; revision=4283
2012-02-02add support for add/revoke resources to childMichael Elkins
add support for editing child model add child creation wizard svn path=/branches/tk161/; revision=4282
2012-02-01remove dead codeMichael Elkins
svn path=/branches/tk161/; revision=4279
2012-02-01fix typoh in filenameMichael Elkins
svn path=/branches/tk161/; revision=4278
2012-01-30merge with tk100Michael Elkins
svn path=/branches/tk161/; revision=4272
2012-01-30remove dead code that is deprecated by the changes in tk100.Michael Elkins
reformat code according to pep8 move copyright notices into comments out of docstrings svn path=/branches/tk161/; revision=4271
2012-01-21require double confirmation for roa creationMichael Elkins
display list of matching routes with validation status for second confirmation svn path=/branches/tk161/; revision=4254
2012-01-21add form for creating ROA requestsMichael Elkins
svn path=/branches/tk161/; revision=4253
2012-01-20create custom template tag for fetching the verbose_name or ↵Michael Elkins
verbose_name_plural in generic object list/detail views select page title based on verbose_name instead of passing in page_title rename templates to the default name selected by object_detail() and object_list() generic views use generic delete_object() view for parents and ghostbusters svn path=/branches/tk161/; revision=4252
2012-01-20add deletion confirmation to general object detail templateMichael Elkins
fix repository deletion svn path=/branches/tk161/; revision=4251
2012-01-20add generic template for viewing a list of objects as a tableMichael Elkins
format roa request deletion confirmation page into two columns, with an alert box around the action remove trailing slash from roa_detail url svn path=/branches/tk161/; revision=4250
2012-01-20add styled warning message when there are no items in a generic list viewMichael Elkins
svn path=/branches/tk161/; revision=4249
2012-01-20wrap long linesMichael Elkins
svn path=/branches/tk161/; revision=4248
2012-01-20fix issues reported by pyflakes and pep8 toolsMichael Elkins
svn path=/branches/tk161/; revision=4247
2012-01-20fix roa request list template to reflect the irdb RoaRequestPrefix modelMichael Elkins
add stub view function for roa creation as a placeholder so that the {% url %} for the Create button doesn't throw an exception. svn path=/branches/tk161/; revision=4246
2012-01-20store the uri field from <list_received_resources/> pdu in order to allow ↵Michael Elkins
for checking the cert chain for expiration using cacheview svn path=/branches/tk161/; revision=4245
2012-01-20branch merge with tk100Michael Elkins
svn path=/branches/tk161/; revision=4244
2012-01-20add v6 to route viewMichael Elkins
svn path=/branches/tk161/; revision=4243
2012-01-20fix route view to work with new gui model for resource certsMichael Elkins
svn path=/branches/tk161/; revision=4241
2012-01-20merge with ^/branches/tk100Michael Elkins
svn path=/branches/tk161/; revision=4239
2012-01-20add generic object_detail base template for boilerplate detail views with an ↵Michael Elkins
import/create button add detail views for repository and pubclients rename import_* to *_import to match names for other methods on the same model svn path=/branches/tk161/; revision=4238
2012-01-19initial support for managing repositories and pubclientsMichael Elkins
svn path=/branches/tk161/; revision=4237
2012-01-19fixed ghostbuster suppport. app.models.GhostbusterRequest now does ↵Michael Elkins
multi-table inheritance from irdb.models.GhostbusterRequest. forms.GhostbusterRequest can be a plain class instead of a callable by setting the .queryset attribute on the field during __init__ svn path=/branches/tk161/; revision=4236
2012-01-19fixed views to lookup parent/child by pk rather than handleMichael Elkins
svn path=/branches/tk161/; revision=4234
2012-01-19fix parent detail view to work with new modelsMichael Elkins
svn path=/branches/tk161/; revision=4233
2012-01-19change rpkigui/ to app/ in template path for bootstrap_form.htmlMichael Elkins
svn path=/branches/tk161/; revision=4232
2012-01-19merge with ^/branches/tk100Michael Elkins
svn path=/branches/tk161/; revision=4231
2012-01-19add as_resource_range method to rpki.gui.models.ASNMichael Elkins
svn path=/branches/tk161/; revision=4230
2012-01-19dashboard template filename does not need to be configurableMichael Elkins
svn path=/branches/tk161/; revision=4229
2012-01-19unused asn list is composed of resource_range_as, so calling ↵Michael Elkins
obj.as_resource_range results in an empty string because it has no such method prefix AS value with the string "AS" because resource_range_as doesn't included it (unlike ResourceRangeAS objects) svn path=/branches/tk161/; revision=4228
2012-01-19use create() instead of add() when constructing a new object rather than ↵Michael Elkins
adding an existing object fields for prefixes are prefix_min and prefix_max, not min and max svn path=/branches/tk161/; revision=4227
2012-01-19add new module range_list with implementation of a resource_set type object ↵Michael Elkins
that collapses adjacent ranges and can compute missing ranges svn path=/branches/tk161/; revision=4225
2012-01-18IP version in ChildNet is stored as a string; update filterMichael Elkins
svn path=/branches/tk161/; revision=4222
2012-01-18merge with ^/branches/tk100Michael Elkins
svn path=/branches/tk161/; revision=4221
2012-01-18fix dashboard view to filter asns properlyMichael Elkins
svn path=/branches/tk161/; revision=4218
2012-01-18remove deprecated URLs for rpkidemoMichael Elkins
svn path=/branches/tk161/; revision=4216
2012-01-18fix bad indentMichael Elkins
svn path=/branches/tk161/; revision=4215
2012-01-18change proxy models in app.models to match names from irdb.modelsMichael Elkins
svn path=/branches/tk161/; revision=4214