Skip to content

Commit ebf4368

Browse files
committed
Fixed typos
1 parent cb3412a commit ebf4368

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • django_-_why_you_need_a_webframework

django_-_why_you_need_a_webframework/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Django (_/ˈdʒæŋɡoʊ/ jang-goh_) is a free and open source web application f
44

55
You see, when you're building a website, you always need a similiar set of components: a way to handle user authentication (signing up, signing in, signing out), management panel for your website, forms, uploading files, etc.
66

7-
Luckily for you other people long ago noticed that web developers face similar problems when building a new site, so they teamed up and created frameworks (Django is one of them) that givs you ready components you can use.
7+
Luckily for you other people long ago noticed that web developers face similar problems when building a new site, so they teamed up and created frameworks (Django is one of them) that gives you ready components you can use.
88

99
Frameworks exist to save you from having to re-invent the wheel and help alleviate some of the overhead when you’re building a new site.
1010

@@ -16,7 +16,7 @@ Imagine a mailbox (port) which is monitored for incoming letters (requests). It
1616

1717
## What happen when someone request a website from your server?
1818

19-
When a request comes to a web server it passes it to Django. Django tries to figure out what actually is requested. It takes a webpage address used and tries to figure out what to do. This part is done by Django's urlresolver (Note that a website address is called URL - Uniform Resource Locator, so the name 'urlresolver' makes sense). It is not very smart here - it takes a list of patterns and tries to match the URL. Django checks patterns from top to the bottom and if something is matched then Django passes the request to the associated function called view.
19+
When a request comes to a web server it's passed to Django which tries to figure out what actually is requested. It takes a webpage address used and tries to figure out what to do. This part is done by Django's urlresolver (Note that a website address is called URL - Uniform Resource Locator, so the name 'urlresolver' makes sense). It is not very smart here - it takes a list of patterns and tries to match the URL. Django checks patterns from top to the bottom and if something is matched then Django passes the request to the associated function called view.
2020

2121
Imagine a postman with a letter who is walking down the street and checks each house number with the one on the letter. If it matches, they put the letter there.
2222

0 commit comments

Comments
 (0)