-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglossary.html
1148 lines (1099 loc) · 64.8 KB
/
glossary.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Glossary — Self Directed Learning with Online Resources</title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="_static/css/basicstrap-base.css" type="text/css" />
<link rel="stylesheet" id="current-theme" href="_static/css/bootstrap3/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" id="current-adjust-theme" type="text/css" />
<link rel="stylesheet" href="_static/css/font-awesome.min.css">
<link rel="stylesheet" href="_static/css/basicstrap.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/local.css" type="text/css" />
<link rel="stylesheet" href="_static/css/local.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: 'v0.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/js/jquery.min.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/js/local.js"></script>
<script type="text/javascript" src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/bootstrap3.min.js"></script>
<script type="text/javascript" src="_static/js/jquery.cookie.min.js"></script>
<script type="text/javascript" src="_static/js/basicstrap.js"></script>
<script type="text/javascript">
</script>
<link rel="top" title="Self Directed Learning with Online Resources" href="index.html" />
<link rel="prev" title="Self-Directed Learning with Online Resources" href="slides.html" />
</head>
<body role="document">
<div id="navbar-top" class="navbar navbar-default" role="navigation" aria-label="top navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Self Directed Learning with Online Resources</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown visible-xs">
<a role="button" id="localToc" data-toggle="dropdown" data-target="#" href="#">Table Of Contents <b class="caret"></b></a>
<ul class="dropdown-menu localtoc sp-localtoc" role="menu" aria-labelledby="localToc">
<ul>
<li><a class="reference internal" href="#">Glossary</a><ul>
<li><a class="reference internal" href="#sequence-development">Sequence Development</a></li>
<li><a class="reference internal" href="#graphs">Graphs</a></li>
<li><a class="reference internal" href="#web-standards">Web Standards</a></li>
<li><a class="reference internal" href="#linked-data-science">Linked Data Science</a></li>
<li><a class="reference internal" href="#education">Education</a></li>
<li><a class="reference internal" href="#learning">Learning</a></li>
<li><a class="reference internal" href="#tools">Tools</a></li>
<li><a class="reference internal" href="#research-tools">Research Tools</a></li>
<li><a class="reference internal" href="#authoring-tools">Authoring Tools</a></li>
<li><a class="reference internal" href="#review-tools">Review Tools</a></li>
<li><a class="reference internal" href="#ui-ux-design">UI/UX Design</a></li>
<li><a class="reference internal" href="#cloud">Cloud</a></li>
<li><a class="reference internal" href="#collaboration-engineering">Collaboration Engineering</a></li>
<li><a class="reference internal" href="#index">Index</a></li>
</ul>
</li>
</ul>
</ul>
</li>
<li><a href="slides.html" title="Self-Directed Learning with Online Resources" accesskey="P">previous </a></li>
<li><a href="genindex.html" title="General Index" accesskey="I">index </a></li>
<li class="visible-xs"><a href="_sources/glossary.txt" rel="nofollow">Show Source</a></li>
<li class="visible-xs">
<form class="search form-search form-inline navbar-form navbar-right sp-searchbox" action="search.html" method="get">
<div class="input-append input-group">
<input type="text" class="search-query form-control" name="q" placeholder="Search...">
<span class="input-group-btn">
<input type="submit" class="btn" value="Go" />
</span>
</div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</li>
</ul>
</div>
</div>
</div>
<!-- container -->
<div class="container-fluid">
<!-- row -->
<div class="row">
<div class="col-md-7" id="content-wrapper">
<div class="document" role="main">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="glossary">
<h1>Glossary<a class="headerlink" href="#glossary" title="Permalink to this headline">¶</a></h1>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The terms listed in this <a class="reference internal" href=""><em>glossary</em></a>
are listed in the <a class="reference internal" href="genindex.html"><em>Index</em></a>.</p>
</div>
<div class="section" id="sequence-development">
<h2>Sequence Development<a class="headerlink" href="#sequence-development" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-sequencing">sequencing</dt>
<dd><p class="first">developing <a class="reference internal" href="#term-path"><em class="xref std std-term">paths</em></a> of <a class="reference internal" href="#term-edge"><em class="xref std std-term">edges</em></a> between
<a class="reference internal" href="#term-vertex"><em class="xref std std-term">node</em></a> <a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a>.</p>
<p class="last">Often augmented with <a class="reference internal" href="#term-authoring-tools"><em class="xref std std-term">authoring tools</em></a></p>
</dd>
<dt id="term-authoring">authoring</dt>
<dd><p class="first">Creating and synthesizing <a class="reference internal" href="#term-sequencing"><em class="xref std std-term">sequences</em></a>
of <a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a> like:</p>
<ul class="last simple">
<li><a class="reference internal" href="#term-document"><em class="xref std std-term">documents</em></a></li>
<li><a class="reference internal" href="#term-learning-object"><em class="xref std std-term">learning objects</em></a></li>
</ul>
</dd>
<dt id="term-naming">naming</dt>
<dd>assigning unique identifiers to concepts, objects, and categories</dd>
<dt id="term-namespacing">namespacing</dt>
<dd><p class="first">TODO</p>
<div class="last highlight-python"><div class="highlight"><pre><span class="c"># Dots: path.to.resource</span>
<span class="c"># Slashes: path/to/resource</span>
<span class="c"># Hahes: #url_fragment``</span>
</pre></div>
</div>
</dd>
<dt id="term-tagging">tagging</dt>
<dd><p class="first">adding attribute <a class="reference internal" href="#term-edge"><em class="xref std std-term">edges</em></a> between <a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a> and tag strings, which can be <a class="reference internal" href="#term-namespace"><em class="xref std std-term">namespaced</em></a> <a class="reference internal" href="#term-url"><em class="xref std std-term">URLs</em></a>.
Tags can denote <a class="reference internal" href="#term-category"><em class="xref std std-term">categories</em></a></p>
<p>Example in <a class="reference internal" href="#term-json"><em class="xref std std-term">JSON</em></a></p>
<div class="highlight-javascript"><div class="highlight"><pre><span class="p">{</span>
<span class="s2">"url"</span><span class="o">:</span> <span class="s2">"http://example.com/ns/products/XYZ_123"</span><span class="p">,</span>
<span class="s2">"title"</span><span class="o">:</span> <span class="s2">"XYZ_123"</span><span class="p">,</span>
<span class="s2">"tags"</span><span class="o">:</span> <span class="p">[</span><span class="s2">"Widgets"</span><span class="p">,</span> <span class="s2">"XYZ_Widgets"</span><span class="p">]</span>
<span class="p">}</span>
</pre></div>
</div>
<p class="last">Often augmented with <em class="xref std std-term">annotation tools</em></p>
</dd>
<dt id="term-linking">linking</dt>
<dd><p class="first">Adding <a class="reference internal" href="#term-edge"><em class="xref std std-term">edges</em></a> between <a class="reference internal" href="#term-vertex"><em class="xref std std-term">nodes</em></a> of
<a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a></p>
<p>Often augmented with <a class="reference internal" href="#term-authoring-tools"><em class="xref std std-term">authoring tools</em></a></p>
<p><strong>software development</strong></p>
<p class="last">Bundling required <a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a>
and <em class="xref std std-term">components</em></p>
</dd>
<dt id="term-optimizing">optimizing</dt>
<dd>finding optima for making decisions that better achieve objectives</dd>
<dt id="term-publishing">publishing</dt>
<dd>sharing <a class="reference internal" href="#term-document"><em class="xref std std-term">document</em></a> and <a class="reference internal" href="#term-linked-data"><em class="xref std std-term">Linked Data</em></a>
<a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a> in order to benefit from
<a class="reference internal" href="#term-collaboration"><em class="xref std std-term">collaborative</em></a> <a class="reference internal" href="#term-feedback"><em class="xref std std-term">feedback</em></a></dd>
<dt id="term-interfacing">interfacing</dt>
<dd>requesting and sharing <a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a></dd>
</dl>
</div>
<div class="section" id="graphs">
<h2>Graphs<a class="headerlink" href="#graphs" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-graph">Graph</dt>
<dd>A network of <a class="reference internal" href="#term-vertex"><em class="xref std std-term">vertices</em></a> and <a class="reference internal" href="#term-edge"><em class="xref std std-term">edges</em></a>.
May have a <a class="reference internal" href="#term-naming"><em class="xref std std-term">name</em></a></dd>
<dt id="term-category">Category</dt>
<dd>TODO</dd>
<dt id="term-schema">Schema</dt>
<dd><p class="first">A set of <a class="reference internal" href="#term-category"><em class="xref std std-term">categories</em></a>
and <a class="reference internal" href="#term-attribute"><em class="xref std std-term">attributes</em></a></p>
<p>Examples:</p>
<ul class="last simple">
<li><em class="xref std std-term">XSD</em></li>
<li><a class="reference internal" href="#term-rdf"><em class="xref std std-term">RDF</em></a></li>
<li><a class="reference internal" href="#term-markup-language"><em class="xref std std-term">Markup Languages</em></a></li>
</ul>
</dd>
<dt id="term-vertex">Vertex</dt>
<dd>A node in a <a class="reference internal" href="#term-graph"><em class="xref std std-term">graph</em></a></dd>
<dt id="term-edge">Edge</dt>
<dd>A connection between <a class="reference internal" href="#term-vertex"><em class="xref std std-term">vertices</em></a>. Also called a
<em class="xref std std-term">link</em>.</dd>
<dt id="term-path">Path</dt>
<dd>A sequence of <a class="reference internal" href="#term-edge"><em class="xref std std-term">edges</em></a> between <a class="reference internal" href="#term-vertex"><em class="xref std std-term">vertices</em></a>
of a graph</dd>
<dt id="term-feedback">Feedback</dt>
<dd>TODO</dd>
</dl>
</div>
<div class="section" id="web-standards">
<h2>Web Standards<a class="headerlink" href="#web-standards" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-resource">Resource</dt>
<dd><p class="first">TODO. An object with content, a <a class="reference internal" href="#term-url"><em class="xref std std-term">URL</em></a>,
and <a class="reference internal" href="#term-metadata"><em class="xref std std-term">metadata</em></a></p>
<p>Examples:</p>
<ul class="last simple">
<li><a class="reference internal" href="#term-html"><em class="xref std std-term">HTML</em></a></li>
<li><a class="reference internal" href="#term-document"><em class="xref std std-term">Document</em></a></li>
<li><em class="xref std std-term">Web Video</em></li>
</ul>
</dd>
<dt id="term-www">WWW</dt>
<dd>World Wide Web. <a class="reference internal" href="#term-graph"><em class="xref std std-term">Graph</em></a> of
<a class="reference internal" href="#term-html"><em class="xref std std-term">HTML</em></a> <a class="reference internal" href="#term-document"><em class="xref std std-term">Document</em></a>
and <a class="reference internal" href="#term-resource"><em class="xref std std-term">Resource</em></a>
<a class="reference internal" href="#term-vertex"><em class="xref std std-term">Vertices</em></a> with
<a class="reference internal" href="#term-url"><em class="xref std std-term">URL</em></a> <a class="reference internal" href="#term-edge"><em class="xref std std-term">Edges</em></a>
shared over <a class="reference internal" href="#term-http"><em class="xref std std-term">HTTP</em></a></dd>
<dt id="term-web">Web</dt>
<dd>See: <a class="reference internal" href="#term-www"><em class="xref std std-term">WWW</em></a></dd>
<dt id="term-w3c">W3C</dt>
<dd><a class="reference external" href="http://w3c.org">World Wide Web Consortium</a>.
The main international standards organization for the <a class="reference internal" href="#term-www"><em class="xref std std-term">WWW</em></a>.</dd>
<dt id="term-web-standard">Web Standard</dt>
<dd>TODO. Standard defined by a standards-making body such as
<a class="reference internal" href="#term-w3c"><em class="xref std std-term">W3C</em></a></dd>
<dt id="term-sgml">SGML</dt>
<dd>Standard Generalized Markup Language</dd>
<dt id="term-pdf">PDF</dt>
<dd>Portable Document Format</dd>
<dt id="term-url">URL</dt>
<dd>Uniform Resource Locator</dd>
<dt id="term-uri">URI</dt>
<dd>Uniform Resource Indicator</dd>
<dt id="term-http">HTTP</dt>
<dd>Hypertext Transfer Protocol. Standard <a class="reference internal" href="#term-http-request"><em class="xref std std-term">request</em></a>
/<a class="reference internal" href="#term-http-response"><em class="xref std std-term">response</em></a>
protocol for the <a class="reference internal" href="#term-web"><em class="xref std std-term">web</em></a>.</dd>
<dt id="term-http-request">HTTP Request</dt>
<dd><p class="first"><a class="reference internal" href="#term-http"><em class="xref std std-term">HTTP</em></a> Request with a type, headers, and a body</p>
<p>Types:</p>
<ul class="simple">
<li>GET</li>
<li>POST</li>
<li>PUT</li>
<li>DELETE</li>
</ul>
<p>Example:</p>
<div class="last highlight-html"><div class="highlight"><pre>GET /ns/products/XYZ_123 HTTP/1.1
User-Agent: browsername
Host: example.org
Accept: application/json
</pre></div>
</div>
</dd>
<dt id="term-http-response">HTTP Response</dt>
<dd><p class="first"><a class="reference internal" href="#term-http"><em class="xref std std-term">HTTP</em></a> Response with a response code, headers, and a body</p>
<p>Example Response Codes:</p>
<ul class="simple">
<li>200: OK</li>
<li>404: Not Found</li>
<li>500: Server Error</li>
</ul>
<p>Example Response:</p>
<div class="highlight-html"><div class="highlight"><pre>HTTP/1.1 200 OK
Server: servername
Content-Type: application/json
Content-Length: 172
Connection: keep-alive
{"title":"Document Title", "author": ... }
</pre></div>
</div>
<p class="last">TODO:cite</p>
</dd>
<dt id="term-html">HTML</dt>
<dd><p class="first">Hyptertext Markup Language.</p>
<p>Derived from <a class="reference internal" href="#term-sgml"><em class="xref std std-term">SGML</em></a></p>
<p>Often served over <a class="reference internal" href="#term-http"><em class="xref std std-term">HTTP</em></a></p>
<p>Example</p>
<div class="last highlight-html"><div class="highlight"><pre>TODO: doctype
<span class="nt"><html></span>
<span class="nt"><head></span>
<span class="nt"><title></span>Document Title<span class="nt"></title></span>
<span class="nt"><meta</span> <span class="na">author=</span><span class="s">"Document Author"</span><span class="nt">/></span>
<span class="nt"></head></span>
<span class="nt"><body></span>
<span class="nt"><h1></span>Document Title<span class="nt"></h1></span>
<span class="nt"><p></span>... Document Content ...<span class="nt"></p></span>
<span class="nt"></body></span>
<span class="nt"></html></span>
</pre></div>
</div>
</dd>
<dt id="term-xml">XML</dt>
<dd><p class="first">Extensible Markup Language. Derived from <a class="reference internal" href="#term-sgml"><em class="xref std std-term">SGML</em></a> and
<a class="reference internal" href="#term-html"><em class="xref std std-term">HTML</em></a></p>
<p>Example</p>
<div class="last highlight-xml"><div class="highlight"><pre>TODO: XMLNS
<span class="nt"><object></span>
<span class="nt"><dc:title></span>Document Title<span class="nt"></dc:title></span>
<span class="nt"><dc:author></span>Document Author>/dc:author>
<span class="nt"><content></span>... Document Content ...<span class="nt"></content></span>
<span class="nt"><year></span>2012<span class="nt"></year></span>
<span class="nt"></object></span>
</pre></div>
</div>
</dd>
<dt id="term-xhtml">XHTML</dt>
<dd><a class="reference internal" href="#term-xml"><em class="xref std std-term">XML</em></a>-compliant <a class="reference internal" href="#term-http"><em class="xref std std-term">HTTP</em></a></dd>
<dt id="term-namespace">Namespace</dt>
<dd><p class="first">A <a class="reference internal" href="#term-url"><em class="xref std std-term">URL</em></a> for a set of <em class="xref std std-term">resources</em> within a
<a class="reference internal" href="#term-schema"><em class="xref std std-term">schema</em></a>.</p>
<p>Examples in <a class="reference internal" href="#term-turtle"><em class="xref std std-term">Turtle</em></a> syntax</p>
<div class="highlight-turtle"><div class="highlight"><pre>@prefix rdfs: http://TODO/TODO/TODO
@prefix ex: http://example.org/ns/example/
@prefix products: http://example.com/ns/products/
</pre></div>
</div>
<p>Examples in <a class="reference internal" href="#term-xhtml"><em class="xref std std-term">XHTML</em></a> syntax:</p>
<div class="last highlight-python"><div class="highlight"><pre><span class="n">TODO</span>
</pre></div>
</div>
</dd>
<dt id="term-json">JSON</dt>
<dd><p class="first"><a class="reference internal" href="#term-javascript"><em class="xref std std-term">JavaScript</em></a> Object Notation.</p>
<p>Example</p>
<div class="last highlight-javascript"><div class="highlight"><pre><span class="p">[</span>
<span class="p">{</span> <span class="s1">'dc:title'</span><span class="o">:</span> <span class="s1">'Document Title'</span><span class="p">,</span>
<span class="s1">'dc:author'</span><span class="o">:</span> <span class="s1">'Document Author'</span><span class="p">,</span>
<span class="s1">'content'</span><span class="o">:</span> <span class="s1">'... Document Content ...'</span><span class="p">,</span>
<span class="s1">'year'</span><span class="o">:</span> <span class="mi">2012</span><span class="p">},</span>
<span class="p">{</span><span class="s1">'dc:title'</span><span class="o">:</span><span class="s1">'Document N'</span><span class="p">,</span><span class="s1">'content'</span><span class="o">:</span><span class="s1">'Hello World'</span><span class="p">,</span> <span class="s1">'year'</span><span class="o">:</span><span class="mi">2012</span><span class="p">}</span>
<span class="p">]</span>
</pre></div>
</div>
</dd>
<dt id="term-web-hooks">Web Hooks</dt>
<dd><a class="reference internal" href="#term-http"><em class="xref std std-term">HTTP</em></a> Push Notifications</dd>
</dl>
</div>
<div class="section" id="linked-data-science">
<h2>Linked Data Science<a class="headerlink" href="#linked-data-science" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-data-science">Data Science</dt>
<dd>TODO</dd>
<dt id="term-metadata">Metadata</dt>
<dd><p class="first">Data about data: <a class="reference internal" href="#term-attribute"><em class="xref std std-term">attributes</em></a> and
<a class="reference internal" href="#term-edge"><em class="xref std std-term">edges</em></a></p>
<p>Examples:</p>
<ul class="last simple">
<li><code class="docutils literal"><span class="pre">dc:title</span></code> – Dublin Core Title Attribute</li>
<li><code class="docutils literal"><span class="pre">dc:author</span></code> – Dublin Core Author Attribute</li>
<li><code class="docutils literal"><span class="pre">last_modified</span></code></li>
</ul>
</dd>
<dt id="term-key">Key</dt>
<dd><p class="first">A hashable identifier for a record <a class="reference internal" href="#term-value"><em class="xref std std-term">value</em></a>.</p>
<p>Example:</p>
<div class="last highlight-python"><div class="highlight"><pre>key = http://example.org/ns/products/XYZ_123
</pre></div>
</div>
</dd>
<dt id="term-value">Value</dt>
<dd><p class="first">A value stored with a <a class="reference internal" href="#term-key"><em class="xref std std-term">key</em></a></p>
<p>Example</p>
<div class="last highlight-python"><div class="highlight"><pre><span class="n">database</span> <span class="o">=</span> <span class="p">{</span>
<span class="s">'http://example.org/ns/products/XYZ_123'</span><span class="p">:</span> <span class="c"># KEY</span>
<span class="p">{</span>
<span class="s">'type'</span><span class="p">:</span><span class="s">'ex:Widget'</span><span class="p">,</span> <span class="c"># VALUE</span>
<span class="s">'rdfs:label'</span><span class="p">:</span> <span class="s">"Product XYZ_123"</span>
<span class="s">'ex:linksWith'</span><span class="p">:</span> <span class="p">[</span> <span class="n">ex</span><span class="p">:</span><span class="n">XYZ_Widgets</span> <span class="p">],</span>
<span class="p">},</span>
<span class="p">}</span>
<span class="n">database</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="s">'http://example.org/ns/products/XYZ_123'</span><span class="p">)</span>
<span class="n">database</span><span class="p">[</span><span class="s">'http://example.org/ns/products/XYZ_123'</span><span class="p">]</span>
</pre></div>
</div>
</dd>
<dt id="term-entity-attribute-value">Entity Attribute Value</dt>
<dd><p class="first">A flexible data storage pattern.</p>
<p class="last"><<a class="reference internal" href="#term-subject"><em class="xref std std-term">entity</em></a>> <<a class="reference internal" href="#term-predicate"><em class="xref std std-term">attribute</em></a>>
<<a class="reference internal" href="#term-value"><em class="xref std std-term">value</em></a>></p>
</dd>
<dt id="term-triple">Triple</dt>
<dd><p class="first">Data-model of <a class="reference internal" href="#term-rdf"><em class="xref std std-term">RDF</em></a></p>
<p class="last"><<a class="reference internal" href="#term-subject"><em class="xref std std-term">subject</em></a>> <<a class="reference internal" href="#term-predicate"><em class="xref std std-term">predicate</em></a>> <<a class="reference internal" href="#term-object"><em class="xref std std-term">object</em></a>></p>
</dd>
<dt id="term-subject">Subject</dt>
<dd><a class="reference internal" href="#term-url"><em class="xref std std-term">URL</em></a> Subject of a triple. Also: <a class="reference internal" href="#term-key"><em class="xref std std-term">Key</em></a> and
<a class="reference internal" href="#term-subject"><em class="xref std std-term">Entity</em></a></dd>
<dt id="term-predicate">Predicate</dt>
<dd><a class="reference internal" href="#term-url"><em class="xref std std-term">URL</em></a> predicate of a triple. Also: <a class="reference internal" href="#term-key"><em class="xref std std-term">Key</em></a></dd>
<dt id="term-object">Object</dt>
<dd>Object or <a class="reference internal" href="#term-value"><em class="xref std std-term">value</em></a> of a triple.</dd>
<dt id="term-attribute">Attribute</dt>
<dd><p class="first">A factual assertion about a <a class="reference internal" href="#term-resource"><em class="xref std std-term">Resource</em></a>.</p>
<p>A <a class="reference internal" href="#term-predicate"><em class="xref std std-term">predicate</em></a> and an <a class="reference internal" href="#term-object"><em class="xref std std-term">object</em></a> about a <a class="reference internal" href="#term-subject"><em class="xref std std-term">subject</em></a></p>
<p>Example with <a class="reference internal" href="#term-triple"><em class="xref std std-term">Triples</em></a> in <a class="reference internal" href="#term-turtle"><em class="xref std std-term">Turtle</em></a> syntax:</p>
<div class="last highlight-python"><div class="highlight"><pre>@prefix rdfs: http://TODO/TODO/TODO
@prefix ex: http://example.org/ns/example/
@prefix products: http://example.com/ns/products/
products:XYZ_123
a ex:Widget ;
ex:linksWith ex:XYZ_Widgets ;
rdfs:label "Product XYZ_123" ;
.
</pre></div>
</div>
</dd>
<dt id="term-ontology">Ontology</dt>
<dd>A structured set of <a class="reference internal" href="#term-attribute"><em class="xref std std-term">Attributes</em></a> and
<a class="reference internal" href="#term-edge"><em class="xref std std-term">edges</em></a> between <em class="xref std std-term">concepts</em> in a
<a class="reference internal" href="#term-graph"><em class="xref std std-term">named graph</em></a></dd>
<dt id="term-rdf">RDF</dt>
<dd>Resource Description Framework.
<a class="reference internal" href="#term-w3c"><em class="xref std std-term">W3C</em></a> <em class="xref std std-term">triples</em> metadata data-model.
Often expressed as <a class="reference internal" href="#term-xml"><em class="xref std std-term">XML</em></a></dd>
<dt id="term-turtle">Turtle</dt>
<dd>Lightweight syntax for expressing <a class="reference internal" href="#term-rdf"><em class="xref std std-term">RDF</em></a> <em class="xref std std-term">triples</em>
(<a class="reference internal" href="#term-turtle"><em class="xref std std-term">.ttl</em></a>, <em class="xref std std-term">.n3</em> )</dd>
<dt id="term-trig">TriG</dt>
<dd>Syntax extension for expressing <em class="xref std std-term">named graphs</em> in
<a class="reference internal" href="#term-turtle"><em class="xref std std-term">turtle</em></a></dd>
<dt id="term-microdata">Microdata</dt>
<dd>TODO. <a class="reference internal" href="#term-markup-language"><em class="xref std std-term">Markup syntax</em></a> for expressing
structured data.</dd>
<dt id="term-foaf">FOAF</dt>
<dd>Friend of a Friend <a class="reference internal" href="#term-rdf"><em class="xref std std-term">RDF</em></a> <a class="reference internal" href="#term-ontology"><em class="xref std std-term">ontology</em></a></dd>
<dt id="term-doap">DOAP</dt>
<dd>Description of a Project <a class="reference internal" href="#term-rdf"><em class="xref std std-term">RDF</em></a> <a class="reference internal" href="#term-ontology"><em class="xref std std-term">ontology</em></a></dd>
<dt id="term-oembed">OEMBED</dt>
<dd>Authoring feature for automatically identifying and
<a class="reference internal" href="#term-linking"><em class="xref std std-term">linking</em></a> to
<a class="reference internal" href="#term-resource"><em class="xref std std-term">resource</em></a> <a class="reference internal" href="#term-url"><em class="xref std std-term">URLs</em></a>
on sites that support <a class="reference internal" href="#term-microdata"><em class="xref std std-term">microdata</em></a> <a class="reference internal" href="#term-metadata"><em class="xref std std-term">metadata</em></a></dd>
<dt id="term-linked-data">Linked Data</dt>
<dd>Data <a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a> linked through the <a class="reference internal" href="#term-www"><em class="xref std std-term">WWW</em></a> using
<a class="reference internal" href="#term-attribute"><em class="xref std std-term">structured attributes</em></a> of various
<a class="reference internal" href="#term-ontology"><em class="xref std std-term">ontologies</em></a></dd>
<dt id="term-linked-open-data">Linked Open Data</dt>
<dd><p class="first"><a class="reference internal" href="#term-linked-data"><em class="xref std std-term">Linked Data</em></a> shared as <em class="xref std std-term">Data sets</em>
with <em class="xref std std-term">Open License</em> terms</p>
<p>Examples:</p>
<ul class="simple">
<li><a class="reference external" href="http://dbpedia.org">http://dbpedia.org</a></li>
<li></li>
</ul>
<p class="last">TODO:Cite LODCloud</p>
</dd>
</dl>
</div>
<div class="section" id="education">
<h2>Education<a class="headerlink" href="#education" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-stem">STEM</dt>
<dd>Science, Technology, Engineering and Mathematics</dd>
<dt id="term-curriculum">Curriculum</dt>
<dd>A course or courses of study required for meeting objectives</dd>
<dt id="term-theory">Theory</dt>
<dd>TODO</dd>
<dt id="term-process">Process</dt>
<dd>TODO</dd>
<dt id="term-knowledge">Knowledge</dt>
<dd>TODO</dd>
<dt id="term-wisdom">Wisdom</dt>
<dd>TODO</dd>
</dl>
</div>
<div class="section" id="learning">
<h2>Learning<a class="headerlink" href="#learning" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-online-learning">Online Learning</dt>
<dd>Learning delivered over <a class="reference internal" href="#term-web"><em class="xref std std-term">web</em></a> <em class="xref std std-term">channels</em></dd>
<dt id="term-learning-object">Learning Object</dt>
<dd><p class="first">“Any entity, digital or non-digital, that may be used for
learning, education, or training”
–<a class="reference external" href="http://ltsc.ieee.org/wg12/files/LOM_1484_12_1_v1_Final_Draft.pdf">IEEE 1484.12-1-2002</a></p>
<p class="last">A learning <a class="reference internal" href="#term-resource"><em class="xref std std-term">resource</em></a>.</p>
</dd>
<dt id="term-learning-activity">Learning Activity</dt>
<dd>TODO</dd>
<dt id="term-learning-assessment">Learning Assessment</dt>
<dd>Documenting educational progress</dd>
<dt id="term-lms">LMS</dt>
<dd><p class="first">Learning Management System.
An application for creating and delivering courses and training.
“Limbs”</p>
<p>Examples:</p>
<ul class="last simple">
<li><a class="reference external" href="http://blackboard.com">http://blackboard.com</a></li>
<li>TODO: <a class="reference external" href="http://moodle.org">http://moodle.org</a></li>
<li>TODO: <a class="reference external" href="http://sakaiproject.org">http://sakaiproject.org</a></li>
</ul>
</dd>
<dt id="term-lcms">LCMS</dt>
<dd>Learning Content Management System. Authoring and publishing
workflows to support content for a <a class="reference internal" href="#term-lms"><em class="xref std std-term">Learning Management
System</em></a></dd>
<dt id="term-adl">ADL</dt>
<dd>Advanced Distributed Learning Initiative</dd>
<dt id="term-scorm">SCORM</dt>
<dd>Sharable Content Object Reference Model. Based on <a class="reference internal" href="#term-xml"><em class="xref std std-term">XML</em></a></dd>
<dt id="term-clcims">CLCIMS</dt>
<dd>Computer Learning Content Information Management System:
<a class="reference internal" href="#term-scorm"><em class="xref std std-term">SCORM</em></a>-compliant.</dd>
<dt id="term-tincan">TinCan</dt>
<dd><p class="first">TinCAN API</p>
<p>“Next Generation <a class="reference internal" href="#term-scorm"><em class="xref std std-term">SCORM</em></a>“</p>
<p class="last"><a class="reference internal" href="#term-web-hooks"><em class="xref std std-term">Web Hooks</em></a> for <a class="reference internal" href="#term-learning-activity"><em class="xref std std-term">learning activity</em></a> metrics</p>
</dd>
<dt id="term-lrs">LRS</dt>
<dd><p class="first">Learning Record Store. A repository for <a class="reference internal" href="#term-tincan"><em class="xref std std-term">TinCan</em></a>
<a class="reference internal" href="#term-learning-activity"><em class="xref std std-term">learning activity</em></a> records.</p>
<p class="last">Can integrate with an <a class="reference internal" href="#term-lms"><em class="xref std std-term">LMS</em></a> or <a class="reference internal" href="#term-lcms"><em class="xref std std-term">LCMS</em></a></p>
</dd>
<dt id="term-opencourseware">OpenCourseWare</dt>
<dd>TODO</dd>
<dt id="term-mooc">MOOC</dt>
<dd><p class="first">Massive Open Online Course. Large scale <em class="xref std std-term">distance learning</em>
course offered <a class="reference internal" href="#term-scalability"><em class="xref std std-term">at scale</em></a>
through the <a class="reference internal" href="#term-www"><em class="xref std std-term">WWW</em></a></p>
<p>Examples:</p>
<ul class="last simple">
<li><em class="xref std std-term">Coursera</em></li>
<li><em class="xref std std-term">EdX</em></li>
</ul>
</dd>
<dt id="term-scalability">Scalability</dt>
<dd>TODO</dd>
</dl>
</div>
<div class="section" id="tools">
<h2>Tools<a class="headerlink" href="#tools" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-browser">Browser</dt>
<dd><p class="first">An application for retrieving, presenting and traversing
<a class="reference internal" href="#term-web"><em class="xref std std-term">web</em></a>
<a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a>
like <a class="reference internal" href="#term-html"><em class="xref std std-term">HTML</em></a>
<a class="reference internal" href="#term-document"><em class="xref std std-term">Documents</em></a>
over <a class="reference internal" href="#term-http"><em class="xref std std-term">HTTP</em></a>.</p>
<p class="last">Responsible for processing <a class="reference internal" href="#term-javascript"><em class="xref std std-term">JavaScript</em></a>.</p>
</dd>
<dt id="term-web-server">Web Server</dt>
<dd><p class="first">Software for handling <a class="reference internal" href="#term-http"><em class="xref std std-term">HTTP</em></a> requests over the <a class="reference internal" href="#term-web"><em class="xref std std-term">web</em></a></p>
<p class="last">Often placed in front of a <a class="reference internal" href="#term-web-application-server"><em class="xref std std-term">Web Application Server</em></a></p>
</dd>
<dt id="term-web-application-server">Web Application Server</dt>
<dd><p class="first">Software service for hosting web applications that serve
<a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a> over <a class="reference internal" href="#term-http"><em class="xref std std-term">HTTP</em></a> <a class="reference internal" href="#term-api"><em class="xref std std-term">APIs</em></a>
as content types like <code class="docutils literal"><span class="pre">text/html</span></code>, <code class="docutils literal"><span class="pre">application/json</span></code>,
<code class="docutils literal"><span class="pre">text/xml</span></code>. TODO</p>
<p>Interface Standards:</p>
<ul class="last simple">
<li><em class="xref std std-term">WSGI</em></li>
<li><em class="xref std std-term">OSGI</em></li>
</ul>
</dd>
<dt id="term-service">Service</dt>
<dd><p class="first"><strong>Business Service</strong></p>
<p>TODO</p>
<p><strong>Information Systems</strong></p>
<p>A locally or remotely hosted application for solving part of a
process.</p>
<p><strong>API</strong></p>
<p class="last">An <a class="reference internal" href="#term-api"><em class="xref std std-term">API</em></a> web service.</p>
</dd>
<dt id="term-api">API</dt>
<dd><p class="first">TODO Programming Interface.</p>
<p>An application that responds to a standard set of
<a class="reference internal" href="#term-http-request"><em class="xref std std-term">requests</em></a> and
returns a standard set of <a class="reference internal" href="#term-http-response"><em class="xref std std-term">responses</em></a></p>
<p>Elements:</p>
<ul class="last simple">
<li>Authentication Keys</li>
<li>Authorization</li>
<li><a class="reference internal" href="#term-http-response"><em class="xref std std-term">Error Codes</em></a></li>
<li><a class="reference internal" href="#term-resource"><em class="xref std std-term">Resource</em></a> Schema</li>
<li><em class="xref std std-term">Web Service</em> Definitions</li>
</ul>
</dd>
<dt id="term-repository">Repository</dt>
<dd>A <a class="reference internal" href="#term-version-control-system"><em class="xref std std-term">version-controlled</em></a> folder of
file <a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a></dd>
<dt id="term-version-control-system">Version Control System</dt>
<dd><p class="first">System for storing changesets to a <a class="reference internal" href="#term-repository"><em class="xref std std-term">Repository</em></a>
Also <em class="xref std std-term">Revision Control System (RCS)</em></p>
<p>Examples:</p>
<ul class="last simple">
<li><a class="reference internal" href="#term-dvcs"><em class="xref std std-term">Distributed Version Control System</em></a></li>
</ul>
</dd>
<dt id="term-dvcs">DVCS</dt>
<dd><p class="first">Distributed <cite>Version Control System</cite>.</p>
<p>Advantages:</p>
<ul class="simple">
<li>Branching</li>
<li>Tagging</li>
<li>Offline</li>
</ul>
<p>Examples:</p>
<ul class="last simple">
<li><a class="reference internal" href="#term-git"><em class="xref std std-term">Git</em></a></li>
<li><a class="reference internal" href="#term-mercurial"><em class="xref std std-term">Mercurial</em></a></li>
</ul>
</dd>
<dt id="term-git">Git</dt>
<dd><p class="first"><a class="reference internal" href="#term-version-control-system"><em class="xref std std-term">Version Control System</em></a></p>
<ul class="last simple">
<li>TODO <a class="reference external" href="http://github.com/mirror/kernel">http://github.com/mirror/kernel</a></li>
<li>TODO <a class="reference external" href="http://">http://</a></li>
</ul>
</dd>
<dt id="term-mercurial">Mercurial</dt>
<dd><p class="first"><a class="reference internal" href="#term-version-control-system"><em class="xref std std-term">Version Control System</em></a> written in <a class="reference internal" href="#term-python"><em class="xref std std-term">Python</em></a></p>
<ul class="last simple">
<li><a class="reference external" href="http://hg.python.org">http://hg.python.org</a></li>
<li><a class="reference external" href="http://hg.mozilla.org">http://hg.mozilla.org</a></li>
</ul>
</dd>
<dt id="term-version-control-service">Version Control Service</dt>
<dd><p class="first">Hosted <a class="reference internal" href="#term-version-control-system"><em class="xref std std-term">Version Control System</em></a> for storing
<a class="reference internal" href="#term-repository"><em class="xref std std-term">Repositories</em></a></p>
<p>Examples:</p>
<ul class="last simple">
<li><a class="reference external" href="http://github.com">http://github.com</a></li>
<li><a class="reference external" href="http://bitbucket.org">http://bitbucket.org</a></li>
</ul>
</dd>
<dt id="term-scripting-language">Scripting Language</dt>
<dd><p class="first">Third generation programming language.</p>
<p>Examples:</p>
<ul class="last simple">
<li><a class="reference internal" href="#term-javascript"><em class="xref std std-term">JavaScript</em></a> (<a class="reference internal" href="#term-javascript"><em class="xref std std-term">.js</em></a>)</li>
<li><a class="reference internal" href="#term-python"><em class="xref std std-term">Python</em></a> (<a class="reference internal" href="#term-python"><em class="xref std std-term">.py</em></a>)</li>
<li><em class="xref std std-term">Ruby</em> (<em class="xref std std-term">.rb</em>)</li>
<li><em class="xref std std-term">Perl</em> (<em class="xref std std-term">.pl</em>)</li>
</ul>
</dd>
<dt id="term-javascript">JavaScript</dt>
<dd>A <a class="reference internal" href="#term-scripting-language"><em class="xref std std-term">scripting language</em></a> which can be interpreted
client-side in a <a class="reference internal" href="#term-browser"><em class="xref std std-term">Browser</em></a>
locally as a <a class="reference internal" href="#term-script"><em class="xref std std-term">script</em></a>
or server-side in a <a class="reference internal" href="#term-web-application-server"><em class="xref std std-term">Web Application Server</em></a>.
(<a class="reference internal" href="#term-javascript"><em class="xref std std-term">.js</em></a>)</dd>
<dt id="term-python">Python</dt>
<dd>A <a class="reference internal" href="#term-scripting-language"><em class="xref std std-term">scripting language</em></a> which is compiled and/or interpreted
locally as a <a class="reference internal" href="#term-script"><em class="xref std std-term">script</em></a>
or server-side in an <a class="reference internal" href="#term-web-application-server"><em class="xref std std-term">Web Application Server</em></a></dd>
</dl>
</div>
<div class="section" id="research-tools">
<h2>Research Tools<a class="headerlink" href="#research-tools" title="Permalink to this headline">¶</a></h2>
</div>
<div class="section" id="authoring-tools">
<h2>Authoring Tools<a class="headerlink" href="#authoring-tools" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-authoring-tools">Authoring Tools</dt>
<dd><p class="first">Examples:</p>
<ul class="last simple">
<li><a class="reference internal" href="#term-text-editor"><em class="xref std std-term">Text Editor</em></a></li>
<li><a class="reference internal" href="#term-markup-language"><em class="xref std std-term">Markup Language</em></a></li>
</ul>
</dd>
<dt id="term-document">Document</dt>
<dd><p class="first">TODO. A <a class="reference internal" href="#term-resource"><em class="xref std std-term">resource</em></a> <a class="reference internal" href="#term-vertex"><em class="xref std std-term">vertex</em></a> in a
<a class="reference internal" href="#term-resource"><em class="xref std std-term">resource</em></a> <a class="reference internal" href="#term-graph"><em class="xref std std-term">graph</em></a> containing
textual content often stored in a structured <a class="reference internal" href="#term-markup-language"><em class="xref std std-term">markup language</em></a>.</p>
<p>Examples:</p>
<ul class="last simple">
<li><a class="reference internal" href="#term-html"><em class="xref std std-term">HTML</em></a> (<a class="reference internal" href="#term-html"><em class="xref std std-term">.html</em></a>)</li>
</ul>
</dd>
<dt id="term-markup-language">Markup Language</dt>
<dd><p class="first">Textual Markup Language for expressing
<a class="reference internal" href="#term-document"><em class="xref std std-term">documents</em></a>
with <a class="reference internal" href="#term-content"><em class="xref std std-term">content</em></a>
and <em class="xref std std-term">presentation</em>.</p>
<p>Examples:</p>
<ul class="last simple">
<li><a class="reference internal" href="#term-restructuredtext"><em class="xref std std-term">ReStructuredText</em></a> (<a class="reference internal" href="#term-restructuredtext"><em class="xref std std-term">.rst</em></a>)</li>
<li><a class="reference internal" href="#term-latex"><em class="xref std std-term">LaTeX</em></a> (<a class="reference internal" href="#term-latex"><em class="xref std std-term">.tex</em></a>)</li>
<li><a class="reference internal" href="#term-bibtex"><em class="xref std std-term">BibTeX</em></a></li>
<li><a class="reference internal" href="#term-95"><em class="xref std std-term">PDF</em></a> (<a class="reference internal" href="#term-95"><em class="xref std std-term">.pdf</em></a>)</li>
<li><a class="reference internal" href="#term-html"><em class="xref std std-term">HTML</em></a> (<a class="reference internal" href="#term-html"><em class="xref std std-term">.html</em></a>)</li>
<li><a class="reference internal" href="#term-xhtml"><em class="xref std std-term">XHTML</em></a> (<a class="reference internal" href="#term-xhtml"><em class="xref std std-term">.xhtml</em></a>)</li>
<li><em class="xref std std-term">HTML5</em></li>
<li><em class="xref std std-term">Markdown</em> (<em class="xref std std-term">.md</em>)</li>
<li><em class="xref std std-term">MediaWiki Syntax</em></li>
<li><a class="reference internal" href="#term-json"><em class="xref std std-term">JSON</em></a></li>
<li><a class="reference internal" href="#term-xml"><em class="xref std std-term">XML</em></a> (<a class="reference internal" href="#term-xml"><em class="xref std std-term">.xml</em></a>)</li>
<li><em class="xref std std-term">DocBook</em> (<a class="reference internal" href="#term-xml"><em class="xref std std-term">.xml</em></a>)</li>
<li><em class="xref std std-term">OpenDocument (OpenOffice)</em> (<em class="xref std std-term">.odf</em>)</li>
<li><em class="xref std std-term">OpenXML (MS Word)</em> (<em class="xref std std-term">.docx</em>) # TODO</li>
</ul>
</dd>
<dt id="term-text-editor">Text Editor</dt>
<dd><p class="first">Examples:</p>
<ul class="last simple">
<li><em class="xref std std-term">vim</em></li>
<li><em class="xref std std-term">emacs</em></li>
<li><em class="xref std std-term">gedit</em></li>
<li><em class="xref std std-term">notepad</em></li>
<li><em class="xref std std-term">notepad++</em></li>
</ul>
</dd>
<dt id="term-restructuredtext">ReStructuredText</dt>
<dd><p class="first">A lightweight <a class="reference internal" href="#term-markup-language"><em class="xref std std-term">Markup Language</em></a>.
Also: <a class="reference internal" href="#term-restructuredtext"><em class="xref std std-term">ReST</em></a> and
<a class="reference internal" href="#term-restructuredtext"><em class="xref std std-term">RST</em></a>. (<a class="reference internal" href="#term-restructuredtext"><em class="xref std std-term">.rst</em></a>)</p>
<p>Example:</p>
<div class="highlight-restructuredtext"><div class="highlight"><pre><span class="p">..</span> <span class="ow">header</span><span class="p">::</span> Document Header
<span class="p">..</span> <span class="ow">meta</span><span class="p">::</span>
<span class="nc">:description lang=en:</span> <span class="nf">Document Description</span>
<span class="nc">:author:</span> <span class="nf">Document Author</span>
<span class="p">..</span> <span class="ow">contents</span><span class="p">::</span> Table of Contents
<span class="nc">:depth:</span> <span class="nf">1</span>
<span class="gh">Intro</span>
<span class="gh">======</span>
<span class="cp">.. note: This is a `note directive <note_directive>`_</span>
<span class="p">..</span> <span class="nt">_note_directive:</span> http://docutils.sf.net/
<span class="gh">Background</span>
<span class="gh">-----------</span>
<span class="cp">.. Document Content ...</span>
<span class="gh">Glossary</span>
<span class="gh">=========</span>
<span class="p">..</span> <span class="ow">glossary</span><span class="p">::</span>
ReStructuredText
A lightweight <span class="na">:term:</span><span class="nv">`Markup Language`</span>
</pre></div>
</div>
<dl class="last docutils">
<dt>SeeAlso:</dt>
<dd><ul class="first last simple">
<li><a class="reference external" href="http://docutils.sf.net/docs/user/rst/demo.txt">http://docutils.sf.net/docs/user/rst/demo.txt</a></li>
<li><a class="reference external" href="http://docutils.sf.net/docs/user/demo.rst">http://docutils.sf.net/docs/user/demo.rst</a></li>
</ul>
</dd>
</dl>
</dd>
<dt id="term-latex">LaTeX</dt>
<dd><p class="first">Plaintext typesetting <a class="reference internal" href="#term-markup-language"><em class="xref std std-term">Markup Language</em></a></p>
<p>Example:</p>
<div class="last highlight-python"><div class="highlight"><pre><span class="n">TODO</span>
</pre></div>
</div>
</dd>
<dt id="term-bibtex">BibTeX</dt>
<dd><p class="first">Language and system for managing Bibliographic References in
<a class="reference internal" href="#term-latex"><em class="xref std std-term">LaTeX</em></a> syntax</p>
<div class="last highlight-latex"><div class="highlight"><pre>@techreport<span class="nb">{</span>this,
author = "Wesley <span class="nb">{</span>Turner<span class="nb">}</span>",
title = "Self-Directed Learning with Online Resources",
institution = "WRD",
year = 2012,
address = "Omaha, NE, USA",
<span class="nb">}</span>
</pre></div>
</div>
</dd>
<dt id="term-95">PDF</dt>
<dd>Portable Document Format</dd>
<dt id="term-rst2pdf">rst2pdf</dt>
<dd><p class="first"><a class="reference internal" href="#term-restructuredtext"><em class="xref std std-term">ReStructuredText</em></a> <a class="reference internal" href="#term-95"><em class="xref std std-term">PDF</em></a> publisher.</p>
<p>Output formats:</p>
<ul class="last simple">
<li><a class="reference internal" href="#term-95"><em class="xref std std-term">PDF</em></a></li>
</ul>
</dd>
<dt id="term-sphinx">Sphinx</dt>
<dd><p class="first"><a class="reference internal" href="#term-restructuredtext"><em class="xref std std-term">RestructuredText</em></a> documentation publisher.</p>
<p>Output Formats:</p>
<ul class="simple">
<li><a class="reference internal" href="#term-html"><em class="xref std std-term">HTML</em></a></li>
<li><a class="reference internal" href="#term-json"><em class="xref std std-term">JSON</em></a></li>
<li><a class="reference internal" href="#term-95"><em class="xref std std-term">PDF</em></a></li>
<li><a class="reference internal" href="#term-latex"><em class="xref std std-term">LaTeX</em></a></li>
</ul>
<p>Examples:</p>
<ul class="simple">
<li><a class="reference external" href="http://docs.python.org">http://docs.python.org</a></li>
<li><a class="reference external" href="http://packages.python.org">http://packages.python.org</a></li>
<li><a class="reference external" href="http://readthedocs.org">http://readthedocs.org</a></li>
<li><a class="reference external" href="http://sphinxdoc.org">http://sphinxdoc.org</a></li>
</ul>
<p class="last">TODO:cite</p>
</dd>
</dl>
</div>
<div class="section" id="review-tools">
<h2>Review Tools<a class="headerlink" href="#review-tools" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
</dl>
</div>
<div class="section" id="ui-ux-design">
<h2>UI/UX Design<a class="headerlink" href="#ui-ux-design" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-interface">Interface</dt>
<dd>TODO</dd>
<dt id="term-ui">UI</dt>
<dd>User Interface</dd>
<dt id="term-ux">UX</dt>
<dd>User Experience</dd>
</dl>
</div>
<div class="section" id="cloud">
<h2>Cloud<a class="headerlink" href="#cloud" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-cloud">Cloud</dt>
<dd>TODO</dd>
<dt id="term-grid">Grid</dt>
<dd>TODO</dd>
<dt id="term-stack">Stack</dt>
<dd>TODO</dd>
<dt id="term-distributed-computing">Distributed Computing</dt>
<dd>TODO</dd>
</dl>
</div>
<div class="section" id="collaboration-engineering">
<h2>Collaboration Engineering<a class="headerlink" href="#collaboration-engineering" title="Permalink to this headline">¶</a></h2>
<dl class="glossary docutils">
<dt id="term-collaboration">Collaboration</dt>
<dd>working together to create, share, and improve
<a class="reference internal" href="#term-resource"><em class="xref std std-term">resources</em></a></dd>
<dt id="term-collaboration-engineering">Collaboration Engineering</dt>
<dd>TODO</dd>
<dt id="term-six-patterns-of-collaboration">Six Patterns of Collaboration</dt>
<dd><ol class="first arabic simple">
<li><a class="reference internal" href="#term-generate"><em class="xref std std-term">Generate</em></a>: Fewer to more concepts</li>
<li><a class="reference internal" href="#term-reduce"><em class="xref std std-term">Reduce</em></a>: Many concepts -> focus</li>
<li><a class="reference internal" href="#term-clarify"><em class="xref std std-term">Clarify</em></a>: Less -> More Shared Understanding</li>
<li><a class="reference internal" href="#term-organize"><em class="xref std std-term">Organize</em></a>:</li>
<li><a class="reference internal" href="#term-evaluate"><em class="xref std std-term">Evaluate</em></a>: Less -> More Value Understanding</li>
<li><a class="reference internal" href="#term-build-consensus"><em class="xref std std-term">Build Consensus</em></a>: Less -> More Willingness to Commit</li>
</ol>
<p class="last">TODO:Cite</p>
</dd>
<dt id="term-generate">Generate</dt>
<dd><p class="first">Fewer to more concepts.</p>
<p class="last"><a class="reference internal" href="#term-six-patterns-of-collaboration"><em class="xref std std-term">Six Patterns of Collaboration</em></a> #1</p>
</dd>
<dt id="term-reduce">Reduce</dt>
<dd><p class="first">Many concepts -> focus</p>
<p class="last"><a class="reference internal" href="#term-six-patterns-of-collaboration"><em class="xref std std-term">Six Patterns of Collaboration</em></a> #2</p>
</dd>
<dt id="term-clarify">Clarify</dt>
<dd><p class="first">Less -> More Shared Understanding</p>
<p class="last"><a class="reference internal" href="#term-six-patterns-of-collaboration"><em class="xref std std-term">Six Patterns of Collaboration</em></a> #3</p>
</dd>
<dt id="term-organize">Organize</dt>
<dd><p class="first">TODO</p>
<p class="last"><a class="reference internal" href="#term-six-patterns-of-collaboration"><em class="xref std std-term">Six Patterns of Collaboration</em></a> #4</p>
</dd>
<dt id="term-evaluate">Evaluate</dt>
<dd><p class="first">Less -> More Value Understanding</p>
<p class="last"><a class="reference internal" href="#term-six-patterns-of-collaboration"><em class="xref std std-term">Six Patterns of Collaboration</em></a> #5</p>
</dd>
<dt id="term-build-consensus">Build Consensus</dt>
<dd><p class="first">Less -> More Willingness to Commit</p>
<p class="last"><a class="reference internal" href="#term-six-patterns-of-collaboration"><em class="xref std std-term">Six Patterns of Collaboration</em></a> #6</p>
</dd>
<dt id="term-seven-layer-model">Seven Layer Model</dt>
<dd><ol class="first last arabic simple">
<li><a class="reference internal" href="#term-goal"><em class="xref std std-term">Goals</em></a></li>
<li><a class="reference internal" href="#term-product"><em class="xref std std-term">Products</em></a></li>
<li><a class="reference internal" href="#term-activity"><em class="xref std std-term">Activities</em></a></li>
<li><a class="reference internal" href="#term-pattern"><em class="xref std std-term">Patterns</em></a></li>
<li><a class="reference internal" href="#term-technique"><em class="xref std std-term">Techniques</em></a></li>
<li><a class="reference internal" href="#term-tool"><em class="xref std std-term">Tools</em></a></li>
<li><a class="reference internal" href="#term-script"><em class="xref std std-term">Scripts</em></a></li>
</ol>
</dd>
<dt id="term-goal">Goal</dt>
<dd>TODO</dd>
<dt id="term-product">Product</dt>
<dd>TODO</dd>
<dt id="term-activity">Activity</dt>
<dd>TODO
See <a class="reference internal" href="#term-learning-activity"><em class="xref std std-term">Learning Activity</em></a></dd>
<dt id="term-pattern">Pattern</dt>
<dd>TODO</dd>
<dt id="term-technique">Technique</dt>
<dd>TODO</dd>
<dt id="term-tool">Tool</dt>
<dd>TODO</dd>
<dt id="term-script">Script</dt>
<dd>TODO</dd>
<dt id="term-comparison-scheme-for-collaborative-technology">Comparison Scheme for Collaborative Technology</dt>
<dd><ul class="first last simple">
<li><a class="reference internal" href="#term-core-functionality"><em class="xref std std-term">Core Functionality</em></a></li>
<li><a class="reference internal" href="#term-access-controls"><em class="xref std std-term">Access Controls</em></a></li>
<li><a class="reference internal" href="#term-alerts-interrupts"><em class="xref std std-term">Alerts/Interrupts</em></a></li>
<li><a class="reference internal" href="#term-content"><em class="xref std std-term">Content</em></a></li>
<li><a class="reference internal" href="#term-actions"><em class="xref std std-term">Actions</em></a></li>
<li><a class="reference internal" href="#term-synchronicity"><em class="xref std std-term">Synchronicity</em></a></li>
<li><a class="reference internal" href="#term-identifiability"><em class="xref std std-term">Identifiability</em></a></li>
<li><a class="reference internal" href="#term-relationships"><em class="xref std std-term">Relationships</em></a></li>
<li><a class="reference internal" href="#term-persistence"><em class="xref std std-term">Persistence</em></a></li>
</ul>
</dd>
<dt id="term-core-functionality">Core Functionality</dt>
<dd>TODO</dd>
<dt id="term-access-controls">Access Controls</dt>
<dd>TODO</dd>
<dt id="term-alerts-interrupts">Alerts/Interrupts</dt>
<dd>TODO</dd>
<dt id="term-content">Content</dt>
<dd>TODO</dd>
<dt id="term-actions">Actions</dt>
<dd><p class="first">TODO</p>
<p class="last">See also: <a class="reference internal" href="#term-activity"><em class="xref std std-term">activities</em></a></p>
</dd>
<dt id="term-synchronicity">Synchronicity</dt>
<dd>TODO</dd>
<dt id="term-identifiability">Identifiability</dt>
<dd>TODO</dd>
<dt id="term-relationships">Relationships</dt>
<dd>TODO</dd>
<dt id="term-persistence">Persistence</dt>
<dd>TODO</dd>
<dt id="term-creative-process">Creative Process</dt>
<dd><ul class="first last simple">
<li><a class="reference internal" href="#term-problem-identification"><em class="xref std std-term">Problem Identification</em></a></li>
<li><a class="reference internal" href="#term-information-search"><em class="xref std std-term">Information Search</em></a></li>
<li><a class="reference internal" href="#term-idea-solution-generation"><em class="xref std std-term">Idea/Solution Generation</em></a></li>
<li><a class="reference internal" href="#term-idea-solution-evaluation-and-selection"><em class="xref std std-term">Idea/Solution Evaluation and Selection</em></a></li>
<li><a class="reference internal" href="#term-implementation-planning"><em class="xref std std-term">Implementation Planning</em></a></li>
</ul>
</dd>
<dt id="term-problem-identification">Problem Identification</dt>
<dd>TODO</dd>
<dt id="term-information-search">Information Search</dt>
<dd>TODO</dd>
<dt id="term-idea-solution-generation">Idea/Solution Generation</dt>
<dd>TODO</dd>
<dt id="term-idea-solution-evaluation-and-selection">Idea/Solution Evaluation and Selection</dt>
<dd>TODO</dd>
<dt id="term-implementation-planning">Implementation Planning</dt>
<dd>TODO</dd>
<dt id="term-goal-attainment-paradigm">Goal Attainment Paradigm</dt>
<dd><ul class="first last simple">
<li>Understand Problem</li>
<li>Develop alternate solutions</li>
<li>Evaluate solutions</li>
<li>Make choices</li>
<li>Make plans</li>
<li>Take action</li>
<li>Review</li>
</ul>
</dd>
<dt id="term-six-sigma">Six Sigma</dt>
<dd>TODO</dd>
<dt id="term-dmaic">DMAIC</dt>
<dd><p class="first"><a class="reference internal" href="#term-six-sigma"><em class="xref std std-term">Six Sigma</em></a> process</p>
<ul class="last simple">
<li>Define</li>
<li>Measure</li>
<li>Analyze</li>
<li>Implement</li>
<li>Control</li>
</ul>
</dd>
<dt id="term-define">Define</dt>
<dd>TODO</dd>
<dt id="term-measure">Measure</dt>
<dd>TODO</dd>