-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eprj
1146 lines (1146 loc) · 52.8 KB
/
.eprj
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>filters</key>
<dict>
<key>excludeDirs</key>
<array>
<string>.svn</string>
</array>
<key>excludeFiles</key>
<array />
<key>includeDirs</key>
<array />
<key>includeFiles</key>
<array />
</dict>
<key>fileTriggers</key>
<dict>
<key>.css</key>
<string>public\stylesheets\calendar_date_select\default.css</string>
<key>ADDSEC</key>
<string>app\views\resume\add_section.rjs</string>
<key>Jobsee</key>
<string>app\models\job_seeker.rb</string>
<key>REMO</key>
<string>app\views\resume\remove_section.rjs</string>
<key>User</key>
<string>app\models\user.rb</string>
<key>XmlMarkup</key>
<string>vendor\rails\activesupport\lib\active_support\vendor\builder-2.1.2\builder\xmlmarkup.rb</string>
<key>_event</key>
<string>_event.rhtml</string>
<key>_event.rh</key>
<string>app\views\resume\_event.rhtml</string>
<key>_form</key>
<string>app\views\jobs\_form.rhtml</string>
<key>_h</key>
<string>app\views\layouts\_header.rhtml</string>
<key>_he</key>
<string>app\views\layouts\_header.rhtml</string>
<key>_hea</key>
<string>app\views\layouts\_head.rhtml</string>
<key>_head</key>
<string>app\views\layouts\_header.rhtml</string>
<key>_main</key>
<string>app\views\shared\_mainmenu.rhtml</string>
<key>_mainm</key>
<string>app\views\shared\_mainmenu.rhtml</string>
<key>_perso</key>
<string>app\views\resume\_personal_details.rhtml</string>
<key>_personal</key>
<string>app\views\resume\_personal_details.rhtml</string>
<key>_resume</key>
<string>app\views\resume\_resume.rhtml</string>
<key>_section</key>
<string>app\views\resume\_section.rhtml</string>
<key>_section.rhtml</key>
<string>app\views\resume\_section.rhtml</string>
<key>acc</key>
<string>app\controllers\accounts_controller.rb</string>
<key>acco</key>
<string>test\functional\account1_controller_test.rb</string>
<key>accou</key>
<string>app\controllers\account_controller.rb</string>
<key>account</key>
<string>app\controllers\accounts_controller.rb</string>
<key>account.</key>
<string>app\controllers\accounts_controller.rb</string>
<key>accountlo</key>
<string>vendor\plugins\account_location\lib\account_location.rb</string>
<key>accounts</key>
<string>app\controllers\accounts_controller.rb</string>
<key>accountsc</key>
<string>app\controllers\accounts_controller.rb</string>
<key>accountsco</key>
<string>app\controllers\accounts_controller.rb</string>
<key>accout</key>
<string>app\controllers\account_controller.rb</string>
<key>ad</key>
<string>app\views\search\advancedsearch.rhtml</string>
<key>add</key>
<string>app\views\resume\add_section.rjs</string>
<key>addques</key>
<string>app\views\website\add_question_answer.rjs</string>
<key>addre</key>
<string>db\migrate\015_create_addresses.rb</string>
<key>addres</key>
<string>app\models\address.rb</string>
<key>address</key>
<string>app\models\address.rb</string>
<key>address.</key>
<string>app\models\address.rb</string>
<key>addse</key>
<string>app\views\resume\add_section.rjs</string>
<key>addsec</key>
<string>app\views\resume\add_section.rjs</string>
<key>addsection.rjs</key>
<string>app\views\resume\add_section.rjs</string>
<key>admincon</key>
<string>vendor\plugins\comatose\lib\comatose\admin_controller.rb</string>
<key>adva</key>
<string>app\views\search\advancedsearch.rhtml</string>
<key>advan</key>
<string>app\views\search\advancedsearch.rhtml</string>
<key>advanced</key>
<string>app\views\search\advancedsearch.rhtml</string>
<key>advanceds</key>
<string>app\views\search\advancedsearch.rhtml</string>
<key>ap</key>
<string>public\javascripts\application.js</string>
<key>app</key>
<string>app\helpers\application_helper.rb</string>
<key>appl</key>
<string>app\controllers\application.rb</string>
<key>appli</key>
<string>app\views\layouts\application.rhtml</string>
<key>applic</key>
<string>public\javascripts\application.js</string>
<key>applica</key>
<string>app\views\layouts\application.rhtml</string>
<key>applicaio</key>
<string>app\views\layouts\application.rhtml</string>
<key>applicaion.rb</key>
<string>app\controllers\application.rb</string>
<key>applicarb</key>
<string>app\controllers\application.rb</string>
<key>applicat</key>
<string>public\javascripts\application.js</string>
<key>applicati</key>
<string>app\controllers\application.rb</string>
<key>applicatin</key>
<string>app\helpers\application_helper.rb</string>
<key>applicatio</key>
<string>app\views\layouts\application.rhtml</string>
<key>application</key>
<string>app\views\layouts\application.rhtml</string>
<key>application.</key>
<string>app\controllers\application.rb</string>
<key>application.j</key>
<string>public\javascripts\application.js</string>
<key>application.js</key>
<string>public\javascripts\application.js</string>
<key>application.rb</key>
<string>app\controllers\application.rb</string>
<key>application.rht</key>
<string>app\views\layouts\application.rhtml</string>
<key>application.rhtml</key>
<string>app\views\layouts\application.rhtml</string>
<key>applicationh</key>
<string>app\helpers\application_helper.rb</string>
<key>applicationhe</key>
<string>app\helpers\application_helper.rb</string>
<key>applicaton.rb</key>
<string>app\controllers\application.rb</string>
<key>applicatr</key>
<string>app\controllers\application.rb</string>
<key>appp</key>
<string>app\helpers\application_helper.rb</string>
<key>ass</key>
<string>config\asset_packages.yml</string>
<key>asse</key>
<string>config\asset_packages.yml</string>
<key>asser</key>
<string>app\views\users\passrecovery.rhtml</string>
<key>asset</key>
<string>config\asset_packages.yml</string>
<key>asset_pa</key>
<string>config\asset_packages.yml</string>
<key>assetp</key>
<string>config\asset_packages.yml</string>
<key>au</key>
<string>lib\authenticated_system.rb</string>
<key>aut</key>
<string>lib\authenticated_system.rb</string>
<key>auth</key>
<string>lib\authenticated_system.rb</string>
<key>authe</key>
<string>lib\authenticated_system.rb</string>
<key>authen</key>
<string>app\helpers\authentication_helper.rb</string>
<key>authent</key>
<string>lib\authenticated_system.rb</string>
<key>authenti</key>
<string>lib\authenticated_system.rb</string>
<key>ava</key>
<string>db\migrate\026_create_avatars.rb</string>
<key>avatar</key>
<string>app\models\avatar.rb</string>
<key>avatar.</key>
<string>app\models\avatar.rb</string>
<key>avatarc</key>
<string>app\controllers\avatars_controller.rb</string>
<key>back</key>
<string>vendor\plugins\backgroundrb\lib\backgroundrb.rb</string>
<key>background</key>
<string>vendor\plugins\backgroundrb\lib\backgroundrb.rb</string>
<key>base</key>
<string>vendor\rails\activerecord\lib\active_record\base.rb</string>
<key>blog</key>
<string>public\stylesheets\blog.css</string>
<key>blogsc</key>
<string>app\controllers\blogs_controller.rb</string>
<key>blogscon</key>
<string>app\controllers\blogs_controller.rb</string>
<key>buy</key>
<string>..\mhin\app\models\buy_transaction.rb</string>
<key>capi</key>
<string>lib\tasks\capistrano.rake</string>
<key>cgiprocess</key>
<string>vendor\rails\actionpack\lib\action_controller\cgi_process.rb</string>
<key>change</key>
<string>vendor\rails\railties\CHANGELOG</string>
<key>changelog</key>
<string>vendor\rails\activerecord\CHANGELOG</string>
<key>coment</key>
<string>app\models\comment.rb</string>
<key>comme</key>
<string>app\models\comment.rb</string>
<key>comment</key>
<string>app\controllers\comments_controller.rb</string>
<key>commentc</key>
<string>app\controllers\comments_controller.rb</string>
<key>comments</key>
<string>vendor\rails\activerecord\test\fixtures\comments.yml</string>
<key>comp</key>
<string>app\views\employers\_company_information.rhtml</string>
<key>compan</key>
<string>db\migrate\007_create_companies.rb</string>
<key>compani</key>
<string>app\controllers\companies_controller.rb</string>
<key>companies</key>
<string>db\migrate\008_create_companies.rb</string>
<key>companiesc</key>
<string>app\controllers\companies_controller.rb</string>
<key>compant</key>
<string>app\controllers\company_controller.rb</string>
<key>company</key>
<string>app\models\company.rb</string>
<key>company.rb</key>
<string>app\models\company.rb</string>
<key>compo</key>
<string>public\stylesheets\components.css</string>
<key>compoent</key>
<string>public\stylesheets\components.css</string>
<key>compon</key>
<string>public\stylesheets\components.css</string>
<key>compone</key>
<string>public\stylesheets\components.css</string>
<key>component</key>
<string>public\stylesheets\components.css</string>
<key>components</key>
<string>public\stylesheets\components.css</string>
<key>config</key>
<string>vendor\rails\actionmailer\lib\action_mailer\vendor\tmail-1.2.2\tmail\config.rb</string>
<key>contact</key>
<string>app\views\friends\_contacts_toc.rhtml</string>
<key>contacte</key>
<string>app\models\contact_event.rb</string>
<key>content</key>
<string>app\views\resume\content.rhtml</string>
<key>controller.rb</key>
<string>vendor\plugins\comatose\lib\comatose\controller.rb</string>
<key>conversation</key>
<string>app\models\conversation.rb</string>
<key>crate</key>
<string>app\views\seeker\resume\create.rjs</string>
<key>create</key>
<string>app\views\seeker\resume\create.rjs</string>
<key>create.r</key>
<string>app\views\seeker\resume\create.rjs</string>
<key>createu</key>
<string>vendor\plugins\has_many_polymorphs\test\integration\app\db\migrate\001_create_users.rb</string>
<key>database</key>
<string>config\database.yml</string>
<key>def</key>
<string>public\stylesheets\default.css</string>
<key>defau</key>
<string>public\stylesheets\default.css</string>
<key>default</key>
<string>public\stylesheets\default.css</string>
<key>defaut</key>
<string>public\stylesheets\default.css</string>
<key>delete</key>
<string>app\views\seeker\resume\delete.rjs</string>
<key>deplo</key>
<string>config\deploy.rb</string>
<key>deploy</key>
<string>config\deploy.rb</string>
<key>deploy.</key>
<string>config\deploy.rb</string>
<key>deploy.rb</key>
<string>config\deploy.rb</string>
<key>depoy.rb</key>
<string>config\deploy.rb</string>
<key>deve</key>
<string>config\environments\development.rb</string>
<key>development</key>
<string>config\environments\development.rb</string>
<key>dis</key>
<string>app\views\resume\distribution.rhtml</string>
<key>dist</key>
<string>app\views\resume\distribution.rhtml</string>
<key>distr</key>
<string>app\views\resume\distribution.rhtml</string>
<key>distru</key>
<string>app\views\resume\distribution.rhtml</string>
<key>ditr</key>
<string>app\views\resume\distribution.rhtml</string>
<key>down</key>
<string>lib\download_helper.rb</string>
<key>downla</key>
<string>lib\download_helper.rb</string>
<key>download</key>
<string>lib\download_helper.rb</string>
<key>downloadh</key>
<string>lib\download_helper.rb</string>
<key>downloadhe</key>
<string>lib\download_helper.rb</string>
<key>drag</key>
<string>public\javascripts\dragdrop.js</string>
<key>edit</key>
<string>app\views\resume\edit.rhtml</string>
<key>edu</key>
<string>app\models\education.rb</string>
<key>educa</key>
<string>app\models\education_section.rb</string>
<key>educatio</key>
<string>app\models\education_section.rb</string>
<key>education</key>
<string>app\views\resume\_education.rhtml</string>
<key>educations</key>
<string>app\models\education_section.rb</string>
<key>effect</key>
<string>public\javascripts\effects.js</string>
<key>email</key>
<string>app\views\resume\email.rhtml</string>
<key>email.rhtml</key>
<string>app\views\resume\email.rhtml</string>
<key>emaile</key>
<string>app\models\email_event.rb</string>
<key>emaileve</key>
<string>app\models\email_event.rb</string>
<key>emi</key>
<string>app\views\resume\email.rhtml</string>
<key>empl</key>
<string>app\views\layouts\_employer_header.html.erb</string>
<key>emplo</key>
<string>app\controllers\employers_controller.rb</string>
<key>employ</key>
<string>app\controllers\employers_controller.rb</string>
<key>employe</key>
<string>app\controllers\employers_controller.rb</string>
<key>employer</key>
<string>app\models\employer.rb</string>
<key>employer.r</key>
<string>app\models\employer.rb</string>
<key>employer.rb</key>
<string>app\models\employer.rb</string>
<key>employer_c</key>
<string>app\models\employer_company.rb</string>
<key>employer_pro</key>
<string>app\views\users\_employer_profile.rhtml</string>
<key>employerc</key>
<string>app\controllers\employers_controller.rb</string>
<key>employers</key>
<string>app\controllers\employers_controller.rb</string>
<key>employersc</key>
<string>app\controllers\employers_controller.rb</string>
<key>ent</key>
<string>app\models\entry.rb</string>
<key>entr</key>
<string>app\models\entry.rb</string>
<key>entri</key>
<string>app\helpers\entries_helper.rb</string>
<key>entrie</key>
<string>app\controllers\entries_controller.rb</string>
<key>entries</key>
<string>app\controllers\entries_controller.rb</string>
<key>entriesc</key>
<string>app\controllers\entries_controller.rb</string>
<key>entriesh</key>
<string>app\helpers\entries_helper.rb</string>
<key>entry</key>
<string>app\models\entry.rb</string>
<key>entry.rb</key>
<string>app\models\entry.rb</string>
<key>envi</key>
<string>config\environment.rb</string>
<key>envir</key>
<string>config\environment.rb</string>
<key>enviro</key>
<string>config\environment.rb</string>
<key>environ</key>
<string>config\environment.rb</string>
<key>environe</key>
<string>config\environment.rb</string>
<key>environmen</key>
<string>config\environment.rb</string>
<key>environment</key>
<string>config\environment.rb</string>
<key>event</key>
<string>app\views\resume\_event.rhtml</string>
<key>event.</key>
<string>app\views\resume\event.rhtml</string>
<key>event.rb</key>
<string>app\models\event.rb</string>
<key>event.rh</key>
<string>app\views\resume\event.rhtml</string>
<key>event.rht</key>
<string>app\views\resume\event.rhtml</string>
<key>event_i</key>
<string>app\views\resume\_event_info.rhtml</string>
<key>eventin</key>
<string>app\views\resume\_event_info.rhtml</string>
<key>eventinf</key>
<string>app\views\resume\_event_info.rhtml</string>
<key>eventrht</key>
<string>app\views\resume\event.rhtml</string>
<key>events</key>
<string>db\migrate\008_create_events.rb</string>
<key>exter</key>
<string>app\models\external_email_event.rb</string>
<key>externale</key>
<string>app\models\external_email_event.rb</string>
<key>find</key>
<string>app\views\friends\find_friends.rhtml</string>
<key>footer</key>
<string>app\views\layouts\_footer.rhtml</string>
<key>footer.rb</key>
<string>vendor\plugins\backgroundrb\examples\foo_controller.rb</string>
<key>footert</key>
<string>app\views\layouts\_footer.rhtml</string>
<key>for</key>
<string>vendor\rails\actionpack\lib\action_view\helpers\form_tag_helper.rb</string>
<key>form</key>
<string>vendor\rails\actionpack\lib\action_view\helpers\form_tag_helper.rb</string>
<key>form.c</key>
<string>public\stylesheets\form.css</string>
<key>form.cs</key>
<string>public\stylesheets\form.css</string>
<key>form.css</key>
<string>public\stylesheets\form.css</string>
<key>form_</key>
<string>vendor\rails\actionpack\lib\action_view\helpers\form_helper.rb</string>
<key>form_t</key>
<string>vendor\rails\actionpack\lib\action_view\helpers\form_tag_helper.rb</string>
<key>forma</key>
<string>public\stylesheets\formatting.css</string>
<key>formatt</key>
<string>public\stylesheets\formatting.css</string>
<key>formatti</key>
<string>public\stylesheets\formatting.css</string>
<key>formatting</key>
<string>public\stylesheets\formatting.css</string>
<key>foru</key>
<string>app\models\forum.rb</string>
<key>forum</key>
<string>db\migrate\022_create_forums.rb</string>
<key>forum.css</key>
<string>public\stylesheets\forum.css</string>
<key>forumcss</key>
<string>public\stylesheets\forum.css</string>
<key>forums</key>
<string>public\stylesheets\forum.css</string>
<key>forumsc</key>
<string>app\controllers\forums_controller.rb</string>
<key>forumss</key>
<string>public\stylesheets\forum.css</string>
<key>fr</key>
<string>app\models\friendship.rb</string>
<key>fri</key>
<string>app\controllers\friends_controller.rb</string>
<key>frie</key>
<string>app\helpers\friends_helper.rb</string>
<key>frien</key>
<string>app\models\friendship.rb</string>
<key>friend</key>
<string>app\helpers\friends_helper.rb</string>
<key>friend.c</key>
<string>public\stylesheets\friends.css</string>
<key>friend.css</key>
<string>public\stylesheets\friends.css</string>
<key>friendc</key>
<string>public\stylesheets\friends.css</string>
<key>friends</key>
<string>app\helpers\friends_helper.rb</string>
<key>friends.</key>
<string>public\stylesheets\friends.css</string>
<key>friends.c</key>
<string>public\stylesheets\friends.css</string>
<key>friends.css</key>
<string>public\stylesheets\friends.css</string>
<key>friendsc</key>
<string>app\controllers\friends_controller.rb</string>
<key>friendsco</key>
<string>app\controllers\friends_controller.rb</string>
<key>friendscs</key>
<string>public\stylesheets\friends.css</string>
<key>friendscss</key>
<string>public\stylesheets\friends.css</string>
<key>friendsh</key>
<string>app\helpers\friends_helper.rb</string>
<key>friendshe</key>
<string>app\helpers\friends_helper.rb</string>
<key>friendship</key>
<string>db\migrate\025_create_friendships.rb</string>
<key>fun</key>
<string>app\models\functionalarea.rb</string>
<key>func</key>
<string>db\migrate\003_create_functional_areas.rb</string>
<key>funct</key>
<string>db\migrate\014_create_functional_roles.rb</string>
<key>functio</key>
<string>app\models\functional_role.rb</string>
<key>function</key>
<string>app\models\functional_area.rb</string>
<key>function_rol_</key>
<string>app\models\functional_roles_jobs.rb</string>
<key>functional</key>
<string>app\models\functional_role.rb</string>
<key>functionala</key>
<string>db\migrate\003_create_functional_areas.rb</string>
<key>general</key>
<string>app\models\general_section.rb</string>
<key>generals</key>
<string>app\models\general_section.rb</string>
<key>generalsec</key>
<string>app\models\general_section.rb</string>
<key>he</key>
<string>app\views\layouts\_head.rhtml</string>
<key>hea</key>
<string>app\views\layouts\_header.rhtml</string>
<key>head</key>
<string>vendor\plugins\asset_packager\test\assets\stylesheets\header.css</string>
<key>header</key>
<string>app\views\layouts\_employer_header.html.erb</string>
<key>header.</key>
<string>app\views\layouts\_header.rhtml</string>
<key>header.c</key>
<string>public\stylesheets\header.css</string>
<key>header.cs</key>
<string>public\stylesheets\header.css</string>
<key>header.css</key>
<string>public\stylesheets\header.css</string>
<key>header.rh</key>
<string>app\views\layouts\_header.rhtml</string>
<key>hed</key>
<string>app\views\layouts\_header.rhtml</string>
<key>help.</key>
<string>app\views\layouts\help.rhtml</string>
<key>help.c</key>
<string>public\stylesheets\help.css</string>
<key>help.cs</key>
<string>public\stylesheets\help.css</string>
<key>help.css</key>
<string>public\stylesheets\help.css</string>
<key>hom</key>
<string>app\controllers\seeker\home_controller.rb</string>
<key>home</key>
<string>app\views\employers\home.rhtml</string>
<key>home.</key>
<string>public\stylesheets\home.css</string>
<key>home.css</key>
<string>public\stylesheets\home.css</string>
<key>home.rhtml</key>
<string>app\views\employers\home.rhtml</string>
<key>homec</key>
<string>app\controllers\home_controller.rb</string>
<key>homeco</key>
<string>app\controllers\home_controller.rb</string>
<key>idex</key>
<string>app\views\seeker\home\index.rhtml</string>
<key>import</key>
<string>app\views\friends\import.rhtml</string>
<key>inde</key>
<string>app\views\seeker\home\index.rhtml</string>
<key>index</key>
<string>app\views\search\index.rhtml</string>
<key>index.r</key>
<string>app\views\seeker\home\index.rhtml</string>
<key>indus</key>
<string>app\models\industry.rb</string>
<key>indust</key>
<string>db\migrate\002_create_industries.rb</string>
<key>industry</key>
<string>app\models\industry.rb</string>
<key>info.rhtml</key>
<string>app\views\friends\info.rhtml</string>
<key>init</key>
<string>vendor\plugins\comatose\init.rb</string>
<key>interna</key>
<string>app\models\internal_email_event.rb</string>
<key>jbpre</key>
<string>app\models\job_preference.rb</string>
<key>jcompo</key>
<string>app\controllers\jcomponent_controller.rb</string>
<key>jo</key>
<string>db\migrate\020_create_jobs.rb</string>
<key>job</key>
<string>app\models\job.rb</string>
<key>job.css</key>
<string>public\stylesheets\job.css</string>
<key>job.r</key>
<string>app\models\job.rb</string>
<key>job.rb</key>
<string>app\models\job.rb</string>
<key>job_pre</key>
<string>app\models\job_preference.rb</string>
<key>joba</key>
<string>app\models\jobalert.rb</string>
<key>jobale</key>
<string>app\views\search\jobalert.rhtml</string>
<key>jobc</key>
<string>app\controllers\jobs_controller.rb</string>
<key>jobcss</key>
<string>public\stylesheets\job.css</string>
<key>joblo</key>
<string>app\models\jobs_location.rb</string>
<key>jobp</key>
<string>app\models\job_preference.rb</string>
<key>jobpre</key>
<string>app\models\job_preference.rb</string>
<key>jobprefe</key>
<string>db\migrate\017_create_job_preferences.rb</string>
<key>jobs</key>
<string>app\controllers\jobs_controller.rb</string>
<key>jobsc</key>
<string>app\controllers\employer\jobs_controller.rb</string>
<key>jobsco</key>
<string>app\controllers\jobs_controller.rb</string>
<key>jobse</key>
<string>app\models\job_seeker.rb</string>
<key>jobsee</key>
<string>app\models\job_seeker.rb</string>
<key>jobseek</key>
<string>app\models\job_seeker.rb</string>
<key>jobslo</key>
<string>app\models\jobs_locations.rb</string>
<key>jobty</key>
<string>app\models\job_type.rb</string>
<key>jobtype</key>
<string>app\models\job_type.rb</string>
<key>jon</key>
<string>vendor\rails\activerecord\test\fixtures\migrations\3_innocent_jointable.rb</string>
<key>josc</key>
<string>app\controllers\jobs_controller.rb</string>
<key>layou</key>
<string>public\stylesheets\layoutformatting.css</string>
<key>layout</key>
<string>public\stylesheets\layoutformatting.css</string>
<key>layoutf</key>
<string>public\stylesheets\layoutformatting.css</string>
<key>layoutfo</key>
<string>public\stylesheets\layoutformatting.css</string>
<key>layoutfor</key>
<string>public\stylesheets\layoutformatting.css</string>
<key>locatio</key>
<string>app\models\location.rb</string>
<key>location</key>
<string>app\models\location.rb</string>
<key>login</key>
<string>app\views\accounts\_loginform.rhtml</string>
<key>lowpro</key>
<string>public\javascripts\lowpro.js</string>
<key>mail</key>
<string>app\models\mail.rb</string>
<key>mailc</key>
<string>app\controllers\mail_controller.rb</string>
<key>maile</key>
<string>app\models\mail_event.rb</string>
<key>mails</key>
<string>app\controllers\mails_controller.rb</string>
<key>mailsc</key>
<string>app\controllers\mails_controller.rb</string>
<key>main</key>
<string>app\models\main_menu.rb</string>
<key>mainm</key>
<string>app\models\main_menu.rb</string>
<key>mainme</key>
<string>app\models\main_menu.rb</string>
<key>mainmen</key>
<string>app\views\shared\_mainmenu.rhtml</string>
<key>mainmenu.rb</key>
<string>app\models\main_menu.rb</string>
<key>masterwor</key>
<string>vendor\plugins\backgroundrb\server\master_worker.rb</string>
<key>me</key>
<string>app\controllers\messages_controller.rb</string>
<key>menu</key>
<string>app\models\main_menu.rb</string>
<key>mess</key>
<string>app\controllers\messages_controller.rb</string>
<key>messa</key>
<string>db\migrate\024_create_messages.rb</string>
<key>messag</key>
<string>app\controllers\messages_controller.rb</string>
<key>message</key>
<string>app\models\message.rb</string>
<key>message.rb</key>
<string>app\models\message.rb</string>
<key>messagec</key>
<string>app\controllers\messages_controller.rb</string>
<key>messagesc</key>
<string>app\controllers\messages_controller.rb</string>
<key>mode</key>
<string>app\models\moderator.rb</string>
<key>modera</key>
<string>app\models\moderator.rb</string>
<key>network</key>
<string>app\controllers\network_controller.rb</string>
<key>new</key>
<string>app\views\mails\new.rhtml</string>
<key>nifty</key>
<string>public\javascripts\niftycube.js</string>
<key>niftyc</key>
<string>public\stylesheets\niftycorners.css</string>
<key>niftycor</key>
<string>public\stylesheets\niftycorners.css</string>
<key>notfi</key>
<string>app\models\notification.rb</string>
<key>noti</key>
<string>public\stylesheets\notifications.css</string>
<key>notif</key>
<string>public\stylesheets\notifications.css</string>
<key>notifc</key>
<string>public\stylesheets\notifications.css</string>
<key>notifi</key>
<string>app\models\notification.rb</string>
<key>notification</key>
<string>app\models\notification.rb</string>
<key>notification.css</key>
<string>public\stylesheets\notifications.css</string>
<key>notifications.css</key>
<string>public\stylesheets\notifications.css</string>
<key>options</key>
<string>app\views\resume\options.rhtml</string>
<key>outes</key>
<string>config\routes.rb</string>
<key>packetm</key>
<string>vendor\plugins\backgroundrb\framework\packet_master.rb</string>
<key>page</key>
<string>vendor\rails\actionmailer\test\fixtures\test_mailer\custom_templating_extension.text.html.haml</string>
<key>partial</key>
<string>vendor\rails\actionpack\lib\action_view\partials.rb</string>
<key>password</key>
<string>app\controllers\passwords_controller.rb</string>
<key>passwordc</key>
<string>app\controllers\passwords_controller.rb</string>
<key>peronal</key>
<string>app\views\resume\_personal_details.rhtml</string>
<key>perso</key>
<string>vendor\rails\activeresource\test\fixtures\person.rb</string>
<key>person</key>
<string>app\models\personal_details_section.rb</string>
<key>personal</key>
<string>app\views\resume\_personal_details.rhtml</string>
<key>personald</key>
<string>app\models\personal_details_section.rb</string>
<key>personals</key>
<string>app\models\personal_details_section.rb</string>
<key>post</key>
<string>app\models\post.rb</string>
<key>post.rb</key>
<string>app\models\post.rb</string>
<key>posts</key>
<string>app\controllers\posts_controller.rb</string>
<key>postsc</key>
<string>app\controllers\posts_controller.rb</string>
<key>ppli</key>
<string>app\controllers\application.rb</string>
<key>price</key>
<string>..\mhin\app\models\price.rb</string>
<key>privacy_details</key>
<string>app\views\resume\_privacy_details.rhtml</string>
<key>production</key>
<string>config\environments\production.rb</string>
<key>profile</key>
<string>app\views\website\profile.rhtml</string>
<key>profile.</key>
<string>app\views\website\profile.rhtml</string>
<key>profile.css</key>
<string>public\stylesheets\public_profile.css</string>
<key>promo</key>
<string>app\views\website\promotion.rhtml</string>
<key>promot</key>
<string>app\views\website\promotion.rhtml</string>
<key>proto</key>
<string>public\stylesheets\prototip.css</string>
<key>protot</key>
<string>public\stylesheets\prototip.css</string>
<key>prototy</key>
<string>public\javascripts\prototype.js</string>
<key>prototype</key>
<string>public\javascripts\prototype.js</string>
<key>public</key>
<string>public\stylesheets\public_profile.css</string>
<key>q_</key>
<string>app\models\q_and_a.rb</string>
<key>q_and</key>
<string>app\views\website\_q_and_a.rhtml</string>
<key>qanda</key>
<string>app\models\q_and_a.rb</string>
<key>qua</key>
<string>app\models\qualification.rb</string>
<key>quali</key>
<string>db\migrate\004_create_qualifications.rb</string>
<key>qualifi</key>
<string>app\models\qualification.rb</string>
<key>quli</key>
<string>app\models\qualification.rb</string>
<key>r</key>
<string>config\routes.rb</string>
<key>re</key>
<string>app\models\resume.rb</string>
<key>ref</key>
<string>app\views\resume\_reference.rhtml</string>
<key>refe</key>
<string>app\views\resume\_reference.rhtml</string>
<key>refere</key>
<string>app\views\resume\_reference.rhtml</string>
<key>reference</key>
<string>app\views\resume\_reference.rhtml</string>
<key>reference.rb</key>
<string>app\models\reference.rb</string>
<key>referencese</key>
<string>app\models\reference_section.rb</string>
<key>relocati</key>
<string>app\models\relocate_option.rb</string>
<key>remove</key>
<string>app\views\resume\remove_section.rjs</string>
<key>removese</key>
<string>app\views\resume\remove_section.rjs</string>
<key>reportsc</key>
<string>..\mhin\app\controllers\reports_controller.rb</string>
<key>res</key>
<string>app\helpers\admin\resumes_helper.rb</string>
<key>resu</key>
<string>app\models\resume.rb</string>
<key>resum</key>
<string>db\migrate\016_create_resumes.rb</string>
<key>resume</key>
<string>db\migrate\016_create_resumes.rb</string>
<key>resume.</key>
<string>app\views\resume\_resume.rhtml</string>
<key>resume.cs</key>
<string>public\stylesheets\resume.css</string>
<key>resume.css</key>
<string>public\stylesheets\resume.css</string>
<key>resume.rb</key>
<string>app\models\resume.rb</string>
<key>resume.rht</key>
<string>app\views\resume\_resume.rhtml</string>
<key>resume.rhtml</key>
<string>app\views\resume\_resume.rhtml</string>
<key>resumec</key>
<string>app\controllers\resume_controller.rb</string>
<key>resumeco</key>
<string>app\controllers\jobseeker\resume_controller.rb</string>
<key>resumecon</key>
<string>app\controllers\resume_controller.rb</string>
<key>resumecss</key>
<string>public\stylesheets\resume.css</string>
<key>resumeh</key>
<string>app\helpers\resume_helper.rb</string>
<key>resumehe</key>
<string>app\helpers\resume_helper.rb</string>
<key>resumeo</key>
<string>app\controllers\resume_old_controller.rb</string>
<key>resumes</key>
<string>test\fixtures\resumes.yml</string>
<key>resumest</key>
<string>app\models\resume_style.rb</string>
<key>resumesty</key>
<string>app\views\resume\_resume_style.rhtml</string>
<key>resumet</key>
<string>app\views\resume\_resumetr.rhtml</string>
<key>resumetr</key>
<string>app\views\jobseeker\resume\_resumetr.rhtml</string>
<key>resumew</key>
<string>lib\workers\resume_worker.rb</string>
<key>reume</key>
<string>app\models\resume.rb</string>
<key>rjs</key>
<string>vendor\rails\actionpack\test\fixtures\content_type\render_default_for_rjs.rjs</string>
<key>role</key>
<string>db\migrate\008_create_roles.rb</string>
<key>role.rb</key>
<string>app\models\role.rb</string>
<key>roles</key>
<string>test\fixtures\functional_roles.yml</string>
<key>rolesc</key>
<string>app\controllers\roles_controller.rb</string>
<key>rou</key>
<string>config\routes.rb</string>
<key>roue</key>
<string>config\routes.rb</string>
<key>roues</key>
<string>config\routes.rb</string>
<key>rout</key>
<string>config\routes.rb</string>
<key>route</key>
<string>config\routes.rb</string>
<key>route.txt</key>
<string>routes.txt</string>
<key>routes</key>
<string>config\routes.rb</string>
<key>routes.</key>
<string>config\routes.rb</string>
<key>routes.r</key>
<string>config\routes.rb</string>
<key>routes.rb</key>
<string>config\routes.rb</string>
<key>routest</key>
<string>routes.txt</string>
<key>routing.</key>
<string>vendor\rails\actionpack\lib\action_controller\routing.rb</string>
<key>salaryl</key>
<string>app\models\salary_level.rb</string>
<key>save</key>
<string>app\views\resume\save_entry.rjs</string>
<key>scri</key>
<string>vendor\rails\actionpack\lib\action_view\helpers\scriptaculous_helper.rb</string>
<key>sction</key>
<string>app\views\resume\_section.rhtml</string>
<key>sear</key>
<string>app\controllers\search_controller.rb</string>
<key>search</key>
<string>app\controllers\employer\search_controller.rb</string>
<key>search.rht</key>
<string>app\views\friends\search.rhtml</string>
<key>searchc</key>
<string>app\controllers\search_controller.rb</string>
<key>searchco</key>
<string>app\controllers\search_controller.rb</string>
<key>sec</key>
<string>app\views\resume\_section.rhtml</string>
<key>section</key>
<string>app\views\resume\_section.rhtml</string>
<key>section.</key>
<string>app\views\resume\_section.rhtml</string>
<key>section.r</key>
<string>app\views\resume\_section.rhtml</string>
<key>section.rb</key>
<string>app\models\section.rb</string>
<key>section.rht</key>
<string>app\views\resume\_section.rhtml</string>
<key>section.rhtml</key>
<string>app\views\resume\_section.rhtml</string>
<key>sectionme</key>
<string>app\views\resume\_section_menu.rhtml</string>
<key>sectionty</key>
<string>app\models\section_type.rb</string>
<key>secto</key>
<string>app\views\resume\_section.rhtml</string>
<key>secton</key>
<string>app\views\resume\_section.rhtml</string>
<key>seek</key>
<string>app\controllers\seeker_controller.rb</string>
<key>seeke</key>
<string>app\controllers\seeker\seeker_controller.rb</string>
<key>seeker</key>
<string>app\models\seeker_tabnav.rb</string>
<key>seekerc</key>
<string>app\controllers\seeker_controller.rb</string>
<key>selltra</key>
<string>..\mhin\app\models\sell_transaction.rb</string>
<key>sess</key>
<string>app\controllers\sessions_controller.rb</string>
<key>session</key>
<string>app\controllers\sessions_controller.rb</string>
<key>show</key>
<string>app\views\users\show.rhtml</string>
<key>spec</key>
<string>db\migrate\005_create_specializations.rb</string>
<key>speci</key>
<string>app\models\specialization.rb</string>
<key>subme</key>
<string>app\views\shared\_submenu.rhtml</string>
<key>submen</key>
<string>app\views\shared\_submenu.rhtml</string>
<key>submenu</key>
<string>app\views\shared\_submenu.rhtml</string>
<key>super</key>
<string>app\models\super_user.rb</string>
<key>tab</key>
<string>app\views\tabnav\_seeker_tabnav.rhtml</string>
<key>tabn</key>
<string>app\views\tabnav\_seeker_tabnav.rhtml</string>
<key>tabna</key>
<string>app\models\seeker_tabnav.rb</string>
<key>tabnav</key>
<string>public\stylesheets\tabnav.css</string>
<key>tag</key>
<string>db\migrate\010_create_tags_and_taggings.rb</string>
<key>tag.rb</key>
<string>app\models\tag.rb</string>
<key>taga</key>
<string>db\migrate\010_create_tags_and_taggings.rb</string>
<key>tagg</key>