aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/gui
AgeCommit message (Collapse)Author
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
2012-01-17pull duplicated model for represent AS ranges into abstract model in ↵Michael Elkins
rpki.gui.models so it can be reused. svn path=/branches/tk161/; revision=4213
2012-01-17remove as_resource_range() and as_roa_prefix() from Proxy models since they ↵Michael Elkins
were added to the concrete models in #4210 svn path=/branches/tk161/; revision=4212
2012-01-17add copyright noticeMichael Elkins
add $Id$ string and set svn:keywords property svn path=/branches/tk161/; revision=4209
2012-01-17add issuer handle to string representation of a RoaRequestMichael Elkins
svn path=/branches/tk161/; revision=4208
2012-01-17fix typoh where prefix=True should have been proxy=TrueMichael Elkins
svn path=/branches/tk161/; revision=4207
2012-01-17remove django admin site from installed appsMichael Elkins
svn path=/branches/tk161/; revision=4202
2012-01-17disable admindocs urlMichael Elkins
disable admin url change defaut location for /site_media/ to /usr/local/share/rpki/media/ svn path=/branches/tk161/; revision=4201
2012-01-17remove deprecated settings in support of rpkidemoMichael Elkins
svn path=/branches/tk161/; revision=4199
2012-01-17web portal no longer needs to write files in ${localstatedir}Michael Elkins
svn path=/branches/tk161/; revision=4198
2012-01-17need to add keyword to callback argumentMichael Elkins
svn path=/branches/tk161/; revision=4193
2012-01-17fix module path for rpki.gui.modelsMichael Elkins
svn path=/branches/tk161/; revision=4192
2012-01-17remove deprecated templates for old modelsMichael Elkins
svn path=/branches/tk161/; revision=4189
2012-01-17rename template subdirectory to match the django application nameMichael Elkins
svn path=/branches/tk161/; revision=4188
2012-01-17remove deprecated misc moduleMichael Elkins
svn path=/branches/tk161/; revision=4186
2012-01-17remove deprecated AllocationTree moduleMichael Elkins
svn path=/branches/tk161/; revision=4185
2012-01-17remove deprecated asnset moduleMichael Elkins
remove old forms for dealing with the now removed models.AddressRange svn path=/branches/tk161/; revision=4184
2012-01-17update roa templates to match models.RoaRequestPrefixMichael Elkins
models.RoaRequestPrefix.get_absolute_url restored since the /delete URL depends on it svn path=/branches/tk161/; revision=4183
2012-01-17continued integration with tk100Michael Elkins
svn path=/branches/tk161/; revision=4181
2012-01-17modify route_view to use common validation codeMichael Elkins
svn path=/branches/tk161/; revision=4180
2012-01-17display routes matching ROA request to be deletedMichael Elkins
remove breadcrumb from template svn path=/branches/tk161/; revision=4179
2012-01-17add support for ipv6 routes in route_viewMichael Elkins
ensure that the degenerate case where we see a BGP route for AS0 is marked as invalid. only select accepted ROAs, since cacheview also stores rejected ROAs for debugging. svn path=/branches/tk161/; revision=4178
2012-01-17add support for importing mrt format ribsMichael Elkins
remove default=0 value for timestamps, as that is not a valid initial value for a datetime object. since there is no default argument, the call to the Timestamp constructor needs to specify the value. svn path=/branches/tk161/; revision=4177
2012-01-17store timestamps in UTCMichael Elkins
remove auto_add=True from DateTimeField, and make rpki.gui.app.timestamp.update() set the timestamp value instead. move external data timestamps to sidebar in route view svn path=/branches/tk161/; revision=4176
2012-01-17create utility function for updating Timestamp objectsMichael Elkins
add missing copyright notices svn path=/branches/tk161/; revision=4175
2012-01-17display name+ts in admin site Timestamp listMichael Elkins
__unicode__ for Timestamp now displays both name and ts value svn path=/branches/tk161/; revision=4174
2012-01-17fix generation of timestamp dictMichael Elkins
svn path=/branches/tk161/; revision=4173
2012-01-17add Timestamp model to admin siteMichael Elkins
provide __unicode__ for Timestamp svn path=/branches/tk161/; revision=4172
2012-01-17show data import timestamps in route viewMichael Elkins
svn path=/branches/tk161/; revision=4170
2012-01-17add Timestamp model to store metadata for external dataMichael Elkins
svn path=/branches/tk161/; revision=4168
2012-01-17add link to route view in sidebarMichael Elkins
change dashboard template to inherit from app_base.html add new block to app_base to allow child templates to add additional content to the sidebar change 'Route Views' to 'Route View' change 'AS' to 'Origin AS' in the routes_view.html template svn path=/branches/tk161/; revision=4167
2012-01-17fix module docstringsMichael Elkins
svn path=/branches/tk161/; revision=4166
2012-01-17refactor cacheview app to use common rpki.gui.modelsMichael Elkins
svn path=/branches/tk161/; revision=4165
2012-01-17incorporate validation status from cacheview appMichael Elkins
modify cacheview schema to use bigint for ip address storage modify rpkigui-rcynic to use a transaction-per-object to avoid huge memory requirements svn path=/branches/tk161/; revision=4164
2012-01-17updated routeviews data handlingMichael Elkins
refactor common IP range tables into rpki.gui.models. rework import script to load data into a staging table and swap with the active table upon completion. use separate tables for v4 and v6. svn path=/branches/tk161/; revision=4163
2012-01-17add debug message for route viewMichael Elkins
svn path=/branches/tk161/; revision=4162
2012-01-17add column for validation statusMichael Elkins
fix broken <h1> tag svn path=/branches/tk161/; revision=4161
2012-01-17rework routeview parser to use bulk sql insertsMichael Elkins
remove index from model definition, and create it automatically after bulk inserts to speed up processing add family element to unique_together svn path=/branches/tk161/; revision=4160
2012-01-17import initial cut at rpki.gui.routeview appMichael Elkins
svn path=/branches/tk161/; revision=4159
2012-01-17forgot to include html templates in last commitMichael Elkins
svn path=/branches/tk161/; revision=4158
2012-01-17Use Twitter Bootstrap CSS Framework to style html templatesMichael Elkins
svn path=/branches/tk161/; revision=4157
2012-01-16make Parent & Child proxy models around the irdb variantsMichael Elkins
svn path=/branches/tk161/; revision=4156
2012-01-14first cut at move to rpki.irdbMichael Elkins
svn path=/branches/tk161/; revision=4155
2011-12-10fix missing comma in dict initializationMichael Elkins
svn path=/branches/tk139/; revision=4113
2011-12-09When creating a stub rpki.conf for hosted entities, copy the openssl path ↵Michael Elkins
from the system rpki.conf. Modify formatting to fall in line with PEP8. svn path=/branches/tk139/; revision=4112
2011-12-09update myrpki glue functions to use the system rpki.conf when dealing with ↵Michael Elkins
the self-hosted instance, otherwise use the rpki.conf in the "conf" directory for the hosted instance. force run_pubd and run_rootd to false as well for hosted instances. svn path=/branches/tk139/; revision=4110
2011-11-12make it clear that the asn and prefixes links are for resources delegated to ↵Michael Elkins
children. closes #115 svn path=/trunk/; revision=4090
2011-11-11reorder models to avoid forward references. closes #149Michael Elkins
svn path=/trunk/; revision=4089
2011-11-11set default value of max_length to prefix length, and change help text to ↵Michael Elkins
make it clear this field should be an integer without a leading slash. closes #132 svn path=/trunk/; revision=4087