Skip to content

Commit

Permalink
Generated content from main
Browse files Browse the repository at this point in the history
@ee144edd33287645780470819aac94cd37539841
  • Loading branch information
simonpinkas committed Oct 5, 2023
1 parent 2797704 commit fbef06c
Show file tree
Hide file tree
Showing 42 changed files with 50 additions and 50 deletions.
2 changes: 1 addition & 1 deletion 2023-2024/subjects/automated-testing/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Automated Testing (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/automated-testing/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/automated-testing/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/course/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>COMEM+ Web-Oriented Architecture Course (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/course/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/course/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/express-auth/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Express Authentication (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/express-auth/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/express-auth/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
10 changes: 5 additions & 5 deletions 2023-2024/subjects/express-best-practices/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Express Best Practices (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/express-best-practices/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/express-best-practices/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down Expand Up @@ -465,16 +465,16 @@
});
```

This **middleware function** is an specifically designed to handle errors. We can know this because the callback takes **four arguments, the first of which being the `err` object.** When an error is passed to next() function or thrown in a synchronous function in an Express app, it will be caught by this error-handling middleware. This works fine for Express errors, but **we also need to handle errors thrown by MongoDB.**
This **middleware function** is specifically designed to handle errors. We can know this because the callback takes **four arguments, the first of which being the `err` object.** When an error is passed to the `next()`` function or thrown in a synchronous function, it will be caught by this error-handling middleware. This works fine for Express errors, but **we also need to handle errors thrown by MongoDB.**

---
### MongoDB errors

.breadcrumbs[<a href="#1">Express Best Practices</a> > <a href="#12">Avoid repetition with middleware</a>]
Imagine the following scenario: one of your Mongoose models specifies that a Users must have unique emails. Someone using your API make a `POST` request to `/user`, trying to create a new user with an email that has already been previously registered. If this happens, an **ugly error message and generic status code will be sent to the user**:
Imagine the following scenario: one of your Mongoose models specifies that a Users must have unique emails. Someone using your API make a `POST` request to `/user`, trying to create a new user with an email that has already been registered. If this happens, an **ugly error message and generic status code will be sent to the user**:

```txt
E11000 duplicate key error collection
500: E11000 duplicate key error collection
```

---
Expand All @@ -488,7 +488,7 @@
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get("env") === "development" ? err : {};
* if (err.name === 'MongoError' && err.code === 11000) {
* if (err.code === 11000) {
* res.status(409).send('Email already registered.');
* } else {
// Send the error status
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/express-mongoose/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Using Mongoose with Express (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/express-mongoose/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/express-mongoose/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/express/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Express (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/express/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/express/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/js-classes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>JavaScript Classes (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/js-classes/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/js-classes/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/js-closures/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>JavaScript Closures (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/js-closures/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/js-closures/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/js-modules/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>JavaScript Modules (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/js-modules/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/js-modules/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/js-promises/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>JavaScript Promises (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/js-promises/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/js-promises/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/js-prototypes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>JavaScript Prototypes (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/js-prototypes/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/js-prototypes/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/js/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>JavaScript (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/js/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/js/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/mongodb-data-modeling/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>MongoDB data modeling (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/mongodb-data-modeling/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/mongodb-data-modeling/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/mongodb/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>MongoDB (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/mongodb/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/mongodb/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/mongoose/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Mongoose (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/mongoose/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/mongoose/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/node/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Node.js Introduction (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/node/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/node/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/npm/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>npm (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/npm/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/npm/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/rest-advanced/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>REST In Depth (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/rest-advanced/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/rest-advanced/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/rest/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>REST Introduction &amp; HTTP (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/rest/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/rest/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
2 changes: 1 addition & 1 deletion 2023-2024/subjects/wamp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Web Application Messaging Protocol (WAMP) (Media Engineering Web-Oriented Architecture)</title>
<meta charset='utf-8'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/66eb514e23e28f29feb0e529b3a6b7a0307bbd8d/subjects/wamp/README.md&quot;}'>
<meta name='config' content='{&quot;basePath&quot;:&quot;../..&quot;,&quot;remark&quot;:{&quot;highlightLines&quot;:true,&quot;highlightSpans&quot;:true,&quot;countIncrementalSlides&quot;:false},&quot;subjectUrl&quot;:&quot;https://github.com/MediaComem/comem-archioweb/tree/ee144edd33287645780470819aac94cd37539841/subjects/wamp/README.md&quot;}'>
</head>
<body>
<textarea id='source'>
Expand Down
Loading

0 comments on commit fbef06c

Please sign in to comment.