-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlite3.dump
1074 lines (944 loc) · 53.5 KB
/
sqlite3.dump
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
BEGIN TRANSACTION;
CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL);
INSERT INTO "schema_migrations" VALUES('1');
INSERT INTO "schema_migrations" VALUES('2');
INSERT INTO "schema_migrations" VALUES('3');
INSERT INTO "schema_migrations" VALUES('4');
INSERT INTO "schema_migrations" VALUES('5');
INSERT INTO "schema_migrations" VALUES('6');
INSERT INTO "schema_migrations" VALUES('7');
INSERT INTO "schema_migrations" VALUES('8');
INSERT INTO "schema_migrations" VALUES('9');
INSERT INTO "schema_migrations" VALUES('10');
INSERT INTO "schema_migrations" VALUES('11');
INSERT INTO "schema_migrations" VALUES('12');
INSERT INTO "schema_migrations" VALUES('13');
INSERT INTO "schema_migrations" VALUES('14');
INSERT INTO "schema_migrations" VALUES('15');
INSERT INTO "schema_migrations" VALUES('16');
INSERT INTO "schema_migrations" VALUES('17');
INSERT INTO "schema_migrations" VALUES('18');
INSERT INTO "schema_migrations" VALUES('19');
INSERT INTO "schema_migrations" VALUES('20');
INSERT INTO "schema_migrations" VALUES('21');
INSERT INTO "schema_migrations" VALUES('20081203140407');
INSERT INTO "schema_migrations" VALUES('20090226140109');
INSERT INTO "schema_migrations" VALUES('20090929164633');
INSERT INTO "schema_migrations" VALUES('20091003095744');
INSERT INTO "schema_migrations" VALUES('Paperclipped-1');
INSERT INTO "schema_migrations" VALUES('Paperclipped-2');
INSERT INTO "schema_migrations" VALUES('Paperclipped-3');
INSERT INTO "schema_migrations" VALUES('Paperclipped-4');
INSERT INTO "schema_migrations" VALUES('Paperclipped-5');
INSERT INTO "schema_migrations" VALUES('Settings-1');
INSERT INTO "schema_migrations" VALUES('Settings-2');
INSERT INTO "schema_migrations" VALUES('Paperclipped-6');
INSERT INTO "schema_migrations" VALUES('Paperclipped-7');
INSERT INTO "schema_migrations" VALUES('Paperclipped-20090316132151');
INSERT INTO "schema_migrations" VALUES('Subscriber Lists-1');
INSERT INTO "schema_migrations" VALUES('Newsletter-1');
INSERT INTO "schema_migrations" VALUES('Newsletter-2');
INSERT INTO "schema_migrations" VALUES('Newsletter-3');
INSERT INTO "schema_migrations" VALUES('Newsletter-4');
INSERT INTO "schema_migrations" VALUES('Newsletter-5');
INSERT INTO "schema_migrations" VALUES('Newsletter-20110306153651');
CREATE TABLE "config" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar(40) DEFAULT '' NOT NULL, "value" varchar(255) DEFAULT '', "description" text);
INSERT INTO "config" VALUES(1,'admin.title','Radiant CMS','Title text displayed at the top of all administration screens.');
INSERT INTO "config" VALUES(2,'admin.subtitle','Publishing for Small Teams','The tagline displayed underneath the main administration title');
INSERT INTO "config" VALUES(3,'defaults.page.parts','body, extended','Defines the page parts that a new page is created with. It should be a list, separated by a comma and a space. For example:
bq. @body, extended, sidebar@
');
INSERT INTO "config" VALUES(4,'defaults.page.status','draft','Defines the publishing status of new pages. This can any one of:
* draft
* published
* reviewed
* hidden
');
INSERT INTO "config" VALUES(5,'defaults.page.filter','Markdown','Sets the text filter a new page has by default. Valid options, in a vanilla Radiant install are:
* _leave blank to set no default filter_
* Markdown
* SmartyPants
* Textile
');
INSERT INTO "config" VALUES(6,'session_timeout','1209600',NULL);
INSERT INTO "config" VALUES(7,'default_locale','en',NULL);
INSERT INTO "config" VALUES(8,'roles.settings','admin','List of user roles that may see the settings tabs.');
INSERT INTO "config" VALUES(9,'assets.additional_thumbnails','normal=640x640>','Defines the default sizes for image assets that are created when an image is uploaded. Use "#" to crop the image to a specific size. "42x42#" would be a square thumbnail, cropped in the center 42 pixels by 42 pixels.');
INSERT INTO "config" VALUES(10,'assets.display_size','original','Sets which of your image sizes is shown is the edit view. Defaults to the "original" image size, but any size may be used. ');
INSERT INTO "config" VALUES(11,'assets.content_types','image/jpeg, image/pjpeg, image/gif, image/png, image/x-png, image/jpg, video/x-m4v, video/quicktime, application/x-shockwave-flash, audio/mpeg, video/mpeg','Defines the content types of that will be allowed to be uploaded as assets.');
INSERT INTO "config" VALUES(12,'assets.max_asset_size','5','The size in megabytes that will be the max size allowed to be uploaded for an asset');
INSERT INTO "config" VALUES(13,'assets.skip_filetype_validation','true',NULL);
INSERT INTO "config" VALUES(14,'mailer.post_to_page?','true',NULL);
DELETE FROM sqlite_sequence;
INSERT INTO "sqlite_sequence" VALUES('users',1);
INSERT INTO "sqlite_sequence" VALUES('config',14);
INSERT INTO "sqlite_sequence" VALUES('snippets',12);
INSERT INTO "sqlite_sequence" VALUES('pages',22);
INSERT INTO "sqlite_sequence" VALUES('layouts',4);
INSERT INTO "sqlite_sequence" VALUES('page_parts',45);
INSERT INTO "sqlite_sequence" VALUES('newsletters',12);
CREATE TABLE "page_parts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "filter_id" varchar(25), "content" text, "page_id" integer);
INSERT INTO "page_parts" VALUES(1,'body','Fckeditor','<p style="text-align: left;"><b>A Leader in Maritime Vibration Analysis Condition Monitoring<br />
Web Based Vibration Monitoring</b></p>
<ul>
<li>-1969: Founded the Corporation</li>
<li>-1978: Established initial groundwork for ABS Special Survey program</li>
<li>-1984: Developed custom analytics engine and database</li>
<li>-2006: CACVIBE.NET online reporting the method of choice.</li>
</ul>
<p style="text-align: left;"><a href="#">more</a><br />
<br />
<b>Condition Analyzing Corporation provides our clients with the following services:</b></p>
<ol>
<li>Web Based Vibration Condition Monitoring Programs</li>
<li>Vibration Analysis</li>
<li>Modal Shape and Operation Deflection Shape (ODS) Analysis</li>
<li>Thermographic (Infra Red) Survey</li>
</ol>
<ul>
<li> CAC VCM – Simple, Flexible, Effective</li>
<li> What is Vibration Condition Monitoring?</li>
<li> Why utilize Vibration Condition Monitoring?</li>
<li> Vibration Condition Monitoring vs. Regulatory Open & Inspect</li>
<li> CA460 device… No Wires!</li>
</ul>
<p style="text-align: left;">Inclusive of the above services we also cover a worldwide presence along with a top flight staff of engineers and technicians to serve your purpose. Over the years we have developed wonderful online access to quickly allow you the customer to access critical information. This speeding up workflow and deliver the reports anywhere instantaneously via the internet using a standard web browser.</p>
<p style="text-align: left;"> </p>',1);
INSERT INTO "page_parts" VALUES(2,'body','Textile','The file you were looking for could not be found.
Attempted URL: @<r:attempted_url />@
It is possible that you typed the URL incorrectly or that you clicked on a bad link.
"<< Back to Home Page":/
',2);
INSERT INTO "page_parts" VALUES(4,'body','','<r:children:each limit="5" order="desc">
<div class="entry">
<h3><r:link /></h3>
<div class="posted">
Posted by <r:author /> on <r:date format="%B %d, %Y" /><em>|</em><img src="http://spurrd.com/assets/123/comment.png" /><a href="<r:url />#disqus_thread">Comments</a><em>|</em><r:link>Read full article</r:link>
</div>
<r:content part="summary" />
</div>
</r:children:each>
<r:snippet name="comments_summary" />',4);
INSERT INTO "page_parts" VALUES(5,'body','Textile','<h3><r:title /></h3>
<r:snippet name="posted" />
At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus.
Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
<r:snippet name="comments" />
',5);
INSERT INTO "page_parts" VALUES(7,'body','','/*--------------------------------- Styles.css ---*/
body {
background-color: #adcfe2 !important;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 80%;
padding: 0;
margin: 0;
text-align: center; }
#page {
background: url("/images/main-repeating-bg.jpg") repeat-y scroll 0 0 transparent;
clear: both;
padding: 5px;
text-align: left;
width: 1023px; }
#header {
color: #FFFFFF;
font-family: Arial,Helvetica,Geneva,sans-serif;
font-size: 35px;
font-weight: bold;
letter-spacing: 0.02em;
line-height: 0.72em;
text-transform: uppercase;
height: 38px;
}
#header ul li {
float: right;
margin-right: 15px;
}
#header ul li a {
font-size: 14px;
font-weight: bold;
color: #666666;
}
#header a.cac-decision-link {
-moz-border-radius: 4px 4px 4px 4px;
background: none repeat scroll 0 0 #6189B0;
color: white;
display: block;
height: 10px;
padding: 0 4px 15px;
}
#main {
background-color: white;
float: left;
margin: 13px 0 30px 19px;
width: 980px; }
h1 {
color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 35px;
font-weight: bold;
letter-spacing: 0.02em;
line-height: 0.72em;
text-transform: uppercase; }
h2 {
color: #451811;
font-family: Georgia, sans-serif;
font-size: 270%;
font-weight: normal;
margin: 0px; }
h3 {
font-family: Helvetica, Arial, Verdana, sans-serif;
font-size: 195%;
margin: 0px;
font-weight: bold; }
h3 a {
color: #451811;
text-decoration: none;
border-bottom: none;
margin: 0px; }
h3 a:hover {
color: #902f1c;
border-bottom: none; }
a {
color: #711e11;
text-decoration: none;
border-bottom: 1px solid #DBD6D1; }
a:hover {
color: #451811;
text-decoration: none;
}
p {
color: #232323;
font-family: Georgia, Times, "Times New Roman";
font-size: 1.3em;
line-height: 1.3em;
margin: 0px 0px 10px;
font-size: 14px; }
ul {
padding: 0; }
li {
padding: 0; }
/*---MAIN COLUMN---*/
#content-wrapper {
float: left;
padding-left: 25px;
width: 610px;
background: url(''/images/measurement_bg.jpg'') no-repeat top center;
}
#content {
padding: 0px 3px; }
/*---SIDEBAR---*/
#sidebar-wrapper {
float: left;
width: 300px; }
#sidebar {
padding: 15px;
padding-top: 0px; }
#sidebar h3 {
color: #222222;
font-family: Helvetica, Arial, Verdana, sans-serif;
font-size: 17px;
font-weight: bold;
margin: 0px; }
#sidebar p {
line-height: 1.4em; }
/*---ARTICLE---*/
.entry {
margin-bottom: 20px; }
.entry .info {
margin-top: 1em;
font-size: 1em; }
.entry p {
font-size: 1.1em; }
.posted {
color: #918C7E;
font-family: "lucida grande",arial,helvetica,verdana,sans-serif;
font-size: 10px;
margin: -3px 0 5px;
padding: 0px; }
.posted em {
color: #451811;
font-style: italic;
margin: 0px 6px;
font-weight: bold; }
.posted img {
background: transparent none repeat scroll 0 0;
border: medium none;
margin: 0 4px -5px 2px;
text-decoration: none; }
/*---STYLES---*/
#extra {
margin-bottom: 10px; }
#extra .box {
background-color: #e8f0f6;
border-color: #D5E9F6; }
#extra p {
line-height: 1.2em;
margin: 0px 0px 5px 0px; }
#extra em {
font-style: italic; }
#extra span {
color: #d26511;
font-size: 120%; }
#player, #gallery {
background: #FFFFFF;
float: left;
clear: both;
margin: 0px 15px 15px 0px;
padding: 3px;
border: 1px solid #a9cde5; }
#gallery a,
#gallery a:hover,
#player a,
#player a:hover,
#extra img a,
#extra img a:hover {
border-bottom: none !important;
text-decoration: none !important; }
#extra a img {
margin-bottom: -3px; }
.spot {
margin-bottom: 20px;
clear: both; }
.spot p {
font-family: Verdana, sans-serif;
font-size: 11px;
color: #333333;
margin-top: 0px; }
.spot img {
float: left;
padding: 0px 12px 10px 0px; }
.box {
padding: 15px;
border: 1px solid #dbd6d1;
background-color: #efedeb;
margin-bottom: 20px; }
.box h3 {
font-size: 18px;
margin-bottom: 2px; }
.box input {
margin-top: 5px; }
.box input.email {
font-size: 10px;
padding: 3px;
color: #a29e96;
width: 140px; }
.box input.subscribe {
width: 70px;
margin-left: 5px;
color: #232323; }
.box ul {
margin-left: 20px; }
.hidden {
display: none; }
.clear {
clear: both; }
/*---SITEMAP---*/
#sitemap ul {
list-style-type: disc;
margin: 5px 0px 10px 35px;
line-height: 2em; }
#sitemap li a {
font-family: Helvetica, Arial, Verdana, sans-serif;
font-size: 180%;
font-weight: bold;
margin: 0px;
color: #451811;
text-decoration: none;
border-bottom: none; }
#sitemap li a:hover {
color: #902f1c;
border-bottom: none; }
#sitemap ul.second {
font-size: 80%; }
/*---FOOTER---*/
#footer-wrapper {
background: url("/images/footer-bg.jpg") repeat-x scroll 0 0 transparent;
border-bottom: 5px solid white;
height: 36px;
margin-left: 3px;
text-align: center;
width: 1020px;
}
#footer-bottom {
background: url(''images/footer-bottom.jpg'') no-repeat;
height: 28px;
width: 1034px;
}
#footer {
color: #595452;
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
font-size: 90%;
margin-bottom: 30px;
padding-top: 5px; }
#greenline {
background: url("/images/page-top.jpg") repeat-x scroll 0 0 transparent;
display: block;
height: 10px;
margin-left: 3px;
width: 1021px;
}
/*--------------------------------- Navigation.css ---*/
#nav {
background: url("images/header-bg.jpg") repeat-x scroll 0 0 transparent;
height: 88px;
margin-left: 3px;
padding-left: 20px;
}
#nav ul {
display: block;
margin: 0;
padding: 0;
list-style-type: none;
width: auto; }
#nav ul li {
display: block;
float: left;
margin: 0;
padding: 0; }
#nav ul li a {
color: #666666;
display: block;
float: left;
font-family: "Lucida Sans","Lucida Grande",Helvetica,Arial,sans-serif;
font-size: 16px;
height: 43px;
margin-top: 4px;
padding: 30px 16px 7px;
text-decoration: none;
border-left: 1px solid #ffffff;
border-right: 1px solid #ffffff;
}
#nav ul li a:hover {
background: none repeat scroll 0 0 #6189B0;
border-left: 1px solid #5A7289;
border-right: 1px solid #5A7289;
color: #FFFFFF;
height: 43px;
}
#nav ul li.selected a {
background: none repeat scroll 0 0 #6189B0;
border-left: 1px solid #5A7289;
border-right: 1px solid #5A7289;
color: #FFFFFF;
height: 43px;
}
.submit-btn {
background: url("images/submit-btn.jpg") no-repeat scroll 0 0 transparent;
border: 0 none;
color: white;
height: 23px;
margin-left: 80px;
margin-top: 5px;
width: 118px;
}
/*--------------------------------- Lightbox.css ---*/
#lightbox{ position: absolute; left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }
#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }
#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; border-bottom: none; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none; border-bottom: none;}
#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(http://spurrd.com/assets/192/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(http://www.spurrd.com/assets/189/nextlabel.gif) right 15% no-repeat; }
#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100% ; }
#imageData{ padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }
#imageData #caption{ font-weight: bold; }
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; }
#imageData #bottomNavClose{ width: 66px; float: right; padding-bottom: 0.7em; outline: none;}
#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
#slideshow_container{
width: 942px;
height: 300px;
overflow: hidden;
position: relative;
}
.easy_slides_caption{
background-color: transparent;
background-image: url("/images/trans-bg.png");
bottom: 15px;
color: white;
font-family: Helvetica,Arial;
font-size: 16px;
height: 20px;
padding: 35px;
width: 871px;
display: none;
position: absolute;
z-index: 3;
}',7);
INSERT INTO "page_parts" VALUES(8,'sidebar','Markdown','<r:snippet name="newsletter" />
-----
Welcome
---------
Condition Analyzing Corporation (CAC) is a service company established in 1969 to provide Condition Monitoring Programs including Vibration Analysis and Thermographic Inspections.
Our clients are major United States shipping companies and the International Maritime community.
Our services also extend to U.S. Government Agencies, Military and land-based industrial facilities.
What has made us a pioneer in the early days of modern industrial condition monitoring makes us the industry leader today.
[read more](#)
',1);
INSERT INTO "page_parts" VALUES(9,'body','Textile','<h3><r:title /></h3>
<r:snippet name="posted" />
Vivamus mollis porttitor odio. Vestibulum id mi. Suspendisse a tortor quis metus imperdiet eleifend. Pellentesque libero nulla, aliquam in, tristique vel, elementum et, odio. Fusce id ligula. Vivamus dapibus imperdiet ante. Aliquam id eros ut velit eleifend aliquet. Nulla commodo viverra orci. Sed auctor. Maecenas commodo. Mauris adipiscing lectus quis quam. Nulla a nisl in augue suscipit tincidunt. Nunc eros. Nam eget sapien eget lorem ultrices pulvinar. Vivamus dolor.
Suspendisse auctor risus nec odio. Sed tortor sem, tempor eu, molestie ac, viverra et, arcu. Donec aliquet pede eget tellus. Pellentesque facilisis nibh in ante. Mauris et lectus. Nullam pede. Nam sed pede sollicitudin mi congue vestibulum. Suspendisse et diam sed odio venenatis dictum.
Integer eget nunc sit amet felis interdum sollicitudin. Mauris posuere, quam eu aliquam iaculis, ipsum magna pellentesque arcu, id rutrum augue erat luctus magna.
Praesent ut lacus. Fusce interdum metus laoreet mi. Duis aliquet. Nunc malesuada leo id nulla. Praesent condimentum metus nec odio. Ut ut velit dapibus nibh interdum eleifend. Proin tempor sodales enim. Donec ultricies. Duis bibendum urna id ante. Donec ipsum lorem, venenatis et, tempus ut, vehicula et, mi.
<r:snippet name="comments" />',8);
INSERT INTO "page_parts" VALUES(10,'body','Textile','h2. Since 1999...
Duis vitae mi. Nunc tristique mauris malesuada odio. Integer pharetra, urna sit amet scelerisque sollicitudin, felis est rhoncus nibh, sed sollicitudin ipsum lacus quis metus. In hac habitasse platea dictumst. Sed quis sem eu libero tristique vehicula. In fermentum, pede ut congue placerat, arcu erat tempor augue, id ornare ipsum ante vitae tellus. Duis bibendum quam vitae lectus. Curabitur euismod nulla a risus. Suspendisse erat. Nulla facilisi. Integer odio felis, sollicitudin in, feugiat non, dictum sit amet, elit. ',9);
INSERT INTO "page_parts" VALUES(11,'sidebar','','<div class="box" style="margin-top:50px">
<h3>Main office</h3>
222 Address Street<br />
Portland, OR 97008<br />
(503) 545-7777
</div>
',9);
INSERT INTO "page_parts" VALUES(12,'sidebar','','<div class="box">
<h3>News Archives</h3>
<ul>
<r:find url="/news/">
<r:children:each order="desc">
<r:header><li><a href="<r:date format="/news/%Y/%m/" />"><r:date format="%B %Y" /></a></li></r:header>
</r:children:each>
</r:find>
</ul>
</div>
<r:snippet name="newsletter" />
',4);
INSERT INTO "page_parts" VALUES(13,'body','','<r:archive:children:each order="desc">
<div class="entry">
<h3><r:link /></h3>
<div class="posted">
Posted by <r:author /> on <r:date format="%B %d, %Y" /><em>|</em><img src="http://spurrd.com/assets/123/comment.png" /><a href="<r:url />#disqus_thread">Comments</a><em>|</em><r:link>Read full article</r:link>
</div>
<r:content part="summary" />
</div>
</r:archive:children:each>
<r:snippet name="comments_summary" />',10);
INSERT INTO "page_parts" VALUES(14,'summary','Textile','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus.',5);
INSERT INTO "page_parts" VALUES(16,'summary','Textile','Vivamus mollis porttitor odio. Vestibulum id mi. Suspendisse a tortor quis metus imperdiet eleifend. Pellentesque libero nulla, aliquam in, tristique vel, elementum et, odio. Fusce id ligula. Vivamus dapibus imperdiet ante. Aliquam id eros ut velit eleifend aliquet. Nulla commodo viverra orci. Sed auctor. Maecenas commodo. Mauris adipiscing lectus quis quam. Nulla a nisl in augue suscipit tincidunt. Nunc eros. Nam eget sapien eget lorem ultrices pulvinar. Vivamus dolor.',8);
INSERT INTO "page_parts" VALUES(17,'body','','<h2>Site Map</h2>
<div id="sitemap">
<ul>
<r:find url="/">
<r:snippet name="sitemap" />
</r:find>
</ul>
</div>
',11);
INSERT INTO "page_parts" VALUES(18,'extended','','',11);
INSERT INTO "page_parts" VALUES(19,'no-map','','',7);
INSERT INTO "page_parts" VALUES(20,'no-map','','',11);
INSERT INTO "page_parts" VALUES(32,'body','Fckeditor','<h3 style="text-align: center;">A Leader in Maritime Vibration Analysis Condition Monitoring<br />
Web Based Vibration Monitoring</h3>
<p style="text-align: center;"><b>Condition Analyzing Corporation <br />
provides our clients with the following services:</b></p>
<p>Condition Monitoring (CM) is a collection of non-invasive data gathering and analysis techniques that greatly reduce the likelihood of unplanned equipment failures while also reducing the need for expensive planned maintenance (PM) programs...</p>
<p><a href="#">more</a><br />
<br />
Vibration Analysis is an economical and effective means of reducing maintenance procedures. Causes of machinery failure exhibit unique characteristics and, as internal material conditions deteriorate, the characteristics become more pronounced...</p>
<p><a href="#">more</a></p>
<p><br />
Thermography (Infra Red) Survey serves as a non-destructive tool in the analysis and evaluation of electrical distribution equipment critical to the operation of the plant. Thermographic surveys are also useful in the detection of boiler lagging deficiencies, faulty bearings, steam trap effectiveness and motor insulation. Thermography is a widely used tool in all facets of industry to measure anywhere a fault can be predicted by a temperature differential</p>
<p><a href="#">more</a></p>
<p><br />
Both Mode Shape and Operation Deflection Shape (ODS) display the vibration on a drawing or picture of a machine. Mode shape (based on the inherent resonance of a structure) can be determined if a hammer or bump test can produce those frequencies on the machine when not in use. ODS (based on the source frequencies and the resonance frequencies) can be determined from roving and reference measurements on the machine while in actual use</p>
<p><a href="#">more</a></p>',16);
INSERT INTO "page_parts" VALUES(33,'sidebar','Fckeditor','<h2>The Benefits of Our Services</h2>
<p><b>Non-Opening of Machinery:</b><br />
Our vibration services meet Class approved Condition Monitoring (CM) to secure credits for non-opening of machinery. The cost of the "open and inspect" requirement is virtually eliminated resulting in cost saving with an estimated ROI of 10 to 1.<br />
<b><br />
Class Approved PM Program:</b><br />
CAC can provide an annual vibration analysis survey where required for an approved Planned Maintenance program.<br />
<b><br />
Annual Audit:</b><br />
An annual audit gives the Port Engineer a virtual view of overall machine condition to aid in the planning of the annual maintenance budget</p>',16);
INSERT INTO "page_parts" VALUES(34,'body','Fckeditor','<h3 style="text-align: center;"><span>A Leader in Maritime Vibration Analysis Condition Monitoring</span></h3>
<p align="justify"><br />
Interested in a career at CAC? We are always on the lookout for motivated top quality people to provide services to our first class clients. </p>
<p align="justify">Although CAC is headquartered in Eatontown NJ our decentralized business model means we employ qualified personnel that work from their home location in most any coastal region of US and beyond.</p>
<p>Current job openings May 2008. <br />
<br />
<a target="_blank" href="http://cacvibe.com/CAC%20-%20National%20Account%20Manager%20-%20Maritime.pdf"> National Account Manager</a><br />
<br />
<a target="_blank" href="http://cacvibe.com/field_surveyor_engineer_I.pdf">Field Surveyor/Engineer Level I</a><br />
<br />
<a target="_blank" href="http://cacvibe.com/CAC%20-%20Service%20Technician%20-%20Maritime.pdf"> Survey Technician</a></p>
<p align="justify">If you have experience in Vibration Analysis, Thermography or have Marine Experience or are Ex-Navy and are a motivated individual possessing exceptional skills in computers, mathematics, mechanics, technical writing and like to travel or have a degree or post graduate degree in engineering or related discipline, please contact us at:</p>
<p align="justify"> </p>
<p><a href="mailto:[email protected]">[email protected]</a></p>',17);
INSERT INTO "page_parts" VALUES(35,'extended','Markdown','',17);
INSERT INTO "page_parts" VALUES(36,'body','Fckeditor','<h1 style="text-align: center;">Title Text</h1>
<p>"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia vol<i>uptas sit asper</i>natur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum <b>iure reprehenderit</b> qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"</p>',18);
INSERT INTO "page_parts" VALUES(38,'summary','Fckeditor','<p>Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</p>',18);
INSERT INTO "page_parts" VALUES(39,'body','','<div class="grid_11" style="margin-left: 250px; float: left;">
<center>
<h3>Contact Information</h3>
Telephone: +1 732-542-5588
<br />
Fax: 732-542-2967
<br />
23 White Street
<br />
Eatontown, New Jersey, 07724 USA
</center>
<br />
<br />
<r:mailer:form name=''contact''>
<fieldset>
<div class="grid_2" style="text-align:right;">
<label>Name</label><br>
<label>Email</label><br>
<label>Message</label><br>
</div>
<div class="grid_8">
<r:text name=''name''/><br>
<r:if_error on=''name''><p class="error">Name is required</p></r:if_error>
<r:text name=''email''/><br>
<r:if_error on=''email''><p class="error">Email is required</p></r:if_error>
<r:textarea name=''message''/><br>
<input type="submit" value="Send" class="submit-btn" style="margin-left: 175px !important;">
</div>
</fieldset>
</r:mailer:form>
</div>
</center>',19);
INSERT INTO "page_parts" VALUES(40,'mailer','','subject: "A New message from www.cacvibe.com"
redirect_to: /contact/thanks
from_field: email
recipients:
- [email protected]',19);
INSERT INTO "page_parts" VALUES(41,'body','Fckeditor','<h2 style="text-align: center;"> </h2>
<p> </p>
<h2 style="text-align: center;"> </h2>
<h2 style="text-align: center;"> </h2>
<p><span style="font-size: large;">
<h2 style="text-align: center;"><b>Thanks for contacting us.</b></h2>
</span></p>
<h2 style="text-align: center;"><span style="font-size: large;"><b>We will get back in touch with you shortly.</b></span></h2>
<h2 style="text-align: center;"> </h2>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>',20);
INSERT INTO "page_parts" VALUES(42,'extended','Markdown','',20);
INSERT INTO "page_parts" VALUES(43,'body','Fckeditor','<div align="left"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#000000"><img width="200" height="60" alt="" src="/uploads/Image/links.1.jpg" />Vibration School</font></strong><font color="#000000"> - Web Based Vibration Analysis Distance Learning</font></font></div>
<p><img width="148" height="37" alt="" src="/uploads/Image/link2.gif" /> <span class="style5"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>Mobius</strong> is the home of the world-renowned "iLearn" self-paced training, and the home of Mobius Institute vibration training and certification.</font></span></p>
<p><img width="78" height="48" alt="" src="/uploads/Image/link3.gif" /><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><span class="style5"><strong> ShipServ</strong> is the leading maritime e-marketplace, helping buyers and sellers to easily find each other, connect cost effectively and trade efficiently.</span></font> </p>
<p><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><span class="style5"><img width="148" height="53" alt="" src="/uploads/Image/link4.jpg" /> </span></font><span><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>Connection Technology Center, Inc </strong></font></span></p>
<p><img width="100" height="48" alt="" src="/uploads/Image/link6.jpg" /> <font size="2" face="Verdana, Arial, Helvetica, sans-serif"><span class="style5"><strong>FLIR Infrared Camera Systems</strong> - FLIR Systems, Inc. (NASDAQ: FLIR) is the global leader in infrared cameras, training, software and related accessories. The unique nature of thermal imaging or infrared technology is ideal for a wide variety of applications across virtually all industries.</span></font></p>
<p> </p>
<div align="center" class="style11"><span style="font-size: large;"><b>Condition Analyzing Corporation Links </b></span></div>
<div align="center" class="style11"> </div>
<div align="center" class="style11"> </div>
<p><a href="http://www.ship-technology.com/contractors/controls/cac/" target="_blank">http://www.ship-technology.com/contractors/controls/cac/</a></p>
<p><a href="http://www.linkedin.com/companies/condition-analyzing-corporation" target="_blank">http://www.linkedin.com/companies/condition-analyzing-corporation</a></p>
<p><a href="http://www.marketwire.com/press-release/Condition-Analyzing-Corporation-1028469.html" target="_blank">http://www.marketwire.com/press-release/Condition-Analyzing-Corporation-1028469.html</a></p>
<p><a href="http://www.reuters.com/article/pressRelease/idUS128780+10-Jun-2009+MW20090610" target="_blank">http://www.reuters.com/article/pressRelease/idUS128780+10-Jun-2009+MW20090610</a></p>
<p><a href="http://www.lead411.com/company_ConditionAnalyzingCorporationCAC_McNeil_54995.html" target="_blank">http://www.lead411.com/company_ConditionAnalyzingCorporationCAC_McNeil_54995.html</a></p>
<p><a href="http://www.reliabilityweb.com/index.php/maintenance_news/condition_analyzing_corporation_opens_new_company_in_singapore/" target="_blank">http://www.reliabilityweb.com/index.php/maintenance_news/condition_analyzing_corporation_opens_new_company_in_singapore/</a></p>
<p><a href="http://shipping.masterseek.com/id/30093277/Condition-Analyzing-Corp.htm" target="_blank">http://shipping.masterseek.com/id/30093277/Condition-Analyzing-Corp.htm</a></p>
<p> </p>
<p> </p>
<p> </p>',21);
INSERT INTO "page_parts" VALUES(44,'extended','Markdown','',21);
INSERT INTO "page_parts" VALUES(45,'body','Markdown','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.',22);
CREATE TABLE "extension_meta" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "schema_version" integer DEFAULT 0, "enabled" boolean DEFAULT 't');
CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255), "data" text, "updated_at" datetime);
CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "slug" varchar(100), "breadcrumb" varchar(160), "class_name" varchar(25), "status_id" integer DEFAULT 1 NOT NULL, "parent_id" integer, "layout_id" integer, "created_at" datetime, "updated_at" datetime, "published_at" datetime, "created_by_id" integer, "updated_by_id" integer, "virtual" boolean DEFAULT 'f' NOT NULL, "lock_version" integer DEFAULT 0, "description" varchar(255), "keywords" varchar(255), "sent_as_newsletter_email_at" datetime);
INSERT INTO "pages" VALUES(1,'Conditional Analytics Corporation - Home Page','/','Home','',100,NULL,1,'2008-12-24 01:08:45','2011-03-02 18:21:46','2008-12-23 00:00:00',1,1,'f',79,'','',NULL);
INSERT INTO "pages" VALUES(2,'File Not Found','file-not-found','File Not Found','FileNotFoundPage',100,1,NULL,'2008-12-24 01:08:45','2008-12-24 01:08:45','2008-12-23 18:08:45',1,NULL,'t',0,NULL,NULL,NULL);
INSERT INTO "pages" VALUES(4,'Articles','news','News','ArchivePage',100,1,NULL,'2008-12-24 01:08:45','2011-03-07 15:00:47','2008-12-23 00:00:00',1,1,'f',19,'','',NULL);
INSERT INTO "pages" VALUES(5,'New location opening tonight','new-location-opening-tonight','New location opening tonight','Page',100,4,NULL,'2008-12-24 01:08:45','2009-01-02 09:27:43','2006-06-09 00:00:00',1,NULL,'f',16,'','',NULL);
INSERT INTO "pages" VALUES(7,'Styles','styles.css','Styles','',100,1,2,'2008-12-24 01:08:45','2011-03-02 18:31:40','2008-12-23 00:00:00',1,1,'f',6,'','',NULL);
INSERT INTO "pages" VALUES(8,'The Finest grind','the-finest-grind','The Finest grind','Page',100,4,NULL,'2008-12-24 01:08:45','2009-01-02 09:27:11','2008-12-23 18:08:45',1,NULL,'f',11,'','',NULL);
INSERT INTO "pages" VALUES(9,'About','about','About','Page',100,1,NULL,'2008-12-24 01:08:45','2009-01-02 09:22:02','2008-12-23 18:08:45',1,NULL,'f',9,'','',NULL);
INSERT INTO "pages" VALUES(10,'%B %Y Archives','monthly-archives','Monthly Archives','ArchiveMonthIndexPage',100,4,NULL,'2008-12-24 01:08:45','2009-01-02 07:29:46','2008-12-23 18:08:45',1,NULL,'t',9,'','',NULL);
INSERT INTO "pages" VALUES(11,'Site Map','sitemap','Site Map','Page',100,1,NULL,'2009-01-01 23:49:07','2009-01-02 01:31:41','2009-01-01 16:49:07',1,NULL,'f',11,'','',NULL);
INSERT INTO "pages" VALUES(16,'Services','services','Services','',100,1,NULL,'2011-03-07 14:17:10','2011-03-07 14:17:53','2011-03-07 00:00:00',1,1,'f',1,'','',NULL);
INSERT INTO "pages" VALUES(17,'Careers','careers','Careers','',100,1,4,'2011-03-07 14:48:02','2011-03-07 14:51:10','2011-03-07 00:00:00',1,1,'f',1,'','',NULL);
INSERT INTO "pages" VALUES(18,'New CAC Website Going Up!','new-cac-website-going-up','New CAC Website Going Up!','',100,4,1,'2011-03-07 15:13:45','2011-03-07 15:27:27','2011-03-07 00:00:00',1,1,'f',4,'','',NULL);
INSERT INTO "pages" VALUES(19,'Contact','contact','Contact','',100,1,4,'2011-03-07 15:42:35','2011-03-07 15:43:31','2011-03-07 00:00:00',1,1,'f',2,'','',NULL);
INSERT INTO "pages" VALUES(20,'Thanks','thanks','Thanks','',100,19,1,'2011-03-07 15:57:46','2011-03-07 16:14:23','2011-03-07 00:00:00',1,1,'f',1,'','',NULL);
INSERT INTO "pages" VALUES(21,'Links','links','Links','',100,1,4,'2011-03-07 17:41:17','2011-03-07 17:41:55','2011-03-07 00:00:00',1,1,'f',1,'','',NULL);
INSERT INTO "pages" VALUES(22,'CAC Decision Point','cac-decision-point','CAC Decision Point','',100,1,NULL,'2011-03-07 17:49:15','2011-03-07 17:49:23','2011-03-07 00:00:00',1,1,'f',1,'','',NULL);
CREATE TABLE "snippets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) DEFAULT '' NOT NULL, "filter_id" varchar(25), "content" text, "created_at" datetime, "updated_at" datetime, "created_by_id" integer, "updated_by_id" integer, "lock_version" integer DEFAULT 0);
INSERT INTO "snippets" VALUES(1,'header','','<div id="greenline"></div>
<div id="header">
<ul style="padding-top: 5px;">
<li>
<a class="cac-decision-link" href="/cac-decision-point">DECISION POINT F.A.Q.</a>
</li>
<li>
<a href="http://pmcm.net/login.php">CLIENT LOGIN</a>
</li>
</ul>
</div>
','2008-12-24 01:08:44','2011-03-07 17:49:57',1,1,20);
INSERT INTO "snippets" VALUES(2,'footer','','Copyright 2011 Condition Analyzing Corporation. All rights reserved','2008-12-24 01:08:44','2011-03-06 16:11:12',1,1,6);
INSERT INTO "snippets" VALUES(3,'navigation','','<a href="/" style="border: 0;"><img src="/images/cac-logo.jpg" style="margin-top: 17px; float: left; margin-right: 15px;" /></a>
<ul>
<r:navigation urls="HOME: /">
<r:normal><li><a href="<r:url />"><r:title /></a></li></r:normal>
<r:here><li class="selected"><a href="<r:url />"><r:title /></a></li></r:here>
<r:selected><li><a href="<r:url />"><r:title /></a></li></r:selected>
</r:navigation>
<r:navigation urls="SERVICES: /services | CAREERS: /careers | NEWS: /news | CONTACT: /contact | LINKS: /links" >
<r:normal><li><a href="<r:url />"><r:title /></a></li></r:normal>
<r:here><li class="selected"><a href="<r:url />"><r:title /></a></li></r:here>
<r:selected><li class="selected"><a href="<r:url />"><r:title /></a></li></r:selected>
</r:navigation>
</ul> ','2008-12-30 21:38:09','2011-03-07 15:29:39',1,1,22);
INSERT INTO "snippets" VALUES(4,'newsletter','','<h5>Sign up for our newsletter</h5>
<r:newsletter:form>
<input class="email" value="Enter your email address..." type="text" onfocus="this.value=''''" name="subscriber[email]" style="font-size: 14px;" />
<input class="subscribe" type="submit" value="Subscribe" class="submit-btn" />
</r:newsletter:form>','2008-12-31 01:08:12','2011-03-07 15:02:51',1,1,21);
INSERT INTO "snippets" VALUES(6,'articles','','<r:find url="/news">
<r:children:each order="desc" limit="3">
<div class="entry">
<h3><r:link /></h3>
<div class="posted">
Posted by <r:author /> on <r:date format="%B %d, %Y" /><em>|</em><img src="http://spurrd.com/assets/123/comment.png" /><a href="<r:url />#disqus_thread">Comments</a><em>|</em><r:link>Read full article</r:link>
</div>
<r:content part="summary" />
</div>
</r:children:each>
</r:find>
<r:snippet name="comments_summary" />','2009-01-01 22:40:23','2009-01-02 07:19:28',1,NULL,19);
INSERT INTO "snippets" VALUES(7,'sitemap','',' <r:children:each by="title" order="asc">
<r:unless_content part="no-map">
<li>
<r:link />
<r:if_children>
<ul class="second">
<r:snippet name="sitemap" />
</ul>
</r:if_children>
</li>
</r:unless_content>
</r:children:each>
','2009-01-01 23:51:52','2009-01-02 00:45:01',1,NULL,14);
INSERT INTO "snippets" VALUES(8,'comments','','<img src="http://spurrd.com/assets/126/comments.jpg" />
<div id="disqus_thread"></div><r:comment><script type="text/javascript" src="http://disqus.com/forums/radiant/embed.js"></script><noscript><a href="http://radiant.disqus.com/?url=ref">View the discussion thread.</a></noscript></r:comment><a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>','2009-01-02 02:17:21','2009-01-02 07:20:55',1,NULL,3);
INSERT INTO "snippets" VALUES(9,'comments_summary','','<script type="text/javascript">
//<![CDATA[
(function() {
var links = document.getElementsByTagName(''a'');
var query = ''?'';
for(var i = 0; i < links.length; i++) {
if(links[i].href.indexOf(''#disqus_thread'') >= 0) {
query += ''url'' + i + ''='' + encodeURIComponent(links[i].href) + ''&'';
}
}
document.write(''<script type="text/javascript" src="http://disqus.com/forums/radiant/get_num_replies.js'' + query + ''"></'' + ''script>'');
})();
//]]>
</script>
','2009-01-02 02:18:23','2009-01-02 02:59:44',1,NULL,4);
INSERT INTO "snippets" VALUES(10,'posted','','<div class="posted">Posted by <r:author /> on <r:date format="%B %d, %Y" /><em>|</em><img src="http://spurrd.com/assets/123/comment.png" /><a href="<r:url />#disqus_thread">Comments</a></div>','2009-01-02 07:32:00','2009-01-02 07:32:00',1,NULL,0);
INSERT INTO "snippets" VALUES(11,'slider','','<div class="slider">
<div id="slideshow_container" class="easy_slides_container"></div>
</div>','2011-03-07 18:00:23','2011-03-07 21:11:48',1,1,3);
INSERT INTO "snippets" VALUES(12,'slider-settings','','<script>
// Set up our options for the slideshow...
var myOptions = {
noImages: 6, // Number of images
path: "/images/slideshow_images/",
captions: { // HTML can be included in the captions.
1: ''Caption 1'',
2: ''Caption 2'',
3: ''Caption 3'',
4: ''Caption 4'',
5: ''Caption 5'',
6: ''Caption 6''
},
links: { // Should the images link anywhere? if no links are required at all then this option can be omitted.
1:"",
2:"",
3:"",
4:"",
5:"",
6:""
},
linksOpen:''newWindow'', // How to open links? sameWindow or newWindow.
timerInterval: 5000, // 6500 = 6.5 seconds
randomise: false // Start with random image? true=yes/false=no
};
// Initiate the Easy Slides plugin, assigning it to your container DIV...
$(''#slideshow_container'').easySlides(myOptions);
</script>','2011-03-07 20:59:05','2011-03-07 21:36:04',1,1,3);
CREATE TABLE "layouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "content" text, "created_at" datetime, "updated_at" datetime, "created_by_id" integer, "updated_by_id" integer, "content_type" varchar(40), "lock_version" integer DEFAULT 0);
INSERT INTO "layouts" VALUES(1,'Normal','<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title><r:title /></title>
<link href="/rss/" rel="alternate" title="RSS" type="application/rss+xml" />
<link rel="stylesheet" type="text/css" href="/styles.css" />
<link rel="stylesheet" type="text/css" href="/stylesheets/960.css" />
<link rel="stylesheet" type="text/css" href="/stylesheets/reset.css" />
<link rel="stylesheet" type="text/css" href="/stylesheets/text.css" />
<link REL="SHORTCUT ICON" HREF="/images/favicon.png">
<script src="/javascripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script src="/javascripts/jquery.easyslides.source.v1.1.js" type="text/javascript"></script>
<r:snippet name="slider-settings" />
<!--[if IE 6]>
<style type="text/css" media="screen">
@import url("/stylesheets/ie6.css");
</style>
<![endif]-->
<!--[if IE 7]>
<style type="text/css" media="screen">
@import url("/stylesheets/ie7.css");
</style>
<![endif]-->
</head>
<body>
<div class="container_24">
<div id="page">
<r:snippet name="header" />
<div class="clear"></div>
<div id="nav">
<r:snippet name="navigation" />
</div>
<div id="main">
<r:snippet name="slider" />
<div class="clear" style="border-top: 4px solid #55a351; visibility: visible; width: 943px; height: 10px; margin: 10px 0;"></div>
<div id="sidebar-wrapper">
<div id="sidebar">
<r:content part="sidebar" inherit="true" />
</div>
</div>
<div id="content-wrapper">
<div id="content">
<r:content />
<r:if_content part="extended">
<div id="extended">
<r:content part="extended" />
</div>
</r:if_content>
</div>
</div>
</div>
<div style="clear:both"></div>
<div id="footer-wrapper">
<div id="footer">
<r:snippet name="footer" />
</div>
</div>
</div>
<div id="footer-bottom"></div>
</div>
</body>
<r:snippet name="slider-settings" />
</html>
','2008-12-24 01:08:45','2011-03-07 21:44:19',1,1,'',60);
INSERT INTO "layouts" VALUES(2,'Stylesheet','<r:content />
','2008-12-24 01:08:45','2009-01-02 10:00:53',1,NULL,'text/css',1);
INSERT INTO "layouts" VALUES(3,'XML Feed','<r:content />
','2008-12-24 01:08:45','2008-12-24 01:08:45',1,NULL,'text/xml',0);
INSERT INTO "layouts" VALUES(4,'No Sidebar','<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title><r:title /></title>
<link href="/rss/" rel="alternate" title="RSS" type="application/rss+xml" />
<link rel="stylesheet" type="text/css" href="/styles.css" />
<link rel="stylesheet" type="text/css" href="/stylesheets/960.css" />
<link rel="stylesheet" type="text/css" href="/stylesheets/reset.css" />
<link rel="stylesheet" type="text/css" href="/stylesheets/text.css" />
<script src="/javascripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script src="/javascripts/jquery.easyslides.source.v1.1.js" type="text/javascript"></script>
<link REL="SHORTCUT ICON" HREF="/images/favicon.png">
<script type="text/javascript" src="http://www.jeroenwijering.com/embed/swfobject.js"></script>
<!--[if IE 6]>
<style type="text/css" media="screen">
@import url("/stylesheets/ie6.css");
</style>
<![endif]-->
<!--[if IE 7]>
<style type="text/css" media="screen">
@import url("/stylesheets/ie7.css");
</style>