Skip to content

Commit a326007

Browse files
author
Roland Hedberg
committed
Merge pull request #40 from jespino/fix-docs
Fix documentation merge conflicts
2 parents 833fb2b + cafd125 commit a326007

File tree

4 files changed

+5
-127
lines changed

4 files changed

+5
-127
lines changed

doc/Makefile

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,11 @@ SPHINXBUILD = sphinx-build
77
PAPER =
88
BUILDDIR = _build
99

10-
<<<<<<< HEAD
11-
=======
1210
# User-friendly check for sphinx-build
1311
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
1412
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
1513
endif
1614

17-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
1815
# Internal variables.
1916
PAPEROPT_a4 = -D latex_paper_size=a4
2017
PAPEROPT_letter = -D latex_paper_size=letter
@@ -37,30 +34,20 @@ help:
3734
@echo " epub to make an epub"
3835
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
3936
@echo " latexpdf to make LaTeX files and run them through pdflatex"
40-
<<<<<<< HEAD
41-
=======
4237
@echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
43-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
4438
@echo " text to make text files"
4539
@echo " man to make manual pages"
4640
@echo " texinfo to make Texinfo files"
4741
@echo " info to make Texinfo files and run them through makeinfo"
4842
@echo " gettext to make PO message catalogs"
4943
@echo " changes to make an overview of all changed/added/deprecated items"
50-
<<<<<<< HEAD
51-
=======
5244
@echo " xml to make Docutils-native XML files"
5345
@echo " pseudoxml to make pseudoxml-XML files for display purposes"
54-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
5546
@echo " linkcheck to check all external links for integrity"
5647
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
5748

5849
clean:
59-
<<<<<<< HEAD
6050
-rm -rf $(BUILDDIR)/*
61-
=======
62-
rm -rf $(BUILDDIR)/*
63-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
6451

6552
html:
6653
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@@ -98,28 +85,17 @@ qthelp:
9885
@echo
9986
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
10087
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
101-
<<<<<<< HEAD
10288
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/pyjwkest.qhcp"
10389
@echo "To view the help file:"
10490
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/pyjwkest.qhc"
105-
=======
106-
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/pyoidc.qhcp"
107-
@echo "To view the help file:"
108-
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/pyoidc.qhc"
109-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
11091

11192
devhelp:
11293
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
11394
@echo
11495
@echo "Build finished."
11596
@echo "To view the help file:"
116-
<<<<<<< HEAD
11797
@echo "# mkdir -p $$HOME/.local/share/devhelp/pyjwkest"
11898
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/pyjwkest"
119-
=======
120-
@echo "# mkdir -p $$HOME/.local/share/devhelp/pyoidc"
121-
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/pyoidc"
122-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
12399
@echo "# devhelp"
124100

125101
epub:
@@ -140,15 +116,12 @@ latexpdf:
140116
$(MAKE) -C $(BUILDDIR)/latex all-pdf
141117
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
142118

143-
<<<<<<< HEAD
144-
=======
145119
latexpdfja:
146120
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
147121
@echo "Running LaTeX files through platex and dvipdfmx..."
148122
$(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
149123
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
150124

151-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
152125
text:
153126
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
154127
@echo
@@ -192,8 +165,6 @@ doctest:
192165
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
193166
@echo "Testing of doctests in the sources finished, look at the " \
194167
"results in $(BUILDDIR)/doctest/output.txt."
195-
<<<<<<< HEAD
196-
=======
197168

198169
xml:
199170
$(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
@@ -204,4 +175,3 @@ pseudoxml:
204175
$(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
205176
@echo
206177
@echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."
207-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c

doc/howto/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.. _howto:
22

3-
How to use pyOIDC
4-
=================
3+
How to use pyJWKEST
4+
===================
55

66
:Release: |release|
77
:Date: |today|
88

9-
Before you can use pyOIDC, you'll need to get it installed.
9+
Before you can use pyJWKEST, you'll need to get it installed.
1010
If you have not done it yet, read the :ref:`install`
1111

1212
Once you have it installed you can try to run the examples.

doc/install.rst

Lines changed: 2 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -3,52 +3,25 @@
33
Quick install guide
44
###################
55

6-
<<<<<<< HEAD
7-
Before you can use pyOIDC, you'll need to get it installed. This guide
6+
Before you can use pyJWKEST, you'll need to get it installed. This guide
87
will guide you to a simple, minimal installation.
98

109
Install pyJWKEST
1110
================
12-
=======
13-
Before you can use PyOIDC, you'll need to get it installed. This guide
14-
will guide you to a simple, minimal installation.
15-
16-
Install PyOIDC
17-
==============
18-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
1911

2012
For all this to work you need to have Python installed.
2113
The development has been done using 2.7.
2214
There will shortly be a 3.4 version.
2315

2416
Prerequisites
25-
<<<<<<< HEAD
2617
=============
2718

2819
For installing pyJWKEST you will need
2920

3021
* pycrypto
31-
=======
32-
==============
33-
34-
For installing pyOIDC you will need
35-
36-
* requests
37-
* pycrypto
38-
* pyjwkest
39-
* pysaml2
40-
* dirg-util
41-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
42-
43-
To build the documentation you will need
44-
45-
* alabaster
4622

4723
and for running the examples:
4824

49-
<<<<<<< HEAD
50-
* pycrypto
51-
=======
5225
* mako
5326
* cherrypy
5427
* beaker
@@ -57,26 +30,15 @@ and for running the examples:
5730
* importlib
5831
* M2Crypto
5932
* swig
60-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
6133

6234
For running the tests you will additionally need to install:
6335

6436
* pytest
6537

66-
<<<<<<< HEAD
6738
Debian/Mac
6839
==========
6940

7041
If you don't want to install pyjwkest and all it's dependencies manually you can use yais
71-
=======
72-
If you wish your LDAP tests to pass, ensure you have installed the following package as well:
73-
74-
* python-ldap (not supported in windows)
75-
76-
Debian/Mac
77-
==============
78-
If you don't want to install pyoidc and all it's dependencies manually you can use yais
79-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
8042

8143
Open a terminal and enter::
8244

@@ -86,11 +48,7 @@ Open a terminal and enter::
8648
cd [your path]/yais/script
8749
./yais.sh
8850

89-
<<<<<<< HEAD
90-
On the question “Do you want to install pyjwkest (Y/n):”, type Y. Everything else should be ignored, by typing n. The script will install pyoidc and all it's dependencies.
91-
=======
92-
On the question “Do you want to install pyoidc (Y/n):”, type Y. Everything else should be ignored, by typing n. The script will install pyoidc and all it's dependencies.
93-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
51+
On the question “Do you want to install pyjwkest (Y/n):”, type Y. Everything else should be ignored, by typing n. The script will install pyjwkest and all it's dependencies.
9452

9553
Quick build instructions
9654
------------------------
@@ -113,35 +71,3 @@ The tests are based on the pypy test environment, so::
11371

11472
is what you should use. If you don't have py.test, get it it's part of pypy!
11573
It's really good!
116-
<<<<<<< HEAD
117-
=======
118-
119-
Windows (beta)
120-
==============
121-
122-
Above all pyoidc is developed and used in unix environments. In order to make it easier for people to use it in windows
123-
environments a install script named install.bat has been developed which installs most of the necessary dependencies.
124-
There are still some applications which is not included in .bat file like Python, Git, PyOpenSSL and Microsoft
125-
Visual C++ Compiler.
126-
127-
NOTE: The script has been developed and used on windows 10.
128-
129-
A complete zip file containing all det executable files and the install script could be downloaded here:
130-
https://dirg.org.umu.se/static/pyoidc_windows_install_full.zip
131-
132-
If you only want the install script it could be downloaded here:
133-
https://dirg.org.umu.se/static/pyoidc_windows_install_script.zip
134-
135-
Start of by installing the program in the "Executables" folder. In order for it to work appropriate install the
136-
applicaions in the following order.
137-
138-
1. python-2.7.9 (https://www.python.org/downloads/)
139-
2. Git-1.9.5-preview (http://git-scm.com/downloads)
140-
2.1 On the "ajusting your path environment" page select "Use Git from the windows command prompt"
141-
3. PyOpenSSL-0.13.1 (https://pypi.python.org/pypi/pyOpenSSL/0.13.1#downloads)
142-
4. VCForPython27 (http://aka.ms/vcpython27)
143-
144-
After installing the executable files go back to the root folder and run the file named install.bat
145-
146-
NOTE: If you are planing to start the .bat file from a command prompt make sure the command prompt where started after installing Git-1.9.5-preview.
147-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c

doc/make.bat

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,8 @@ if "%1" == "help" (
3333
echo. texinfo to make Texinfo files
3434
echo. gettext to make PO message catalogs
3535
echo. changes to make an overview over all changed/added/deprecated items
36-
<<<<<<< HEAD
37-
=======
3836
echo. xml to make Docutils-native XML files
3937
echo. pseudoxml to make pseudoxml-XML files for display purposes
40-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
4138
echo. linkcheck to check all external links for integrity
4239
echo. doctest to run all doctests embedded in the documentation if enabled
4340
goto end
@@ -49,8 +46,6 @@ if "%1" == "clean" (
4946
goto end
5047
)
5148

52-
<<<<<<< HEAD
53-
=======
5449

5550
%SPHINXBUILD% 2> nul
5651
if errorlevel 9009 (
@@ -65,7 +60,6 @@ if errorlevel 9009 (
6560
exit /b 1
6661
)
6762

68-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
6963
if "%1" == "html" (
7064
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
7165
if errorlevel 1 exit /b 1
@@ -121,15 +115,9 @@ if "%1" == "qthelp" (
121115
echo.
122116
echo.Build finished; now you can run "qcollectiongenerator" with the ^
123117
.qhcp project file in %BUILDDIR%/qthelp, like this:
124-
<<<<<<< HEAD
125118
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pyjwkest.qhcp
126119
echo.To view the help file:
127120
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyjwkest.ghc
128-
=======
129-
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\pyoidc.qhcp
130-
echo.To view the help file:
131-
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyoidc.ghc
132-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
133121
goto end
134122
)
135123

@@ -157,8 +145,6 @@ if "%1" == "latex" (
157145
goto end
158146
)
159147

160-
<<<<<<< HEAD
161-
=======
162148
if "%1" == "latexpdf" (
163149
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
164150
cd %BUILDDIR%/latex
@@ -179,7 +165,6 @@ if "%1" == "latexpdfja" (
179165
goto end
180166
)
181167

182-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
183168
if "%1" == "text" (
184169
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
185170
if errorlevel 1 exit /b 1
@@ -238,8 +223,6 @@ results in %BUILDDIR%/doctest/output.txt.
238223
goto end
239224
)
240225

241-
<<<<<<< HEAD
242-
=======
243226
if "%1" == "xml" (
244227
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
245228
if errorlevel 1 exit /b 1
@@ -256,5 +239,4 @@ if "%1" == "pseudoxml" (
256239
goto end
257240
)
258241

259-
>>>>>>> d8858378e9d3351804dba5654444cc23b9e1c07c
260242
:end

0 commit comments

Comments
 (0)