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
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 44;
objects = {
/* Begin PBXFileReference section */
9302D9930F30AB8C00DFA4EF /* collection.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = collection.js; sourceTree = "<group>"; };
9302D9940F30AB8C00DFA4EF /* db.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = db.js; sourceTree = "<group>"; };
9302D9950F30AB8C00DFA4EF /* dbshell.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbshell.cpp; sourceTree = "<group>"; };
9302D9970F30AB8C00DFA4EF /* md5.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = md5.js; sourceTree = "<group>"; };
9302D9980F30AB8C00DFA4EF /* mongo.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = mongo.js; sourceTree = "<group>"; };
9302D9990F30AB8C00DFA4EF /* mongo.jsall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mongo.jsall; sourceTree = "<group>"; };
9302D99A0F30AB8C00DFA4EF /* mongo.jsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mongo.jsh; sourceTree = "<group>"; };
9302D99B0F30AB8C00DFA4EF /* MongoJS.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MongoJS.cpp; sourceTree = "<group>"; };
9302D99C0F30AB8C00DFA4EF /* MongoJS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MongoJS.h; sourceTree = "<group>"; };
9302D99E0F30AB8C00DFA4EF /* query.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = query.js; sourceTree = "<group>"; };
9302D99F0F30AB8C00DFA4EF /* ShellUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ShellUtils.cpp; sourceTree = "<group>"; };
9302D9A00F30AB8C00DFA4EF /* ShellUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShellUtils.h; sourceTree = "<group>"; };
9302D9A20F30AB8C00DFA4EF /* utils.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = utils.js; sourceTree = "<group>"; };
9342232B0EF16D4F00608550 /* connpool.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connpool.cpp; sourceTree = "<group>"; };
9342232C0EF16D4F00608550 /* connpool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connpool.h; sourceTree = "<group>"; };
9342232D0EF16D4F00608550 /* dbclient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbclient.cpp; sourceTree = "<group>"; };
9342232E0EF16D4F00608550 /* dbclient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dbclient.h; sourceTree = "<group>"; };
934223300EF16D4F00608550 /* model.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = model.cpp; sourceTree = "<group>"; };
934223310EF16D4F00608550 /* model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = model.h; sourceTree = "<group>"; };
934223860EF16D7000608550 /* btreetests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = btreetests.cpp; sourceTree = "<group>"; };
934223880EF16D7000608550 /* dbtests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbtests.cpp; sourceTree = "<group>"; };
934223890EF16D7000608550 /* dbtests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dbtests.h; sourceTree = "<group>"; };
9342238C0EF16D7000608550 /* mockdbclient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mockdbclient.h; sourceTree = "<group>"; };
9342238D0EF16D7000608550 /* pairingtests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pairingtests.cpp; sourceTree = "<group>"; };
934223900EF16DB400608550 /* btree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = btree.cpp; sourceTree = "<group>"; };
934223910EF16DB400608550 /* btree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = btree.h; sourceTree = "<group>"; };
934223920EF16DB400608550 /* btreecursor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = btreecursor.cpp; sourceTree = "<group>"; };
934223930EF16DB400608550 /* clientcursor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = clientcursor.cpp; sourceTree = "<group>"; };
934223940EF16DB400608550 /* clientcursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clientcursor.h; sourceTree = "<group>"; };
934223950EF16DB400608550 /* cloner.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cloner.cpp; sourceTree = "<group>"; };
934223960EF16DB400608550 /* commands.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = commands.cpp; sourceTree = "<group>"; };
934223970EF16DB400608550 /* commands.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = commands.h; sourceTree = "<group>"; };
934223980EF16DB400608550 /* cursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cursor.h; sourceTree = "<group>"; };
934223990EF16DB400608550 /* database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = database.h; sourceTree = "<group>"; };
9342239A0EF16DB400608550 /* db.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = db.cpp; sourceTree = "<group>"; };
9342239B0EF16DB400608550 /* db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = db.h; sourceTree = "<group>"; };
9342239F0EF16DB400608550 /* dbcommands.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbcommands.cpp; sourceTree = "<group>"; };
934223A00EF16DB400608550 /* dbeval.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbeval.cpp; sourceTree = "<group>"; };
934223A10EF16DB400608550 /* dbhelpers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbhelpers.cpp; sourceTree = "<group>"; };
934223A20EF16DB400608550 /* dbhelpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dbhelpers.h; sourceTree = "<group>"; };
934223A30EF16DB400608550 /* dbinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbinfo.cpp; sourceTree = "<group>"; };
934223A40EF16DB400608550 /* dbinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dbinfo.h; sourceTree = "<group>"; };
934223A50EF16DB400608550 /* dbmessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dbmessage.h; sourceTree = "<group>"; };
934223A60EF16DB400608550 /* dbwebserver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbwebserver.cpp; sourceTree = "<group>"; };
934223A70EF16DB400608550 /* instance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = instance.cpp; sourceTree = "<group>"; };
934223A80EF16DB400608550 /* instance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = instance.h; sourceTree = "<group>"; };
934223A90EF16DB400608550 /* introspect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = introspect.cpp; sourceTree = "<group>"; };
934223AA0EF16DB400608550 /* introspect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = introspect.h; sourceTree = "<group>"; };
934223AB0EF16DB400608550 /* javajs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = javajs.cpp; sourceTree = "<group>"; };
934223AC0EF16DB400608550 /* javajs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = javajs.h; sourceTree = "<group>"; };
934223AD0EF16DB400608550 /* javatest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = javatest.cpp; sourceTree = "<group>"; };
934223AE0EF16DB400608550 /* jsobj.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsobj.cpp; sourceTree = "<group>"; };
934223AF0EF16DB400608550 /* jsobj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jsobj.h; sourceTree = "<group>"; };
934223B00EF16DB400608550 /* json.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = json.cpp; sourceTree = "<group>"; };
934223B10EF16DB400608550 /* json.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = json.h; sourceTree = "<group>"; };
934223B70EF16DB400608550 /* matcher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = matcher.cpp; sourceTree = "<group>"; };
934223B80EF16DB400608550 /* matcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = matcher.h; sourceTree = "<group>"; };
934223B90EF16DB400608550 /* minilex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = minilex.h; sourceTree = "<group>"; };
934223BA0EF16DB400608550 /* namespace.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = namespace.cpp; sourceTree = "<group>"; };
934223BB0EF16DB400608550 /* namespace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = namespace.h; sourceTree = "<group>"; };
934223BD0EF16DB400608550 /* pdfile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pdfile.cpp; sourceTree = "<group>"; };
934223BE0EF16DB400608550 /* pdfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pdfile.h; sourceTree = "<group>"; };
934223BF0EF16DB400608550 /* query.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = query.cpp; sourceTree = "<group>"; };
934223C00EF16DB400608550 /* query.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = query.h; sourceTree = "<group>"; };
934223C10EF16DB400608550 /* queryoptimizer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = queryoptimizer.cpp; sourceTree = "<group>"; };
934223C20EF16DB400608550 /* queryoptimizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = queryoptimizer.h; sourceTree = "<group>"; };
934223C30EF16DB400608550 /* repl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = repl.cpp; sourceTree = "<group>"; };
934223C40EF16DB400608550 /* repl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = repl.h; sourceTree = "<group>"; };
934223C50EF16DB400608550 /* replset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = replset.h; sourceTree = "<group>"; };
934223C60EF16DB400608550 /* resource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource.h; sourceTree = "<group>"; };
934223C70EF16DB400608550 /* scanandorder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scanandorder.h; sourceTree = "<group>"; };
934223C80EF16DB400608550 /* storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = storage.h; sourceTree = "<group>"; };
934223C90EF16DB400608550 /* tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tests.cpp; sourceTree = "<group>"; };
934DD8690EFAD21900459CC1 /* dbgrid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbgrid.cpp; sourceTree = "<group>"; };
934DD86B0EFAD21900459CC1 /* dbgrid_commands.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dbgrid_commands.cpp; sourceTree = "<group>"; };
934DD86C0EFAD21900459CC1 /* gridconfig.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gridconfig.cpp; sourceTree = "<group>"; };
934DD86D0EFAD21900459CC1 /* gridconfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gridconfig.h; sourceTree = "<group>"; };
934DD86E0EFAD21900459CC1 /* griddatabase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = griddatabase.cpp; sourceTree = "<group>"; };
934DD86F0EFAD21900459CC1 /* griddatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = griddatabase.h; sourceTree = "<group>"; };
934DD8700EFAD21900459CC1 /* request.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = request.cpp; sourceTree = "<group>"; };
934DD8710EFAD21900459CC1 /* shard.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shard.cpp; sourceTree = "<group>"; };
934DD8720EFAD21900459CC1 /* shard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shard.h; sourceTree = "<group>"; };
934DD8760EFAD22900459CC1 /* message.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = message.cpp; sourceTree = "<group>"; };
934DD8770EFAD22900459CC1 /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = message.h; sourceTree = "<group>"; };
934DD87C0EFAD23B00459CC1 /* background.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = background.cpp; sourceTree = "<group>"; };
934DD87D0EFAD23B00459CC1 /* background.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = background.h; sourceTree = "<group>"; };
934DD87F0EFAD23B00459CC1 /* builder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = builder.h; sourceTree = "<group>"; };
934DD8800EFAD23B00459CC1 /* goodies.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = goodies.h; sourceTree = "<group>"; };
934DD8810EFAD23B00459CC1 /* hashtab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hashtab.h; sourceTree = "<group>"; };
934DD8820EFAD23B00459CC1 /* log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = log.h; sourceTree = "<group>"; };
934DD8830EFAD23B00459CC1 /* lruishmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lruishmap.h; sourceTree = "<group>"; };
934DD8840EFAD23B00459CC1 /* miniwebserver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = miniwebserver.cpp; sourceTree = "<group>"; };
934DD8850EFAD23B00459CC1 /* miniwebserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = miniwebserver.h; sourceTree = "<group>"; };
934DD8870EFAD23B00459CC1 /* mmap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mmap.cpp; sourceTree = "<group>"; };
934DD8880EFAD23B00459CC1 /* mmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mmap.h; sourceTree = "<group>"; };
934DD88A0EFAD23B00459CC1 /* sock.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sock.cpp; sourceTree = "<group>"; };
934DD88B0EFAD23B00459CC1 /* sock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sock.h; sourceTree = "<group>"; };
934DD88D0EFAD23B00459CC1 /* unittest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unittest.h; sourceTree = "<group>"; };
934DD88E0EFAD23B00459CC1 /* util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = util.cpp; sourceTree = "<group>"; };
936AB4BB0F3A5B0300D5015F /* update3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = update3.js; sourceTree = "<group>"; };
936AB9350F3C8AB800D5015F /* _lodeRunner.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = _lodeRunner.js; sourceTree = "<group>"; };
936AB9360F3C8AB800D5015F /* dbCreate.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = dbCreate.js; sourceTree = "<group>"; };
936AB9370F3C8B4D00D5015F /* dbNoCreate.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = dbNoCreate.js; sourceTree = "<group>"; };
937CACE90F27BF4900C57AA6 /* socktests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = socktests.cpp; sourceTree = "<group>"; };
937D0E340F28CB070071FFA9 /* repltests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = repltests.cpp; sourceTree = "<group>"; };
937D14AB0F2A225F0071FFA9 /* nonce.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nonce.h; sourceTree = "<group>"; };
937D14AC0F2A226E0071FFA9 /* nonce.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nonce.cpp; sourceTree = "<group>"; };
93A6E10C0F24CF9800DA4EBF /* lasterror.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lasterror.h; sourceTree = "<group>"; };
93A6E10D0F24CFB100DA4EBF /* flushtest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = flushtest.cpp; sourceTree = "<group>"; };
93A6E10E0F24CFD300DA4EBF /* security.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = security.h; sourceTree = "<group>"; };
93A6E10F0F24CFEA00DA4EBF /* security_commands.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = security_commands.cpp; sourceTree = "<group>"; };
93A8CD170F33B78D00C92B85 /* mmap_mm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mmap_mm.cpp; path = util/mmap_mm.cpp; sourceTree = SOURCE_ROOT; };
93A8CD180F33B7A000C92B85 /* mmap_posix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mmap_posix.cpp; path = util/mmap_posix.cpp; sourceTree = SOURCE_ROOT; };
93A8CD190F33B7AF00C92B85 /* mmap_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mmap_win.cpp; path = util/mmap_win.cpp; sourceTree = SOURCE_ROOT; };
93A8D1D30F37544800C92B85 /* _runner.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = _runner.js; sourceTree = "<group>"; };
93A8D1D40F37544800C92B85 /* apitest_db.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = apitest_db.js; sourceTree = "<group>"; };
93A8D1D50F37544800C92B85 /* apitest_dbcollection.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = apitest_dbcollection.js; sourceTree = "<group>"; };
93A8D1D60F37544800C92B85 /* auth.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = auth.js; sourceTree = "<group>"; };
93A8D1D70F37544800C92B85 /* basic1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = basic1.js; sourceTree = "<group>"; };
93A8D1D80F37544800C92B85 /* basic2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = basic2.js; sourceTree = "<group>"; };
93A8D1D90F37544800C92B85 /* basic3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = basic3.js; sourceTree = "<group>"; };
93A8D1DA0F37544800C92B85 /* basic4.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = basic4.js; sourceTree = "<group>"; };
93A8D1DB0F37544800C92B85 /* basic5.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = basic5.js; sourceTree = "<group>"; };
93A8D1DC0F37544800C92B85 /* basic6.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = basic6.js; sourceTree = "<group>"; };
93A8D1DD0F37544800C92B85 /* basic7.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = basic7.js; sourceTree = "<group>"; };
93A8D1DE0F37544800C92B85 /* capped.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = capped.js; sourceTree = "<group>"; };
93A8D1DF0F37544800C92B85 /* capped2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = capped2.js; sourceTree = "<group>"; };
93A8D1E00F37544800C92B85 /* cursor2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = cursor2.js; sourceTree = "<group>"; };
93A8D1E10F37544800C92B85 /* cursor3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = cursor3.js; sourceTree = "<group>"; };
93A8D1E20F37544800C92B85 /* cursor4.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = cursor4.js; sourceTree = "<group>"; };
93A8D1E30F37544800C92B85 /* cursor5.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = cursor5.js; sourceTree = "<group>"; };
93A8D1E40F37544800C92B85 /* cursor6.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = cursor6.js; sourceTree = "<group>"; };
93A8D1E50F37544800C92B85 /* cursor7.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = cursor7.js; sourceTree = "<group>"; };
93A8D1E60F37544800C92B85 /* error1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = error1.js; sourceTree = "<group>"; };
93A8D1E70F37544800C92B85 /* find1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = find1.js; sourceTree = "<group>"; };
93A8D1E80F37544800C92B85 /* find2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = find2.js; sourceTree = "<group>"; };
93A8D1E90F37544800C92B85 /* find3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = find3.js; sourceTree = "<group>"; };
93A8D1EA0F37544800C92B85 /* index1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = index1.js; sourceTree = "<group>"; };
93A8D1EB0F37544800C92B85 /* index2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = index2.js; sourceTree = "<group>"; };
93A8D1EC0F37544800C92B85 /* index3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = index3.js; sourceTree = "<group>"; };
93A8D1ED0F37544800C92B85 /* index4.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = index4.js; sourceTree = "<group>"; };
93A8D1EE0F37544800C92B85 /* index5.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = index5.js; sourceTree = "<group>"; };
93A8D1EF0F37544800C92B85 /* index6.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = index6.js; sourceTree = "<group>"; };
93A8D1F00F37544800C92B85 /* index7.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = index7.js; sourceTree = "<group>"; };
93A8D1F10F37544800C92B85 /* index_check1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = index_check1.js; sourceTree = "<group>"; };
93A8D1F20F37544800C92B85 /* jni1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jni1.js; sourceTree = "<group>"; };
93A8D1F30F37544800C92B85 /* jni2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jni2.js; sourceTree = "<group>"; };
93A8D1F40F37544800C92B85 /* jni3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jni3.js; sourceTree = "<group>"; };
93A8D1F50F37544800C92B85 /* jni4.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jni4.js; sourceTree = "<group>"; };
93A8D1F60F37544800C92B85 /* jni7.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jni7.js; sourceTree = "<group>"; };
93A8D1F70F37544800C92B85 /* jni8.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jni8.js; sourceTree = "<group>"; };
93A8D1F80F37544800C92B85 /* jni9.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jni9.js; sourceTree = "<group>"; };
93A8D1FC0F37544800C92B85 /* objid1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = objid1.js; sourceTree = "<group>"; };
93A8D1FD0F37544800C92B85 /* objid2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = objid2.js; sourceTree = "<group>"; };
93A8D1FE0F37544800C92B85 /* objid3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = objid3.js; sourceTree = "<group>"; };
93A8D2000F37544800C92B85 /* find1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = find1.js; sourceTree = "<group>"; };
93A8D2010F37544800C92B85 /* remove.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = remove.js; sourceTree = "<group>"; };
93A8D2020F37544800C92B85 /* remove2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = remove2.js; sourceTree = "<group>"; };
93A8D2030F37544800C92B85 /* remove4.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = remove4.js; sourceTree = "<group>"; };
93A8D2050F37544800C92B85 /* pair1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = pair1.js; sourceTree = "<group>"; };
93A8D2060F37544800C92B85 /* pair2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = pair2.js; sourceTree = "<group>"; };
93A8D2070F37544800C92B85 /* repl1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = repl1.js; sourceTree = "<group>"; };
93A8D2080F37544800C92B85 /* repl2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = repl2.js; sourceTree = "<group>"; };
93A8D2090F37544800C92B85 /* repl3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = repl3.js; sourceTree = "<group>"; };
93A8D20A0F37544800C92B85 /* sort1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = sort1.js; sourceTree = "<group>"; };
93A8D20B0F37544800C92B85 /* sort2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = sort2.js; sourceTree = "<group>"; };
93A8D20C0F37544800C92B85 /* sort3.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = sort3.js; sourceTree = "<group>"; };
93A8D20D0F37544800C92B85 /* sort_numeric.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = sort_numeric.js; sourceTree = "<group>"; };
93A8D20E0F37544800C92B85 /* uniqueness.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = uniqueness.js; sourceTree = "<group>"; };
93A8D20F0F37544800C92B85 /* update.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = update.js; sourceTree = "<group>"; };
93A8D2100F37544800C92B85 /* update2.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = update2.js; sourceTree = "<group>"; };
93A8D2110F37544800C92B85 /* where1.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = where1.js; sourceTree = "<group>"; };
93A8D8200F38FE2400C92B85 /* autoid.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = autoid.js; sourceTree = "<group>"; };
93AF75500F216D0300994C66 /* jsontests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsontests.cpp; sourceTree = "<group>"; };
93B4A81A0F1C01B4000C862C /* security.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = security.cpp; sourceTree = "<group>"; };
93B4A81B0F1C01D8000C862C /* lasterror.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lasterror.cpp; sourceTree = "<group>"; };
93B4A8290F1C024C000C862C /* cursor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cursor.cpp; sourceTree = "<group>"; };
93B4A82A0F1C0256000C862C /* pdfiletests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pdfiletests.cpp; sourceTree = "<group>"; };
93D0C1520EF1D377005253B7 /* jsobjtests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = jsobjtests.cpp; sourceTree = "<group>"; };
93D0C1FB0EF1E267005253B7 /* namespacetests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = namespacetests.cpp; sourceTree = "<group>"; };
93D6BBF70F265E1100FE5722 /* matchertests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = matchertests.cpp; sourceTree = "<group>"; };
93D6BC9B0F266FC300FE5722 /* querytests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = querytests.cpp; sourceTree = "<group>"; };
C6859E8B029090EE04C91782 /* mongo.1 */ = {isa = PBXFileReference; lastKnownFileType = text.man; path = mongo.1; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXGroup section */
08FB7794FE84155DC02AAC07 /* mongo */ = {
isa = PBXGroup;
children = (
08FB7795FE84155DC02AAC07 /* Source */,
C6859E8C029090F304C91782 /* Documentation */,
1AB674ADFE9D54B511CA2CBB /* Products */,
);
name = mongo;
sourceTree = "<group>";
};
08FB7795FE84155DC02AAC07 /* Source */ = {
isa = PBXGroup;
children = (
93A8D1D10F37544800C92B85 /* jstests */,
9302D9920F30AB8C00DFA4EF /* shell */,
9342232A0EF16D4F00608550 /* client */,
9342238F0EF16DB400608550 /* db */,
934DD8680EFAD21900459CC1 /* dbgrid */,
934223850EF16D7000608550 /* dbtests */,
934DD8750EFAD22900459CC1 /* grid */,
934DD87B0EFAD23B00459CC1 /* util */,
);
name = Source;
sourceTree = "<group>";
};
1AB674ADFE9D54B511CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
);
name = Products;
sourceTree = "<group>";
};
9302D9920F30AB8C00DFA4EF /* shell */ = {
isa = PBXGroup;
children = (
9302D9930F30AB8C00DFA4EF /* collection.js */,
9302D9940F30AB8C00DFA4EF /* db.js */,
9302D9950F30AB8C00DFA4EF /* dbshell.cpp */,
9302D9970F30AB8C00DFA4EF /* md5.js */,
9302D9980F30AB8C00DFA4EF /* mongo.js */,
9302D9990F30AB8C00DFA4EF /* mongo.jsall */,
9302D99A0F30AB8C00DFA4EF /* mongo.jsh */,
9302D99B0F30AB8C00DFA4EF /* MongoJS.cpp */,
9302D99C0F30AB8C00DFA4EF /* MongoJS.h */,
9302D99E0F30AB8C00DFA4EF /* query.js */,
9302D99F0F30AB8C00DFA4EF /* ShellUtils.cpp */,
9302D9A00F30AB8C00DFA4EF /* ShellUtils.h */,
9302D9A20F30AB8C00DFA4EF /* utils.js */,
);
path = shell;
sourceTree = "<group>";
};
9342232A0EF16D4F00608550 /* client */ = {
isa = PBXGroup;
children = (
9342232B0EF16D4F00608550 /* connpool.cpp */,
9342232C0EF16D4F00608550 /* connpool.h */,
9342232D0EF16D4F00608550 /* dbclient.cpp */,
9342232E0EF16D4F00608550 /* dbclient.h */,
934223300EF16D4F00608550 /* model.cpp */,
934223310EF16D4F00608550 /* model.h */,
);
path = client;
sourceTree = "<group>";
};
934223850EF16D7000608550 /* dbtests */ = {
isa = PBXGroup;
children = (
937D0E340F28CB070071FFA9 /* repltests.cpp */,
937CACE90F27BF4900C57AA6 /* socktests.cpp */,
93D6BC9B0F266FC300FE5722 /* querytests.cpp */,
93D6BBF70F265E1100FE5722 /* matchertests.cpp */,
93AF75500F216D0300994C66 /* jsontests.cpp */,
93B4A82A0F1C0256000C862C /* pdfiletests.cpp */,
93D0C1FB0EF1E267005253B7 /* namespacetests.cpp */,
93D0C1520EF1D377005253B7 /* jsobjtests.cpp */,
934223860EF16D7000608550 /* btreetests.cpp */,
934223880EF16D7000608550 /* dbtests.cpp */,
934223890EF16D7000608550 /* dbtests.h */,
9342238C0EF16D7000608550 /* mockdbclient.h */,
9342238D0EF16D7000608550 /* pairingtests.cpp */,
);
path = dbtests;
sourceTree = "<group>";
};
9342238F0EF16DB400608550 /* db */ = {
isa = PBXGroup;
children = (
93A8CD190F33B7AF00C92B85 /* mmap_win.cpp */,
93A8CD180F33B7A000C92B85 /* mmap_posix.cpp */,
93A8CD170F33B78D00C92B85 /* mmap_mm.cpp */,
937D14AC0F2A226E0071FFA9 /* nonce.cpp */,
937D14AB0F2A225F0071FFA9 /* nonce.h */,
93A6E10F0F24CFEA00DA4EBF /* security_commands.cpp */,
93A6E10E0F24CFD300DA4EBF /* security.h */,
93A6E10D0F24CFB100DA4EBF /* flushtest.cpp */,
93A6E10C0F24CF9800DA4EBF /* lasterror.h */,
93B4A8290F1C024C000C862C /* cursor.cpp */,
93B4A81B0F1C01D8000C862C /* lasterror.cpp */,
93B4A81A0F1C01B4000C862C /* security.cpp */,
934223900EF16DB400608550 /* btree.cpp */,
934223910EF16DB400608550 /* btree.h */,
934223920EF16DB400608550 /* btreecursor.cpp */,
934223930EF16DB400608550 /* clientcursor.cpp */,
934223940EF16DB400608550 /* clientcursor.h */,
934223950EF16DB400608550 /* cloner.cpp */,
934223960EF16DB400608550 /* commands.cpp */,
934223970EF16DB400608550 /* commands.h */,
934223980EF16DB400608550 /* cursor.h */,
934223990EF16DB400608550 /* database.h */,
9342239A0EF16DB400608550 /* db.cpp */,
9342239B0EF16DB400608550 /* db.h */,
9342239F0EF16DB400608550 /* dbcommands.cpp */,
934223A00EF16DB400608550 /* dbeval.cpp */,
934223A10EF16DB400608550 /* dbhelpers.cpp */,
934223A20EF16DB400608550 /* dbhelpers.h */,
934223A30EF16DB400608550 /* dbinfo.cpp */,
934223A40EF16DB400608550 /* dbinfo.h */,
934223A50EF16DB400608550 /* dbmessage.h */,
934223A60EF16DB400608550 /* dbwebserver.cpp */,
934223A70EF16DB400608550 /* instance.cpp */,
934223A80EF16DB400608550 /* instance.h */,
934223A90EF16DB400608550 /* introspect.cpp */,
934223AA0EF16DB400608550 /* introspect.h */,
934223AB0EF16DB400608550 /* javajs.cpp */,
934223AC0EF16DB400608550 /* javajs.h */,
934223AD0EF16DB400608550 /* javatest.cpp */,
934223AE0EF16DB400608550 /* jsobj.cpp */,
934223AF0EF16DB400608550 /* jsobj.h */,
934223B00EF16DB400608550 /* json.cpp */,
934223B10EF16DB400608550 /* json.h */,
934223B70EF16DB400608550 /* matcher.cpp */,
934223B80EF16DB400608550 /* matcher.h */,
934223B90EF16DB400608550 /* minilex.h */,
934223BA0EF16DB400608550 /* namespace.cpp */,
934223BB0EF16DB400608550 /* namespace.h */,
934223BD0EF16DB400608550 /* pdfile.cpp */,
934223BE0EF16DB400608550 /* pdfile.h */,
934223BF0EF16DB400608550 /* query.cpp */,
934223C00EF16DB400608550 /* query.h */,
934223C10EF16DB400608550 /* queryoptimizer.cpp */,
934223C20EF16DB400608550 /* queryoptimizer.h */,
934223C30EF16DB400608550 /* repl.cpp */,
934223C40EF16DB400608550 /* repl.h */,
934223C50EF16DB400608550 /* replset.h */,
934223C60EF16DB400608550 /* resource.h */,
934223C70EF16DB400608550 /* scanandorder.h */,
934223C80EF16DB400608550 /* storage.h */,
934223C90EF16DB400608550 /* tests.cpp */,
);
path = db;
sourceTree = "<group>";
};
934DD8680EFAD21900459CC1 /* dbgrid */ = {
isa = PBXGroup;
children = (
934DD8690EFAD21900459CC1 /* dbgrid.cpp */,
934DD86B0EFAD21900459CC1 /* dbgrid_commands.cpp */,
934DD86C0EFAD21900459CC1 /* gridconfig.cpp */,
934DD86D0EFAD21900459CC1 /* gridconfig.h */,
934DD86E0EFAD21900459CC1 /* griddatabase.cpp */,
934DD86F0EFAD21900459CC1 /* griddatabase.h */,
934DD8700EFAD21900459CC1 /* request.cpp */,
934DD8710EFAD21900459CC1 /* shard.cpp */,
934DD8720EFAD21900459CC1 /* shard.h */,
);
path = dbgrid;
sourceTree = "<group>";
};
934DD8750EFAD22900459CC1 /* grid */ = {
isa = PBXGroup;
children = (
934DD8760EFAD22900459CC1 /* message.cpp */,
934DD8770EFAD22900459CC1 /* message.h */,
);
path = grid;
sourceTree = "<group>";
};
934DD87B0EFAD23B00459CC1 /* util */ = {
isa = PBXGroup;
children = (
934DD87C0EFAD23B00459CC1 /* background.cpp */,
934DD87D0EFAD23B00459CC1 /* background.h */,
934DD87F0EFAD23B00459CC1 /* builder.h */,
934DD8800EFAD23B00459CC1 /* goodies.h */,
934DD8810EFAD23B00459CC1 /* hashtab.h */,
934DD8820EFAD23B00459CC1 /* log.h */,
934DD8830EFAD23B00459CC1 /* lruishmap.h */,
934DD8840EFAD23B00459CC1 /* miniwebserver.cpp */,
934DD8850EFAD23B00459CC1 /* miniwebserver.h */,
934DD8870EFAD23B00459CC1 /* mmap.cpp */,
934DD8880EFAD23B00459CC1 /* mmap.h */,
934DD88A0EFAD23B00459CC1 /* sock.cpp */,
934DD88B0EFAD23B00459CC1 /* sock.h */,
934DD88D0EFAD23B00459CC1 /* unittest.h */,
934DD88E0EFAD23B00459CC1 /* util.cpp */,
);
path = util;
sourceTree = "<group>";
};
93A8D1D10F37544800C92B85 /* jstests */ = {
isa = PBXGroup;
children = (
936AB9370F3C8B4D00D5015F /* dbNoCreate.js */,
936AB9350F3C8AB800D5015F /* _lodeRunner.js */,
936AB9360F3C8AB800D5015F /* dbCreate.js */,
936AB4BB0F3A5B0300D5015F /* update3.js */,
93A8D8200F38FE2400C92B85 /* autoid.js */,
93A8D1D30F37544800C92B85 /* _runner.js */,
93A8D1D40F37544800C92B85 /* apitest_db.js */,
93A8D1D50F37544800C92B85 /* apitest_dbcollection.js */,
93A8D1D60F37544800C92B85 /* auth.js */,
93A8D1D70F37544800C92B85 /* basic1.js */,
93A8D1D80F37544800C92B85 /* basic2.js */,
93A8D1D90F37544800C92B85 /* basic3.js */,
93A8D1DA0F37544800C92B85 /* basic4.js */,
93A8D1DB0F37544800C92B85 /* basic5.js */,
93A8D1DC0F37544800C92B85 /* basic6.js */,
93A8D1DD0F37544800C92B85 /* basic7.js */,
93A8D1DE0F37544800C92B85 /* capped.js */,
93A8D1DF0F37544800C92B85 /* capped2.js */,
93A8D1E00F37544800C92B85 /* cursor2.js */,
93A8D1E10F37544800C92B85 /* cursor3.js */,
93A8D1E20F37544800C92B85 /* cursor4.js */,
93A8D1E30F37544800C92B85 /* cursor5.js */,
93A8D1E40F37544800C92B85 /* cursor6.js */,
93A8D1E50F37544800C92B85 /* cursor7.js */,
93A8D1E60F37544800C92B85 /* error1.js */,
93A8D1E70F37544800C92B85 /* find1.js */,
93A8D1E80F37544800C92B85 /* find2.js */,
93A8D1E90F37544800C92B85 /* find3.js */,
93A8D1EA0F37544800C92B85 /* index1.js */,
93A8D1EB0F37544800C92B85 /* index2.js */,
93A8D1EC0F37544800C92B85 /* index3.js */,
93A8D1ED0F37544800C92B85 /* index4.js */,
93A8D1EE0F37544800C92B85 /* index5.js */,
93A8D1EF0F37544800C92B85 /* index6.js */,
93A8D1F00F37544800C92B85 /* index7.js */,
93A8D1F10F37544800C92B85 /* index_check1.js */,
93A8D1F20F37544800C92B85 /* jni1.js */,
93A8D1F30F37544800C92B85 /* jni2.js */,
93A8D1F40F37544800C92B85 /* jni3.js */,
93A8D1F50F37544800C92B85 /* jni4.js */,
93A8D1F60F37544800C92B85 /* jni7.js */,
93A8D1F70F37544800C92B85 /* jni8.js */,
93A8D1F80F37544800C92B85 /* jni9.js */,
93A8D1FC0F37544800C92B85 /* objid1.js */,
93A8D1FD0F37544800C92B85 /* objid2.js */,
93A8D1FE0F37544800C92B85 /* objid3.js */,
93A8D1FF0F37544800C92B85 /* perf */,
93A8D2010F37544800C92B85 /* remove.js */,
93A8D2020F37544800C92B85 /* remove2.js */,
93A8D2030F37544800C92B85 /* remove4.js */,
93A8D2040F37544800C92B85 /* repl */,
93A8D20A0F37544800C92B85 /* sort1.js */,
93A8D20B0F37544800C92B85 /* sort2.js */,
93A8D20C0F37544800C92B85 /* sort3.js */,
93A8D20D0F37544800C92B85 /* sort_numeric.js */,
93A8D20E0F37544800C92B85 /* uniqueness.js */,
93A8D20F0F37544800C92B85 /* update.js */,
93A8D2100F37544800C92B85 /* update2.js */,
93A8D2110F37544800C92B85 /* where1.js */,
);
path = jstests;
sourceTree = "<group>";
};
93A8D1FF0F37544800C92B85 /* perf */ = {
isa = PBXGroup;
children = (
93A8D2000F37544800C92B85 /* find1.js */,
);
path = perf;
sourceTree = "<group>";
};
93A8D2040F37544800C92B85 /* repl */ = {
isa = PBXGroup;
children = (
93A8D2050F37544800C92B85 /* pair1.js */,
93A8D2060F37544800C92B85 /* pair2.js */,
93A8D2070F37544800C92B85 /* repl1.js */,
93A8D2080F37544800C92B85 /* repl2.js */,
93A8D2090F37544800C92B85 /* repl3.js */,
);
path = repl;
sourceTree = "<group>";
};
C6859E8C029090F304C91782 /* Documentation */ = {
isa = PBXGroup;
children = (
C6859E8B029090EE04C91782 /* mongo.1 */,
);
name = Documentation;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXLegacyTarget section */
9302D74A0F2E6E4000DFA4EF /* scons db 64 */ = {
isa = PBXLegacyTarget;
buildArgumentsString = "--64 -j2";
buildConfigurationList = 9302D74B0F2E6E4000DFA4EF /* Build configuration list for PBXLegacyTarget "scons db 64" */;
buildPhases = (
);
buildToolPath = /usr/local/bin/scons;
buildWorkingDirectory = "";
dependencies = (
);
name = "scons db 64";
passBuildSettingsInEnvironment = 1;
productName = "scons db";
};
9302D74E0F2E6E4400DFA4EF /* scons all 64 */ = {
isa = PBXLegacyTarget;
buildArgumentsString = "--64 -j2 .";
buildConfigurationList = 9302D74F0F2E6E4400DFA4EF /* Build configuration list for PBXLegacyTarget "scons all 64" */;
buildPhases = (
);
buildToolPath = /usr/local/bin/scons;
dependencies = (
);
name = "scons all 64";
passBuildSettingsInEnvironment = 1;
productName = "scons all";
};
9302D7520F2E6E4600DFA4EF /* scons test 64 */ = {
isa = PBXLegacyTarget;
buildArgumentsString = "--64 -j2 test";
buildConfigurationList = 9302D7530F2E6E4600DFA4EF /* Build configuration list for PBXLegacyTarget "scons test 64" */;
buildPhases = (
);
buildToolPath = /usr/local/bin/scons;
dependencies = (
);
name = "scons test 64";
passBuildSettingsInEnvironment = 1;
productName = "scons test";
};
932F1DCC0F213B06008FA2E7 /* scons db */ = {
isa = PBXLegacyTarget;
buildArgumentsString = "-j2";
buildConfigurationList = 932F1DD40F213B0F008FA2E7 /* Build configuration list for PBXLegacyTarget "scons db" */;
buildPhases = (
);
buildToolPath = /usr/local/bin/scons;
buildWorkingDirectory = "";
dependencies = (
);
name = "scons db";
passBuildSettingsInEnvironment = 1;
productName = "scons db";
};
93A8D0700F36AE0200C92B85 /* scons debug test */ = {
isa = PBXLegacyTarget;
buildArgumentsString = "-j2 --noOptimization test";
buildConfigurationList = 93A8D0710F36AE0200C92B85 /* Build configuration list for PBXLegacyTarget "scons debug test" */;
buildPhases = (
);
buildToolPath = /usr/local/bin/scons;
dependencies = (
);
name = "scons debug test";
passBuildSettingsInEnvironment = 1;
productName = "scons test";
};
93AF75120F213CC500994C66 /* scons all */ = {
isa = PBXLegacyTarget;
buildArgumentsString = "-j2 .";
buildConfigurationList = 93AF75250F213D2500994C66 /* Build configuration list for PBXLegacyTarget "scons all" */;
buildPhases = (
);
buildToolPath = /usr/local/bin/scons;
dependencies = (
);
name = "scons all";
passBuildSettingsInEnvironment = 1;
productName = "scons all";
};
93AF75170F213CFB00994C66 /* scons test */ = {
isa = PBXLegacyTarget;
buildArgumentsString = "-j2 test";
buildConfigurationList = 93AF75260F213D2500994C66 /* Build configuration list for PBXLegacyTarget "scons test" */;
buildPhases = (
);
buildToolPath = /usr/local/bin/scons;
dependencies = (
);
name = "scons test";
passBuildSettingsInEnvironment = 1;
productName = "scons test";
};
/* End PBXLegacyTarget section */
/* Begin PBXProject section */
08FB7793FE84155DC02AAC07 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 1DEB923508733DC60010E9CD /* Build configuration list for PBXProject "mongo" */;
compatibilityVersion = "Xcode 3.0";
hasScannedForEncodings = 1;
mainGroup = 08FB7794FE84155DC02AAC07 /* mongo */;
projectDirPath = "";
projectRoot = "";
targets = (
932F1DCC0F213B06008FA2E7 /* scons db */,
93AF75120F213CC500994C66 /* scons all */,
93AF75170F213CFB00994C66 /* scons test */,
9302D74A0F2E6E4000DFA4EF /* scons db 64 */,
9302D74E0F2E6E4400DFA4EF /* scons all 64 */,
9302D7520F2E6E4600DFA4EF /* scons test 64 */,
93A8D0700F36AE0200C92B85 /* scons debug test */,
);
};
/* End PBXProject section */
/* Begin XCBuildConfiguration section */
1DEB923608733DC60010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
};
name = Debug;
};
1DEB923708733DC60010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = (
ppc,
i386,
);
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
};
name = Release;
};
9302D74C0F2E6E4000DFA4EF /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
PRODUCT_NAME = "scons db";
};
name = Debug;
};
9302D74D0F2E6E4000DFA4EF /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
PRODUCT_NAME = "scons db";
ZERO_LINK = NO;
};
name = Release;
};
9302D7500F2E6E4400DFA4EF /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
PRODUCT_NAME = "scons all";
};
name = Debug;
};
9302D7510F2E6E4400DFA4EF /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
PRODUCT_NAME = "scons all";
ZERO_LINK = NO;
};
name = Release;
};
9302D7540F2E6E4600DFA4EF /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
PRODUCT_NAME = "scons test";
};
name = Debug;
};
9302D7550F2E6E4600DFA4EF /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
PRODUCT_NAME = "scons test";
ZERO_LINK = NO;
};
name = Release;
};
932F1DCD0F213B06008FA2E7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
PRODUCT_NAME = "scons db";
};
name = Debug;
};
932F1DCE0F213B06008FA2E7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
PRODUCT_NAME = "scons db";
ZERO_LINK = NO;
};
name = Release;
};
93A8D0720F36AE0200C92B85 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
PRODUCT_NAME = "scons debug test";
};
name = Debug;
};
93A8D0730F36AE0200C92B85 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
PRODUCT_NAME = "scons test";
ZERO_LINK = NO;
};
name = Release;
};
93AF75130F213CC500994C66 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
PRODUCT_NAME = "scons all";
};
name = Debug;
};
93AF75140F213CC500994C66 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
PRODUCT_NAME = "scons all";
ZERO_LINK = NO;
};
name = Release;
};
93AF75180F213CFC00994C66 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
PRODUCT_NAME = "scons test";
};
name = Debug;
};
93AF75190F213CFC00994C66 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_FIX_AND_CONTINUE = NO;
PRODUCT_NAME = "scons test";
ZERO_LINK = NO;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1DEB923508733DC60010E9CD /* Build configuration list for PBXProject "mongo" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB923608733DC60010E9CD /* Debug */,
1DEB923708733DC60010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
9302D74B0F2E6E4000DFA4EF /* Build configuration list for PBXLegacyTarget "scons db 64" */ = {
isa = XCConfigurationList;
buildConfigurations = (
9302D74C0F2E6E4000DFA4EF /* Debug */,
9302D74D0F2E6E4000DFA4EF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
9302D74F0F2E6E4400DFA4EF /* Build configuration list for PBXLegacyTarget "scons all 64" */ = {
isa = XCConfigurationList;
buildConfigurations = (
9302D7500F2E6E4400DFA4EF /* Debug */,
9302D7510F2E6E4400DFA4EF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
9302D7530F2E6E4600DFA4EF /* Build configuration list for PBXLegacyTarget "scons test 64" */ = {
isa = XCConfigurationList;
buildConfigurations = (
9302D7540F2E6E4600DFA4EF /* Debug */,
9302D7550F2E6E4600DFA4EF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
932F1DD40F213B0F008FA2E7 /* Build configuration list for PBXLegacyTarget "scons db" */ = {
isa = XCConfigurationList;
buildConfigurations = (
932F1DCD0F213B06008FA2E7 /* Debug */,
932F1DCE0F213B06008FA2E7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
93A8D0710F36AE0200C92B85 /* Build configuration list for PBXLegacyTarget "scons debug test" */ = {
isa = XCConfigurationList;
buildConfigurations = (
93A8D0720F36AE0200C92B85 /* Debug */,
93A8D0730F36AE0200C92B85 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
93AF75250F213D2500994C66 /* Build configuration list for PBXLegacyTarget "scons all" */ = {
isa = XCConfigurationList;
buildConfigurations = (
93AF75130F213CC500994C66 /* Debug */,
93AF75140F213CC500994C66 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
93AF75260F213D2500994C66 /* Build configuration list for PBXLegacyTarget "scons test" */ = {
isa = XCConfigurationList;
buildConfigurations = (
93AF75180F213CFC00994C66 /* Debug */,
93AF75190F213CFC00994C66 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}
|