frontend-hamroun 1.2.16 → 1.2.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/bin/cli.js +673 -0
- package/dist/component.d.ts +1 -1
- package/dist/context.d.ts +4 -3
- package/dist/index.client.d.ts +11 -0
- package/dist/index.d.ts +9 -89
- package/dist/index.js +396 -67
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +392 -0
- package/dist/index.mjs.map +1 -0
- package/dist/jsx-runtime/jsx-runtime.d.ts +0 -1
- package/dist/jsx-runtime.d.ts +1 -1
- package/dist/renderer.d.ts +0 -10
- package/dist/server-renderer.d.ts +0 -3
- package/dist/server-types.d.ts +42 -0
- package/package.json +69 -41
- package/templates/basic-app/index.html +6 -6
- package/templates/basic-app/package.json +18 -7
- package/templates/basic-app/postcss.config.js +0 -1
- package/templates/basic-app/src/main.tsx +1 -10
- package/templates/basic-app/tailwind.config.js +2 -23
- package/templates/basic-app/tsconfig.json +4 -17
- package/templates/basic-app/vite.config.ts +3 -54
- package/templates/fullstack-app/api/hello.ts +18 -0
- package/templates/fullstack-app/api/users/[id].ts +73 -0
- package/templates/fullstack-app/api/users/index.ts +32 -0
- package/templates/fullstack-app/package.json +31 -0
- package/templates/fullstack-app/server.ts +46 -0
- package/templates/fullstack-app/src/pages/index.tsx +59 -0
- package/templates/ssr-template/vite.config.ts +1 -11
- package/bin/cli.cjs +0 -16
- package/bin/cli.mjs +0 -237
- package/dist/backend/api-utils.d.ts +0 -38
- package/dist/backend/api-utils.js +0 -135
- package/dist/backend/auth.d.ts +0 -134
- package/dist/backend/auth.js +0 -387
- package/dist/backend/database.d.ts +0 -27
- package/dist/backend/database.js +0 -91
- package/dist/backend/model.d.ts +0 -43
- package/dist/backend/model.js +0 -178
- package/dist/backend/router.d.ts +0 -27
- package/dist/backend/router.js +0 -137
- package/dist/backend/server.d.ts +0 -19
- package/dist/backend/server.js +0 -268
- package/dist/backend/types.d.ts +0 -217
- package/dist/backend/types.js +0 -1
- package/dist/batch.js +0 -22
- package/dist/cli/index.d.ts +0 -2
- package/dist/cli/index.js +0 -215
- package/dist/component.js +0 -84
- package/dist/components/Counter.js +0 -2
- package/dist/context.js +0 -18
- package/dist/frontend-hamroun.es.js +0 -1378
- package/dist/frontend-hamroun.umd.js +0 -66
- package/dist/hooks.js +0 -164
- package/dist/jsx-runtime/index.d.ts +0 -11
- package/dist/jsx-runtime/index.js +0 -19
- package/dist/jsx-runtime/jsx-dev-runtime.js +0 -1
- package/dist/jsx-runtime/jsx-runtime.js +0 -95
- package/dist/jsx-runtime.js +0 -192
- package/dist/renderer.js +0 -51
- package/dist/server-renderer.js +0 -102
- package/dist/types.js +0 -1
- package/dist/vdom.js +0 -27
- package/scripts/build-cli.js +0 -1199
- package/scripts/generate.js +0 -134
- package/src/backend/api-utils.ts +0 -178
- package/src/backend/auth.ts +0 -544
- package/src/backend/database.ts +0 -104
- package/src/backend/model.ts +0 -198
- package/src/backend/router.ts +0 -176
- package/src/backend/server.ts +0 -330
- package/src/backend/types.ts +0 -257
- package/src/batch.ts +0 -24
- package/src/cli/index.js +0 -554
- package/src/cli/index.ts +0 -257
- package/src/component.ts +0 -98
- package/src/components/Counter.tsx +0 -4
- package/src/context.ts +0 -29
- package/src/hooks.ts +0 -211
- package/src/index.ts +0 -144
- package/src/jsx-runtime/index.ts +0 -27
- package/src/jsx-runtime/jsx-dev-runtime.ts +0 -0
- package/src/jsx-runtime/jsx-runtime.ts +0 -104
- package/src/jsx-runtime.ts +0 -226
- package/src/renderer.ts +0 -55
- package/src/server-renderer.ts +0 -114
- package/src/shims.d.ts +0 -20
- package/src/types/bcrypt.d.ts +0 -30
- package/src/types/jsonwebtoken.d.ts +0 -55
- package/src/types.d.ts +0 -26
- package/src/types.ts +0 -21
- package/src/vdom.ts +0 -34
- package/templates/basic/.eslintignore +0 -5
- package/templates/basic/.eslintrc.json +0 -25
- package/templates/basic/docs/rapport_pfe.aux +0 -27
- package/templates/basic/docs/rapport_pfe.log +0 -399
- package/templates/basic/docs/rapport_pfe.out +0 -10
- package/templates/basic/docs/rapport_pfe.pdf +0 -0
- package/templates/basic/docs/rapport_pfe.tex +0 -68
- package/templates/basic/docs/rapport_pfe.toc +0 -14
- package/templates/basic/index.html +0 -12
- package/templates/basic/jsconfig.json +0 -14
- package/templates/basic/package.json +0 -18
- package/templates/basic/postcss.config.js +0 -7
- package/templates/basic/src/App.js +0 -105
- package/templates/basic/src/App.tsx +0 -65
- package/templates/basic/src/api.ts +0 -58
- package/templates/basic/src/components/Counter.tsx +0 -26
- package/templates/basic/src/components/Header.tsx +0 -9
- package/templates/basic/src/components/TodoList.tsx +0 -90
- package/templates/basic/src/main.css +0 -3
- package/templates/basic/src/main.js +0 -11
- package/templates/basic/src/main.ts +0 -20
- package/templates/basic/src/main.tsx +0 -144
- package/templates/basic/src/server.ts +0 -99
- package/templates/basic/tailwind.config.js +0 -32
- package/templates/basic/tsconfig.json +0 -20
- package/templates/basic/tsconfig.node.json +0 -10
- package/templates/basic/vite.config.js +0 -18
- package/templates/basic/vite.config.ts +0 -86
- package/templates/basic-app/src/App.js +0 -105
- package/templates/basic-app/src/App.tsx +0 -143
- package/templates/basic-app/src/api.ts +0 -58
- package/templates/basic-app/src/components/Counter.tsx +0 -26
- package/templates/basic-app/src/components/Header.tsx +0 -9
- package/templates/basic-app/src/components/TodoList.tsx +0 -90
- package/templates/basic-app/src/main.js +0 -10
- package/templates/basic-app/src/main.ts +0 -21
- package/templates/basic-app/src/react/index.ts +0 -35
- package/templates/basic-app/src/react/jsx-dev-runtime.ts +0 -13
- package/templates/basic-app/src/react/jsx-runtime.ts +0 -12
- package/templates/basic-app/src/server.ts +0 -99
- package/templates/basic-app/src/shims.ts +0 -9
- package/templates/basic-app/tsconfig.node.json +0 -10
- package/templates/basic-app/vite.config.js +0 -22
- package/templates/full-stack/.env.example +0 -11
- package/templates/full-stack/README.md +0 -51
- package/templates/full-stack/index.html +0 -12
- package/templates/full-stack/jsconfig.json +0 -14
- package/templates/full-stack/package.json +0 -21
- package/templates/full-stack/src/App.js +0 -105
- package/templates/full-stack/src/client/App.tsx +0 -50
- package/templates/full-stack/src/client/components/Header.tsx +0 -42
- package/templates/full-stack/src/client/components/UserList.tsx +0 -29
- package/templates/full-stack/src/client/main.tsx +0 -5
- package/templates/full-stack/src/main.css +0 -3
- package/templates/full-stack/src/main.js +0 -11
- package/templates/full-stack/src/main.ts +0 -20
- package/templates/full-stack/src/server/index.ts +0 -99
- package/templates/full-stack/src/server/routes/auth.ts +0 -39
- package/templates/full-stack/src/server/routes/users.ts +0 -48
- package/templates/full-stack/src/shims.ts +0 -9
- package/templates/full-stack/tsconfig.json +0 -20
- package/templates/full-stack/tsconfig.node.json +0 -10
- package/templates/full-stack/tsconfig.server.json +0 -15
- package/templates/full-stack/vite.config.js +0 -18
- package/templates/full-stack/vite.config.ts +0 -85
package/src/types/bcrypt.d.ts
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
declare module 'bcrypt' {
|
2
|
-
/**
|
3
|
-
* Generate a salt
|
4
|
-
* @param rounds Number of rounds to use, defaults to 10
|
5
|
-
* @param callback Callback function (err, salt)
|
6
|
-
*/
|
7
|
-
export function genSalt(rounds?: number, callback?: (err: Error | null, salt: string) => void): Promise<string>;
|
8
|
-
|
9
|
-
/**
|
10
|
-
* Generate a hash for the provided string
|
11
|
-
* @param data Data to hash
|
12
|
-
* @param saltOrRounds Salt or number of rounds to use
|
13
|
-
* @param callback Callback function (err, hash)
|
14
|
-
*/
|
15
|
-
export function hash(data: string, saltOrRounds: string | number, callback?: (err: Error | null, hash: string) => void): Promise<string>;
|
16
|
-
|
17
|
-
/**
|
18
|
-
* Compare provided data with a hash
|
19
|
-
* @param data Data to compare
|
20
|
-
* @param encrypted Hash to compare against
|
21
|
-
* @param callback Callback function (err, result)
|
22
|
-
*/
|
23
|
-
export function compare(data: string, encrypted: string, callback?: (err: Error | null, result: boolean) => void): Promise<boolean>;
|
24
|
-
|
25
|
-
/**
|
26
|
-
* Get the number of rounds used in the specified hash
|
27
|
-
* @param encrypted Hash to extract rounds from
|
28
|
-
*/
|
29
|
-
export function getRounds(encrypted: string): number;
|
30
|
-
}
|
@@ -1,55 +0,0 @@
|
|
1
|
-
declare module 'jsonwebtoken' {
|
2
|
-
export interface JwtPayload {
|
3
|
-
[key: string]: any;
|
4
|
-
iat?: number;
|
5
|
-
exp?: number;
|
6
|
-
aud?: string | string[];
|
7
|
-
sub?: string;
|
8
|
-
iss?: string;
|
9
|
-
}
|
10
|
-
|
11
|
-
export interface VerifyOptions {
|
12
|
-
algorithms?: string[];
|
13
|
-
audience?: string | string[];
|
14
|
-
complete?: boolean;
|
15
|
-
issuer?: string | string[];
|
16
|
-
jwtid?: string;
|
17
|
-
ignoreExpiration?: boolean;
|
18
|
-
ignoreNotBefore?: boolean;
|
19
|
-
subject?: string;
|
20
|
-
clockTolerance?: number;
|
21
|
-
maxAge?: string | number;
|
22
|
-
clockTimestamp?: number;
|
23
|
-
}
|
24
|
-
|
25
|
-
export interface SignOptions {
|
26
|
-
algorithm?: string;
|
27
|
-
keyid?: string;
|
28
|
-
expiresIn?: string | number;
|
29
|
-
notBefore?: string | number;
|
30
|
-
audience?: string | string[];
|
31
|
-
subject?: string;
|
32
|
-
issuer?: string;
|
33
|
-
jwtid?: string;
|
34
|
-
noTimestamp?: boolean;
|
35
|
-
header?: object;
|
36
|
-
encoding?: string;
|
37
|
-
}
|
38
|
-
|
39
|
-
export function sign(
|
40
|
-
payload: string | Buffer | object,
|
41
|
-
secretOrPrivateKey: string | Buffer,
|
42
|
-
options?: SignOptions
|
43
|
-
): string;
|
44
|
-
|
45
|
-
export function verify(
|
46
|
-
token: string,
|
47
|
-
secretOrPublicKey: string | Buffer,
|
48
|
-
options?: VerifyOptions
|
49
|
-
): JwtPayload | string;
|
50
|
-
|
51
|
-
export function decode(
|
52
|
-
token: string,
|
53
|
-
options?: { complete?: boolean; json?: boolean }
|
54
|
-
): null | JwtPayload | { [key: string]: any };
|
55
|
-
}
|
package/src/types.d.ts
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
declare namespace JSX {
|
2
|
-
interface IntrinsicElements {
|
3
|
-
}
|
4
|
-
|
5
|
-
interface Element extends Node {}
|
6
|
-
|
7
|
-
interface ElementAttributesProperty {
|
8
|
-
props: {};
|
9
|
-
}
|
10
|
-
|
11
|
-
interface ElementChildrenAttribute {
|
12
|
-
children: {};
|
13
|
-
}
|
14
|
-
}
|
15
|
-
|
16
|
-
interface Window {
|
17
|
-
jsx: any;
|
18
|
-
jsxs: any;
|
19
|
-
Fragment: any;
|
20
|
-
__renderStats?: {
|
21
|
-
elementsCreated: number;
|
22
|
-
textNodesCreated: number;
|
23
|
-
eventsAttached: number;
|
24
|
-
renderTime: number;
|
25
|
-
};
|
26
|
-
}
|
package/src/types.ts
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
export type { Context } from './context';
|
2
|
-
|
3
|
-
export interface VNode {
|
4
|
-
type: string | Function;
|
5
|
-
props: Record<string, any>;
|
6
|
-
key?: string | number;
|
7
|
-
}
|
8
|
-
|
9
|
-
// Global JSX namespace
|
10
|
-
declare global {
|
11
|
-
namespace JSX {
|
12
|
-
interface Element {
|
13
|
-
type: string | Function;
|
14
|
-
props: Record<string, any>;
|
15
|
-
key?: string | number;
|
16
|
-
}
|
17
|
-
interface IntrinsicElements {
|
18
|
-
[elemName: string]: any;
|
19
|
-
}
|
20
|
-
}
|
21
|
-
}
|
package/src/vdom.ts
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
interface VNode {
|
2
|
-
type: string | Function;
|
3
|
-
props: Record<string, any>;
|
4
|
-
key?: string | number;
|
5
|
-
}
|
6
|
-
|
7
|
-
function arePropsEqual(oldProps: any, newProps: any): boolean {
|
8
|
-
// Handle null/undefined props
|
9
|
-
oldProps = oldProps || {};
|
10
|
-
newProps = newProps || {};
|
11
|
-
|
12
|
-
const oldKeys = Object.keys(oldProps).filter(k => k !== 'children');
|
13
|
-
const newKeys = Object.keys(newProps).filter(k => k !== 'children');
|
14
|
-
|
15
|
-
if (oldKeys.length !== newKeys.length) return false;
|
16
|
-
return oldKeys.every(key => oldProps[key] === newProps[key]);
|
17
|
-
}
|
18
|
-
|
19
|
-
export function diff(oldNode: VNode | any, newNode: VNode | any): boolean {
|
20
|
-
if (oldNode == null || newNode == null) return oldNode !== newNode;
|
21
|
-
if (typeof oldNode !== typeof newNode) return true;
|
22
|
-
if (typeof newNode === 'string' || typeof newNode === 'number')
|
23
|
-
return oldNode !== newNode;
|
24
|
-
|
25
|
-
// Handle primitive values that are not objects
|
26
|
-
if (!oldNode.type || !newNode.type) return oldNode !== newNode;
|
27
|
-
|
28
|
-
if (newNode.type !== oldNode.type) return true;
|
29
|
-
return !arePropsEqual(oldNode.props, newNode.props);
|
30
|
-
}
|
31
|
-
|
32
|
-
export function shouldComponentUpdate(oldProps: any, newProps: any): boolean {
|
33
|
-
return !arePropsEqual(oldProps, newProps);
|
34
|
-
}
|
@@ -1,25 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"root": true,
|
3
|
-
"env": {
|
4
|
-
"browser": true,
|
5
|
-
"es2020": true
|
6
|
-
},
|
7
|
-
"extends": [
|
8
|
-
"eslint:recommended",
|
9
|
-
"plugin:@typescript-eslint/recommended"
|
10
|
-
],
|
11
|
-
"ignorePatterns": ["dist", ".eslintrc.json"],
|
12
|
-
"parser": "@typescript-eslint/parser",
|
13
|
-
"plugins": [
|
14
|
-
"@typescript-eslint",
|
15
|
-
"react-refresh"
|
16
|
-
],
|
17
|
-
"rules": {
|
18
|
-
"react-refresh/only-export-components": [
|
19
|
-
"warn",
|
20
|
-
{ "allowConstantExport": true }
|
21
|
-
],
|
22
|
-
"@typescript-eslint/no-explicit-any": "off",
|
23
|
-
"@typescript-eslint/ban-ts-comment": "off"
|
24
|
-
}
|
25
|
-
}
|
@@ -1,27 +0,0 @@
|
|
1
|
-
\relax
|
2
|
-
\providecommand\babel@aux[2]{}
|
3
|
-
\@nameuse{bbl@beforestart}
|
4
|
-
\catcode `:\active
|
5
|
-
\catcode `;\active
|
6
|
-
\catcode `!\active
|
7
|
-
\catcode `?\active
|
8
|
-
\providecommand\hyper@newdestlabel[2]{}
|
9
|
-
\providecommand\HyField@AuxAddToFields[1]{}
|
10
|
-
\providecommand\HyField@AuxAddToCoFields[2]{}
|
11
|
-
\babel@aux{french}{}
|
12
|
-
\@writefile{toc}{\contentsline {chapter}{\numberline {1}ÉTUDE PREALABLE}{2}{chapter.1}\protected@file@percent }
|
13
|
-
\@writefile{lof}{\addvspace {10\p@ }}
|
14
|
-
\@writefile{lot}{\addvspace {10\p@ }}
|
15
|
-
\@writefile{toc}{\contentsline {section}{\numberline {1.1}Introduction}{2}{section.1.1}\protected@file@percent }
|
16
|
-
\@writefile{toc}{\contentsline {section}{\numberline {1.2}Organisme d'accueil}{2}{section.1.2}\protected@file@percent }
|
17
|
-
\@writefile{toc}{\contentsline {section}{\numberline {1.3}Étude et critique de l'existant}{2}{section.1.3}\protected@file@percent }
|
18
|
-
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3.1}Critique de l'existant}{2}{subsection.1.3.1}\protected@file@percent }
|
19
|
-
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3.2}Solution proposée}{2}{subsection.1.3.2}\protected@file@percent }
|
20
|
-
\@writefile{toc}{\contentsline {section}{\numberline {1.4}Choix méthodologique}{3}{section.1.4}\protected@file@percent }
|
21
|
-
\@writefile{toc}{\contentsline {subsection}{\numberline {1.4.1}Formalisme de modélisation}{3}{subsection.1.4.1}\protected@file@percent }
|
22
|
-
\@writefile{toc}{\contentsline {subsection}{\numberline {1.4.2}Méthodologie}{3}{subsection.1.4.2}\protected@file@percent }
|
23
|
-
\@writefile{toc}{\contentsline {subsubsection}{Présentation de la méthode SCRUM}{3}{section*.2}\protected@file@percent }
|
24
|
-
\@writefile{toc}{\contentsline {subsubsection}{La répartition des rôles dans la méthode SCRUM}{3}{section*.3}\protected@file@percent }
|
25
|
-
\@writefile{toc}{\contentsline {subsubsection}{Le processus de SCRUM}{3}{section*.4}\protected@file@percent }
|
26
|
-
\@writefile{toc}{\contentsline {section}{\numberline {1.5}Conclusion}{3}{section.1.5}\protected@file@percent }
|
27
|
-
\gdef \@abspage@last{4}
|
@@ -1,399 +0,0 @@
|
|
1
|
-
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (MiKTeX 24.1) (preloaded format=pdflatex 2025.4.3) 11 APR 2025 21:21
|
2
|
-
entering extended mode
|
3
|
-
restricted \write18 enabled.
|
4
|
-
%&-line parsing enabled.
|
5
|
-
**./rapport_pfe.tex
|
6
|
-
(rapport_pfe.tex
|
7
|
-
LaTeX2e <2023-11-01> patch level 1
|
8
|
-
L3 programming layer <2024-01-04>
|
9
|
-
(C:\Program Files\MiKTeX\tex/latex/base\report.cls
|
10
|
-
Document Class: report 2023/05/17 v1.4n Standard LaTeX document class
|
11
|
-
(C:\Program Files\MiKTeX\tex/latex/base\size12.clo
|
12
|
-
File: size12.clo 2023/05/17 v1.4n Standard LaTeX file (size option)
|
13
|
-
)
|
14
|
-
\c@part=\count187
|
15
|
-
\c@chapter=\count188
|
16
|
-
\c@section=\count189
|
17
|
-
\c@subsection=\count190
|
18
|
-
\c@subsubsection=\count191
|
19
|
-
\c@paragraph=\count192
|
20
|
-
\c@subparagraph=\count193
|
21
|
-
\c@figure=\count194
|
22
|
-
\c@table=\count195
|
23
|
-
\abovecaptionskip=\skip48
|
24
|
-
\belowcaptionskip=\skip49
|
25
|
-
\bibindent=\dimen140
|
26
|
-
)
|
27
|
-
(C:\Program Files\MiKTeX\tex/latex/base\inputenc.sty
|
28
|
-
Package: inputenc 2021/02/14 v1.3d Input encoding file
|
29
|
-
\inpenc@prehook=\toks17
|
30
|
-
\inpenc@posthook=\toks18
|
31
|
-
)
|
32
|
-
(C:\Program Files\MiKTeX\tex/generic/babel\babel.sty
|
33
|
-
Package: babel 2024/01/07 v24.1 The Babel package
|
34
|
-
\babel@savecnt=\count196
|
35
|
-
\U@D=\dimen141
|
36
|
-
\l@unhyphenated=\language79
|
37
|
-
|
38
|
-
(C:\Program Files\MiKTeX\tex/generic/babel\txtbabel.def)
|
39
|
-
\bbl@readstream=\read2
|
40
|
-
\bbl@dirlevel=\count197
|
41
|
-
|
42
|
-
*************************************
|
43
|
-
* Local config file bblopts.cfg used
|
44
|
-
*
|
45
|
-
(C:\Program Files\MiKTeX\tex/latex/arabi\bblopts.cfg
|
46
|
-
File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
|
47
|
-
babel
|
48
|
-
)
|
49
|
-
(C:\Program Files\MiKTeX\tex/generic/babel-french\french.ldf
|
50
|
-
Language: french 2024-07-25 v3.6c French support from the babel system
|
51
|
-
Package babel Info: Hyphen rules for 'acadian' set to \l@french
|
52
|
-
(babel) (\language22). Reported on input line 91.
|
53
|
-
Package babel Info: Hyphen rules for 'canadien' set to \l@french
|
54
|
-
(babel) (\language22). Reported on input line 92.
|
55
|
-
\FB@stdchar=\count198
|
56
|
-
Package babel Info: Making : an active character on input line 421.
|
57
|
-
Package babel Info: Making ; an active character on input line 422.
|
58
|
-
Package babel Info: Making ! an active character on input line 423.
|
59
|
-
Package babel Info: Making ? an active character on input line 424.
|
60
|
-
\FBguill@level=\count199
|
61
|
-
\FBold@everypar=\toks19
|
62
|
-
\FB@Mht=\dimen142
|
63
|
-
\mc@charclass=\count266
|
64
|
-
\mc@charfam=\count267
|
65
|
-
\mc@charslot=\count268
|
66
|
-
\std@mcc=\count269
|
67
|
-
\dec@mcc=\count270
|
68
|
-
\FB@parskip=\dimen143
|
69
|
-
\listindentFB=\dimen144
|
70
|
-
\descindentFB=\dimen145
|
71
|
-
\labelindentFB=\dimen146
|
72
|
-
\labelwidthFB=\dimen147
|
73
|
-
\leftmarginFB=\dimen148
|
74
|
-
\parindentFFN=\dimen149
|
75
|
-
\FBfnindent=\dimen150
|
76
|
-
))
|
77
|
-
(C:\Program Files\MiKTeX\tex/generic/babel/locale/fr\babel-french.tex
|
78
|
-
Package babel Info: Importing font and identification data for french
|
79
|
-
(babel) from babel-fr.ini. Reported on input line 11.
|
80
|
-
)
|
81
|
-
(C:\Program Files\MiKTeX\tex/latex/carlisle\scalefnt.sty)
|
82
|
-
(C:\Program Files\MiKTeX\tex/latex/graphics\graphicx.sty
|
83
|
-
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
|
84
|
-
|
85
|
-
(C:\Program Files\MiKTeX\tex/latex/graphics\keyval.sty
|
86
|
-
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
|
87
|
-
\KV@toks@=\toks20
|
88
|
-
)
|
89
|
-
(C:\Program Files\MiKTeX\tex/latex/graphics\graphics.sty
|
90
|
-
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)
|
91
|
-
|
92
|
-
(C:\Program Files\MiKTeX\tex/latex/graphics\trig.sty
|
93
|
-
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
|
94
|
-
)
|
95
|
-
(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\graphics.cfg
|
96
|
-
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
97
|
-
)
|
98
|
-
Package graphics Info: Driver file: pdftex.def on input line 107.
|
99
|
-
|
100
|
-
(C:\Program Files\MiKTeX\tex/latex/graphics-def\pdftex.def
|
101
|
-
File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex
|
102
|
-
))
|
103
|
-
\Gin@req@height=\dimen151
|
104
|
-
\Gin@req@width=\dimen152
|
105
|
-
)
|
106
|
-
(C:\Program Files\MiKTeX\tex/latex/fancyhdr\fancyhdr.sty
|
107
|
-
Package: fancyhdr 2025/02/07 v5.2 Extensive control of page headers and footers
|
108
|
-
|
109
|
-
\f@nch@headwidth=\skip50
|
110
|
-
\f@nch@offset@elh=\skip51
|
111
|
-
\f@nch@offset@erh=\skip52
|
112
|
-
\f@nch@offset@olh=\skip53
|
113
|
-
\f@nch@offset@orh=\skip54
|
114
|
-
\f@nch@offset@elf=\skip55
|
115
|
-
\f@nch@offset@erf=\skip56
|
116
|
-
\f@nch@offset@olf=\skip57
|
117
|
-
\f@nch@offset@orf=\skip58
|
118
|
-
\f@nch@height=\skip59
|
119
|
-
\f@nch@footalignment=\skip60
|
120
|
-
\f@nch@widthL=\skip61
|
121
|
-
\f@nch@widthC=\skip62
|
122
|
-
\f@nch@widthR=\skip63
|
123
|
-
\@temptokenb=\toks21
|
124
|
-
)
|
125
|
-
(C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref.sty
|
126
|
-
Package: hyperref 2023-11-26 v7.01g Hypertext links for LaTeX
|
127
|
-
|
128
|
-
(C:\Program Files\MiKTeX\tex/generic/iftex\iftex.sty
|
129
|
-
Package: iftex 2022/02/03 v1.0f TeX engine tests
|
130
|
-
)
|
131
|
-
(C:\Program Files\MiKTeX\tex/generic/infwarerr\infwarerr.sty
|
132
|
-
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
|
133
|
-
)
|
134
|
-
(C:\Program Files\MiKTeX\tex/latex/kvsetkeys\kvsetkeys.sty
|
135
|
-
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
|
136
|
-
)
|
137
|
-
(C:\Program Files\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty
|
138
|
-
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
|
139
|
-
)
|
140
|
-
(C:\Program Files\MiKTeX\tex/generic/pdfescape\pdfescape.sty
|
141
|
-
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
|
142
|
-
|
143
|
-
(C:\Program Files\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty
|
144
|
-
Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
|
145
|
-
)
|
146
|
-
(C:\Program Files\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty
|
147
|
-
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
|
148
|
-
)
|
149
|
-
Package pdftexcmds Info: \pdf@primitive is available.
|
150
|
-
Package pdftexcmds Info: \pdf@ifprimitive is available.
|
151
|
-
Package pdftexcmds Info: \pdfdraftmode found.
|
152
|
-
))
|
153
|
-
(C:\Program Files\MiKTeX\tex/latex/hycolor\hycolor.sty
|
154
|
-
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
|
155
|
-
)
|
156
|
-
(C:\Program Files\MiKTeX\tex/latex/letltxmacro\letltxmacro.sty
|
157
|
-
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
|
158
|
-
)
|
159
|
-
(C:\Program Files\MiKTeX\tex/latex/auxhook\auxhook.sty
|
160
|
-
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
|
161
|
-
)
|
162
|
-
(C:\Program Files\MiKTeX\tex/latex/hyperref\nameref.sty
|
163
|
-
Package: nameref 2023-11-26 v2.56 Cross-referencing by name of section
|
164
|
-
|
165
|
-
(C:\Program Files\MiKTeX\tex/latex/refcount\refcount.sty
|
166
|
-
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
|
167
|
-
)
|
168
|
-
(C:\Program Files\MiKTeX\tex/generic/gettitlestring\gettitlestring.sty
|
169
|
-
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
|
170
|
-
|
171
|
-
(C:\Program Files\MiKTeX\tex/latex/kvoptions\kvoptions.sty
|
172
|
-
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
|
173
|
-
))
|
174
|
-
\c@section@level=\count271
|
175
|
-
)
|
176
|
-
(C:\Program Files\MiKTeX\tex/latex/etoolbox\etoolbox.sty
|
177
|
-
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
|
178
|
-
\etb@tempcnta=\count272
|
179
|
-
)
|
180
|
-
\@linkdim=\dimen153
|
181
|
-
\Hy@linkcounter=\count273
|
182
|
-
\Hy@pagecounter=\count274
|
183
|
-
|
184
|
-
(C:\Program Files\MiKTeX\tex/latex/hyperref\pd1enc.def
|
185
|
-
File: pd1enc.def 2023-11-26 v7.01g Hyperref: PDFDocEncoding definition (HO)
|
186
|
-
Now handling font encoding PD1 ...
|
187
|
-
... no UTF-8 mapping file for font encoding PD1
|
188
|
-
)
|
189
|
-
(C:\Program Files\MiKTeX\tex/generic/intcalc\intcalc.sty
|
190
|
-
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
|
191
|
-
)
|
192
|
-
\Hy@SavedSpaceFactor=\count275
|
193
|
-
|
194
|
-
(C:\Program Files\MiKTeX\tex/latex/hyperref\puenc.def
|
195
|
-
File: puenc.def 2023-11-26 v7.01g Hyperref: PDF Unicode definition (HO)
|
196
|
-
Now handling font encoding PU ...
|
197
|
-
... no UTF-8 mapping file for font encoding PU
|
198
|
-
)
|
199
|
-
Package hyperref Info: Hyper figures OFF on input line 4181.
|
200
|
-
Package hyperref Info: Link nesting OFF on input line 4186.
|
201
|
-
Package hyperref Info: Hyper index ON on input line 4189.
|
202
|
-
Package hyperref Info: Plain pages OFF on input line 4196.
|
203
|
-
Package hyperref Info: Backreferencing OFF on input line 4201.
|
204
|
-
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
|
205
|
-
Package hyperref Info: Bookmarks ON on input line 4448.
|
206
|
-
\c@Hy@tempcnt=\count276
|
207
|
-
|
208
|
-
(C:\Program Files\MiKTeX\tex/latex/url\url.sty
|
209
|
-
\Urlmuskip=\muskip16
|
210
|
-
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
|
211
|
-
)
|
212
|
-
LaTeX Info: Redefining \url on input line 4786.
|
213
|
-
\XeTeXLinkMargin=\dimen154
|
214
|
-
|
215
|
-
(C:\Program Files\MiKTeX\tex/generic/bitset\bitset.sty
|
216
|
-
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
|
217
|
-
|
218
|
-
(C:\Program Files\MiKTeX\tex/generic/bigintcalc\bigintcalc.sty
|
219
|
-
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
|
220
|
-
)
|
221
|
-
))
|
222
|
-
\Fld@menulength=\count277
|
223
|
-
\Field@Width=\dimen155
|
224
|
-
\Fld@charsize=\dimen156
|
225
|
-
Package hyperref Info: Hyper figures OFF on input line 6065.
|
226
|
-
Package hyperref Info: Link nesting OFF on input line 6070.
|
227
|
-
Package hyperref Info: Hyper index ON on input line 6073.
|
228
|
-
Package hyperref Info: backreferencing OFF on input line 6080.
|
229
|
-
Package hyperref Info: Link coloring OFF on input line 6085.
|
230
|
-
Package hyperref Info: Link coloring with OCG OFF on input line 6090.
|
231
|
-
Package hyperref Info: PDF/A mode OFF on input line 6095.
|
232
|
-
|
233
|
-
(C:\Program Files\MiKTeX\tex/latex/base\atbegshi-ltx.sty
|
234
|
-
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
|
235
|
-
package with kernel methods
|
236
|
-
)
|
237
|
-
\Hy@abspage=\count278
|
238
|
-
\c@Item=\count279
|
239
|
-
\c@Hfootnote=\count280
|
240
|
-
)
|
241
|
-
Package hyperref Info: Driver (autodetected): hpdftex.
|
242
|
-
|
243
|
-
(C:\Program Files\MiKTeX\tex/latex/hyperref\hpdftex.def
|
244
|
-
File: hpdftex.def 2023-11-26 v7.01g Hyperref driver for pdfTeX
|
245
|
-
|
246
|
-
(C:\Program Files\MiKTeX\tex/latex/base\atveryend-ltx.sty
|
247
|
-
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac
|
248
|
-
kage
|
249
|
-
with kernel methods
|
250
|
-
)
|
251
|
-
\Fld@listcount=\count281
|
252
|
-
\c@bookmark@seq@number=\count282
|
253
|
-
|
254
|
-
(C:\Program Files\MiKTeX\tex/latex/rerunfilecheck\rerunfilecheck.sty
|
255
|
-
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
|
256
|
-
|
257
|
-
(C:\Program Files\MiKTeX\tex/generic/uniquecounter\uniquecounter.sty
|
258
|
-
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
|
259
|
-
)
|
260
|
-
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
|
261
|
-
85.
|
262
|
-
)
|
263
|
-
\Hy@SectionHShift=\skip64
|
264
|
-
)
|
265
|
-
Package hyperref Info: Option `colorlinks' set `true' on input line 13.
|
266
|
-
|
267
|
-
(C:\Program Files\MiKTeX\tex/latex/l3backend\l3backend-pdftex.def
|
268
|
-
File: l3backend-pdftex.def 2024-01-04 L3 backend support: PDF output (pdfTeX)
|
269
|
-
\l__color_backend_stack_int=\count283
|
270
|
-
\l__pdf_internal_box=\box51
|
271
|
-
)
|
272
|
-
(rapport_pfe.aux)
|
273
|
-
\openout1 = `rapport_pfe.aux'.
|
274
|
-
|
275
|
-
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 25.
|
276
|
-
LaTeX Font Info: ... okay on input line 25.
|
277
|
-
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 25.
|
278
|
-
LaTeX Font Info: ... okay on input line 25.
|
279
|
-
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 25.
|
280
|
-
LaTeX Font Info: ... okay on input line 25.
|
281
|
-
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 25.
|
282
|
-
LaTeX Font Info: ... okay on input line 25.
|
283
|
-
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 25.
|
284
|
-
LaTeX Font Info: ... okay on input line 25.
|
285
|
-
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 25.
|
286
|
-
LaTeX Font Info: ... okay on input line 25.
|
287
|
-
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 25.
|
288
|
-
LaTeX Font Info: ... okay on input line 25.
|
289
|
-
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 25.
|
290
|
-
LaTeX Font Info: ... okay on input line 25.
|
291
|
-
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 25.
|
292
|
-
LaTeX Font Info: ... okay on input line 25.
|
293
|
-
LaTeX Info: Redefining \degres on input line 25.
|
294
|
-
LaTeX Info: Redefining \up on input line 25.
|
295
|
-
|
296
|
-
|
297
|
-
Package french.ldf Warning: OT1 encoding should not be used for French.
|
298
|
-
(french.ldf) Add \usepackage[T1]{fontenc} to the preamble
|
299
|
-
(french.ldf) of your document; reported on input line 25.
|
300
|
-
|
301
|
-
(C:\Program Files\MiKTeX\tex/context/base/mkii\supp-pdf.mkii
|
302
|
-
[Loading MPS to PDF converter (version 2006.09.02).]
|
303
|
-
\scratchcounter=\count284
|
304
|
-
\scratchdimen=\dimen157
|
305
|
-
\scratchbox=\box52
|
306
|
-
\nofMPsegments=\count285
|
307
|
-
\nofMParguments=\count286
|
308
|
-
\everyMPshowfont=\toks22
|
309
|
-
\MPscratchCnt=\count287
|
310
|
-
\MPscratchDim=\dimen158
|
311
|
-
\MPnumerator=\count288
|
312
|
-
\makeMPintoPDFobject=\count289
|
313
|
-
\everyMPtoPDFconversion=\toks23
|
314
|
-
) (C:\Program Files\MiKTeX\tex/latex/epstopdf-pkg\epstopdf-base.sty
|
315
|
-
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
316
|
-
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
317
|
-
85.
|
318
|
-
|
319
|
-
(C:\Program Files\MiKTeX\tex/latex/00miktex\epstopdf-sys.cfg
|
320
|
-
File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX
|
321
|
-
))
|
322
|
-
(C:\Program Files\MiKTeX\tex/latex/graphics\color.sty
|
323
|
-
Package: color 2022/01/06 v1.3d Standard LaTeX Color (DPC)
|
324
|
-
|
325
|
-
(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\color.cfg
|
326
|
-
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
327
|
-
)
|
328
|
-
Package color Info: Driver file: pdftex.def on input line 149.
|
329
|
-
|
330
|
-
(C:\Program Files\MiKTeX\tex/latex/graphics\mathcolor.ltx))
|
331
|
-
Package hyperref Info: Link coloring ON on input line 25.
|
332
|
-
(rapport_pfe.out)
|
333
|
-
(rapport_pfe.out)
|
334
|
-
\@outlinefile=\write3
|
335
|
-
\openout3 = `rapport_pfe.out'.
|
336
|
-
|
337
|
-
LaTeX Font Info: External font `cmex10' loaded for size
|
338
|
-
(Font) <14.4> on input line 28.
|
339
|
-
LaTeX Font Info: External font `cmex10' loaded for size
|
340
|
-
(Font) <7> on input line 28.
|
341
|
-
[1
|
342
|
-
|
343
|
-
{C:/Users/hamro/AppData/Local/MiKTeX/fonts/map/pdftex/pdftex.map}] (rapport_pfe
|
344
|
-
.toc
|
345
|
-
LaTeX Font Info: External font `cmex10' loaded for size
|
346
|
-
(Font) <12> on input line 3.
|
347
|
-
LaTeX Font Info: External font `cmex10' loaded for size
|
348
|
-
(Font) <8> on input line 3.
|
349
|
-
LaTeX Font Info: External font `cmex10' loaded for size
|
350
|
-
(Font) <6> on input line 3.
|
351
|
-
)
|
352
|
-
\tf@toc=\write4
|
353
|
-
\openout4 = `rapport_pfe.toc'.
|
354
|
-
|
355
|
-
|
356
|
-
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has
|
357
|
-
been already used, duplicate ignored
|
358
|
-
<to be read again>
|
359
|
-
\relax
|
360
|
-
l.29 \newpage
|
361
|
-
[1
|
362
|
-
|
363
|
-
]
|
364
|
-
Chapitre 1.
|
365
|
-
[2
|
366
|
-
|
367
|
-
]
|
368
|
-
|
369
|
-
Package fancyhdr Warning: \headheight is too small (12.0pt):
|
370
|
-
(fancyhdr) Make it at least 15.71667pt, for example:
|
371
|
-
(fancyhdr) \setlength{\headheight}{15.71667pt}.
|
372
|
-
(fancyhdr) You might also make \topmargin smaller:
|
373
|
-
(fancyhdr) \addtolength{\topmargin}{-3.71667pt}.
|
374
|
-
|
375
|
-
[3] (rapport_pfe.aux)
|
376
|
-
***********
|
377
|
-
LaTeX2e <2023-11-01> patch level 1
|
378
|
-
L3 programming layer <2024-01-04>
|
379
|
-
***********
|
380
|
-
Package rerunfilecheck Info: File `rapport_pfe.out' has not changed.
|
381
|
-
(rerunfilecheck) Checksum: 3EE8BAE7C5596D6C97ACEA2FBAB7472C;1532.
|
382
|
-
)
|
383
|
-
Here is how much of TeX's memory you used:
|
384
|
-
10770 strings out of 474486
|
385
|
-
174935 string characters out of 5753571
|
386
|
-
1930542 words of memory out of 5000000
|
387
|
-
32928 multiletter control sequences out of 15000+600000
|
388
|
-
563843 words of font info for 55 fonts, out of 8000000 for 9000
|
389
|
-
1141 hyphenation exceptions out of 8191
|
390
|
-
75i,12n,79p,274b,475s stack positions out of 10000i,1000n,20000p,200000b,200000s
|
391
|
-
<C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmbx12.pfb><C:/Progra
|
392
|
-
m Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmr12.pfb><C:/Program Files/MiKTe
|
393
|
-
X/fonts/type1/public/amsfonts/cm/cmr17.pfb>
|
394
|
-
Output written on rapport_pfe.pdf (4 pages, 59939 bytes).
|
395
|
-
PDF statistics:
|
396
|
-
95 PDF objects out of 1000 (max. 8388607)
|
397
|
-
18 named destinations out of 1000 (max. 500000)
|
398
|
-
81 words of extra memory for PDF output out of 10000 (max. 10000000)
|
399
|
-
|
@@ -1,10 +0,0 @@
|
|
1
|
-
\BOOKMARK [0][-]{chapter.1}{\376\377\000\311\000T\000U\000D\000E\000\040\000P\000R\000E\000A\000L\000A\000B\000L\000E}{}% 1
|
2
|
-
\BOOKMARK [1][-]{section.1.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{chapter.1}% 2
|
3
|
-
\BOOKMARK [1][-]{section.1.2}{\376\377\000O\000r\000g\000a\000n\000i\000s\000m\000e\000\040\000d\000'\000a\000c\000c\000u\000e\000i\000l}{chapter.1}% 3
|
4
|
-
\BOOKMARK [1][-]{section.1.3}{\376\377\000\311\000t\000u\000d\000e\000\040\000e\000t\000\040\000c\000r\000i\000t\000i\000q\000u\000e\000\040\000d\000e\000\040\000l\000'\000e\000x\000i\000s\000t\000a\000n\000t}{chapter.1}% 4
|
5
|
-
\BOOKMARK [2][-]{subsection.1.3.1}{\376\377\000C\000r\000i\000t\000i\000q\000u\000e\000\040\000d\000e\000\040\000l\000'\000e\000x\000i\000s\000t\000a\000n\000t}{section.1.3}% 5
|
6
|
-
\BOOKMARK [2][-]{subsection.1.3.2}{\376\377\000S\000o\000l\000u\000t\000i\000o\000n\000\040\000p\000r\000o\000p\000o\000s\000\351\000e}{section.1.3}% 6
|
7
|
-
\BOOKMARK [1][-]{section.1.4}{\376\377\000C\000h\000o\000i\000x\000\040\000m\000\351\000t\000h\000o\000d\000o\000l\000o\000g\000i\000q\000u\000e}{chapter.1}% 7
|
8
|
-
\BOOKMARK [2][-]{subsection.1.4.1}{\376\377\000F\000o\000r\000m\000a\000l\000i\000s\000m\000e\000\040\000d\000e\000\040\000m\000o\000d\000\351\000l\000i\000s\000a\000t\000i\000o\000n}{section.1.4}% 8
|
9
|
-
\BOOKMARK [2][-]{subsection.1.4.2}{\376\377\000M\000\351\000t\000h\000o\000d\000o\000l\000o\000g\000i\000e}{section.1.4}% 9
|
10
|
-
\BOOKMARK [1][-]{section.1.5}{\376\377\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n}{chapter.1}% 10
|
Binary file
|