Skip to content

Commit 6328745

Browse files
committed
Doc fixes and formatting, also addresses #49
1 parent 1a364b7 commit 6328745

21 files changed

+61
-43
lines changed

.docs/angular-meteor/client/styles/main.less

+4
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ body {
109109

110110
.main-tutorial {
111111
padding-top: 20px;
112+
113+
do-nothing {
114+
font-size: 20px;
115+
}
112116
}
113117
}
114118
}

.docs/angular-meteor/client/views/api/api.collection.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template name="api.collection.html">
22
<div>
3-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.intro.html"
3+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.intro.html"
44
class="btn btn-default btn-lg improve-button">
55
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
66
</a>

.docs/angular-meteor/client/views/main.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h3>Read our <a href="/manifest">manifest</a></h3>
3232
<div class="container">
3333
<h1>The Basics</h1>
3434
<div>
35-
<iframe src="http://meteorpad.com/pad/gehYeJPWTtSgg45YQ" style="height: 1000px; width: 100%;"></iframe>
35+
<iframe src="http://meteorpad.com/pad/KDqJ8YXk7amN6Bv7D" style="height: 1000px; width: 100%;"></iframe>
3636
</div>
3737
</div>
3838
</div>
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
<template name="tutorial-02.intro.html">
22
<div>
3-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.intro.html"
3+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.intro.html"
44
class="btn btn-default btn-lg improve-button">
55
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
66
</a>
77

88
<h1>Socially Meteor-Angular Tutorial App - Part 2</h1>
9-
<p>
10-
In the first tutorial we learned how to work with the powerful Meteor collections together with Angular scope
11-
and templating.
12-
</p>
13-
<p>
14-
In this part we are going to learn how to work with Meteor accounts, permissions and security packages, together with
15-
Angular services and forms.
16-
</p>
9+
<br>
10+
11+
<do-nothing >
12+
{{#markdown}}
13+
14+
In the first tutorial we learned how to work with the powerful Meteor collections together with Angular scope
15+
and templating.
16+
17+
In this part we are going to learn how to work with Meteor accounts, permissions and security packages, together with
18+
Angular services and forms.
19+
20+
{{/markdown}}
21+
</do-nothing>
22+
1723
</div>
1824
</template>
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,33 @@
11
<template name="tutorial.intro.html">
22
<div>
3-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.intro.html"
3+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.intro.html"
44
class="btn btn-default btn-lg improve-button">
55
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
66
</a>
77

88
<h1>Socially Meteor-Angular Tutorial App</h1>
9-
<p>
10-
The purpose of this tutorial is to start from the beginning of writing applications with Meteor and Angularjs.
11-
This tutorial is good whether you have previous knowledge in one of those frameworks and also if you don't.
12-
We will try to take the best tutorials of the 2 frameworks and combine them into one broad tutorial.
13-
This tutorial will walk you through construction of a Meteor-Angular app.
14-
You will build a list of friends, that you can also filter, dive into their profiles for more details
15-
and of course store it all in a server and sync the information between clients with different users in real time.
16-
</p>
17-
<p>
18-
This tutorial will show you how powerful AngularJs is in making the browser smarter,
19-
while making your application code smaller and easier.
20-
It will also show you how powerful Meteor is, with it's powerful data synchronization and Latency compensation.
21-
We will also tap into the huge eco-systems of each of those frameworks that will
22-
allow us to write quality applications in a fraction of the time.
23-
</p>
9+
<br>
10+
11+
<do-nothing >
12+
{{#markdown}}
13+
14+
15+
The purpose of this tutorial is to start from the beginning of writing applications with Meteor and Angularjs.
16+
This tutorial is good whether you have previous knowledge in one of those frameworks and also if you don't.
17+
We will try to take the best tutorials of the 2 frameworks and combine them into one broad tutorial.
18+
This tutorial will walk you through construction of a Meteor-Angular app.
19+
You will build a list of friends, that you can also filter, dive into their profiles for more details
20+
and of course store it all in a server and sync the information between clients with different users in real time.
21+
22+
23+
This tutorial will show you how powerful AngularJs is in making the browser smarter,
24+
while making your application code smaller and easier.
25+
It will also show you how powerful Meteor is, with it's powerful data synchronization and Latency compensation.
26+
We will also tap into the huge eco-systems of each of those frameworks that will
27+
allow us to write quality applications in a fraction of the time.
28+
29+
{{/markdown}}
30+
</do-nothing>
31+
2432
</div>
2533
</template>

.docs/angular-meteor/client/views/steps/tutorial.step_00.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_00.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_00.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_00.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_01.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_01.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_01.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_01.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_02.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_02.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_02.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_02.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_03.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_03.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_03.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_03.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_04.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_04.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_04.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_04.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_05.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_05.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_05.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_05.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_06.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_06.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_06.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_06.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_07.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_07.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_07.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_07.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_08.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_08.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_08.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_08.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_09.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_09.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_09.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_09.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_10.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template name="tutorial.step_10.html">
22
<div class="row">
33
<div class="col-md-12">
4-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_10.html"
4+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_10.html"
55
class="btn btn-default btn-lg improve-button">
66
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
77
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_11.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template name="tutorial.step_11.html">
22
<div>
3-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_11.html"
3+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_11.html"
44
class="btn btn-default btn-lg improve-button">
55
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
66
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_12.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template name="tutorial.step_12.html">
22
<div>
3-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_12.html"
3+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_12.html"
44
class="btn btn-default btn-lg improve-button">
55
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
66
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_13.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template name="tutorial.step_13.html">
22
<div>
3-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_13.html"
3+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_13.html"
44
class="btn btn-default btn-lg improve-button">
55
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
66
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_14.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template name="tutorial.step_14.html">
22
<div>
3-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_14.html"
3+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_14.html"
44
class="btn btn-default btn-lg improve-button">
55
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
66
</a>

.docs/angular-meteor/client/views/steps/tutorial.step_15.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template name="tutorial.step_15.html">
22
<div>
3-
<a href="https://github.com/Urigo/angular-meteor/edit/master/docs/angular-meteor/client/views/steps/tutorial.step_15.html"
3+
<a href="https://github.com/Urigo/angular-meteor/edit/master/.docs/angular-meteor/client/views/steps/tutorial.step_15.html"
44
class="btn btn-default btn-lg improve-button">
55
<i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc
66
</a>

0 commit comments

Comments
 (0)