aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/gui
AgeCommit message (Collapse)Author
2013-06-27add button to delete all alertsMichael Elkins
rpkigui-reset-demo will clear all alerts for labuser* accounts see #562 svn path=/trunk/; revision=5421
2013-06-14fix bug in roa confirmation page where routes that overlap with the roa, but ↵Michael Elkins
are not covered, were mistakenly included in the list of affected routes closes #553 svn path=/trunk/; revision=5407
2013-06-13display rpki.net software version in the gui toolbarMichael Elkins
see #543 svn path=/trunk/; revision=5403
2013-06-13add current resource holder name to page title so it appears in the browser tab.Michael Elkins
closes #546 svn path=/trunk/; revision=5402
2013-06-13handle exception thrown when there are no matching routes to displayMichael Elkins
see #548 svn path=/trunk/; revision=5401
2013-06-13fix botched decoration of the alert class-based views where the self ↵Michael Elkins
argument was omitted, and the wrong parent class was used in super() due to copy+paste closes #549 svn path=/trunk/; revision=5400
2013-06-10decorate alert views to require a user to be logged in and a resource handle ↵Michael Elkins
selected closes #542 svn path=/trunk/; revision=5388
2013-06-07use {% load url from future %} to support older versions of django prior to ↵Michael Elkins
the syntax change see #528 svn path=/trunk/; revision=5381
2013-06-07expand link to resource holder creation page with {% url %} rather than ↵Michael Elkins
hardcoding it (duh) see #528 svn path=/trunk/; revision=5380
2013-06-06add Help link to navigation bar which points to rpki.net wiki pageMichael Elkins
closes #521 svn path=/trunk/; revision=5376
2013-06-06Add a link to the resource holder creation page if the current user is a ↵Michael Elkins
superuser and there are no resource holders defined. closes #528 svn path=/trunk/; revision=5375
2013-05-01Add ALLOWED_HOSTS. Closes #525.Rob Austein
svn path=/trunk/; revision=5312
2013-04-15add warning to CSV import form for ROAs, ASes and Prefixes that all existing ↵Michael Elkins
objects will be replaced with the contents of the CSV file. see #509 svn path=/trunk/; revision=5295
2013-04-04pull SECRET_KEY from rpki.conf if present, otherwise generate a random valueMichael Elkins
merge remainder of settings.py into default_settings.py and remove settings.py.in remove $top/buildtools/subst-vars.py since it was only used to generate settings.py from settings.py.in move ${datarootdir}/default_settings.py to rpki.gui.default_settings set DJANGO_SETTINGS_MODULE to rpki.gui.default_settings in ${datarootdir}/rpki/wsgi/rpki.wsgi svn path=/trunk/; revision=5275
2013-04-03allow rpkigui-import-routes to be invoked with zero arguments, in which it ↵Michael Elkins
will download the routeview.org data from the default URL see #502 svn path=/trunk/; revision=5267
2013-04-03add support for automatically fetching routeviews.org dumps specified by URLMichael Elkins
see #502 svn path=/trunk/; revision=5266
2013-04-03merge /trunkMichael Elkins
svn path=/branches/tk500/; revision=5263
2013-04-03put badge inside of <a> element so it displays on the same line as the ↵Michael Elkins
'alert' text. needed since .nav>li>a has a "display:block" style svn path=/branches/tk500/; revision=5262
2013-04-03omit resource holder specific options from the sidebar when the user hasn't ↵Michael Elkins
selected a resource holder to manage svn path=/branches/tk500/; revision=5261
2013-04-03remove get_email_list() and replace with calls to Conf.send_alert()Michael Elkins
svn path=/branches/tk500/; revision=5260
2013-04-03add Conf.send_alert() to store an alert for a resource holder. takes care ↵Michael Elkins
of storing it in the db for presentation to the user in the gui as well as emailing contacts in ghostbusters move definition of Alert above Conf so that Conf.send_alert() can reference Alert in send_alert() svn path=/branches/tk500/; revision=5259
2013-04-03add support for deleting alertsMichael Elkins
print unread alert account in the sidebar, with color indicating the highest level alert svn path=/branches/tk500/; revision=5258
2013-04-03intial support for storing alerts and displaying them in the guiMichael Elkins
svn path=/branches/tk500/; revision=5256
2013-04-01warn about stale rcynic and bgp data in the nightly expiration cron job. ↵Michael Elkins
currently set to warn when the last import was more than 12 hours ago. svn path=/trunk/; revision=5250
2013-03-29a roa only matches a route if it exactly matches or is an aggregrate. if ↵Michael Elkins
the route is an aggregate of the roa, it does not match. svn path=/trunk/; revision=5247
2013-03-29use nav-list css class for sidebar entriesMichael Elkins
svn path=/trunk/; revision=5246
2013-03-29in the route detail view, view roa list by page since the list may be quite ↵Michael Elkins
large (e.g. viewing 0.0.0.0/0) svn path=/trunk/; revision=5245
2013-03-29fix bug in orm query where roas covering a subset of a route were ignoredMichael Elkins
svn path=/trunk/; revision=5244
2013-03-29the pager should display links for the first and last page if they are not ↵Michael Elkins
visible svn path=/trunk/; revision=5243
2013-03-28drop "requests" in a few more places in the html templatesMichael Elkins
svn path=/trunk/; revision=5242
2013-03-28drop the word 'request' from the GUI since users do not understand the ↵Michael Elkins
distinction svn path=/trunk/; revision=5241
2013-03-28allow user to create roas by selecting entries from the route viewMichael Elkins
see #325 svn path=/trunk/; revision=5240
2013-03-26set rpki.config.default_dirname from rpki.gui.autoconf.sysconfdir to the ↵Michael Elkins
need to any calling scripts to do the same thing svn path=/trunk/; revision=5236
2013-03-26convert the two remaining scripts using ↵Michael Elkins
$top/buildtools/make-django-script.py to using rpki.gui.script_util.setup() instead so we can get rid of the build script svn path=/trunk/; revision=5233
2013-03-26setting INSTALLED_APPS is not required when accessing existing db tables.Michael Elkins
svn path=/trunk/; revision=5232
2013-03-26add new rpki.gui.script_util.setup() that does the ORM setup for standalone ↵Michael Elkins
scripts so that we don't need to set $DJANGO_SETTINGS_MODULE or $PYTHONPATH. this is similar to what irdbd does. svn path=/trunk/; revision=5225
2013-03-26need to return a byte string instead of long now that we are no longer ↵Michael Elkins
converting binary db fields to hex should have been included in [5223]. svn path=/trunk/; revision=5224
2013-03-26configure logging support to go both to apache.log and to email the admins ↵Michael Elkins
upon ERROR put static configuration into ${sysconfdir}/rpki/default_settings.py to avoid issue with %() expansion when settings.py is generated closes #496 svn path=/trunk/; revision=5220
2013-03-26add templates for 404 and 500 error reporting to the userMichael Elkins
see #496 svn path=/trunk/; revision=5219
2013-03-25fix wrong css class for page-headerMichael Elkins
svn path=/trunk/; revision=5210
2013-03-25upgrade to bootstrap 2.3.1Michael Elkins
svn path=/trunk/; revision=5209
2013-03-25use new method Zookeeper.initialize_resource_bpki() added in [5206].Michael Elkins
svn path=/trunk/; revision=5208
2013-03-25use Zookeeper.synchronize_ca() when changes are made to a single resource ↵Michael Elkins
holder rather than called .synchronize() closes #486 svn path=/trunk/; revision=5207
2013-03-24add link to pubclient detail for exporting the XML responseMichael Elkins
svn path=/trunk/; revision=5204
2013-03-24correct xml attribute for popup help is 'title'Michael Elkins
svn path=/trunk/; revision=5203
2013-03-24revert default filetype to xml in serve_xml()Michael Elkins
svn path=/trunk/; revision=5202
2013-03-22add import/export of asns.csv and prefixes.csvMichael Elkins
see #323 svn path=/trunk/; revision=5198
2013-03-21merge ^/branches/tk334Michael Elkins
svn path=/trunk/; revision=5193
2013-03-19need to guard against issuer being None the first time we process the root ↵Michael Elkins
cert since the object is not yet in the db closes #475 svn path=/trunk/; revision=5174
2013-03-18merge work for #460Michael Elkins
svn path=/trunk/; revision=5166