Skip to content

Commit

Permalink
fix: Update http request markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
drorganvidez committed Sep 8, 2024
1 parent 1ce5702 commit f195216
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _site/architecture/http_request.html
Original file line number Diff line number Diff line change
Expand Up @@ -352,12 +352,12 @@ <h2 id="model-view-controller-mvc">
<ul>
<li><code class="language-plaintext highlighter-rouge">models.py</code>: Defines the data structures and database interactions.</li>
<li><code class="language-plaintext highlighter-rouge">repositories.py</code>: Implements functions to access and manipulate the data stored in the models.</li>
<li><code class="language-plaintext highlighter-rouge">forms.py</code>: Defines forms and data validations that users can submit.</li>
</ul>
</li>
<li><em>View</em>. Represents the user interface.
<ul>
<li><code class="language-plaintext highlighter-rouge">templates</code>: Contains the Jinja templates to generate the user interface.</li>
<li><code class="language-plaintext highlighter-rouge">forms.py</code>: Defines forms and data validations that users can submit.</li>
</ul>
</li>
<li><em>Controller</em>. Handles the application logic and the communication between the model and the view.
Expand Down
5 changes: 4 additions & 1 deletion _site/assets/images/http_request.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion _site/assets/js/search-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@
},"75": {
"doc": "HTTP Request",
"title": "Model-View-Controller (MVC)",
"content": "Each module in uvlhub has a series of folders and files to handle HTTP requests separating responsibility as indicated: . | Model. Represents the data and business logic of the application. | models.py: Defines the data structures and database interactions. | repositories.py: Implements functions to access and manipulate the data stored in the models. | . | View. Represents the user interface. | templates: Contains the Jinja templates to generate the user interface. | forms.py: Defines forms and data validations that users can submit. | . | Controller. Handles the application logic and the communication between the model and the view. | routes.py: Defines the application routes, handling HTTP requests and determining which view should be rendered. | services.py: Implements the business logic and operations that belong neither to the model nor to the view. | . | . ",
"content": "Each module in uvlhub has a series of folders and files to handle HTTP requests separating responsibility as indicated: . | Model. Represents the data and business logic of the application. | models.py: Defines the data structures and database interactions. | repositories.py: Implements functions to access and manipulate the data stored in the models. | forms.py: Defines forms and data validations that users can submit. | . | View. Represents the user interface. | templates: Contains the Jinja templates to generate the user interface. | . | Controller. Handles the application logic and the communication between the model and the view. | routes.py: Defines the application routes, handling HTTP requests and determining which view should be rendered. | services.py: Implements the business logic and operations that belong neither to the model nor to the view. | . | . ",
"url": "/architecture/http_request#model-view-controller-mvc",

"relUrl": "/architecture/http_request#model-view-controller-mvc"
Expand Down
2 changes: 1 addition & 1 deletion architecture/http_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ Each module in {% include uvlhub.html %} has a series of folders and files to ha
- *Model*. Represents the data and business logic of the application.
- `models.py`: Defines the data structures and database interactions.
- `repositories.py`: Implements functions to access and manipulate the data stored in the models.
- `forms.py`: Defines forms and data validations that users can submit.
- *View*. Represents the user interface.
- `templates`: Contains the Jinja templates to generate the user interface.
- `forms.py`: Defines forms and data validations that users can submit.
- *Controller*. Handles the application logic and the communication between the model and the view.
- `routes.py`: Defines the application routes, handling HTTP requests and determining which view should be rendered.
- `services.py`: Implements the business logic and operations that belong neither to the model nor to the view.
Expand Down
5 changes: 4 additions & 1 deletion assets/images/http_request.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f195216

Please sign in to comment.