-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.xml
More file actions
3688 lines (3664 loc) · 163 KB
/
Copy pathdata.xml
File metadata and controls
3688 lines (3664 loc) · 163 KB
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" ?>
<data>
<sql>
<query>
create table #__categories(
id int unsigned not null auto_increment,
name text not null,
description text not null,
parent int unsigned not null default 0,
moderator text not null,
icon varchar(50) not null,
status int(1) not null default 1,
KEY parent (parent),
KEY status (status),
PRIMARY KEY(id)
);
</query>
<query>
create table #__comments(
id int unsigned not null auto_increment,
`post id` int unsigned not null,
`user id` int unsigned not null,
author tinytext not null,
content text not null,
email varchar(255) not null,
url varchar(200) not null,
ip varchar(50) not null,
time int unsigned not null,
status int(1) not null,
KEY `post id` (`post id`),
KEY `user id` (`user id`),
KEY email (email),
KEY status (status),
PRIMARY KEY(id)
);
</query>
<query>
create table #__configuration(
name varchar(255) not null,
value longtext not null,
primary key(name)
);
</query>
<query>
create table #__links(
id int unsigned not null auto_increment,
name varchar(255) not null,
url varchar(255) not null,
description text not null,
creator varchar(255) not null,
`time` int unsigned not null default 0,
count int unsigned not null default 0,
view int unsigned not null default 0,
`type` int(1) not null default 0,
status int(1) not null default 1,
KEY `type` (`type`),
KEY status (status),
PRIMARY KEY(id)
);
</query>
<query>
create table #__messages(
id int unsigned not null auto_increment,
`type` int(1) not null default 0,
`delete` int(1) not null default 0,
`from` int unsigned not null default 0,
`to` int unsigned not null default 0,
`time` int unsigned not null default 0,
subject varchar(120) not null,
content longtext not null,
author tinytext,
email varchar(255),
url varchar(200),
ip varchar(50) not null,
KEY `type` (`type`),
KEY `delete` (`delete`),
KEY `from` (`from`),
KEY `to` (`to`),
KEY ip (ip),
PRIMARY KEY(id)
);
</query>
<query>
create table #__plugins(
id int unsigned not null auto_increment,
source longtext not null,
type varchar(4) not null,
status int(1) not null,
KEY status (status),
PRIMARY KEY(id)
);
</query>
<query>
create table #__polls(
id int unsigned not null auto_increment,
question text not null,
answers text not null,
votes text not null,
ips longtext not null,
time int unsigned not null,
status int(1) not null,
PRIMARY KEY(id)
);
</query>
<query>
create table #__posts(
id int unsigned not null auto_increment,
title tinytext not null,
content longtext not null,
author int unsigned not null,
category int unsigned not null default 1,
date datetime not null,
modify text not null,
ratings tinytext,
view int unsigned not null default 0,
`rate status` int(1) not null default 1,
`comment status` int(1) not null default 1,
status int(1) not null default 1,
KEY author (author),
KEY category (category),
KEY `rate status` (`rate status`),
KEY `comment status` (`comment status`),
KEY status (status),
PRIMARY KEY(id)
);
</query>
<query>
create table #__themes(
id int unsigned not null auto_increment,
main longtext not null,
comment longtext not null,
post longtext not null,
contact longtext not null,
guestbook longtext not null,
`link registration` longtext not null,
profile longtext not null,
membership longtext not null,
emoticons longtext not null,
login longtext not null,
`control panel` longtext not null,
style longtext not null,
script longtext not null,
`php script` longtext not null,
PRIMARY KEY (id)
) engine=MyISAM;
</query>
<query>
create table #__users(
id int unsigned not null auto_increment,
username varchar(30) not null,
password varchar(32) not null,
`first name` tinytext not null,
`last name` tinytext not null,
nickname tinytext not null,
birthday datetime not null,
gender int(1) not null default 0,
marriage int(1) not null default 0,
eduction text not null,
vocation text not null,
amusement text not null,
favorite text not null,
about text not null,
avatar varchar(200) not null,
signature text not null,
location text not null,
phone varchar(20) not null,
email varchar(255) not null,
url varchar(200) not null,
aim varchar(50) not null default '',
gmail varchar(75) not null default '',
icq varchar(10) not null default '',
msn varchar(75) not null default '',
yahoo varchar(50) not null default '',
visible int(1) not null default 1,
`date format` varchar(15) not null default 'l j F Y',
`time format` varchar(15) not null default 'g:i A',
`time zone` varchar(5) not null default +3.5,
`start of week` INT(1) not null default 6,
theme int unsigned not null default 0,
ip varchar(50) not null,
`last login ip` varchar(50) not null,
registered int unsigned not null,
`last login` int unsigned not null,
`time online` int unsigned not null default 0,
level int unsigned not null default 1,
status int(1) not null default 1,
KEY username (username),
KEY email (email),
KEY birthday (birthday),
KEY level (level),
PRIMARY KEY (id)
);
</query>
<query>
insert into #__links(name, url, creator) values('Raha', 'https://raha.group', 1);
</query>
<query>
insert into #__categories(name, description, icon) values('بدون دستهبندي', 'عمومي', 'images/categories/main.gif');
</query>
</sql>
<theme>
<item name="main"><![CDATA[<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>.:|[site title separator]|:.</title>
<meta http-equiv="Content-Type" content="text/html; charset=[site charset]">
<meta http-equiv="Content-Script-Type" content="text/JavaScript">
<meta http-equiv="Content-Language" content="Fa">
<meta http-equiv="designer" content="Mahdi Nezarati Zadeh">
<meta name="description" content="[site description]">
<meta name="keywords" content="[site keywords]">
<meta name="generator" content="[site generator]">
<meta name="author" content="[site author]">
<meta name="copyright" content="Allright Reserved by [site name] 2007">
<meta name="distrubution" content="global">
<meta name="geo.country" content="ir">
<meta name="robots" content="index,follow,all,noarchive">
<link rel="alternate" type="application/rss+xml" title="[site title]" href="[rss]" />
<link rel="alternate" type="application/rss+xml" title="[site title]'s Comment" href="[comments rss]" />
<link rel="alternate" type="application/rss+xml" title="[site title]'s Blogroll" href="[link rss]" />
<link rel="alternate" type="application/rdf+xml" title="[site title]" href="[rdf]" />
<link rel="alternate" type="application/atom+xml" title="[site title]" href="[atom]" />
<link rel="alternate" type="application/opml+xml" title="[site title]" href="[opml]" />
<link rel="alternate" type="application/opml+xml" title="[site title]'s Blogroll" href="[link opml]" />
<link rel="archives" title="[site title]'s Members" href="[member list]" /><archives>
<link rel="archives" title="[date]" href="[url]" /></archives>
<link rel="stylesheet" href="[style]" type="text/css" />
<script src="[script]" type="text/javascript"></script>
<script src="[main script]" type="text/javascript"></script>
</head>
<body bgColor="#bfd1dd" background="images/themes/silver/back ground.gif">
<table border="0" cellpadding="0" cellspacing="0" width="920" height="543" align="center">
<tr>
<td valign="top" colspan="3" height="85">
<table cellpadding="0" cellspacing="0" width="901" height="100">
<tr>
<td width="901" valign="top" align="center">
<embed src="menu.swf" name="menu" menu="false" quality="high" bgcolor="#FFFFFF" width="780" height="117" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent"><p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" width="175" class="sidebar">
<h1>لوگو</h1><ul>
<img src="[logo]" title="[site description]"><br />
<input class="input" id="logo" value='<script src="[logo url]"></script>'><img src="images/themes/silver/copy.gif" class="btn" title="کپي کد" onClick="copy('logo');"><br />
لطفا براي حمايت از ما آدرس لوگوي سايت را در سايت خود قرار دهيد.
</ul><h2></h2>
<advertisment block><h1>تبليغات</h1><ul>
<advertisment>
<table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" style="border: #cfdce8 1px solid" dir="rtl" bgcolor="#f6f8f9">
<tbody>
<tr>
<td style="font-size: 11px; color: #595959; line-height: 150%; font-family: tahoma">
<table border="0" cellspacing="2" cellpadding="2" width="100%" height="100%" dir="rtl">
<tbody>
<tr>
<td height="21" style="font-size: 11px; color: #595959; line-height: 150%; font-family: tahoma"><span style="cursor: hand; color: #1f6b94; line-height: 130%"><a href="[url]" target="_blank"><span style="color: #1f6b94">[name]</span></a></span></td>
</tr>
<tr>
<td valign="top" style="font-size: 11px; color: #595959; line-height: 150%; font-family: tahoma">
<div align="justify" style="line-height: 130%">
<a title="مشاهده: [view]، کليک: [count]" href="[url]" target="_blank"><span style="color: #595959">[description]</span></a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td height="13" valign="top" style="font-size: 11px; color: #595959; line-height: 150%; font-family: tahoma" bgcolor="#cfdce8">
<div align="left" title="تبليغات شما در [site title]" onClick="document.location='[contact]'" style="font-size: 10px; cursor: hand; color: #1f6b94; line-height: 120%">
Ads by [site name]
</div>
</td>
</tr>
</tbody>
</table><br />
</advertisment>
</ul><h2></h2></advertisment block>
<h1>پيوندها</h1><ul>
<link block><marquee id="linkbox" height="80" width="162" direction="up" scrollamount="1" scrolldelay="20" onmouseover="stop();" onmouseout="start();" style="text-align: center">
<link><a href="[url]" title="[description]" onmouseover="window.status='ارسال شده در [date] و ساعت [time]';return true" title="[description]" onmouseout="self.status=''" href="[url]" target=_blank>[name] ([view]/[count])</a><br /></link></marquee>
<span style="cursor: hand; font-weight: bold">
<span onmouseover="linkbox.scrollDelay=10;linkbox.direction='Down';linkbox.start()" onmouseout="linkbox.scrollDelay=20">▼</span>
<span onmouseover="linkbox.stop()">ιι</span>
<span onmouseover="linkbox.scrollDelay=10;linkbox.direction='up';linkbox.start()" onmouseout="linkbox.scrollDelay=20">▲</span>
</span><br /></link block><input class="input" id="linkcode" value='<script src="[linkbox]" language="javascript" type="text/javascript"></script>'><img src="images/themes/silver/copy.gif" class="btn" title="کپي کد" onClick="copy('linkcode');" /><br />
<br />اگر مايل به تبادل لينک هستين منو با عنوان "[site title]" لينک کنيد و بعد روي <a href="javascript:void(0)" onClick="javascript:window.open('[link registration]','newLink','status=yes, scrollbars=yes, width=300, height=290')">اينجا</a> کليک کنيد و لينک خودتونو اضافه کنيد.
</ul><h2></h2>
<h1>جستجو</h1><ul>
<search>[search value=(20)]<br />[submit value=(جستجو)]</search>
</ul><h2></h2>
<h1>خبرنامه</h1><ul>
<newsletter><table cellSpacing="0" border="0" width="90%" align="center">
<tr>
<td>ايميل</td>
<td>[email value=(20)]</td>
</tr>
<tr>
<td colspan="2">[subscription value=(عضويت)] [unsubscription value=(لغو عضويت)]</td>
</tr>
<tr align="center">
<td colspan="2">[submit value=(انجام عمليات)]</td>
</tr>
<tr align="center">
<td colspan="2">[result]</td>
</tr>
</table></newsletter>
</ul><h2></h2>
<poll><h1>نظر سنجي</h1><ul>
<main>[question]<br />
<answer><input type="radio" value="[id]" name="answer" class="radiobutton">[answer]<br /></answer>
[submit value=(ثبت راي)]<br /><br /><a title="نمايش نتيجه ي نظر سنجي" target="_self" href="[url]" >کل آرا: [total votes]</a><br />[result]</main>
<result>نتيحه ي راي گيري<br />[question]<br /><br />
<table width=100%>
<reply><tr>
[answer]<small>([score]%)</small><br /><img src="images/themes/silver/poll/start.gif" height="10" width="2" /><img src="images/themes/silver/poll/bar.gif" height="10" width="[score]" title="[answer] -> [score]% ([vote] راي از [total votes])" /><img src="images/themes/silver/poll/end.gif" height="10" width="2" />
</tr></reply>
<br /><br />نتيجهي نظر سنجي از [total votes] راي</a></table></result>
</ul><h2></h2></poll>
<h1>پوستهها</h1><ul>
<theme><main><a href="[url]" title="[description]">[name] ([version])</a><br /></main><select><li><a href="[url]" title="[description]">[name] ([version])</a></li><br /></select></theme>
</ul><h2></h2>
<h1>جزئيات</h1><ul>
امروز: [site date]<br />
تاريخ ايجاد: [create site date]<br />
<counter>
بازديد امروز: [today]<br />
بازديد ديروز: [yesterday]<br />
افراد آنلاين: <span title="<max online>بيشترين افراد آنلاين: [count]
در تاريخ [date] و ساعت [time]</max online>">[online]</span><br />
کل بازديد ها: <span title="<max visit>بيشترين بازديد: [count]
در تاريخ [date] و ساعت [time]</max visit>">[total]</span><br /></counter><total>
کل مطالب: [post]<br />
کل نظرات: [comment]<br />
کل يادبودها: [memory]<br />
کل لينک ها: [link]<br />
کل تبليغ ها: [advertisment]<br />
کل عضو ها: [user]<br />
کل نظر سنجي ها: [poll]<br /></total>
ايجاد صفحه: [page generation] ثانيه
</ul><h2></h2>
</td>
<td valign="top" width="570" align="center" dir="rtl">
<announcement><div id="window" style="width: 99%"><div id="upcenter"><div id="upleft"><div id="upright"><div id="title" style="text-align: right">اعلان: [title]</div></div></div></div><div id="body" style="text-align: right">
<img border="0" src="images/themes/silver/announcement.gif" title="اعلان" />[content]
</div><div id="downcenter"><div id="downleft"><div id="downright"></div></div></div></div><br /></announcement>
<link dump block><div id="window" style="width: 99%"><div id="upcenter"><div id="upleft"><div id="upright"><div id="title" style="text-align: right">پيوندهاي روزانه</div></div></div></div><div id="body" style="text-align: right">
<link dump><a href="[url]" title="[description]">[name] ([view]/[count])</a><br /></link dump>
</div><div id="downcenter"><div id="downleft"><div id="downright"></div></div></div></div><br /></link dump block>
<post>
<div id="post[id]">
<table border="0" cellpadding="0" style="border-collapse: collapse; font-family: tahoma; font-size: 8pt; width: 99%">
<tr>
<td width="4%" height="23" style="background-image: url('images/themes/silver/post up right.gif'); background-repeat: no-repeat right"></td>
<td height="23" style="background-image: url('images/themes/silver/post up center.gif'); background-repeat: repeat-x"><div id="post-title-[id]">[title]</div></td>
<td height="23" style="background-image: url('images/themes/silver/post up center.gif'); background-repeat: repeat-x"><div align="left">[date]</div></td>
<td width="4%" height="23" style="background-image: url('images/themes/silver/post up left.gif'); background-repeat: no-repeat left"></td>
</tr>
<tr>
<td colspan="4" style="border-left: 1px solid #C8C6C6; border-right: 1px solid #C8C6C6; border-top: 1px solid #C8C6C6; padding: 5px; color: #000000; background-color: #FFFFFF; font-family: tahoma; font-size: 9pt" valign="top"><div id="post-content-[id]" class="post">[content]<more><br /><a href="javascript:void(0)" onclick="request('do=postMoreContent&id=[id]', 'post-content-[id]')"><img border="0" src="images/themes/silver/more.gif">ادامه ي مطلب</a></more></div></td>
</tr>
<tr>
<td colspan="4" style="border-left: 1px solid #C8C6C6; border-right:1px solid #C8C6C6; border-bottom:1px solid #C8C6C6; padding:2px; color: #666666; background-color: #FFFFFF; font-family: Tahoma; font-size:7pt" valign="top">
<author>[<img border="0" src="images/themes/silver/author.gif" />نوشته شده توسط <a href="mailto:[email]" title="[url]">[name]</a>]</author>
[<img border="0" src="images/themes/silver/time.gif" />ساعت [time]]
<category>[<img border="0" src="images/themes/silver/category.gif" />موضوع: <a href="[url]" title="[description]">[name]</a>]</category>
[<img border="0" src="images/themes/silver/view.gif" />مشاهده: [view]]<br />
<comment>[<img border="0" src="images/themes/silver/comment.gif" /><a href="javascript:void(0)" onClick="javascript:window.open('[url]','comments','status=yes,scrollbars=yes,toolbar=no,menubar=no,location=no ,width=457px,height=500px')">نظر ([count])</a> ]</comment>
[<a href="javascript:void(0)" onClick="javascript:postMail('post-title-[id]', 'post-content-[id]');"><img src="images/themes/silver/post mail.jpg" title="پست ميل" /></a> <a href="[download]" title="ذخيره کردن اين مطلب"><img src="images/themes/silver/save.gif" /></a> <a href="[url]" title="لينک اين مطلب"><img src="images/themes/silver/link.gif" /></a> <a href="[rss]" title="RSS"><img src="images/themes/silver/feed.gif" /></a> <a href="[rdf]" title="RDF"><img src="images/themes/silver/feed.gif" /></a> <a href="[atom]" title="ATOM"><img src="images/themes/silver/feed.gif" /></a> <a href="[opml]" title="OPML"><img src="images/themes/silver/feed.gif" /></a>]
<last edit>[<img border="0" src="images/themes/silver/last edit.jpg" />آخرين ويرايش [date] ودر ساعت [time]]</last edit>
<modify>[<img border="0" src="images/themes/silver/modify.gif" title="ويرايش" onclick="return sendXMLHttpRequest('[url]', 'GET', 'post[id]')" /> <img border="0" src="images/themes/silver/delete.gif" title="حذف" onclick="return ADI('do=delete_post&id=[id]', 'post[id]' ,'آيا مطمئن از حذف مطلب [title] هستيد؟')" />]</modify>
<rate><script>rate.ratings([id], [votes]);</script></rate>
</tr>
</table>
<table border="0" cellpadding="0" style="border-collapse: collapse" width="99%">
<tr height="22">
<td width="8" style="background-image: url('images/themes/silver/post down right.gif'); background-repeat: no-repeat right"></td>
<td colspan="2" height="22" style="background-image: url('images/themes/silver/post down center.gif'); background-repeat: repeat-x"></td>
<td width="8" style="background-image: url('images/themes/silver/post down left.gif'); background-repeat: no-repeat left"></td>
</tr>
</table>
<br />
</div>
</post>
</td>
<td valign="top" height="419" width="175" class="sidebar">
<h1>[site title]</h1><ul>
<table cellSpacing="0" border="0" width="90%" align="center">
<tr align="center">
<td><a onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('[site url]');" href="javascript:void(0)"><img src="images/themes/silver/home page.jpeg" title="اين سايت را صفحه ي خانگي کنيد!" /></a></td>
<td><a href="javascript:window.external.AddFavorite('http://[site url]',' [site title] ')"><img src="images/themes/silver/add favorites.jpeg" title="اين سايت را به صفحات مورد علاقه تان اضافه کنيد!" /></a></td>
<td><a href="mailto:[site email]"><img src="images/themes/silver/mail.gif" title="پست الکترونيک!" /></a></td>
<td><a href="[site url]"><img border="0" src="images/themes/silver/home.gif" title="صفحه نخست!" /></a></td>
</tr>
<tr align="center">
<td><a onClick="window.open('[contact]','_blank','width=400, height=425, status=yes, scrollbars=yes, resizable=yes');" href="javascript:void(0)"><img src="images/themes/silver/contact.jpeg" title="تماس با ما!" /></a></td>
<td><a onClick="window.open('[guestbook]','_blank','width=457, height=500, status=yes, scrollbars=yes, resizable=yes');" href="javascript:void(0)"><img src="images/themes/silver/guestbook.gif" title="دفتر يادبود!" /></a></td>
<td><a href="[membership]"><img src="images/themes/silver/membership.gif" title="عضويت در سايت!" /></a></td>
<td><img src="images/themes/silver/forum.gif" class="disabled" title="انجمن گفتگو!"></td>
</tr>
<tr align="center">
<td><a href="[rss]"><img src="images/themes/silver/feed/rss.gif" /></a></td>
<td><a href="[rdf]"><img src="images/themes/silver/feed/rdf.gif" /></a></td>
<td><a href="[atom]"><img src="images/themes/silver/feed/atom.gif" /></a></td>
<td><a href="[opml]"><img src="images/themes/silver/feed/opml.gif" /></a></td>
</tr>
</table>
</ul><h2></h2>
<h1>آرشيو موضوعي</h1><ul style="text-align:right">
[site category]
</ul><h2></h2>
<h1>تقويم</h1><ul>
[site calendar]
</ul><h2></h2>
<last post block><h1>نوشتههاي پيشين</h1><ul>
<last post><a href="[url]" title="مشاهده: [view]، نظر: [comment]">[title]</a><br /></last post>
</ul><h2></h2></last post block>
<h1>مؤلفها</h1><ul id=user>
<author><a href="[profile]"<status> class=<online>online</online><offline>offline</offline></status> title="نمايش مشخصات [username]"></a><a href="[post url]" title="[email]">[name]([count post])</a><br /></author>
</ul><h2></h2><log in>
<h1>ورود</h1><ul style="text-align:right">
<table cellSpacing="0" width="100%">
<tr>
<td>نام کاربري</td>
<td>[username value=(12)]</td>
</tr>
<tr>
<td>کلمه ي عبور</td>
<td>[password value=(12)]</td>
</tr>
<tr>
<td>کد امنيتي</td>
<td>[security code field] [security code]</td>
</tr>
<tr align="center">
<td colspan="2">[remember value=(مرا به خاطر بسپار)]</td>
</tr>
<tr align="center">
<td>[submit value=(ورود)]</td>
<td><input type="button" onClick="document.location='[membership]'" value="عضويت" class="button" /></td>
</tr>
<tr align="center">
<td colspan="2">[result]</td>
</tr>
</table>
</ul><h2></h2></log in><loged in>
<h1>وضعيت شما</h1><ul style="text-align:right">
<avatar><center><img border="0" src="[url]"></center></avatar>
[username] خوش آمديد.<br /><state>
<comment>نظرات تاييد نشده: [inactive]<br />
نظرات خصوصي جديد: [private]<br /></comment>
<guestbook>يادبودهاي تاييد نشده: [inactive]<br />
يادبودهاي خصوصي جديد: [private]<br /></guestbook>
<message>پيامهاي جديد: [new]<br /></message>
<link>لينکهاي تاييد نشده: [inactive]<br /></link>
</state><a href="[control panel]">ورود به کنترل پنل</a><br />
<a href="[log out]">خروج</a>
</ul><h2></h2></loged in>
</td>
</tr>
<tr>
<td valign="top" colspan="3" height="50" id="footer">
<div id="left">
<div id="center">
<div id="right">
<div id="body">
رفتن به صفحه (<page><main><a href="[url]"> [page] </a></main><select><a href="[url]"> <b>[page]</b> </a></select></page>)
</div>
</div>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>]]></item>
<item name="comment"><![CDATA[<html>
<head>
<title>نظرات</title>
<meta http-equiv="content-type" content="text/html; charset=[site charset]" />
<link rel="stylesheet" href="[style]" type="text/css" />
<script src="[script]"></script>
<script src="[main script]"></script>
</head>
<body leftmargin=5 topmargin=5>
<div align=center>
<table style="border-collapse: collapse" bordercolor=#b0c2d9 height=489 cellpadding=0 width=430 border=1>
<tbody>
<tr>
<td bordercolor=#b0c2d9 background="images/themes/silver/comment bg.gif" height=95>
<div style="font-size: 8pt; text-align: center; font-weight: bold; color: #ffffff; margin:15 0 0 0">[site name] Comment System</div>
<div style="margin: 30 0 0 0; background-image: url('images/themes/silver/header.gif'); background-repeat: repeat-x; width: 100%; height: 42"></div>
</td>
</tr>
<tr>
<td dir=rtl bordercolor=#819bcf height=392>
<table cellspacing=0 cellpadding=0 width="99%" border=0>
<tbody>
<tr>
<td width=8> </td>
<td>
<div class=comments-head><p dir=ltr align=center>عنوان ارسال: [post title]<br />تاريخ ارسال: [post date]<br />نويسنده: [post author]<br />نظرات خصوصي: [count private]</p></div>
<comment>
<table dir=rtl style="border-collapse: collapse" bordercolor=#b0c2d9 cellspacing=0 cellpadding=0 width="100%" border=1>
<tbody>
<tr>
<td background="images/themes/silver/menu up center.gif">
<table dir=rtl cellspacing=0 cellpadding=0 width=410 border=0>
<tbody>
<tr>
<td width=10> </td>
<td width=192><p dir=ltr align="right">نويسنده: [author]</p></td>
<td width=203><p dir=ltr style="direction: ltr; text-align: left">
<url><a href="[url]" target="_blank"><img src="images/themes/silver/site.gif" border="0" title="آدرس اينترنتي اين کاربر" /></a></url> <email><a href="mailto:[email]"><img src="images/themes/silver/email.gif" border="0" title="ارسال ايميل به اين کاربر" /></a></email></p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<table dir=rtl cellspacing=0 cellpadding=0 width=410 border=0>
<tbody>
<tr>
<td width=5> </td>
<td width=398>[content]<br /><span style="color: #b0b0b0">[date] و در ساعت [time] و با آدرس [ip]</span></td>
<td width=4> </td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<br />
</comment>
<new comment>
<table style="border-collapse: collapse" bordercolor=#111111 cellspacing=0 cellpadding=0 width="100%" background="images/themes/silver/post up center.gif" border=0>
<tbody>
<tr>
<td width="33%"><img src="images/themes/silver/menu up right.gif" width=20 height=23 /></td>
<td width="33%"><p align="center"><b>ارسال نظر</b></td>
<td width="34%"><p style="text-align: left" align=left><img src="images/themes/silver/post up left.gif" width=25 height=23 /></p></td>
</tr>
</tbody>
</table>
<div class="term">
توجه:<br />
» لطفا کوتاه و در مورد مطلب بنويسيد.<br />
» لطفا فينگليش ننويسيد. (فارسي يا انگليسي بنويسيد )<br />
» سوالات يا نظراتي را که ربطي به مطلب ندارند در پيام خصوصي براي من بفرستيد.
</div>
<p>
<table dir=rtl height=245 cellspacing=0 cellpadding=0 width=412 border=0>
<tbody>
<tr>
<td width=150 height=20>نام:</td>
<td valign=center width=141 height=19>[author value=(23)]<span style="color: #aec4d8">*</span></td>
<td valign=center width=121 height=59 rowspan="3">[save cookie value=(مرا به خاطر بسپار)]<br />[private message value=(خصوصي)]</td>
</tr>
<tr>
<td width=150 height=20>پست الکترونيکي:</td>
<td valign=center width=141 height=20>[email value=(23)]<span style="color: #aec4d8">*</span></td>
</tr>
<tr>
<td width=150 height=20>سايت:</td>
<td valign=center width=141 height=20>[url value=(23)]</td>
</tr>
<tr>
<td width=150 height=20>کد امنيتي:</td>
<td width=141 height=20>[security code field]<span style="color: #aec4d8">*</span> [security code]</td>
</tr>
<tr>
<td valign=top width=150 height=152 style="margin-top: 10px">[emoticons value=(<br /><a href="#" onClick="window.open('?action=emoticon', '_blank', 'width=300, height=300, status=yes, scrollbars=yes, resizable=yes');">بيشتر</a>)]</td>
<td valign=center width=256 colspan=2 height=152>[content value=(23)]</td>
</tr>
<tr>
<td valign=top height=34 colspan=3 align=center>
<div style="color: #0066cc">[result]</div><br />
[submit value=(ارسال)] [reset value=(مجدد)]
</td>
</tr>
</tbody>
</table>
</new comment>
</div>
</body>
</html>]]></item>
<item name="post"><![CDATA[<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>.:|[site title separator]|:.</title>
<meta http-equiv="Content-Type" content="text/html; charset=[site charset]">
<meta http-equiv="Content-Script-Type" content="text/JavaScript">
<meta http-equiv="Content-Language" content="Fa">
<meta http-equiv="designer" content="Mahdi Nezarati Zadeh">
<meta name="description" content="[site description]">
<meta name="keywords" content="[site keywords]">
<meta name="generator" content="[site generator]">
<meta name="author" content="[site author]">
<meta name="copyright" content="Allright Reserved by [site name] 2007">
<meta name="distrubution" content="global">
<meta name="geo.country" content="ir">
<meta name="robots" content="index,follow,all,noarchive">
<link rel="alternate" type="application/rss+xml" title="[site title]" href="[rss]" />
<link rel="alternate" type="application/rss+xml" title="[site title]'s Comment" href="[comments rss]" />
<link rel="alternate" type="application/rss+xml" title="[site title]'s Blogroll" href="[link rss]" />
<link rel="alternate" type="application/rdf+xml" title="[site title]" href="[rdf]" />
<link rel="alternate" type="application/atom+xml" title="[site title]" href="[atom]" />
<link rel="alternate" type="application/opml+xml" title="[site title]" href="[opml]" />
<link rel="alternate" type="application/opml+xml" title="[site title]'s Blogroll" href="[link opml]" />
<link rel="archives" title="[site title]'s Members" href="[member list]" />
<link rel="stylesheet" href="[style]" type="text/css" />
<script src="[script]" type="text/javascript"></script>
<script src="[main script]" type="text/javascript"></script>
</head>
<body bgColor="#bfd1dd" background="images/themes/silver/back ground.gif">
<table border="0" cellpadding="0" cellspacing="0" width="920" height="543" align="center">
<tr>
<td valign="top" colspan="3" height="85">
<table cellpadding="0" cellspacing="0" width="901" height="100">
<tr>
<td width="901" valign="top" align="center">
<embed src="menu.swf" name="menu" menu="false" quality="high" bgcolor="#FFFFFF" width="780" height="117" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent"><p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" width="175" class="sidebar">
<h1>لوگو</h1><ul>
<img src="[logo]" title="[site description]"><br />
<input class="input" id="logo" value='<script src="[logo url]"></script>'><img src="images/themes/silver/copy.gif" class="btn" title="کپي کد" onClick="copy('logo');"><br />
لطفا براي حمايت از ما آدرس لوگوي سايت را در سايت خود قرار دهيد.
</ul><h2></h2>
<advertisment block><h1>تبليغات</h1><ul>
<advertisment>
<table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" style="border: #cfdce8 1px solid" dir="rtl" bgcolor="#f6f8f9">
<tbody>
<tr>
<td style="font-size: 11px; color: #595959; line-height: 150%; font-family: tahoma">
<table border="0" cellspacing="2" cellpadding="2" width="100%" height="100%" dir="rtl">
<tbody>
<tr>
<td height="21" style="font-size: 11px; color: #595959; line-height: 150%; font-family: tahoma"><span style="cursor: hand; color: #1f6b94; line-height: 130%"><a href="[url]" target="_blank"><span style="color: #1f6b94">[name]</span></a></span></td>
</tr>
<tr>
<td valign="top" style="font-size: 11px; color: #595959; line-height: 150%; font-family: tahoma">
<div align="justify" style="line-height: 130%">
<a title="مشاهده: [view]، کليک: [count]" href="[url]" target="_blank"><span style="color: #595959">[description]</span></a>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td height="13" valign="top" style="font-size: 11px; color: #595959; line-height: 150%; font-family: tahoma" bgcolor="#cfdce8">
<div align="left" title="تبليغات شما در [site title]" onClick="document.location='[contact]'" style="font-size: 10px; cursor: hand; color: #1f6b94; line-height: 120%">
Ads by [site name]
</div>
</td>
</tr>
</tbody>
</table><br />
</advertisment>
</ul><h2></h2></advertisment block>
<h1>پيوندها</h1><ul>
<link block><marquee id="linkbox" height="80" width="162" direction="up" scrollamount="1" scrolldelay="20" onmouseover="stop();" onmouseout="start();" style="text-align: center">
<link><a href="[url]" title="[description]" onmouseover="window.status='ارسال شده در [date] و ساعت [time]';return true" title="[description]" onmouseout="self.status=''" href="[url]" target=_blank>[name] ([view]/[count])</a><br /></link></marquee>
<span style="cursor: hand; font-weight: bold">
<span onmouseover="linkbox.scrollDelay=10;linkbox.direction='Down';linkbox.start()" onmouseout="linkbox.scrollDelay=20">?</span>
<span onmouseover="linkbox.stop()">??</span>
<span onmouseover="linkbox.scrollDelay=10;linkbox.direction='up';linkbox.start()" onmouseout="linkbox.scrollDelay=20">?</span>
</span><br /></link block><input class="input" id="linkcode" value='<script src="[linkbox]" language="javascript" type="text/javascript"></script>'><img src="images/themes/silver/copy.gif" class="btn" title="کپي کد" onClick="copy('linkcode');" /><br />
<br />اگر مايل به تبادل لينک هستين منو با عنوان "[site title]" لينک کنيد و بعد روي <a href="javascript:void(0)" onClick="javascript:window.open('[link registration]','newLink','status=yes, scrollbars=yes, width=300, height=290')">اينجا</a> کليک کنيد و لينک خودتونو اضافه کنيد.
</ul><h2></h2>
<h1>جستجو</h1><ul>
<search>[search value=(20)]<br />[submit value=(جستجو)]</search>
</ul><h2></h2>
<h1>خبرنامه</h1><ul>
<newsletter><table cellSpacing="0" border="0" width="90%" align="center">
<tr>
<td>ايميل</td>
<td>[email value=(20)]</td>
</tr>
<tr>
<td colspan="2">[subscription value=(عضويت)] [unsubscription value=(لغو عضويت)]</td>
</tr>
<tr align="center">
<td colspan="2">[submit value=(انجام عمليات)]</td>
</tr>
<tr align="center">
<td colspan="2">[result]</td>
</tr>
</table></newsletter>
</ul><h2></h2>
<poll><h1>نظر سنجي</h1><ul>
<main>[question]<br />
<answer><input type="radio" value="[id]" name="answer" class="radiobutton">[answer]<br /></answer>
[submit value=(ثبت راي)]<br /><br /><a title="نمايش نتيجه ي نظر سنجي" target="_self" href="[url]" >کل آرا: [total votes]</a><br />[result]</main>
<result>نتيحه ي راي گيري<br />[question]<br /><br />
<table width=100%>
<reply><tr>
[answer]<small>([score]%)</small><br /><img src="images/themes/silver/poll/start.gif" height="10" width="2" /><img src="images/themes/silver/poll/bar.gif" height="10" width="[score]" title="[answer] -> [score]% ([vote] راي از [total votes])" /><img src="images/themes/silver/poll/end.gif" height="10" width="2" />
</tr></reply>
<br /><br />نتيجهي نظر سنجي از [total votes] راي</a></table></result>
</ul><h2></h2></poll>
<h1>پوستهها</h1><ul>
<theme><main><a href="[url]" title="[description]">[name] ([version])</a><br /></main><select><li><a href="[url]" title="[description]">[name] ([version])</a></li><br /></select></theme>
</ul><h2></h2>
<h1>جزئيات</h1><ul>
امروز: [site date]<br />
تاريخ ايجاد: [create site date]<br />
<counter>
بازديد امروز: [today]<br />
بازديد ديروز: [yesterday]<br />
افراد آنلاين: <span title="<max online>بيشترين افراد آنلاين: [count]
در تاريخ [date] و ساعت [time]</max online>">[online]</span><br />
کل بازديد ها: <span title="<max visit>بيشترين بازديد: [count]
در تاريخ [date] و ساعت [time]</max visit>">[total]</span><br /></counter><total>
کل مطالب: [post]<br />
کل نظرات: [comment]<br />
کل يادبودها: [memory]<br />
کل لينک ها: [link]<br />
کل تبليغ ها: [advertisment]<br />
کل عضو ها: [user]<br />
کل نظر سنجي ها: [poll]<br /></total>
ايجاد صفحه: [page generation] ثانيه
</ul><h2></h2>
</td>
<td valign="top" width="570" align="center" dir="rtl">
<announcement><div id="window" style="width: 99%"><div id="upcenter"><div id="upleft"><div id="upright"><div id="title" style="text-align: right">اعلان: [title]</div></div></div></div><div id="body" style="text-align: right">
<img border="0" src="images/themes/silver/announcement.gif" title="اعلان" />[content]
</div><div id="downcenter"><div id="downleft"><div id="downright"></div></div></div></div><br /></announcement>
<link dump block><div id="window" style="width: 99%"><div id="upcenter"><div id="upleft"><div id="upright"><div id="title" style="text-align: right">پيوندهاي روزانه</div></div></div></div><div id="body" style="text-align: right">
<link dump><a href="[url]" title="[description]">[name] ([view]/[count])</a><br /></link dump>
</div><div id="downcenter"><div id="downleft"><div id="downright"></div></div></div></div><br /></link dump block>
<post>
<div id="post[id]">
<table border="0" cellpadding="0" style="border-collapse: collapse; font-family: Tahoma; font-size: 8pt" width="99%">
<tr>
<td width="4%" height="23" style="background-image: url('images/themes/silver/post up right.gif'); background-repeat: no-repeat right"></td>
<td height="23" style="background-image: url('images/themes/silver/post up center.gif'); background-repeat: repeat-x"><div id="post-title-[id]">[title]</div></td>
<td height="23" style="background-image: url('images/themes/silver/post up center.gif'); background-repeat: repeat-x"><div align="left">[date]</div></td>
<td width="4%" height="23" style="background-image: url('images/themes/silver/post up left.gif'); background-repeat: no-repeat left"></td>
</tr>
<tr>
<td colspan="4" style="border-left: 1px solid #C8C6C6; border-right:1px solid #C8C6C6; border-top:1px solid #C8C6C6; padding:5px; color: #000000; background-color: #FFFFFF; font-family: Tahoma; font-size:9pt" valign="top"><div id="post-content-[id]" class="post">[content]<more><br /><a href="javascript:void(0)" onclick="request('do=postMoreContent&id=[id]', 'post-content-[id]')"><img border="0" src="images/themes/silver/more.gif">ادامه ي مطلب</a></more></div></td>
</tr>
<tr>
<td colspan="4" style="border-left: 1px solid #C8C6C6; border-right:1px solid #C8C6C6; border-bottom:1px solid #C8C6C6; padding:2px; color: #666666; background-color: #FFFFFF; font-family: Tahoma; font-size:7pt" valign="top">
<author>[<img border="0" src="images/themes/silver/author.gif" />نوشته شده توسط <a href="mailto:[email]" title="[url]">[name]</a>]</author>
[<img border="0" src="images/themes/silver/time.gif" />ساعت [time]]
<category>[<img border="0" src="images/themes/silver/category.gif" />موضوع: <a href="[url]" title="[description]">[name]</a>]</category>
[<img border="0" src="images/themes/silver/view.gif" />مشاهده: [view]]<br />
[<a href="javascript:void(0)" onClick="javascript:postMail('post-title-[id]', 'post-content-[id]');"><img src="images/themes/silver/post mail.jpg" title="پست ميل" /></a> <a href="[download]" title="ذخيره کردن اين مطلب"><img src="images/themes/silver/save.gif" /></a> <a href="[url]" title="لينک اين مطلب"><img src="images/themes/silver/link.gif" /></a> <a href="[rss]" title="RSS"><img src="images/themes/silver/feed.gif" /></a> <a href="[rdf]" title="RDF"><img src="images/themes/silver/feed.gif" /></a> <a href="[atom]" title="ATOM"><img src="images/themes/silver/feed.gif" /></a> <a href="[opml]" title="OPML"><img src="images/themes/silver/feed.gif" /></a>]
<last edit>[<img border="0" src="images/themes/silver/last edit.jpg" />آخرين ويرايش [date] ودر ساعت [time]]</last edit>
<modify>[<img border="0" src="images/themes/silver/modify.gif" title="ويرايش" onclick="return sendXMLHttpRequest('[url]', 'GET', 'post[id]')" /> <img border="0" src="images/themes/silver/delete.gif" title="حذف" onclick="return ADI('do=delete_post&id=[id]', 'post[id]' ,'آيا مطمئن از حذف مطلب [title] هستيد؟')" />]</modify>
<rate><script>rate.ratings([id], [votes]);</script></rate>
</tr>
</table>
<table border="0" cellpadding="0" style="border-collapse: collapse" width="99%">
<tr height="22">
<td width="8" style="background-image: url('images/themes/silver/post down right.gif'); background-repeat: no-repeat right"></td>
<td colspan="2" height="22" style="background-image: url('images/themes/silver/post down center.gif'); background-repeat: repeat-x"></td>
<td width="8" style="background-image: url('images/themes/silver/post down left.gif'); background-repeat: no-repeat left"></td>
</tr>
</table>
<br />
</div>
</post>
<div id="comment">
<comment>
<div id=upcenter>
<div id=upleft>
<div id=upright>
<div id=title><table border=0 cellspacing=0 cellpadding=0 width=95%><tr><td align=right width=70%>نوسنده: [author]</td><td align=left width=30%><url><a href="[url]" target="_blank"><img title="آدرس اينترنتي اين کاربر" src="images/themes/silver/site.gif" border=0 /> </url></a><email><a href="mailto:[email]"><img title="ارسال ايميل به اين کاربر" src="images/themes/silver/email.gif" border=0 /></a></email></td></tr></table></div></div></div></div>
<div id=body>
[content]
</div>
<div id=downcenter>
<div id=downleft>
<div id=downright>
<div id=title style="color: #666666">
[date] در ساعت [time] و با آدرس [ip]
</div></div></div></div><br />
</comment>
<new comment>
<div style="height: 23px; width: 99%; background: url('images/themes/silver/post up center.gif') repeat-x">
<div style="height: 23px; background: url('images/themes/silver/post up left.gif') no-repeat left">
<div style="height: 23px; background: url('images/themes/silver/post up right.gif') no-repeat right">
<div id=title style="text-align: center">ارسال نظر</div></div></div></div>
<div id=body>
<div class="term">
توجه:<br />
» لطفا کوتاه و در مورد مطلب بنويسيد.<br />
» لطفا فينگليش ننويسيد. (فارسي يا انگليسي بنويسيد )<br />
» سوالات يا نظراتي را که ربطي به مطلب ندارند در پيام خصوصي براي من بفرستيد.
</div>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td>نام:</td>
<td width=0 height=19> [author value=(35)] <span style="color: #aec4d8">*</span></td>
<td vAlign=center width=141 rowspan="3">[save cookie value=(مرا به خاطر بسپار)]<br />[private message value=(نظر خصوصي)]</td>
</tr>
<tr>
<td>پست الکترونيک:</td>
<td>[email value=(35)]<span style="color: #aec4d8">*</span></td>
</tr>
<tr>
<td>سايت:</td>
<td>[url value=(35)]</td>
</tr>
<tr>
<td>کد امنيتي:</td>
<td>[security code field]<span style="color: #aec4d8">*</span> [security code]</td>
<td rowspan="3"><div style="width:150px" valign="top">[emoticons]</div></td>
</tr>
<tr>
<td>پيام:</td>
<td>[content value=(35)]<span style="color: #aec4d8">*</span></td>
</tr>
<tr>
<td colspan=2 align=center>[submit value=(افزودن)] [reset value=(مجدد)]</td>
</tr>
</table>
<div style="color: #0066cc; text-align: center">[result]</div>
</div>
<div style="height: 19; width: 99%; background: url('images/themes/silver/menu down center.gif') repeat-x">
<div style="height: 19px; background: url('images/themes/silver/menu down left.gif') no-repeat left">
<div style="height: 19px; background: url('images/themes/silver/menu down right.gif') no-repeat right">
<div id=title></div></div></div></div>
</new comment>
</div>
</td>
<td valign="top" height="419" width="175" class="sidebar">
<h1>[site title]</h1><ul>
<table cellSpacing="0" border="0" width="90%" align="center">
<tr align="center">
<td><a onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('[site url]');" href="javascript:void(0)"><img src="images/themes/silver/home page.jpeg" title="اين سايت را صفحه ي خانگي کنيد!" /></a></td>
<td><a href="javascript:window.external.AddFavorite('http://[site url]',' [site title] ')"><img src="images/themes/silver/add favorites.jpeg" title="اين سايت را به صفحات مورد علاقه تان اضافه کنيد!" /></a></td>
<td><a href="mailto:[site email]"><img src="images/themes/silver/mail.gif" title="پست الکترونيک!" /></a></td>
<td><a href="[site url]"><img border="0" src="images/themes/silver/home.gif" title="صفحه نخست!" /></a></td>
</tr>
<tr align="center">
<td><a onClick="window.open('[contact]','_blank','width=400, height=425, status=yes, scrollbars=yes, resizable=yes');" href="javascript:void(0)"><img src="images/themes/silver/contact.jpeg" title="تماس با ما!" /></a></td>
<td><a onClick="window.open('[guestbook]','_blank','width=457, height=500, status=yes, scrollbars=yes, resizable=yes');" href="javascript:void(0)"><img src="images/themes/silver/guestbook.gif" title="دفتر يادبود!" /></a></td>
<td><a href="[membership]"><img src="images/themes/silver/membership.gif" title="عضويت در سايت!" /></a></td>
<td><img src="images/themes/silver/forum.gif" class="disabled" title="انجمن گفتگو!"></td>
</tr>
<tr align="center">
<td><a href="[rss]"><img src="images/themes/silver/feed/rss.gif" /></a></td>
<td><a href="[rdf]"><img src="images/themes/silver/feed/rdf.gif" /></a></td>
<td><a href="[atom]"><img src="images/themes/silver/feed/atom.gif" /></a></td>
<td><a href="[opml]"><img src="images/themes/silver/feed/opml.gif" /></a></td>
</tr>
</table>
</ul><h2></h2>
<h1>آرشيو موضوعي</h1><ul style="text-align:right">
[site category]
</ul><h2></h2>
<h1>تقويم</h1><ul>
[site calendar]
</ul><h2></h2>
<last post block><h1>نوشتههاي پيشين</h1><ul>
<last post><a href="[url]" title="مشاهده: [view]، نظر: [comment]">[title]</a><br /></last post>
</ul><h2></h2></last post block>
<h1>مؤلفها</h1><ul id=user>
<author><a href="[profile]"<status> class=<online>online</online><offline>offline</offline></status> title="نمايش مشخصات [username]"></a><a href="[post url]" title="[email]">[name]([count post])</a><br /></author>
</ul><h2></h2><log in>
<h1>ورود</h1><ul style="text-align:right">
<table cellSpacing="0" width="100%">
<tr>
<td>نام کاربري</td>
<td>[username value=(12)]</td>
</tr>
<tr>
<td>کلمه ي عبور</td>
<td>[password value=(12)]</td>
</tr>
<tr>
<td>کد امنيتي</td>
<td>[security code field] [security code]</td>
</tr>
<tr align="center">
<td colspan="2">[remember value=(مرا به خاطر بسپار)]</td>
</tr>
<tr align="center">
<td>[submit value=(ورود)]</td>
<td><input type="button" onClick="document.location='[membership]'" value="عضويت" class="button" /></td>
</tr>
<tr align="center">
<td colspan="2">[result]</td>
</tr>
</table>
</ul><h2></h2></log in><loged in>
<h1>وضعيت شما</h1><ul style="text-align:right">
<avatar><center><img border="0" src="[url]"></center></avatar>
[username] خوش آمديد.<br /><state>
<comment>نظرات تاييد نشده: [inactive]<br />
نظرات خصوصي جديد: [private]<br /></comment>
<guestbook>يادبودهاي تاييد نشده: [inactive]<br />
يادبودهاي خصوصي جديد: [private]<br /></guestbook>
<message>پيامهاي جديد: [new]<br /></message>
<link>لينکهاي تاييد نشده: [inactive]<br /></link>
</state><a href="[control panel]">ورود به کنترل پنل</a><br />
<a href="[log out]">خروج</a>
</ul><h2></h2></loged in>
</td>
</tr>
<tr>
<td valign="top" colspan="3" height="50" id="footer">
<div id="left">
<div id="center">
<div id="right">
<div id="body">
رفتن به صفحه (<page><main><a href="[url]"> [page] </a></main><select><a href="[url]"> <b>[page]</b> </a></select></page>)
</div>
</div>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>]]></item>
<item name="contact"><![CDATA[<html>
<head>
<title>برقراري ارتباط</title>
<meta http-equiv="Content-Type" content="text/html; charset=[site charset]" />
<link rel="stylesheet" href="[style]" type="text/css" />
<script src="[script]"></script>
<script src="[main script]"></script>
</head>
<body topmargin="0" leftmargin="0" bgColor="#bfd1dd"; background="images/themes/silver/back ground.gif">
<contact><center>
<div id="window" style="width:100%">
<div id="upcenter"><div id="upleft"><div id="upright"><div id="title">ارتباط با ما</div></div></div></div>
<div id="body">
<table border="0" width="100%" cellspacing="0" cellpadding="3">
<tr>
<td width="33%">نام:</td>
<td width="33%">[author value=(30)]</td>
<td rowspan="2" width="33%">[save cookie value=(مرا به خاطر بسپار)]</td>
</tr>
<tr>
<td>پست الکترونيک:</td>
<td>[email value=(30)]</td>
</tr>
<tr>
<td>سايت:</td>
<td>[url value=(30)]<br />
</td>
<td></td>
</tr>
<tr>
<td>کد امنيتي:</td>
<td>[security code field]</td>
<td>[security code]</td>
</tr>
<tr>
<td>به:</td>
<td><select class="select" name="to"><user><option value=[id] [selected]>[name] ([username])</option></user></select></td>
<td></td>
</tr>
<tr>
<td>عنوان:</td>
<td>[subject value=(30)]</td>
<td rowspan="2"><div style="width:100%" valign="top">[emoticons value=(<br /><a href="#" onClick="window.open('?action=emoticon', '_blank', 'width=300, height=300, status=yes, scrollbars=yes, resizable=yes');">بيشتر</a>)]</div></td>
</tr>
<tr>
<td>پيام:</td>
<td>[content value=(30)]</td>
</tr>
<tr>
<td colspan="3" align="center">
<span style="color: #0066cc">[result]</span>
<br />[submit value=(ارسال)] [reset value=(مجدد)]
</td>
</tr>
</table>
</div>
<div id="downcenter"><div id="downleft"><div id="downright"></div></div></div>
</div>
</center></contact>
</body>
</html>]]></item>
<item name="guestbook"><![CDATA[<html>
<head>
<title>دفتر يادبود</title>
<meta http-equiv="content-type" content="text/html; charset=[site charset]" />
<link rel="stylesheet" href="[style]" type="text/css" />
<script src="[script]"></script>