Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ai
autoca
Commits
0083d4b2
Commit
0083d4b2
authored
Mar 07, 2010
by
ale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
turned into a proper python package
parent
df32a5b0
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
2 deletions
+25
-2
.htaccess
.htaccess
+1
-1
autoca.fcgi
autoca.fcgi
+1
-1
autoca/__init__.py
autoca/__init__.py
+0
-0
autoca/certutil.py
autoca/certutil.py
+0
-0
autoca/newcert.py
autoca/newcert.py
+0
-0
setup.py
setup.py
+23
-0
No files found.
.htaccess
View file @
0083d4b2
RewriteEngine
on
RewriteBase
/
RewriteRule
^(.*)$ autoca.
py
/$1 [L]
RewriteRule
^(.*)$ autoca.
fcgi
/$1 [L]
autoca.
py
→
autoca.
fcgi
View file @
0083d4b2
...
...
@@ -4,7 +4,7 @@
# $Id$
import
os
import
certutil
from
autoca
import
certutil
from
OpenSSL
import
crypto
from
bottle
import
route
,
run
,
request
,
response
,
abort
,
send_file
...
...
autoca/__init__.py
0 → 100644
View file @
0083d4b2
certutil.py
→
autoca/
certutil.py
View file @
0083d4b2
File moved
newcert.py
→
autoca/
newcert.py
View file @
0083d4b2
File moved
setup.py
0 → 100755
View file @
0083d4b2
#!/usr/bin/env python
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"autoca"
,
version
=
"0.1.1"
,
description
=
"Automated CA management."
,
author
=
"Ale"
,
author_email
=
"ale@incal.net"
,
url
=
"http://code.autistici.org/p/autoca"
,
license
=
"MIT"
,
packages
=
find_packages
(),
platforms
=
[
"any"
],
install_requires
=
[
"python-openssl"
],
zip_safe
=
True
,
entry_points
=
{
"console_scripts"
:
[
"autoca-newcert = autoca.newcert:main"
,
],
},
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment