/usr/share/python-ase/doc/development/development.rst is in python-ase-doc 3.9.1.4567-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | .. _devel:
===============
ASE development
===============
As a developer, you should subscribe to all ASE related
:ref:`mailing_lists`.
Development topics
==================
.. toctree::
releasenotes
contribute
versioncontrol
python_codingstandard
writing_documentation_ase
calculators
making_movies
newrelease
tests
buildbot
translate
todo
py3k
proposals/proposals
.. _devel_passwd_create:
Creating an encrypted password for SVN access
=============================================
Use this command::
htpasswd -nm <your-desired-user-name>
and type a `good password <http://xkcd.com/936/>`__ twice. The
encrypted password will be printed on the screen.
Alternatively, you can use::
openssl passwd -apr1
followed by your password (twice).
|