Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lipn-search
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien David
lipn-search
Commits
f1745bd5
Commit
f1745bd5
authored
4 years ago
by
Pranavan RAJENDIRAN
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into pranavan_hamming
parents
f5670007
efc847f1
No related branches found
Branches containing commit
No related tags found
1 merge request
!5
Pranavan hamming
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
site_web/README.md
+4
-1
4 additions, 1 deletion
site_web/README.md
site_web/html/index.html
+11
-0
11 additions, 0 deletions
site_web/html/index.html
site_web/server/server.py
+9
-0
9 additions, 0 deletions
site_web/server/server.py
with
24 additions
and
1 deletion
site_web/README.md
+
4
−
1
View file @
f1745bd5
...
...
@@ -2,4 +2,7 @@ Le répertoire server contient le code source du serveur web
Le répertoire html contient les fichiers html du site
Le répertoire css contient les fichiers css du site
Le répertoire js contient les fichiers Javascript du site
\ No newline at end of file
Le répertoire js contient les fichiers Javascript du site
This diff is collapsed.
Click to expand it.
site_web/html/index.html
0 → 100644
+
11
−
0
View file @
f1745bd5
<!DOCTYPE html>
<html>
<head><title>
Moteur de recherche
</title></head>
<body>
<h1>
Bienvenue dans notre serveur web fonctionel!!!!!
</h1>
<h2>
Il faut que ça soit trés jolie
</h2>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
site_web/server/server.py
0 → 100644
+
9
−
0
View file @
f1745bd5
import
http.server
import
socketserver
PORT
=
8080
Handler
=
http
.
server
.
SimpleHTTPRequestHandler
with
socketserver
.
TCPServer
((
""
,
PORT
),
Handler
)
as
http
:
print
(
"
Serving at port
"
,
PORT
)
http
.
serve_forever
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment