• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

MakefileH A D17-Mar-2021634 219

README.mdH A D17-Mar-2021741 3525

auxiliary-tools.rstH A D17-Mar-202110.8 KiB400269

changelog.rstH A D17-Mar-202115.9 KiB434343

citation.rstH A D17-Mar-20211.5 KiB5543

command-options.rstH A D17-Mar-202139.4 KiB1,159822

conf.pyH A D17-Mar-202111.5 KiB36846

crystal.rstH A D17-Mar-20213.5 KiB9161

cutoff-pair.rstH A D17-Mar-202118.5 KiB446377

direct-solution.rstH A D17-Mar-202115.4 KiB348275

examples.rstH A D17-Mar-2021513 1913

external-tools.rstH A D17-Mar-20211.2 KiB3423

hdf5_howto.rstH A D17-Mar-202110.3 KiB343238

index.rstH A D17-Mar-20212.6 KiB9471

install.rstH A D17-Mar-202111 KiB328230

interfaces.rstH A D17-Mar-20212.2 KiB7655

output-files.rstH A D17-Mar-20214.1 KiB152108

qe.rstH A D17-Mar-20212.4 KiB7347

tips.rstH A D17-Mar-20215.7 KiB128105

turbomole.rstH A D17-Mar-20213.1 KiB8154

vasp.rstH A D17-Mar-20213.8 KiB11875

workload-distribution.rstH A D17-Mar-20215.8 KiB146109

README.md

1# How to write phono3py documentation
2
3This directory contains python-sphinx documentation source.
4
5## How to compile
6
7```
8make html
9```
10
11## Source files
12
13* `conf.py` contains the sphinx setting confiuration.
14* `*.rst` are the usual sphinx documentation source and the filenames without `.rst` are the keys to link from toctree mainly in `index.rst`.
15
16## How to publish
17
18Web page files are copied to `gh-pages` branch. At the phono3py github top directory,
19```
20git checkout gh-pages
21rm -r .buildinfo .doctrees *
22```
23
24From the directory the sphinx doc is complied,
25```
26rsync -avh _build/ <phono3py-repository-directory>/
27```
28
29Again, at the phono3py github top directory,
30```
31git add .
32git commit -a -m "Update documentation ..."
33git push
34```
35