aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki
AgeCommit message (Collapse)Author
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
2011-11-10move settings.py for portal gui django app to ${sysconfdir}/rpki since it ↵Michael Elkins
really is a configuration file svn path=/branches/tk103/; revision=4078
2011-10-19Wrap SQL schemas up so rpki-sql-setup doesn't have to be run in theRob Austein
build tree (see #8). This appears to work properly but needs more testing, leaving ticket open for now. Also cleaned up a few things that should have moved from scripts/ to buildtools/ a long time ago. svn path=/trunk/; revision=4056
2011-10-18update rpki.gui.cacheview app to support new rcynic xml format. closes #106Michael Elkins
svn path=/trunk/; revision=4054
2011-10-13use the django.contrib.staticfiles app to serve the django admin site media.Michael Elkins
svn path=/trunk/; revision=4037
2011-10-12add support for oo setup via portal guiMichael Elkins
svn path=/rpkid/rpki/gui/app/forms.py; revision=4033
2011-10-09update rcynic_xml_iterator to support new attributes for validation_status ↵Michael Elkins
element in rcynic output format svn path=/rpkid/rpki/rcynic.py; revision=4030
2011-10-07Fix bug in [4025], clean up PKCS 10 checking a bit more (see #6).Rob Austein
svn path=/rpkid/rpki/x509.py; revision=4028
2011-10-07Add .self.self_handle to log_repr() constructor, if it's available.Rob Austein
This helps a bit with #54, but is a long way from fully identifying which <self/> is logging at any given moment. svn path=/rpkid/rpki/log.py; revision=4027
2011-10-07Clean up HTTP traceback controls added in [3722], because [4014] doesRob Austein
a better job of handling the traceback problem. See #95. svn path=/rpkid/rpki/http.py; revision=4026
2011-10-07Tighten up PKCS 10 request checking (closes #6).Rob Austein
svn path=/rpkid/rpki/oids.py; revision=4025
2011-10-07qualify csv_writer calls with rpki.myrpki.Michael Elkins
svn path=/rpkid/rpki/gui/app/glue.py; revision=4024
2011-10-07add support for import/export of xml files for rpki setupMichael Elkins
svn path=/rpkid/rpki/gui/app/glue.py; revision=4023
2011-10-07revert rev #3877 so the portal gui writes the csv files when configuring ↵Michael Elkins
resources svn path=/rpkid/rpki/gui/app/forms.py; revision=4022
2011-10-06Use Auto_update for all BPKI objects (fixes #68).Rob Austein
svn path=/rpkid/rpki/rootd.py; revision=4016
2011-10-05Stop abusing RuntimeError. This closes #52.Rob Austein
svn path=/rpkid/portal-gui/scripts/load_csv.py; revision=4015
2011-10-05Add global traceback control; this closes #95. Clean up someRob Austein
"except:" clauses that should have been "except Exception:". svn path=/rpkid/rpki-sql-setup.py; revision=4014
2011-10-04More explicit certificate expiration checks in CMS verify (see #94).Rob Austein
svn path=/rcynic/rcynic.c; revision=4012
2011-10-04Add explicit check for certificate expiration in CMS verify (see #94).Rob Austein
svn path=/rpkid/rpki/exceptions.py; revision=4011
2011-10-04Don't spew to stderr if dumpasn1 isn't available when we want to dumpRob Austein
CMS that doesn't validate (see #94). Switch CMS-dumping code to use OpenSSL library code rather than dumpasn1 -- dumpasn1 is prettier, but not enough prettier to be worth making people install yet another freaking program that's only used to diagnose strange failures. svn path=/rpkid/rpki/x509.py; revision=4010
2011-10-04Rework http_queue exception handling not to drop the event chain ifRob Austein
callback handler throws an exception, eg, due to CMS validation failure. This closes #94. svn path=/rpkid/rpki/http.py; revision=4009
2011-10-04Catch IOError when dumping bad CMS (see #94).Rob Austein
svn path=/rpkid/rpki/x509.py; revision=4008
2011-09-20fix botch where a child's prefixes were passed instead of asnsMichael Elkins
svn path=/rpkid/rpki/gui/app/glue.py; revision=3994
2011-09-10Check for exception select() throws on bad file descriptor, to avoidRob Austein
going into a spin loop. (#69) Preserve old signal handlers even if we do have to restart the I/O loop. Minor clean up. svn path=/rpkid/rpki/async.py; revision=3976
2011-09-07Fix handling of HTTPTimeout. (#70)Rob Austein
Crank down HTTP timeout values. svn path=/rpkid/rpki/http.py; revision=3974
2011-09-06Non-blocking connect needs timeout. (#70)Rob Austein
svn path=/rpkid/rpki/http.py; revision=3971
2011-08-12Don't drop cron event when mysqld is down. (#3)Rob Austein
svn path=/rpkid/rpki/rpkid.py; revision=3949
2011-07-27Consolidate all of the import voodoo for MySQLdb into a new module.Rob Austein
svn path=/buildtools/make-python-executable.py; revision=3946
2011-07-25Printouts of lists of certificates and CRLs do not make good exception stringsRob Austein
svn path=/rpkid/rpki/x509.py; revision=3942
2011-07-01Initialize self.bpki_servers even when not running daemons.Rob Austein
svn path=/rpkid/rpki/myrpki.py; revision=3915
2011-07-01RegenRob Austein
svn path=/rpkid/rpki/relaxng.py; revision=3914
2011-07-01Update to post-IESG version of up-down schemaRob Austein
svn path=/rpkid/rpki/relaxng.py; revision=3913
2011-06-27Update old documentation linksRob Austein
svn path=/rpkid/doc/manual.pdf; revision=3902
2011-06-17Whack unit test so it has some chance of workingRob Austein
svn path=/rpkid/rpki/rcynic.py; revision=3884
2011-06-15no longer write csv files when calling configure_resourcesMichael Elkins
svn path=/rpkid/rpki/gui/app/glue.py; revision=3877
2011-06-15color code entire line in tableMichael Elkins
svn path=/rpkid/rpki/gui/cacheview/templates/cacheview/query_result.html; revision=3876
2011-06-15display a table containing the full x.509 cert chain for all signed objectsMichael Elkins
in cert detail view, display validation status for all issued objects in tables move name and key id fields to signedobject base class in order to store the SN and SKI of the signing EE certs svn path=/rpkid/portal-gui/scripts/rpkigui-rcynic.py; revision=3875
2011-06-14remove deprecated templateMichael Elkins
svn path=/rpkid/rpki/gui/cacheview/templates/cacheview/resourcecert_detail.html; revision=3874
2011-06-14extrude validation status lables from the rcynic XML file and shove into ↵Michael Elkins
django db color code validation status in signed object detail views to make problems stand out svn path=/rpkid/portal-gui/scripts/rpkigui-rcynic.py; revision=3873
2011-06-14do not fail if AIA extension is missing since None is a valid return valueMichael Elkins
svn path=/rpkid/rpki/x509.py; revision=3869
2011-06-13Sweep after revoking ROAs so manifest and CRL are correct.Rob Austein
svn path=/rpkid/rpki/left_right.py; revision=3868
2011-06-12add indices for AddressRange objects to speed up reprocessing changed rescertsMichael Elkins
svn path=/rpkid/rpki/gui/cacheview/models.py; revision=3867
2011-06-12remove <h1> tag from within title block since it is added by the parent templateMichael Elkins
svn path=/rpkid/rpki/gui/cacheview/templates/cacheview/roa_detail.html; revision=3866
2011-06-10add URLs for as/address range detailMichael Elkins
svn path=/rpkid/rpki/gui/cacheview/models.py; revision=3861
2011-06-09add support for browing the rcynic cacheMichael Elkins
svn path=/rpkid/portal-gui/scripts/rpkigui-rcynic.py; revision=3859
2011-06-09move the rcynic output iterator into the rpki module so it gets installed in ↵Michael Elkins
the standard location svn path=/rpkid/rpki/rcynic.py; revision=3858
2011-06-09add preliminary support for the ghostbusters recordMichael Elkins
svn path=/rpkid/rpki/ghostbuster.py; revision=3857
2011-06-06Out of date docRob Austein
svn path=/rpkid/rpki/__doc__.py; revision=3853
2011-05-13relable 'Submit' buttons as 'Delete' for ROAs and Ghostbusters.Michael Elkins
svn path=/rpkid/rpki/gui/app/templates/rpkigui/ghostbuster_confirm_delete.html; revision=3813
2011-05-13give user detail on what default max length for a roa isMichael Elkins
svn path=/rpkid/rpki/gui/app/forms.py; revision=3812