forked from mediawiki4intranet/Wikilog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocumentation.xml
1046 lines (855 loc) · 54.6 KB
/
documentation.xml
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
<mediawiki xmlns="http://www.mediawiki.org/xml/export-0.4/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.4/ http://www.mediawiki.org/xml/export-0.4.xsd" version="0.4" xml:lang="en">
<siteinfo>
<sitename>JWiki</sitename>
<base>http://wiki.juliano.info/wiki/Welcome</base>
<generator>MediaWiki 1.16.0</generator>
<case>case-sensitive</case>
<namespaces>
<namespace key="-2" case="case-sensitive">Media</namespace>
<namespace key="-1" case="first-letter">Special</namespace>
<namespace key="0" case="case-sensitive" />
<namespace key="1" case="case-sensitive">Talk</namespace>
<namespace key="2" case="first-letter">User</namespace>
<namespace key="3" case="first-letter">User talk</namespace>
<namespace key="4" case="case-sensitive">JWiki</namespace>
<namespace key="5" case="case-sensitive">JWiki talk</namespace>
<namespace key="6" case="case-sensitive">File</namespace>
<namespace key="7" case="case-sensitive">File talk</namespace>
<namespace key="8" case="first-letter">MediaWiki</namespace>
<namespace key="9" case="first-letter">MediaWiki talk</namespace>
<namespace key="10" case="case-sensitive">Template</namespace>
<namespace key="11" case="case-sensitive">Template talk</namespace>
<namespace key="12" case="case-sensitive">Help</namespace>
<namespace key="13" case="case-sensitive">Help talk</namespace>
<namespace key="14" case="case-sensitive">Category</namespace>
<namespace key="15" case="case-sensitive">Category talk</namespace>
<namespace key="100" case="case-sensitive">Wikilog</namespace>
<namespace key="101" case="case-sensitive">Wikilog talk</namespace>
<namespace key="202" case="case-sensitive">Property</namespace>
<namespace key="203" case="case-sensitive">Property talk</namespace>
<namespace key="204" case="case-sensitive">Type</namespace>
<namespace key="205" case="case-sensitive">Type talk</namespace>
<namespace key="208" case="case-sensitive">Concept</namespace>
<namespace key="209" case="case-sensitive">Concept talk</namespace>
</namespaces>
</siteinfo>
<page>
<title>Category:Wikilog manual</title>
<id>89</id>
<revision>
<id>158</id>
<timestamp>2009-09-03T00:44:25Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<comment>Created page with ''''[[Help:Wikilog|]]''' is a [http://www.mediawiki.org/ MediaWiki] extension that enhances it with some common blogging features, making it a wiki-blog hybrid. This category con…'</comment>
<text xml:space="preserve">'''[[Help:Wikilog|Wikilog]]''' is a [http://www.mediawiki.org/ MediaWiki] extension that enhances it with some common blogging features, making it a wiki-blog hybrid.
This category contains the user and administration manual of the extension.</text>
</revision>
</page>
<page>
<title>Template:Wikilog user manual header</title>
<id>90</id>
<revision>
<id>306</id>
<timestamp>2010-08-08T02:49:54Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<text xml:space="preserve">== Summary ==
This template creates a navigation bar at the top of [[Help:Wikilog|Wikilog]] manual articles.
== Parameters ==
; 1
: Manual chapter: "intro", "wikilog", "article" or "advanced".
== Template ==
<onlyinclude><!--
--><table border="1" cellspacing="0" style="background: #F6F6F6; border: 1px solid #A7D9F9;
border-collapse: collapse; width: 100%; margin: 6pt 0pt 0pt;"><!--
--><tr><!--
--><td style="background: #F6F6F6; text-align: center; width: 15%; padding: 0 6pt;"><!--
-->[[Image:Wikilog.png|80px|text-bottom|link=Help:Wikilog]]<!--
--></td><!--
--><td style="background: #F6F6F6; text-align: left; padding: 0 6pt;"><!--
--><span style="font-family: Times, serif; font-size: 110%; font-weight: bold;
font-style: italic;">User Manual</span><!--
--></td><!--
--></tr><!--
--></table><!--
--><table border="1" cellspacing="0" style="background: #F6F6F6; border: 1px solid #A7D9F9;
border-top: 0px; border-collapse: collapse; margin: 0pt 0pt 6pt 6pt; width: 15em;
float: right;"><!--
--><tr><!--
--><td><!--
-->{{Wikilog user manual index}}<!--
--></td><!--
--></tr><!--
--></table><!--
-->[[{{ns:Category}}:Wikilog manual|{{{title|{{SUBPAGENAME}}}}}]]<!--
--></onlyinclude>
[[{{ns:Category}}:Wikilog manual]]</text>
</revision>
</page>
<page>
<title>Template:Wikilog user manual footer</title>
<id>95</id>
<revision>
<id>249</id>
<timestamp>2009-09-12T04:36:44Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<text xml:space="preserve">This template creates the copyright notice at the bottom of [[Help:Wikilog|Wikilog]] manual articles.
== Example ==
<onlyinclude><table style="background: #EEEEEE; border: 1px solid #999999; margin: 24pt auto 3pt; width: 75%; clear: both;"><tr><td class="plainlinks" style="background: #DDDDDD; text-align: center; width: 10%; padding: 3pt 6pt;">[http://creativecommons.org/licenses/by-sa/3.0/ [[File:Wikilog CC-BY-SA 88x31.png|link=]]]</td><td style="padding: 3pt 6pt; font-style: italic;">This {{{kind|page}}} is part of the Wikilog extension user manual, which is licensed under a [http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-Share Alike 3.0 Unported License]. The original text is available at the [http://wiki.juliano.info/wiki/Help:Wikilog extension site].</td></tr></table></onlyinclude>
[[Category:Wikilog manual]]</text>
</revision>
</page>
<page>
<title>Template:Wikilog user manual index</title>
<id>128</id>
<revision>
<id>305</id>
<timestamp>2010-08-08T02:35:39Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<comment>Created page with '<onlyinclude> * [[Help:Wikilog|Introduction]] * Wikilogs ** [[Help:Overview of wikilogs|Overview of wikilogs]] ** [[Help:Wikilog settings|Wikilog settings]] * Wikilog articles **…'</comment>
<text xml:space="preserve"><onlyinclude>
* [[Help:Wikilog|Introduction]]
* Wikilogs
** [[Help:Overview of wikilogs|Overview of wikilogs]]
** [[Help:Wikilog settings|Wikilog settings]]
* Wikilog articles
** [[Help:Overview of wikilog articles|Overview of wikilog articles]]
** [[Help:Writing a wikilog article|Writing a wikilog article]]
* Advanced
** [[Help:Special:Wikilog|Special:Wikilog]]
** [[Help:Embedding wikilogs|Embedding wikilogs]]
** [[Help:Wikilog styling|Styling]]
</onlyinclude>
[[{{ns:Category}}:Wikilog manual]]</text>
</revision>
</page>
<page>
<title>Help:Wikilog</title>
<id>58</id>
<revision>
<id>309</id>
<timestamp>2010-08-08T02:53:20Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<comment>/* User manual */</comment>
<text xml:space="preserve">{{Wikilog user manual header|intro}}
'''Wikilog''' is a [http://www.mediawiki.org/ MediaWiki] extension that enhances the wiki software with some common blogging features, making it a wiki-blog hybrid.
Wiki pages are configured to act as blogs, which are called "wikilogs". Just like blogs, each wikilog contains a number of published articles, with the most recent ones displayed on the wikilog main page in reverse chronological order. Visitors can read wikilog articles from either the wikilog's main page or the article's page. Visitors can easily leave comments to wikilog articles.
Wikilog articles are stored as regular wiki pages, with extra functionality added by the extension. This allows wikilog articles to inherit all the usual wiki functionality, like: wiki syntax, edit history, page categories, talk pages, etc. Extra functionality added by the extension include the listing of articles, setting of article authors, handling of article comments, generation of syndication feeds (Atom and RSS) for individual wikilogs and for all wikilogs of the wiki, and others.
The philosophy of Wikilog is not to just make a blog out of a wiki, but to combine both concepts. Unlike most blogs, wikilog articles can be collaboratively written and published by multiple users. Talk pages of wikilog articles provide a simpler interface for commenting than standard MediaWiki talk pages. It is similar to most blog software, with the addition of discussion threading.
== User manual ==
{{Wikilog user manual index}}
== External links ==
* [http://www.mediawiki.org/wiki/Extension:Wikilog Wikilog MediaWiki extension page]
{{Wikilog user manual footer}}</text>
</revision>
</page>
<page>
<title>Help:Embedding wikilogs</title>
<id>109</id>
<revision>
<id>328</id>
<timestamp>2011-12-11T03:19:46Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<text xml:space="preserve">{{Wikilog user manual header|advanced}}
It is possible to embed a list of wikilog articles in other wiki pages. Any listing that may be generated by [[Help:Special:Wikilog|Special:Wikilog]] can also be embedded like a template in other wiki pages.
This has many interesting uses:
* In the front page of the wiki, a list of the latest wikilog articles.
* In users pages, a list of that user's wikilog articles in all wikilogs.
== Simple embedding ==
Simple embedding is possible by adding [[Help:Special:Wikilog|Special:Wikilog]] as a template call to any wiki page. The syntax is very similar to simple wiki link, except that <code><nowiki>[[...]]</nowiki></code> brackets are replaced by <code><nowiki>{{...}}</nowiki></code> braces.
For example, to embed a list of the last five articles from all wikilogs filled in the History category in the current page, this markup must be added:
'''<nowiki>{{</nowiki>Special:Wikilog'''/Category:History/5'''<nowiki>}}</nowiki>'''
Articles are formatted like in Special:Wikilog page itself, except that the query form isn't shown and no navigation links are provided, only the last articles are listed.
When including or embedding a list of wikilog articles in another page, it may be desired to have the articles presented in a different format, more visually suitable for the page it is being embedded to. In this case, templated embedding is possible.
== Templated embedding ==
By providing a [[Help:Templates|template]] name to Special:Wikilog, the article listing will be formatted according to the provided template. Wikilog loads the template and expands it once for each article, filling its parameters with data from the articles.
For example, to embed a list of wikilog articles from the user ''John Smith'' using the template ''WikilogTempl1'':
<nowiki>{{</nowiki>Special:Wikilog/User:John Smith/'''Template:WikilogTempl1'''<nowiki>}}</nowiki>
The following parameters are provided to the template:
{| class="wikitable" width="100%"
|- style="vertical-align: top;"
! Template parameter
! Contents
|-
| '''class'''
| A list of HTML classes that are suggested to be applied to a <code><nowiki><div></nowiki></code> block around the list fragment. It allows the article entry to be globally styled (see [[Help:Wikilog styling|styling]]). It is a list of one or more of: "wl-entry" and "wl-draft".
|-
| '''wikilogTitle'''
| The title of the wikilog where the article is published, without the namespace prefix. Suitable for presentation.
|-
| '''wikilogPage'''
| The full page title of the wikilog where the article is published. Suitable for wikilinking.
|-
| '''title'''
| The article title. Suitable for presentation.
|-
| '''page'''
| The full page title of the article. Suitable for wikilinking.
|-
| '''authors'''
| One or more authors of the article.
|-
| '''tags'''
| Comma-separated list of article tags.
|-
| '''published'''
| Whether the article was published or still a draft. An asterisk is returned if the article was published, otherwise the parameter is blank. This is designed to be used with the <code>[[Help:Extension:ParserFunctions##if:|<nowiki>{{#if:...}}</nowiki>]]</code> parser function.
|-
| '''date'''
| The article publication date. This is the date that the article was signed, which is the first argument to the <code><nowiki>{{wl-publish:...}}</nowiki></code> parser function call.
|-
| '''time'''
| The article publication time. This is the time that the article was signed, which is the first argument to the <code><nowiki>{{wl-publish:...}}</nowiki></code> parser function call.
|-
| '''tz'''
| Timezone information for the article publication date/time.
|-
| '''updatedDate'''
| The date the article was last edited.
|-
| '''updatedTime'''
| The time the article was last edited.
|-
| '''hasMore'''
| Whether the article has more text than provided by 'summary'. An asterisk is returned if the article contains more text, otherwise the parameter is blank. This is designed to be used with the <code>[[Help:Extension:ParserFunctions##if:|<nowiki>{{#if:...}}</nowiki>]]</code> parser function.
|-
| '''summary'''
| The article summary.
|-
| '''comments'''
| A link to the article comments page. The link text states how many comments are there.
|}
=== Template examples ===
{| class="wikitable" width="100%"
|-
! Template markup
! Result
|-
|
<pre>
<div class="{{{class}}}">
'''[[{{{page}}}|{{{title}}}]]'''
<blockquote>
{{{summary}}}
<p><small>-- {{{authors}}}, {{{time}}}, {{{date}}}.</small></p>
</blockquote>
</div>
</pre>
| [[Image:Wikilog template example 1.png]]
|-
|
<pre>
<div class="{{{class}}}" style="background: #FFFFEE;
border: 1px solid #CCCC99; margin: 1px;">
<ul>
<li>'''Title:''' [[{{{page}}}|{{{title}}}]]</li>
<li>'''Wikilog:''' [[{{{wikilogPage}}}|{{{wikilogTitle}}}]]</li>
<li>'''Authors:''' {{{authors}}}</li>
<li>'''Published:''' {{{time}}}, {{{date}}}</li>
<li>'''Summary:''' {{{summary}}}</li>
<li>'''Comments:''' {{{comments}}}</li>
</ul>
</div>
</pre>
| [[Image:Wikilog template example 2.png]]
|}
{{Wikilog user manual footer}}</text>
</revision>
</page>
<page>
<title>Help:Overview of wikilogs</title>
<id>91</id>
<revision>
<id>220</id>
<timestamp>2009-09-07T02:12:12Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<text xml:space="preserve">{{Wikilog user manual header|wikilog}}
'''Wikilogs''' are the primary concept of a Wikilog-enabled wiki site. Each wikilog works like a blog, and contains multiple published articles. Each wikilog has a main page that lists the last few of its articles (possibly only a summary of each) in reverse chronological order, and navigation links to other pages. Each wikilog article listed is linked to its own page, where the article can be read in full and commented.
A distinction should be made between "Wikilog" the software extension, and "wikilog" the concept. The first refers to the MediaWiki software extension that is installed and provides the blogging functionality; it is always capitalized in this manual. The second refers to this resource provided by the extension, and is pretty much synonymous with "blog"; it is capitalized only at the beginning of sentences in this manual.
Wikilogs are special wiki pages created under certain custom wiki [[Help:Namespaces|namespaces]]. Namespaces are prefixes added before the page title and are used to classify different kinds of pages. In this wiki, {{plural:{{wl-info:num-namespaces}}|the following namespace contains|the following namespaces contain}} wikilogs: ''{{wl-info:all-namespaces}}''.
Pages in {{plural:{{wl-info:num-namespaces}}|this namespace|those namespaces}} have special behavior in a way similar to the pages in ''{{ns:File}}'' and ''{{ns:Category}}'' namespaces. In order to create a new wikilog, a new page has to be created with {{plural:{{wl-info:num-namespaces}}|the ''{{wl-info:namespace-by-index}}'' prefix|one of the above prefixes}} followed by a colon and the title of the wikilog. For example, in order to create a wikilog with the title "''General Rants''" in the ''{{wl-info:namespace-by-index}}'' namespace, the page that has to be created should have the "''{{wl-info:namespace-by-index}}:General Rants''" title.
The contents of the wikilog page are arbitrary, and it will be shown above the listing of wikilog articles. It can be used to describe the purpose of the wikilog, list category links, etc. Since a wikilog is also a wiki page (with added functionality), other wiki features can be creatively used: group wikilogs in categories, interwiki similar wikilogs in different languages, etc. The wikilog page is also used to configure the wikilog through some special markup.
[[Image:Wikilog tab.png|right|frame|Wikilog tab.]]
Wikilog pages have an additional content action tab called "wikilog", that provides some information about the wikilog and also a form to create new articles.
== Further reading ==
* [[Help:Wikilog settings|Wikilog settings]]
* [[Help:Overview of wikilog articles|Overview of wikilog articles]]
{{Wikilog user manual footer}}</text>
</revision>
</page>
<page>
<title>Help:Overview of wikilog articles</title>
<id>96</id>
<revision>
<id>327</id>
<timestamp>2011-12-11T03:15:02Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<text xml:space="preserve">{{Wikilog user manual header|article}}
'''Wikilog articles''' are wiki pages that contain the actual stories published in [[Help:Overview of wikilogs|wikilogs]]. They may have many different names in different blog software: articles, posts, entries, pages, items, news, etc. In this manual, they are strictly referred as wikilog articles, or just articles.
Each wikilog article belongs to exactly one wikilog. Articles are stored as [[Help:Subpages|subpages]] of wikilog pages, where the wiki page title consists of the wikilog title, followed by slash character ("<code>/</code>") and the article title.
To avoid confusion, this manual always refers to these titles as ''full page title'' and ''article title''. For example, an article ''The brown fox'' in the ''General Rants'' wikilog in the ''{{wl-info:namespace-by-index}}'' namespace has these titles:
* '''''{{wl-info:namespace-by-index}}:General Rants/The brown fox'''''
*: This is the full page title. It is used to identify and store the wikilog article in the wiki database, and also to link to the article from other pages of the wiki by using it between <code>[[</code> and <code>]]</code> marks in wikitext.
* '''''The brown fox'''''
*: This is the article title. It is shown to the visitor at the top of the page and is also used to identify the article anywhere within the wikilog.
Wikilog articles can be classified in multiple [[Help:Categories|categories]], like standard wiki pages. Articles may also have [[Help:Wikilog article tags|tags]], which provide a secondary, less formal classification. Also, unlike most blogs, wikilog articles can be prepared, signed and published by multiple authors, in a collaborative way that follows the wiki philosophy. Wikilog provides a special page, [[Help:Special:Wikilog|Special:Wikilog]], which allows the user to query articles by category, author or other criteria.
Since articles can be very long and the wikilog page has to list the last published ones, summaries are used to keep wikilog pages short. Each article has a summary that can be either automatically generated (the beginning of the article up to the first heading) or manually specified by the author (through a special markup).
Talk pages of wikilog articles are enhanced with a commenting interface that is at the same time familiar to blog readers (easy comment post form) and comfortable to wiki users (supports discussion threading, edits, history).
All MediaWiki features are automatically available to wikilog articles and comments. Users can make creative use of them, for example, using interwiki links to link together wikilogs and articles in different languages and different wikis.
== Further reading ==
* [[Help:Writing a wikilog article|Writing a wikilog article]]
{{Wikilog user manual footer}}</text>
</revision>
</page>
<page>
<title>Help:Special:Wikilog</title>
<id>107</id>
<revision>
<id>318</id>
<timestamp>2010-08-08T04:46:56Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<comment>/* Parameters */</comment>
<text xml:space="preserve">{{Wikilog user manual header|advanced}}
The '''[[Special:Wikilog]]''' special page is a central query page for wikilog listings. By default, it displays a list of all articles in all wikilogs, like an aggregator for all hosted wikilogs. It also allows queries based on categories, authors, tags, status, etc. This special page can be included in other pages, so you can embed lists or summaries of wikilog posts anywhere in the wiki. For more information, see [[Help:Embedding wikilogs|embedding wikilogs]].
== Syntax ==
The simplest call to this special page, without parameters, results in a listing of all articles from all wikilogs in the wiki. Example:
'''<nowiki>[[</nowiki>[[Special:Wikilog]]<nowiki>]]</nowiki>'''
The special page displays a query form where the user can provide wikilog, category, author, tag, date and status of articles to list. By filling some of the fields of this form and submitting it, the list is filtered so that only articles matching the criteria are listed.
[[Image:Wikilog_SpecialWikilog_query_form.png|frame|center|Example: Using Special:Wikilog query form to search all wikilog articles in ''Category:Communication'' published in ''2008''.]]
It is possible to call the special page directly with the filtering criteria in two different ways: inline and via query parameters.
The '''inline syntax''' is useful when referring the special page from other pages in the wiki, and also when embedding. In it, parameters are passed to the special page like subpages, after "Special:Wikilog", separated by slash characters ("<code>/</code>"). For example, the query displayed in the image above could be directly linked from other pages with:
'''<nowiki>[[</nowiki>[[Special:Wikilog/Category:Communication/y=2008]]<nowiki>]]</nowiki>'''
The '''standard syntax''' is used when interacting with HTML forms and directly calling the MediaWiki [[Manual:index.php|index.php]] script. Some features, like syndication feeds, are available only through the standard syntax. For example, the same query above looks like this in the standard syntax:
'''{{localurl:Special:Wikilog|category=''Communication''&year=''2008''}}'''
== Parameters ==
The following table lists the parameters accepted by the Special:Wikilog special page. The first column lists the standard query syntax parameters that should be passed when calling the [[Manual:index.php|index.php]] script. Multiple parameters are concatenated with ampersand characters ("<code>&</code>"). The second column lists the inline syntax parameters that should be passed when linking from the wiki. Multiple parameters are concatenated with slash characters ("<code>/</code>") ['''Note:''' "<code>;</code>" was used as separator before Wikilog 0.8.0].
{| class="wikitable"
|- style="vertical-align: top;"
! Query parameter
! Inline syntax
! Description
|- style="vertical-align: top;"
|rowspan=2| '''wikilog='''''wikilog-title''
|rowspan=2| ''wikilog-title''
| Display only articles from the given wikilog. In both cases, ''wikilog-title'' is the wikilog page title including the namespace, since multiple namespaces can be configured to have wikilogs. Example: ''"{{wl-info:namespace-by-index}}:General rants"''.
|- style="vertical-align: top;"
| It is also possible to display all articles in a given namespace by using an asterisk as the page title. Example: ''"{{wl-info:namespace-by-index}}:*"''
|- style="vertical-align: top;"
| '''category='''''category-name''
| '''{{ns:Category}}:'''''category-name''
| Display only articles in the given category. Example: ''"{{ns:Category}}:Communication"''.
|- style="vertical-align: top;"
| '''author='''''author-name''
| '''{{ns:User}}:'''''author-name''
| Display only articles written by the given author. Example: ''"{{ns:User}}:John_Smith"''.
|- style="vertical-align: top;"
| '''tag='''''tag''
| '''t='''''tag''
| Display only articles tagged with the given tag. {{#if: {{wl-info:tags-enabled}} | | This feature is not enabled in this wiki. }} Example: ''"t=web"''.
|- style="vertical-align: top;"
| '''year='''''year''<br/>'''month='''''month''<br/>'''day='''''day''<br/>
| '''y='''''year''<br/>'''m='''''month''<br/>'''d='''''day''<br/>'''date='''''year''[-''month''[-''day'']]
| Display only articles in the time period specified. The ''date='' parameter of the inline syntax is an alternative to the ''y='', ''m='' and ''d='' syntax; the later is preferred. Example: ''"y=2008/m=10"''.
|- style="vertical-align: top;"
| '''show='''''status''
| ''status''
| Display only articles with the given status:
* '''all''' - displays all posts
* '''published''' (default) - displays only published posts
* '''drafts''' - displays only drafts
|- style="vertical-align: top;"
| '''view='''''view-mode''
| ''view-mode''
| Select the view mode:
* '''summary''' (default) - displays the title and summary of articles, in reverse chronological order
* '''archives''' - displays a compact tabular list of articles
|- style="vertical-align: top;"
| '''template='''''template-name''
| '''Template:'''''template-name''
| In summary view, format articles using the given template instead of the standard presentation. Details about the template parameters that can be used are presented in [[Help:Embedding wikilogs|embedding wikilogs]].
|- style="vertical-align: top;"
| '''limit='''''number-of-posts''
| ''number-of-posts''
| Limit the number of posts displayed. Note that in inline syntax, the number itself is the parameter.
|- style="vertical-align: top;"
| '''feed='''''format''
|
| Generates a syndication feed of wikilog articles (valid formats: '''atom''' and '''rss''').
|}
== Syndication feeds ==
When the ''feed='' parameter is used, a syndication feed in the given format is generated and returned. The URL can be added to feed aggregators, which will retrieve the list of wikilog articles directly from the wiki.
'''Note:''' Due to caching concerns, filtering is very limited in this mode. Only wikilog and limit parameters are recognized. Probably category filtering will also be enabled in the future.
== Examples ==
The last five articles from all wikilogs in the ''History'' category:
<nowiki>[[</nowiki>Special:Wikilog/Category:History/5<nowiki>]]</nowiki>
All articles written by user ''John Smith'' in October 2008:
<nowiki>[[</nowiki>Special:Wikilog/User:John Smith/y=2008/m=10<nowiki>]]</nowiki>
All drafts from all wikilogs:
<nowiki>[[</nowiki>Special:Wikilog/drafts<nowiki>]]</nowiki>
{{Wikilog user manual footer}}</text>
</revision>
</page>
<page>
<title>Help:Wikilog settings</title>
<id>93</id>
<revision>
<id>308</id>
<timestamp>2010-08-08T02:52:11Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<minor/>
<comment>fix for new header style</comment>
<text xml:space="preserve">{{Wikilog user manual header|wikilog}}
Each wikilog has a few settings that can be set by adding some special markup to the wikilog page. These settings are more relevant to the syndication feeds (Atom and RSS) that are automatically generated by Wikilog.
== Icon, logo and subtitle ==
In order to adjust the icon, logo and subtitle of the wikilog, the <code><nowiki>{{wl-settings:...}}</nowiki></code> parser function should be added to the text of the wikilog page. This parser function has the following format (bolds are fixed text, italics are variable text):
'''<nowiki>{{wl-settings:</nowiki>'''
''' | icon =''' ''icon file''
''' | logo =''' ''logo file''
''' | subtitle =''' ''subtitle message''
'''}}'''
The three middle lines (''icon'', ''logo'' and ''subtitle'') are all optional, and should only be provided if that information is to be set.
=== Icon ===
The ''icon'' parameter to the <code><nowiki>{{wl-settings:...}}</nowiki></code> parser function provides an iconic identification for the wikilog. The icon should be a small square image and has the same principle as [http://en.wikipedia.org/wiki/Favicon website favicons]. Icons are used only in Atom feeds [http://tools.ietf.org/html/rfc4287#section-4.2.5].
The ''icon file'' argument should consist of a simple image wikilink to the file that contains the icon. The file must have been uploaded and be accessible from the wiki.
For example, the following block of text defines the icon of the wikilog to be ''ExampleIcon.png'':
'''<nowiki>{{wl-settings:</nowiki>'''
''' | icon =''' <nowiki>[[Image:ExampleIcon.png]]</nowiki>
'''}}'''
Many syndication feed readers don't support feed icons.
=== Logo ===
The ''logo'' parameter to the <code><nowiki>{{wl-settings:...}}</nowiki></code> parser function provides a visual identification for the wikilog. Logos are used in both Atom and RSS feeds, but has different restrictions. The Atom specification recommends that the image have a landscape orientation with 2 to 1 aspect ratio [http://tools.ietf.org/html/rfc4287#section-4.2.8], while the RSS specification restricts the image size to 144×400 pixels maximum [http://www.rssboard.org/rss-specification#ltimagegtSubelementOfLtchannelgt]. A good compromise between both specifications is a logo with dimensions of 144×72 pixels.
The ''logo file'' argument in the above example should consist of a simple image wikilink to the file that contains the logo. The file must have been uploaded and be accessible from the wiki. For example, the following block of text defines the logo of the wikilog to be ''ExampleLogo.png'':
'''<nowiki>{{wl-settings:</nowiki>'''
''' | logo =''' <nowiki>[[Image:ExampleLogo.png]]</nowiki>
'''}}'''
Many syndication feed readers don't support feed logos.
=== Subtitle ===
The ''subtitle'' parameter to the <code><nowiki>{{wl-settings:...}}</nowiki></code> parser function provides a short description about the wikilog. It is used in both Atom and RSS feeds. Wiki markup is allowed, but only possible in Atom feeds (RSS feeds will have only text).
For example, the following block of text defines the subtitle of the wikilog to be ''Random rants'':
'''<nowiki>{{wl-settings:</nowiki>'''
''' | subtitle =''' Random rants
'''}}'''
== Authors ==
It is possible to globally define the authors of a wikilog through the <code><nowiki>{{wl-author:...}}</nowiki></code> parser function. Many authors can be provided, separated by pipe ("<code>|</code>") characters. The markup can also appear many times in the contents of wikilog page. In both cases, multiple authors are defined.
'''<nowiki>{{wl-author:</nowiki>''' ''author name'' '''}}'''
'''<nowiki>{{wl-author:</nowiki>''' ''first author'' | ''second author'' | ''...'' '''}}'''
The author name should be the name of the user in the wiki. The wiki user page is linked back from the syndication feeds.
'''Note:''' This feature is provided only for completeness and its usage is not recommended. The expected usage is to provide authors individually for each wikilog article published in the wikilog, through the <code><nowiki>{{wl-publish:...}}</nowiki></code> parser function in the wikilog article page.
== References ==
* [http://tools.ietf.org/html/rfc4287 RFC 4287 - The Atom Syndication Format]
* [http://www.rssboard.org/rss-specification RSS 2.0 Specification]
{{Wikilog user manual footer}}</text>
</revision>
</page>
<page>
<title>Help:Wikilog styling</title>
<id>88</id>
<revision>
<id>316</id>
<timestamp>2010-08-08T04:39:51Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<comment>new comments page</comment>
<text xml:space="preserve">{{Wikilog user manual header|advanced}}
This page shows topographic diagrams of HTML blocks that may be useful in order to customize the appearance of the content generated by the Wikilog extension. The extension can be customized by adding CSS rules to [[MediaWiki:Common.css]].
== Summary pager ==
The summary pager is used by default to display the list of wikilog articles in wikilog pages and [[Special:Wikilog]]. It produces the following topography:
<div style="background:#EEE; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-wrapper'''<br/>
Contains the Wikilog-generated listing of wikilog articles.
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-options'''<br/>
Used only in Special:Wikilog, optional. It is a fieldset with query fields.
</div>
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-navbar .wl-navbar-top'''<br/>
Optional. The top navigation bar, with paging links to next/previous pages of articles.<br/>
''([[MediaWiki:Wikilog-navigation-bar|wikilog-navigation-bar]] -- customizable, optional)''
</div>
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-roll'''<br/>
The list of wikilog articles (entries).
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-entry''' [ ''.wl-draft'' ]<br/>
A single wikilog article (entry).
<div style="background:#BBB; border:1px dashed gray; padding:3pt; margin:3pt;">
'''h2'''<br/>
The title of the wikilog article.
</div>
<div style="background:#BBB; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-summary-header'''<br/>
Optional. Contains the header of the summary entry, with authors, date, time, comments link, etc.<br/>
''([[MediaWiki:Wikilog-summary-header|wikilog-summary-header]] -- customizable)''
</div>
<div style="background:#BBB; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-summary'''<br/>
The summary text of the wikilog article.<br/>
''([[MediaWiki:Wikilog-summary-more|wikilog-summary-more]] -- customizable, conditional)''
</div>
<div style="background:#BBB; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-summary-footer'''<br/>
Optional. Contains the header of the summary entry, with authors, date, time, comments link, etc.<br/>
''([[MediaWiki:Wikilog-summary-footer|wikilog-summary-footer]] -- customizable)''
</div>
</div>
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">'''.wl-entry''' [ ''.wl-draft'' ] ...</div>
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">'''.wl-entry''' [ ''.wl-draft'' ] ...</div>
<p style="text-align:center">...</p>
</div>
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-navbar .wl-navbar-bottom'''<br/>
Optional. The bottom navigation bar, with paging links to next/previous pages of articles.<br/>
''([[MediaWiki:Wikilog-navigation-bar|wikilog-navigation-bar]] -- customizable, optional)''.
</div>
</div>
== Comments page ==
The comments page of a wikilog article contains the standard page contents (usually blank, unless it was edited or viewing a single comment) followed by Wikilog-generated list of comments, with the following topography:
<div style="background:#EEE; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-comments'''<br/>
Wraps entire Wikilog-generated list of comments.
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">
'''h2#wl-comments-header'''<br/>
The "Comments" or "Replies" H2 heading.
</div>
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-threads'''<br/>
Contains all threads of the comments page.
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-thread'''<br/>
A single top-level comment and its thread (all its replies, recursively).<br/>
... (see below)
</div>
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">'''.wl-thread''' ... (see below)</div>
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">'''.wl-thread''' ... (see below)</div>
<p style="text-align:center">...</p>
</div>
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">
'''#wl-comment-form'''<br/>
The "add new comment" form that the user interacts with.
</div>
</div>
=== Visible comment ===
A single visible comment thread, an all the replies to such a comment, is formatted as follows:
<div style="background:#EEE; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-thread'''<br/>
Indents the comment and all its replies in a thread.
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-comment''' [ ''.wl-comment-pending'' | ''.wl-comment-deleted'' ] [ ''.wl-comment-by-anon'' | ''.wl-comment-by-user'' [ ''.wl-comment-by-author'' ] ]<br/>
Contains the visible comment.
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-comment-header'''<br/>
Optional. Contains the header of the comment, with author, date, time, etc.<br/>
''([[MediaWiki:Wikilog-comment-header|wikilog-comment-header]] -- customizable)''
</div>
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-comment-text'''<br/>
The comment text itself.
</div>
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-comment-footer'''<br/>
Optional. Contains the footer of the comment, with author, date, time, etc.<br/>
''([[MediaWiki:Wikilog-comment-footer|wikilog-comment-footer]] -- customizable)''
</div>
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-comment-tools'''<br/>
Contains links related to the comment, like reply, page, edit, etc.
</div>
</div>
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">'''.wl-thread''' ... (recursive)</div>
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">'''.wl-thread''' ... (recursive)</div>
<p style="text-align:center">...</p>
</div>
=== Hidden comment ===
A single hidden comment thread, an all the replies to such a comment, is formatted as follows:
<div style="background:#EEE; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-thread'''<br/>
Indents the comment and all its replies in a thread.
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-comment''' [ ''.wl-comment-pending'' | ''.wl-comment-deleted'' ] [ ''.wl-comment-by-anon'' | ''.wl-comment-by-user'' [ ''.wl-comment-by-author'' ] ]<br/>
Contains the hidden comment and its metadata.
<div style="background:#CCC; border:1px dashed gray; padding:3pt; margin:3pt;">
'''.wl-comment-placeholder'''<br/>
Placeholder of the hidden comment.
</div>
</div>
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">'''.wl-thread''' ... (recursive)</div>
<div style="background:#DDD; border:1px dashed gray; padding:3pt; margin:3pt;">'''.wl-thread''' ... (recursive)</div>
<p style="text-align:center">...</p>
</div>
{{Wikilog user manual footer}}</text>
</revision>
</page>
<page>
<title>Help:Writing a wikilog article</title>
<id>101</id>
<revision>
<id>315</id>
<timestamp>2010-08-08T04:25:29Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<minor/>
<comment>/* Article summary */</comment>
<text xml:space="preserve">{{Wikilog user manual header|article}}
In order to create a new wikilog article, a new wiki page must be created as a subpage of the wikilog page. The wikilog article title is the subpage part of the page title. For example, a wikilog article ''"The brown fox"'' in the ''"{{wl-info:namespace-by-index}}:General Rants"'' wikilog must have the full page title ''"{{wl-info:namespace-by-index}}:General Rants/The brown fox"''.
[[Image:Wikilog tab.png|right|frame|Wikilog tab.]]
The user can either create the page with the title directly, or use the ''wikilog'' content action tab from the main wikilog page. In the later case, the user should type the new article title in the ''"Create new wikilog article"'' box and press ''"Create"'' to be redirected to the edit page of the new article with the correct full title.
At the edit page, the user writes the contents of the wikilog article like any other wiki page. The article stays in "draft" state and won't show in listings until it is ready for publication. While in draft state, authors must use the ''wikilog'' content action tab to access the article, or directly via its URL.
== Signing and publishing ==
In order for the article to show in the wikilog listing, it must be signed and published. The article is assigned an author and a date when published. In the most common usage, this can be achieved by simply adding four consecutive tildes ("<code><nowiki>~~~~</nowiki></code>") to the article text, preferably at its end near the other metadata like categores, interwiki links, tags, etc. This sequence of tildes are called "signature", and adding it to a piece of wikitext in MediaWiki is commonly referred as "to sign" the text. In wikilog context, this means "to sign and publish" the article. The edit toolbar provides a button for signing that can be used to insert this sequence in the text.
When the article is saved, the tilde sequence is replaced by a special markup that sets the article publication date and adds the current editor as an author. Other sequences, from 3 to 5 consecutive tildes, are also recognized by Wikilog, with different meanings:
{| class="wikitable"
|-
! Function !! Wiki markup !! Wikilog meaning !! Replaced by
|-
| Signature alone
| '''<pre>~~~</pre>'''
| Add the current editor as an author of the wikilog article, without publishing the article.
|
'''<nowiki>{{wl-author:</nowiki>''' ''user name'' '''<nowiki>}}</nowiki>'''
|-
| Signature plus timestamp
| '''<pre>~~~~</pre>'''
| Add the current editor as an author and immediately publish the article.
|
'''<nowiki>{{wl-publish:</nowiki>''' ''current time'' '''|''' ''user name'' '''<nowiki>}}</nowiki>'''
|-
| Timestamp alone
| '''<pre>~~~~~</pre>'''
| Immediately publish the article, but don't set any new author.
|
'''<nowiki>{{wl-publish:</nowiki>''' ''current time'' '''<nowiki>}}</nowiki>'''
|}
It may be noticed that the meanings of these markups are very intuitive when compared to the [[Help:Signatures|standard signatures]].
== Article summary ==
<div class="thumb"><div class="thumbinner">
[[Image:Wikilog summary auto.png|frameless|border]]
[[Image:Wikilog summary delim.png|frameless|border]]
[[Image:Wikilog summary manual.png|frameless|border]]
<div class="thumbcaption">Examples of article summary text automatically selected by Wikilog and summary defined by the author using the <code>--more--</code> delimiter and using the <code><nowiki><summary></nowiki></code> tag.</div>
</div></div>
Wikilog articles, like any wiki page, can be very long. Wikilog pages list several articles at a time, and visitors may not be interested in reading entire articles when casually visiting the wikilog. Instead, wikilog pages shows only article summaries. Visitors click the article title or a "continue reading..." link to read the full article in its own page.
Summaries are either inferred automatically by Wikilog or defined explicitly by article authors.
Automatic summaries are used when no indication is explicitly provided. The algorithm is very simple: all the text from the beginning up to the first page heading is used as a summary of the article. In other words, the zeroth section of the page is its summary. This usually leads to good results: short articles usually have only a single section and no headings, so the whole article is its own summary; long articles, on the other hand, are usually divided in many sections, and only the leading section is used. But this implementation will give really bad results for a long article with no headings. In this case, a summary should be manually defined.
Manual summaries can be defined by using specific delimiters in the article text. There are two methods to define a manual summary for an article.
The first method is to place the <code>--more--</code> delimiter in a line by itself. Everything before the delimiter is used as the article summary. The full article includes all the text before the delimiter (the summary) and the text after the delimiter. The delimiter itself is invisible. Due to the nature of this method, only the beginning of the article can be used as a summary.
''summary text''
'''--more--'''
''rest of article text''
The second method is to surround part of the article text with the <code><nowiki><summary>...</summary></nowiki></code> markup. Only the text between these tags will be used as the summary of the article. The summary is also normally shown as part of the article text.
It is possible to define a summary that will only be used in wikilog listings, and not appear in the article page itself. This can be useful in order to display a slightly different text in wikilog listings, perhaps with different formatting or with a thumbnail of an image of the article. In this case, the <code>hidden</code> parameter must be passed in the opening summary tag. The text between the summary tags will not appear in the article page.
The general syntax of the summary tag is:
'''<nowiki><summary</nowiki>''' [ hidden ]'''>'''
''summary text''
'''<nowiki></summary></nowiki>'''
{{Wikilog user manual footer}}</text>
</revision>
</page>
<page>
<title>File:Wikilog.png</title>
<id>57</id>
<revision>
<id>258</id>
<timestamp>2009-09-12T04:48:34Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<text xml:space="preserve">== Summary ==
Wikilog logo.
== License ==
* '''Author:''' [http://juliano.info/ Juliano F. Ravasi]
* '''License:''' [http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-Share Alike 3.0 Unported License]
{{Wikilog user manual footer|kind=image}}
[[Category:Wikilog manual]]</text>
</revision>
</page>
<page>
<title>File:Wikilog CC-BY-SA 88x31.png</title>
<id>94</id>
<revision>
<id>248</id>
<timestamp>2009-09-12T04:34:37Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<text xml:space="preserve">Creative Commons Attribution-ShareAlike License icon. Provided as a file since MediaWiki can't include images in page texts from other sites without special server configuration.
Original image: http://i.creativecommons.org/l/by-sa/3.0/88x31.png
[[Category:Wikilog manual]]</text>
</revision>
</page>
<page>
<title>File:Wikilog SpecialWikilog query form.png</title>
<id>108</id>
<revision>
<id>259</id>
<timestamp>2009-09-12T04:49:07Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<text xml:space="preserve">== Summary ==
Special:Wikilog special page query form.
== License ==
* '''Author:''' [http://juliano.info/ Juliano F. Ravasi]
* '''License:''' [http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-Share Alike 3.0 Unported License]
{{Wikilog user manual footer|kind=image}}
[[Category:Wikilog manual]]</text>
</revision>
</page>
<page>
<title>File:Wikilog summary auto.png</title>
<id>102</id>
<revision>
<id>313</id>
<timestamp>2010-08-08T04:10:28Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<comment>uploaded a new version of "[[File:Wikilog summary auto.png]]"</comment>
<text xml:space="preserve">== Summary ==
Wikilog automatic summary example.
== License ==
* '''Author:''' [http://juliano.info/ Juliano F. Ravasi]
* '''License:''' [http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-Share Alike 3.0 Unported License]
{{Wikilog user manual footer|kind=image}}
[[Category:Wikilog manual]]</text>
</revision>
</page>
<page>
<title>File:Wikilog summary delim.png</title>
<id>129</id>
<revision>
<id>312</id>
<timestamp>2010-08-08T04:07:58Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<comment>== Summary ==
Wikilog manual summary example.
== License ==
* '''Author:''' [http://juliano.info/ Juliano F. Ravasi]
* '''License:''' [http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-Share Alike 3.0 Unported License]
{{Wikilo</comment>
<text xml:space="preserve">== Summary ==
Wikilog manual summary example.
== License ==
* '''Author:''' [http://juliano.info/ Juliano F. Ravasi]
* '''License:''' [http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-Share Alike 3.0 Unported License]
{{Wikilog user manual footer|kind=image}}
[[Category:Wikilog manual]]</text>
</revision>
</page>
<page>
<title>File:Wikilog summary manual.png</title>
<id>103</id>
<revision>
<id>311</id>
<timestamp>2010-08-08T04:07:15Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<comment>uploaded a new version of "[[File:Wikilog summary manual.png]]"</comment>
<text xml:space="preserve">== Summary ==
Wikilog manual summary example.
== License ==
* '''Author:''' [http://juliano.info/ Juliano F. Ravasi]
* '''License:''' [http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-Share Alike 3.0 Unported License]
{{Wikilog user manual footer|kind=image}}
[[Category:Wikilog manual]]</text>
</revision>
</page>
<page>
<title>File:Wikilog tab.png</title>
<id>92</id>
<revision>
<id>262</id>
<timestamp>2009-09-12T04:50:20Z</timestamp>
<contributor>
<username>Juliano</username>
<id>1</id>
</contributor>
<text xml:space="preserve">== Summary ==
Wikilog tab.
== License ==
* '''Author:''' [http://juliano.info/ Juliano F. Ravasi]
* '''License:''' [http://creativecommons.org/licenses/by-sa/3.0/ Creative Commons Attribution-Share Alike 3.0 Unported License]
{{Wikilog user manual footer|kind=image}}