-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapters.php
926 lines (920 loc) · 23.5 KB
/
chapters.php
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
<?php
// initialize with recursive data structure for chapters/sections
$chapters = array(
array( // titles
"Foundations For Organizing Systems",
"Activities In Organizing Systems",
"Resources In Organizing Systems",
"Resource Description And Metadata",
"Describing Relationships And Structures",
"Categorization: Describing Resource Classes And Types",
"Classification: Assigning Resources To Categories",
"The Forms Of Resource Descriptions",
"Interactions With Resources",
"The Organizing System Roadmap"
),
array()
);
// x.x chapters
$chapters[1] = array(
array( // 1.x
array( // titles
'The Discipline Of Organizing',
'The “Organizing System” Concept',
'Design Decisions In Organizing Systems',
'Organizing This Book'
),
array( // 1.x.x chapters
NULL, // 1.1.x
array( // 1.2.x
array( // titles
'The Concept Of “Resource”',
'The Concept Of “Collection”',
'The Concept Of “Intentional Arrangement”',
'The Concept Of “Interactions”'
),
array(
NULL,
NULL,
array( // 1.2.3.x
array(
'The Concept Of “Organizing Principle”',
'The Concept Of “Agent”'
),
NULL
),
NULL
)
),
array( // 1.3.x
array( // titles
'Organizing Systems In A “Design Space”',
'What Is Being Organized?',
'Why Is It Being Organized?',
'How Much Is It Being Organized?',
'When Is It Being Organized?',
'How (Or By Whom) Is It Organized?'
),
array(
array( // 1.3.1.x
array(
'Conventional Ways To Classify Organizing Systems',
'A Multifaceted Or Multidimensional View'
),
NULL
),
NULL,
NULL,
NULL,
NULL,
NULL
)
),
NULL
)
),
array( // 2.x
array( // titles
'Introduction',
'Selecting Resources',
'Organizing Resources',
'Designing Resource-Based Interactions',
'Maintaining Resources',
'Key Points In Chapter Two'
),
array(
NULL,
array( // 2.2.x
array(
'Selecting {And, Or, Vs.} Organizing',
'Selection Principles',
'Selection Of Digital And Web-Based Resources'
),
NULL
),
array( // 2.3.x
array(
'Organizing Physical Resources',
'Organizing Digital Resources',
'Organizing With Multiple Resource Properties'
),
array(
array( // 2.3.1.x
array(
'Organizing With Properties Of Physical Resources',
'Organizing With Descriptions Of Physical Resources'
),
NULL
),
array( // 2.3.2.x
array(
'Organizing Web-Based Resources',
'“Information Architecture” And Organizing Systems'
),
NULL
),
NULL
)
),
array( // 2.4.x
array(
'Affordance And Capability',
'Interaction And Value Creation',
'Access Policies'
),
array(
NULL,
array( // 2.4.2.x
array(
'Value Creation With Physical Resources',
'Value Creation With Digital Resources'
),
NULL
),
NULL
)
),
array( // 2.5.x
array(
'Motivations For Maintaining Resources',
'Preservation',
'Curation',
'Governance'
),
array(
NULL,
array( // 2.5.2.x
array(
'Digitization And Preserving Resources',
'Preserving The Web',
'Preserving Resource Instances',
'Preserving Resource Types',
'Preserving Resource Collections'
),
NULL
),
array( // 2.5.3.x
array(
'Institutional Curation',
'Individual Curation',
'Social And Web Curation',
'Computational Curation'
),
NULL
),
array( // 2.5.4.x
array(
'Governance In Business Organizing Systems',
'Governance In Scientific Organizing Systems'
),
NULL
)
)
),
NULL
)
),
array( // 3.x
array( // titles
'Introduction',
'Four Distinctions About Resources',
'Resource Identity',
'Naming Resources',
'Resources Over Time',
'Key Points In Chapter Three'
),
array(
array( // 3.1.x
array(
'What Is A Resource?',
'Identity, Identifiers, And Names'
),
array(
array( // 3.1.1.x
array(
'Resources With Parts',
'Bibliographic Resources, Information Components, And “Smart Things” As Resources'
),
NULL
),
NULL
)
),
array( // 3.2.x
array(
'Resource Domain',
'Resource Format',
'Resource Agency',
'Resource Focus',
'Resource Format X Focus'
),
array(
NULL,
NULL,
array( // 3.2.3.x
array(
'Passive Or Operand Resources',
'Active Or Operant Resources'
),
NULL
),
NULL,
array( //3.2.5.x
array(
'Physical Description Of A Primary Physical Resource',
'Digital Description Of A Primary Physical Resource',
'Digital Description Of A Primary Digital Resource',
'Physical Description Of A Primary Digital Resource'
),
NULL
)
)
),
array( // 3.3.x
array(
'Identity And Physical Resources',
'Identity And Bibliographic Resources',
'Identity And Information Components',
'Identity And Active Resources'
),
NULL
),
array( // 3.4.x
array(
"What's In A Name?",
"The Problems Of Naming",
"Choosing Good Names And Identifiers"
),
array(
NULL,
array( // 3.4.2.x
array(
'The Vocabulary Problem',
'Homonymy, Polysemy, And False Cognates',
'Names With Undesirable Associations',
'Names That Assume Impermanent Attributes',
'The Semantic Gap'
),
NULL
),
array( // 3.4.3.x
array(
'Make Names Informative',
'Use Controlled Vocabularies',
'Allow Aliasing',
'Make Identifiers Unique Or Qualified',
'Distinguish Identifying And Resolving'
),
NULL
)
)
),
array( // 3.5.x
array(
'Persistence',
'Effectivity',
'Authenticity',
'Provenance'
),
array(
array( // 3.5.1.X
array(
'Persistent Identifiers',
'Persistent Resources'
),
NULL
),
NULL,
NULL,
NULL
)
),
NULL
)
),
array( // 4.x
array( // titles
'Introduction',
'An Overview Of Resource Description',
'The Process Of Describing Resources',
'Describing Non-Text Resources',
'Key Points In Chapter Four'
),
array(
NULL,
array( // 4.2.x
array(
'Naming {And, Or, Vs.} Describing',
'“Description” As An Inclusive Term',
'Frameworks For Resource Description'
),
array(
NULL,
array( //4.2.2.x
array(
'Bibliographic Descriptions',
'Metadata',
'Tagging Of Web-Based Resources',
'Resource Description Framework (RDF)'
),
NULL
),
NULL
)
),
array( // 4.3.x
array(
'Determining The Scope And Focus',
'Determining The Purposes',
'Identifying Properties',
'Designing The Description Vocabulary',
'Designing The Description Form',
'Creating Resource Descriptions',
'Evaluating Resource Descriptions'
),
array(
array( // 4.3.1.x
array(
'Describing Instances Or Describing Collections',
'Abstraction In Resource Description',
'Scope, Scale, And Resource Description'
),
NULL
),
array( // 4.3.2.x
array(
'Resource Description To Support Selection',
'Resource Description To Support Organizing',
'Resource Description To Support Interactions',
'Resource Description To Support Maintenance'
),
NULL
),
array( //4.3.3.x
array(
'Intrinsic Static Properties',
'Extrinsic Static Properties',
'Intrinsic Dynamic Properties',
'Extrinsic Dynamic Properties'
),
NULL
),
array( // 4.3.4.x
array(
'Principles Of Good Description',
'Who Uses The Descriptions?',
'Controlled Vocabularies And Content Rules',
'Vocabulary Control As Dimensionality Reduction'
),
NULL
),
NULL,
array( // 4.3.6.x
array(
'Resource Description By Professionals',
'Resource Description By Authors Or Creators',
'Resource Description By Users',
'Computational And Automated Resource Description'
),
NULL
),
array( // 4.3.7.x
array(
'Evaluating The Creation Of Resource Descriptions',
'Evaluating The Use Of Resource Descriptions',
'The Importance Of Iterative Evaluation'
),
NULL
),
)
),
array( // 4.4.x
array(
'Describing Museum And Artistic Resources',
'Describing Images',
'Describing Music',
'Describing Video',
'Describing Resource Context'
),
NULL
),
NULL
)
),
array( // 5.x
array( // titles
'Introduction',
'Describing Relationships: An Overview',
'The Semantic Perspective',
'The Lexical Perspective',
'The Structural Perspective',
'The Architectural Perspective',
'The Implementation Perspective',
'Relationships In Organizing Systems',
'Key Points In Chapter Five'
),
array(
NULL,
NULL,
array( // 5.3.x
array(
'Types Of Semantic Relationships',
'Properties Of Semantic Relationships',
'Ontologies'
),
array( // 5.3.1.x
array(
array(
'Inclusion',
'Attribution',
'Possession'
),
NULL
),
array( // 5.3.2.x
array(
'Symmetry',
'Transitivity',
'Equivalence',
'Inverse'
),
NULL
),
NULL
)
),
array( // 5.4.x
array(
'Relationships Among Word Meanings',
'Thesauri',
'Relationships Among Word Forms'
),
array(
array( // 5.4.1.x
array(
'Hyponymy And Hyperonymy',
'Metonymy',
'Synonymy',
'Polysemy',
'Antonymy'
),
NULL
),
NULL,
array(
array(
'Derivational Morphology',
'Inflectional Morphology'
),
NULL
)
)
),
array( // 5.5.x
array(
'Intentional, Implicit, And Explicit Structure',
'Structural Relationships Within A Resource',
'Structural Relationships Between Resources'
),
array(
NULL,
NULL,
array( // 5.5.3.x
array(
'Hypertext Links',
'Analyzing Link Structures',
'Bibliometrics, Shepardizing, And Social Network Analysis'
),
NULL
)
)
),
array( // 5.6.x
array(
'Degree',
'Cardinality',
'Directionality'
),
NULL
),
array( // 5.7.x
array(
'Choice Of Implementation',
'Syntax And Grammar',
'Requirements For Implementation Syntax'
),
NULL
),
array( // 5.8.x
array(
'The Semantic Web And Linked Data',
'Bibliographic Organizing Systems',
'Integration And Interoperability'
),
array(
NULL,
array( // 5.8.2.x
array(
"Tillett's Taxonomy And FRBR",
'Resource Description And Access (RDA)',
'RDA And The Semantic Web'
),
NULL
),
NULL
)
),
NULL
)
),
array( // 6.x
array( // titles
'Introduction',
'The What And Why Of Categories',
'Principles For Creating Categories',
'Category Design Issues And Implications',
'Implementing Categories',
'Key Points In Chapter Six'
),
array(
NULL,
array( // 6.2.x
array(
'Cultural Categories',
'Individual Categories',
'Institutional Categories',
'A “Categorization Continuum”'
),
NULL
),
array( // 6.3.x
array(
'Enumeration',
'Single Properties',
'Multiple Properties',
'The Limits Of Property-Based Categorization',
'Family Resemblance',
'Similarity',
'Theory-Based Categories',
'Goal-Derived Categories'
),
array(
NULL,
NULL,
array( // 6.3.3.x
array(
'Multi-Level Or Hierarchical Categories',
'Different Properties For Subsets Of Resources',
'Necessary And Sufficient Properties'
),
NULL
),
NULL,
NULL,
NULL,
NULL,
NULL
)
),
array( // 6.4.x
array(
'Category Abstraction And Granularity',
'Basic Or Natural Categories',
'The Recall / Precision Tradeoff',
'Category Audience And Purpose'
),
NULL
),
array( // 6.5.x
array(
'Implementing Classical Categories',
'Implementing Categories That Do Not Conform To The Classical Theory'
),
NULL
),
NULL
)
),
array( // 7.x
array( // titles
'Introduction',
'Understanding Classification',
'Bibliographic Classification',
'Faceted Classification',
'Classification By Activity Structure',
'Computational Classification',
'Key Points In Chapter Seven'
),
array(
array( // 7.1.x
array(
'Classification Vs. Categorization',
'Classification Vs. Tagging',
'Classification Vs. Physical Arrangement',
'Classification Schemes',
'Classification And Standardization'
),
array(
NULL,
NULL,
NULL,
NULL,
array( // 7.1.5.x
array(
'Institutional Taxonomies',
'Institutional Semantics',
'Specifications Vs. Standards',
'Mandated Classifications'
),
NULL
)
)
),
array( // 7.2.x
array(
'Classification Is Purposeful',
'Classification Is Principled',
'Classification Is Biased'
),
array(
array( // 7.2.1.x
array(
'Classifications Are Reference Models',
'Classifications Support Interactions'
),
NULL
),
array(
array(
'Principles Embodied In The Classification Scheme',
'Principles For Assigning Resources To Categories',
'Principles For Maintaining The Classification Over Time'
),
NULL
),
NULL
)
),
array( // 7.3.X
array(
'The Dewey Decimal Classification',
'The Library Of Congress Classification',
'The BISAC Classification'
),
NULL
),
array( // 7.4.x
array(
'Foundations For Faceted Classification',
'Faceted Classification In Description',
'A Classification For Facets',
'Designing A Faceted Classification System'
),
array(
NULL,
NULL,
NULL,
array( // 7.4.4.x
array(
'Design Process For Faceted Classification',
'Design Principles And Pragmatics'
),
NULL
)
)
),
NULL,
NULL,
NULL
)
),
array( // 8.x
array( // titles
'Introduction',
'Structuring Descriptions',
'Writing Descriptions',
'Worlds Of Description',
'Key Points In Chapter Eight'
),
array(
NULL,
array( // 8.2.x
array(
'Kinds Of Structures',
'Comparing Metamodels: JSON, XML And RDF',
'Modeling Within Constraints'
),
array(
array( // 8.2.1.X
array(
'Blobs',
'Sets',
'Lists',
'Dictionaries',
'Trees',
'Graphs'
),
NULL
),
array( // 8.2.2.x
array(
'JSON',
'XML Information Set',
'RDF',
'Choosing Your Constraints'
),
NULL
),
array( // 8.2.3.x
array(
'Specifying Vocabularies And Schemas',
'Controlling Values'
),
NULL
)
)
),
array( // 8.3.x
array(
'Notations',
'Writing Systems',
'Syntax'
),
NULL
),
array( // 8.4.x
array(
'The Document Processing World',
'The Web World',
'The Semantic Web World'
),
NULL
),
NULL
)
),
array( // 9.x
array( // titles
'Introduction',
'Determining Interactions',
'Organizing Resources For Interactions',
'Implementing Interactions',
'Evaluating Interactions',
'Key Points In Chapter Nine'
),
array(
array( // 9.1.x
array(
'Interactions In Libraries',
'Interactions In Museums',
'Interactions In Retail Supply Chains',
'Interactions In Online Retail Stores'
),
NULL
),
array( // 9.2.X
array(
'User Requirements',
'Resource Property Layers',
'Socio-Political And Organizational Constraints'
),
NULL
),
array( // 9.3.x
array(
'Identifying And Describing Resources For Interactions',
'Transforming Resources For Interactions'
),
array(
NULL,
array( // 9.3.2.x
array(
'Granularity And Abstraction',
'Transforming Resources From Multiple Organizing Systems',
'Modes Of Transformation',
'Accuracy Of Transformations'
),
NULL
)
)
),
array( // 9.4.x
array(
'Interactions Based On Instance Properties',
'Interactions Based On Collection Properties',
'Interactions Based On Derived Properties',
'Interactions Based On Combining Resources'
),
array(
array( // 9.4.1.x
array(
'Boolean Search / Retrieval Model',
'Tag / Annotate'
),
NULL
),
array( // 9.4.2.x
array(
'Vector Space Retrieval',
'Latent Semantic Indexing',
'Probabilistic Retrieval',
'Structure-Based Retrieval',
'Clustering / Classification'
),
NULL
),
array( // 9.4.3.x
array(
'Popularity-Based Ranking',
'Citation-Based Search',
'Translation'
),
NULL
),
array( // 9.4.4.x
array(
'Mash-Ups',
'Linked Data Retrieval And Resource Discovery'
),
NULL
)
)
),
array( // 9.5.x
array(
'Interaction Aspects For Evaluation',
'Relevance',
'The Recall / Precision Tradeoff'
),
NULL
),
NULL
)
),
array( // 10.x
array( // titles
'Introduction',
'The Organizing System Lifecycle',
'Defining And Scoping The Organizing System Domain',
'Identifying Requirements For An Organizing System',
'Designing And Implementing An Organizing System',
'Operating And Maintaining An Organizing System',
'Applying The Roadmap: Organizing Systems Case Studies',
'Key Points In Chapter Ten',
"What's Next?"
),
array(
NULL,
NULL,
array( // 10.3.x
array(
'Scope And Scale Of The Collection',
'Number And Nature Of Users',
'Expected Lifetime Of The Resources And Of The Organizing System',
'Physical Or Technological Environment',
'Relationship To Other Organizing Systems'
),
NULL
),
array( // 10.4.x
array(
'Requirements For Interactions In Organizing Systems',
'Requirements About The Nature And Extent Of Resource Description',
'Requirements About Intentional Arrangement',
'Dealing With Conflicting Requirements'
),
NULL
),
array( // 10.5.x
array(
'Choosing Scope- And Scale-Appropriate Technology',
'Architectural Thinking',
'Distinguishing Access To Resources From Resource Control',
'Standardization And Legacy Considerations'
),
NULL
),
array( // 10.6.x
array(
'Maintaining An Organizing System: Resource Perspective',
'Maintaining An Organizing System: Properties, Principles And Technology Perspective'
),
NULL
),
array( // 10.7.x
array(
'A Multigenerational Photo Collection',
'Knowledge Management For A Small Consulting Firm',
'Japanese Farms Look To The Cloud',
'Single-Source Textbook Publishing',
'Organizing A Kitchen',
'Your Own Case Study Goes Here'
),
NULL
),
NULL,
NULL
)
)
);
?>