Skip to content

Commit fa5308c

Browse files
committed
adding checklist to js page
1 parent 0ac1dc6 commit fa5308c

File tree

5 files changed

+28
-9
lines changed

5 files changed

+28
-9
lines changed

change-log.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,10 @@ <h1>Change Log</h1>
5252
<h2>2014</h2>
5353
<h3>April</h3>
5454
<ul>
55-
<li>Adding the concept of "learning checklists" to web frameworks and Django
56-
pages to give readers some guidance for how to learn each topic. Will expand
57-
these checklists out into other pages over the next couple of weeks.</li>
55+
<li>Adding the concept of "learning checklists" to web frameworks, Django, CSS
56+
and JavaScript pages to give readers some guidance for how to learn each
57+
topic. Will expand these checklists out into other pages over the next
58+
couple of weeks.</li>
5859
<li>Added an email sign up form to determine how many people are interested in
5960
a full book since I've had a lot of requests in person to write one.</li>
6061
<li>Added new resources to the other web frameworks section.</li>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-04-27T15:27:47Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-04-27T15:44:19Z</updated></feed>

javascript.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,12 @@ <h1>JavaScript</h1>
4949
to enable dynamic content and interaction. </p>
5050
<h2>Why is JavaScript necessary?</h2>
5151
<p>JavaScript executes in the client and enables dynamic content and interaction
52-
that is not possible with HTML and CSS alone. </p>
52+
that is not possible with HTML and CSS alone. Every modern Python web
53+
application uses JavaScript on the front end. The trend towards richer client
54+
experiences will increase as projects such as
55+
<a href="https://angularjs.org/">Angular.js</a>,
56+
<a href="http://backbonejs.org/">Backbone.js</a>, and
57+
<a href="http://emberjs.com/">Ember.js</a> continue to mature.</p>
5358
<h2>JavaScript learning checklist</h2>
5459
<p><i class="fa fa-check-square-o"></i>
5560
Create a simple HTML file with basic elements in it. Use the
@@ -66,6 +71,9 @@ <h2>JavaScript learning checklist</h2>
6671
projects listed below as well as JQuery plugins. Check out the Unheap link
6772
below to find a large collection of categorized JQuery plugins.</p>
6873
<p><i class="fa fa-check-square-o"></i>
74+
Check out the JavaScript resources below to learn more about advanced concepts
75+
and open source libraries.</p>
76+
<p><i class="fa fa-check-square-o"></i>
6977
Integrate JavaScript into your web application and check the
7078
<a href="/static-content.html">static content</a> section for how to host the JavaScript
7179
files.</p>

source/content/pages/05-client-side/0503-javascript.markdown

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ to enable dynamic content and interaction.
2323

2424
## Why is JavaScript necessary?
2525
JavaScript executes in the client and enables dynamic content and interaction
26-
that is not possible with HTML and CSS alone.
26+
that is not possible with HTML and CSS alone. Every modern Python web
27+
application uses JavaScript on the front end. The trend towards richer client
28+
experiences will increase as projects such as
29+
[Angular.js](https://angularjs.org/),
30+
[Backbone.js](http://backbonejs.org/), and
31+
[Ember.js](http://emberjs.com/) continue to mature.
2732

2833

2934
## JavaScript learning checklist
@@ -44,6 +49,10 @@ Work with JavaScript on the page. Incorporate examples from open source
4449
projects listed below as well as JQuery plugins. Check out the Unheap link
4550
below to find a large collection of categorized JQuery plugins.
4651

52+
<i class="fa fa-check-square-o"></i>
53+
Check out the JavaScript resources below to learn more about advanced concepts
54+
and open source libraries.
55+
4756
<i class="fa fa-check-square-o"></i>
4857
Integrate JavaScript into your web application and check the
4958
[static content](/static-content.html) section for how to host the JavaScript

source/content/pages/10-misc/1005-change-log.markdown

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ the
2424

2525
## 2014
2626
### April
27-
* Adding the concept of "learning checklists" to web frameworks and Django
28-
pages to give readers some guidance for how to learn each topic. Will expand
29-
these checklists out into other pages over the next couple of weeks.
27+
* Adding the concept of "learning checklists" to web frameworks, Django, CSS
28+
and JavaScript pages to give readers some guidance for how to learn each
29+
topic. Will expand these checklists out into other pages over the next
30+
couple of weeks.
3031
* Added an email sign up form to determine how many people are interested in
3132
a full book since I've had a lot of requests in person to write one.
3233
* Added new resources to the other web frameworks section.

0 commit comments

Comments
 (0)