Skip to content

Commit

Permalink
Minor changes / review ; adding tasks TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
gabywald committed Nov 5, 2020
1 parent da62c41 commit 4b7a4f7
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 13 deletions.
21 changes: 13 additions & 8 deletions Python/mainScript.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__copyright__ = "CC Gabriel Chandesris (2020)"
__credits__ = ""
__licence__ = "GNU GENERAL PUBLIC LICENSE v3"
__version__ = "0.2.0"
__version__ = "0.3.0"
__maintainer__ = "Gabriel Chandesris"
__email__ = "gabywald[at]laposte.net"
__contact__ = "gabywald[at]laposte.net"
Expand Down Expand Up @@ -235,7 +235,8 @@
## Starting document here !
curriculumGenerationtest.write( "\\begin{document}\n\n\\maketitle\n\n" )
## Introduction
curriculumGenerationtest.write( "\\section{Introduction}\n")
## ## ## TODO "Introduction Text" generation ??
curriculumGenerationtest.write( "%% \\section{Introduction}\n")
curriculumGenerationtest.write( "\t IntroductionText~\\\\ \n\n" )
## Compétences ...
curriculumGenerationtest.write( "\\section{Comp{\\'e}tences}\n" )
Expand Down Expand Up @@ -263,22 +264,26 @@
curriculumGenerationtest.write( "\\section{Formation}\n" )
for eltTraining in personnae.trainings :
curriculumGenerationtest.write( "\t \\cventry{years}{%s}{%s}{%s}{\n %% grade \n}{\n %% description \n}\n\n" %( eltTraining[1], eltTraining[0], eltTraining[2] ) )
curriculumGenerationtest.write( "\t %% \\cventry{Year}{Diploma}{\\newline School}{Location} {}{}{}\n\n" )
curriculumGenerationtest.write( "\t %% \\cventry{Year}{Diploma}{School}{Location} {}{}{}\n\n" )
## Certifications ...
curriculumGenerationtest.write( "\\section{Licences et Certifications}\n" )
curriculumGenerationtest.write( "\t \\cventry{Year}{Diploma}{\\newline School}{Location} {}{}{}\n\n" )
## Bénévolat ...
## ## ## TODO "Bénévolat" generation ??
curriculumGenerationtest.write( "\\section{Expériences de bénévolat}\n" )
curriculumGenerationtest.write( "\t \\cventry{years}{degree/job title}{institution/employer}{localization}{grade}{description}\n\n" )
curriculumGenerationtest.write( "\t \\cventry{years}{jobtitle}{institution}{localization}{status}{description}\n\n" )
## Recommandations ...
## ## ## TODO "Recommandations" generation ??
curriculumGenerationtest.write( "%% \\section{Recommandations}\n" )
curriculumGenerationtest.write( "%% \t \\cvitem{ Item1 }{ Description1 }\n\n" )
## Réalisations : ...
curriculumGenerationtest.write( "%% \t \\cvitem{ Item }{ Content }\n\n" )
## Réalisations ...
## ## ## TODO "Réalisations" generation ??
curriculumGenerationtest.write( "\\section{Réalisations}\n" )
curriculumGenerationtest.write( "\t \\cvitem{Projets}{ GitHub }\n" )
curriculumGenerationtest.write( "\t \\cvitem{Organisations}{ associations... }\n" )
curriculumGenerationtest.write( "\t \\cvitem{Publications}{ citations, references... }\n\n" )
curriculumGenerationtest.write( "\t \\cvitem{Organisations}{ associations }\n" )
curriculumGenerationtest.write( "\t \\cvitem{Publications}{ citations }\n\n" )
## Out of Work / Centres d'intérêts
## ## ## TODO "Interests out of the work" generation ??
curriculumGenerationtest.write( "\\section{Centres d'int{\\'e}r{\\^e}ts}\n" )
curriculumGenerationtest.write( "\t \\cvitem{Lectures}{ Science-Fiction, Policier, Fantasy... }\n" )
curriculumGenerationtest.write( "\t \\cvitem{Jeux Sociaux}{ Jeux de Rôle, Jeux de plateau, e-sport }\n" )
Expand Down
2 changes: 1 addition & 1 deletion Python/mainWithFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__copyright__ = "CC Gabriel Chandesris (2020)"
__credits__ = ""
__licence__ = "GNU GENERAL PUBLIC LICENSE v3"
__version__ = "0.2.0"
__version__ = "0.3.0"
__maintainer__ = "Gabriel Chandesris"
__email__ = "gabywald[at]laposte.net"
__contact__ = "gabywald[at]laposte.net"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@

\maketitle

\section{Introduction}
%% \section{Introduction}
IntroductionText~\\

\section{Comp{\'e}tences}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@

\maketitle

\section{Introduction}
%% \section{Introduction}
IntroductionText~\\

\section{Comp{\'e}tences}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@

\maketitle

\section{Introduction}
%% \section{Introduction}
IntroductionText~\\

\section{Comp{\'e}tences}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@

\maketitle

\section{Introduction}
%% \section{Introduction}
IntroductionText~\\

\section{Comp{\'e}tences}
Expand Down

0 comments on commit 4b7a4f7

Please sign in to comment.