Extension:Cite/Cite.php
From Awan
- This page is about the extension. See also Help:Footnotes, and Wikipedia:Footnotes for the use in the English Wikipedia.
Cite.php is a Cite extension that adds two parser hooks to MediaWiki, <ref>
and <references />
; these operate together to add citations to pages.
[edit] Installation
- Download the snapshot that matches your version of MediaWiki and put it in the extensions directory.
- The SVN seems currently buggy. Keep to version Cite-MW1.16-r62678. See discussion page. Alkarex 09:45, 14 September 2010 (UTC)
- Create a folder called Cite and put the extracted files in this folder.
- Extract the new folder to your extensions directory folder.
- Add the following line to the bottom of LocalSettings.php (though not after trailing ?>, if it is present):
- <source lang="php">require_once("$IP/extensions/Cite/Cite.php");</source>
- Installation can now be verified through Special:Version of your wiki.
[edit] Usage
The basic concept of the <ref> tag is that it inserts the text enclosed by the ref tags as a footnote in a designated section, which you indicate with the placeholder tag <references />. This format cannot be used interchangeably with the older format — you must pick one or the other.
If you forget to include <references /> in the article, the footnotes will not appear, but a red error message will be displayed at the end of the page.
This page itself uses footnotes, such as the one at the end of this sentence.<ref>This footnote is used as an example in the "How to use" section.</ref> If you view the source of this page by clicking "Edit this page", you can see a working example of footnotes.
[edit] Example
According to scientists, the Sun is pretty big.<ref>E. Miller, The Sun, (New York: Academic Press, 2005), 23-5.</ref>
The Moon, however, is not so big.<ref>R. Smith, "Size of the Moon", Scientific American, 46 (April 1978): 44-6.</ref>
==Notes==
<references />
[edit] Multiple uses of the same footnote
To give a footnote a unique identifier, use <ref name="name">. You can then refer to the same footnote again by using a ref tag with the same name. The text inside the second tag doesn't matter, because the text already exists in the first reference. You can either copy the whole footnote, or you can use a terminated empty ref tag that looks like this: <ref name="name" />. The quotes are not required (but not incorrect) if the name contains no embedded spaces. The space before the closing "/" may be omitted.
In the following example, the same source is cited three times.
This is an example of multiple references to the same footnote.<ref name="multiple">Remember that when you refer to the same footnote multiple times, the text from the first reference is used.</ref>
Such references are particularly useful when citing sources, if different statements come from the same source.<ref name="multiple">This text is superfluous, and won't show up anywhere. We may as well just use an empty tag.</ref>
A concise way to make multiple references is to use empty ref tags, which have a slash at the end. Although this may reduce redundant work, please be aware that if a future editor removes the first reference, this will result in the loss of all references using the empty ref tags.<ref name="multiple" />
==Notes==
<references />
The text above gives the following result in the article (see also section below):
This is an example of multiple references to the same footnote.<ref name="multiple">Remember that when you refer to the same footnote multiple times, the text from the first reference is used.</ref>
Such references are particularly useful when citing sources, when different statements come from the same source.<ref name="multiple">This text is superfluous, and won't show up anywhere. We may as well just use an empty tag.</ref>
A concise way to make multiple references is to use empty ref tags, which have a slash at the end. Although this may reduce redundant work, please be aware that if a future editor removes the first reference, this will result in the loss of all references using the empty ref tags.<ref name="multiple" />
Note: name=
identifiers require alphabetic characters; solely relying on numerals will generate an error message
[edit] Merging two texts into a single reference (wikisource issue)
A typical wikisource issue is, how to merge into one reference texts split into different pages. This can be done using a <ref name="name"> tag for the first part of the reference, and tagging the following parts into different pages with a tag <ref follow="name">.
Here an example, deriving the text used into previous section:
This is an example of merging multiple texts into the same footnote.<ref name="main">Remember that all the texts will be included into the reference containing the ''name='' attribute.<br /></ref> <ref follow="main">Simply include the text to be merged into the first <ref name="name"> reference with a tag <ref follow="name"><br />This paragraph is included into a similar tag and it will be merged into the reference in former paragraph. </ref>
Result:
This is an example of merging multiple texts into the same footnote.<ref name="main">Remember that all the texts will be
included into the reference containing the name= attribute.
</ref>
<ref follow="main">Simply include the text to be merged into the first <ref name="name"> reference with a tag <ref follow="name">
This paragraph is included into a similar tag and it will be merged into the reference in former paragraph. </ref>
When using this syntax into Page: namespace, take care that the ref follow part of the footnote is transcluded too into the same ns0 page, where the first part of footnote is transcluded. Use appropriately section tags to get this result.
[edit] <references/>
Placing <references />
inserts the full text of all pending inline citations defined by <ref>
, anywhere on the page. For example, based on the citations above, the code:
<references/>
will yield:
<references />
In some language editions of Wikipedia, long reference lists may be placed using the template {{Reflist}}
, which incorporates <references/>
. It provides an optional parameter to display the reference list in multiple columns. For instance, the English, Hindi and Interlingua Wikipedias use the css selector references-small
to make the reference text smaller than normal text.
In the case of multiple references-tags on a page, each gives the references defined in the ref-tags from the previous references-tag. In the case that these references-tags are produced by templates, each gives the references defined in the ref-tags before the first references-tag, and there is an error message that there is a ref-tag but not a references-tag.
[edit] Grouped references
This may be disabled by $wgAllowCiteGroups = false;
if desired. However, it is enabled on the Foundation wikis.
The following example generates separate reference lists for citations and miscellaneous footnotes:
According to scientists, the Sun is pretty big <ref>E. Miller, The Sun, (New York: Academic Press, 2005), 23-5.</ref>.
In fact, it is very big <ref group="footnotes">Take their word for it. Don't look directly at the sun!</ref>.
==Notes==
<references group="footnotes" />
==References==
<references />
The anonymous group works as before, while the named group reference will show up as <ref group="footnotes">Test of the group argument</ref>, and the references will look like this: <references group="footnotes" />
[edit] Separating references from text
In-text references make it easy to copy the text to another page; on the other hand, they make it hard to read. References containing a lot of data, quotes or elaborate citation templates can make up a significantly larger fraction of the source than the text that will actually be visible. To avoid this, recent versions of the extension allow moving some or all of the references into the <references />
section, to the place where they will actually appear to the reader. Thus,
According to scientists, the Sun is pretty big.<ref name="miller" />
The Moon, however, is not so big.<ref name="smith" />
==Notes==
<references>
<ref name="miller">E. Miller, The Sun, (New York: Academic Press, 2005), 23-5.</ref></br> <ref name="smith">R. Smith, "Size of the Moon", Scientific American, 46 (April 1978): 44-6.</ref>
</references>
will have the same output as the first example above, although the numbering and order of the references will not in general be the same.
[edit] Customization
Template:Technical
The format of the output of <ref>
and <references>
is almost completely customizable through MediaWiki messages, that can be modified, for example, through the MediaWiki namespace depending on the configuration of the wiki.
For a list of messages that control the output of <ref>
and <references>
and the values, if any, that are passed to them ($1, $2, $3 ...), see the code in CVS for an up-to-date listing of their default contents.
- cite_reference_link_key_with_num
- key
- num
- cite_reference_link_prefix
- cite_reference_link_suffix
- cite_references_link_prefix
- cite_references_link_suffix
- cite_reference_link
- ref ID
- backlink ID
- count to display
- cite_references_link_one
- Used to format the source list that <references /> outputs, it configures 3 things: the backlink ID, the ref ID, and text of note.
- backlink ID - used for creating the number order of the source list.
- ref ID - used to link back to the actual reference in the text, this is where you can configure the <bold>^</bold> symbol
- text of note - text used above describing the source info
- cite_references_link_many
- backlink ID
- list of links
- text of note
- cite_references_link_many_format
- ref ID
- numeric value to use as a backlink
- custom value (as defined in cite_references_link_many_format_backlink_labels to use as a backlink)
- cite_references_link_many_format_backlink_labels
- cite_references_link_many_sep
- cite_references_link_many_and
- cite_references_prefix
- cite_references_suffix
[edit] Set references to use ^ and letters like Wikipedia
Modify the following system messages. All of these pages can be found on Special:Allmessages:
On the page MediaWiki:Cite references link one change:
- <li id="$1">[[#$2|↑]] $3</li>
- to
- <li id="$1">[[#$2|^]] $3</li>
On the page MediaWiki:Cite references link many change:
- <li id="$1">↑ $2 $3</li>
- to
- <li id="$1">^ $2 $3</li>
On the page MediaWiki:Cite references link many format change:
- [[#$1|<sup>$2</sup>]]
- to:
- [[#$1|<sup>$3</sup>]]
Explanation:
- The ^ replaces the up arrows.
- Putting $3 between the <sup> </sup> tags changes the links from 1.0, 1.1, 1.2 to a, b, c etc...
Searching for these 3 pages for the first time will result in no matches. Simply click "Create this page" to edit the code. The changes will not show up until a page with references is rebuilt.
[edit] Set reference and reference number highlighting like Wikipedia
Add the following code to the MediaWiki:Common.css page. <source lang="css"> /* make the list of references look smaller and highlight clicked reference in blue */ ol.references { font-size: 80%; } .references-small { font-size: 70%;} ol.references > li:target { background-color: #ddeeff; } sup.reference:target { background-color: #ddeeff; } </source> Source: Wikipedia stylesheet --Wikinaut 03:02, 23 December 2009 (UTC)
[edit] Current problems
[edit] Problems with cite.php
[edit] Cite returns "cite_link_label_group"
The input:
<ref>foobaar</ref>
Returns "cite_link_label_group" within the bracketed superscript when I load the page. I've tried with all versions of cite from 1.14 and up to trunk version with the same result. Running MewdiaWiki 1.16 with Swedish locale. Please help. (I've currently abandoned the idea of using this extension since it just doesn't do the job and lacks support. Sorry guys.) Thanks anyway.
Lars Svensson Setpember 12 2010.
- Yes, I have had the same problem with SVN version and got back to version Cite-MW1.16-r62678 to get it to work. But you need to re-edit a page to get it updated. See the discussion page for such matters. All the best. Alkarex 09:42, 14 September 2010 (UTC)
[edit] My Fix
I had this problem until I checked the version of "Cite" that I was running. I had the wrong version. Try checking your version of MediaWiki and re-download the correct "Cite" version. Now it's A-OK.
[edit] Problem with cites and references
I installed MediaWiki 1.15.1 For solving the problem with cites and references I made the following as I was suggested:
- Download the snapshot that matches your version of MediaWiki and put it in the extensions directory. (done)
- Add the following line to LocalSettings.php:
- $IP/extensions/Cite/Cite.php; (done)
- $IP/includes/DefaultSettings.php; (done)
And don´t work
Any suggestion or help? Thanks in advance Coconuts34 18:15, 11 November 2009 (UTC)
Remove this line. "$IP/includes/DefaultSettings.php;" This is likely already called in your LocalSettings.php. All you need to do is make sure that "$IP/extensions/Cite/Cite.php;" comes after "$IP/includes/DefaultSettings.php;".
192.75.172.1 16:17, 14 December 2009 (UTC)
- -Thanks a lot for your help! Coconuts34
[edit] Fatal error: Call to undefined function wfloadextensionmessages
Fatal error: Call to undefined function wfloadextensionmessages() in /home/extensions/Cite/Cite.php on line 32.
This error was received once extension was added. $wgExtensionMessagesFiles works only with version 1.11. Update your version. or download 1.10 branches extensions
[edit] Apache error
PHP logs an error in the Apache error log: (MediaWiki 1.6.8, PHP 4.4.4, Apache 1.3.37)
[error] PHP Notice: Use of undefined constant __METHOD__ - assumed '__METHOD__' in extensions/Cite/Cite.php on line 609 [error] PHP Notice: Use of undefined constant __METHOD__ - assumed '__METHOD__' in extensions/Cite/Cite.php on line 612
- I was able to fix this by placing single quotes around __METHOD__ on both lines (609 & 612)
- This is because the __METHOD__ is only available since PHP 5, using '__METHOD__' is not a correct fix. --Løde
[edit] Version 1.6.8
It doesn't work with version 1.6.8! I eventually got cite.php working with "13660" but not "13826" versions. My error messages appeared at the top of the page:
- Warning
- Cannot modify header information - headers already sent by (output started at /****/wiki/extensions/Cite.i18n.php:399) in /****/OutputPage.php on line 575
- Warning
- Cannot modify header information - headers already sent by (output started at /****/wiki/extensions/Cite.i18n.php:399) in /****/wiki/includes/OutputPage.php on line 576
[This error can occur if there is an extra (not visible) character in the php file. It seems to happen a lot of with desktop editors, at least on Windows. Try editing the file using your shell account (pico or vi) and remove any leading or trailing characters.]
[edit] Misrendered anchor link character
??? appears in rendered pages instead of ↑ — it might be possible to fix this by replacing the up arrow character with ↑ (the corresponding HTML entity; rendered ↑). Alternatively, the caret (^) can probably be used as a substitute.
[edit] Templates
- Using
<ref>
in templates breaks numbering:Issue with MediaWiki regarding in what order things are parsed - Using
<ref>
within a template will create correctly numbered reference mark but it will be missing from the output of a<references/>
on the calling page (example) unless the references tag is transcluded too! - It's impossible to pass template arguments to
<ref>
, e.g.<ref name={{{1}}}>
, with older versions of MediaWiki, see bug 4529. As of 1.12+, it is possible to do template arguments with the#tag:
magic word inside of the template:
{{#tag:ref|Template {{{1|substitution}}} works!|name={{{2|default}}}}}
- Template substitution misrenders inside
<ref>
tag.
[edit] HTML parameters
- The citation links generated by <ref> and the backlinks generated by <references> have an empty
title
attribute (<a href="..." title="">...
)- Issue with MediaWiki, not this extension. MediaWiki will generate output like
<a href="#foo" title="">bar</a>
when given input like[[#foo|bar]]
- Issue with MediaWiki, not this extension. MediaWiki will generate output like
- Missing name= anchors for backwards compatibility (5567)
- The generated <a href="#_note-n"> links should have a name="_ref-n".
- The generated <a href="#_ref-n"> links should have a name="_note-n".
- This currently seems to be working.
[edit] HTML commenting-out doesn't work
Commenting out <ref>
with HTML comments <!--…-->
hides the citation but the reference still appears on the list
- This would appear to be a parser error…
- Seems to be fixed with the new parser. —81.241.208.92 14:16, 2 February 2008 (UTC)
[edit] ParserFunctions
cite.php cannot be nested properly in ParserFunctions. For example, "{{#ifeq:1|2|<ref>true</ref>|<ref>false</ref>}}
" will return both "true" and "false" as references regardless of the result of the ParserFunction. However, ParserFunctions work perfectly inside <ref> tags.
- How about you try "
<ref>{{#ifeq:1|2|true|false}}</ref>
"? MC10 02:52, 21 April 2010 (UTC)- Yes, but you will have to use
{{#tag:ref| {{#ifeq:1|2|true|false}} }}
--✓ 21:03, 20 February 2011 (UTC)
- Yes, but you will have to use
[edit] Blank Special:Version
- It seems that the following code causes v1.9.2's Special:version page to go blank:
'author' => 'Ævar Arnfjörð Bjarmason',
- Changing it to this fixes it (apologies if it's 'translated' wrong):
'author' => 'AEvar Arnfjord Bjarmason',
[edit] Rendering
Contents of non-first named <ref>
are not rendered, even if all prior tags with same name are empty.
[edit] Missing preview
There is no preview for inline citations. This is especially annoying when editing only a section of a page. (Bug 5984)
[edit] Users without edit privileges can't see references if sysops can
The following combination of $wgGroupPermissions makes references invisible to users who aren't logged in (Bug 11224). This bug started sometime after Mediawiki 1.9.3. and persists to 1.13.2 <source lang="php"> $wgGroupPermissions['*']['edit'] = false; $wgGroupPermissions['sysop']['edit'] = true; </source>
[edit] Workaround
A current work-around is to set <source lang="php"> $wgGroupPermissions['*']['edit'] = false; </source> and not grant any editing rights to sysops. Users who are sysops would then need to be part of another group with editing privileges.
[edit] Partial fix available
This bug was partially fixed in revision 36333. Reinstall Cite.php and the references would become visible (thus the above workaround is not necessary). However, some bogus behaviour persists: all reference hyperlinks are linked to the first footnote below (instead of their corresponding numbers), all backwards hyperlinks from footnotes jump to the first reference in the text (instead of their corresponding numbers), and references in transcluded pages are not properly handled.
See the discussion page for further ideas on the problem.
[edit] Grouping references
If I do Blah<ref>foo</ref><ref>bar</ref><ref>baz</ref><ref>qux</ref> Walla., I get:
- Blah[1][2][3][4] Walla.
instead of
- Blah[1]–[4] Walla.
[edit] Criticisms
The major criticism regarding Cite.php is that it renders the editing of references much more tedious. Moreover, because many casual Wikipedia users are not familar with the cryptic Wikitext tags that they find with the use of Cite.php, it is likely that the net effect of Cite.php is often to deter new users from making edits to reference sections. Although Wikipedia supposedly got its name from the Hawaiian word "wiki-wiki", meaning "quick-quick", Cite.php is arguably neither quick nor easy for the average Wikipedia user.
- This can now be solved by separating references from the text.
- However, at least one editor, Ta bu shi da yu, finds it useful to have the references embedded within the text when splitting articles and shifting text with footnotes around the article. With the old system, or when using Cite.php with separated references, when a paragraph with a footnote needs to be moved, multiple footnotes in the Notes section may need to be shifted. This is very difficult to do. With Cite.php and in-line references, reorganising text and splitting articles is considerably easier.
Using cite.php makes citing page numbers harder. Each reference usually cites a different page of the book/journal/article, but there is no way to indicate a different page number when using a self-closing tag. As such, all <ref name="xyz" /> simply refer to the work as a whole, rather than to a specific page number in the work (unless the author makes each page number a seperate reference). Perhaps a future revision of cite.php could allow a page number argument to be passed to the reference like so <ref name="xyz" page="42-43" />. This would dramatically increase the reputability of the citations, because they could then be checked/verified, and the citations would be a more useful resource.
- This can be solved by using the {{rp|page}} template on en.wikipedia to append<ref name=foo>Foo ref</ref>:20 the specific<ref name=foo />:30 page number<ref name=foo />:33 to each reference. The formatting has been simulated here because the MediaWiki site does not contain the {{rp}} template. If this had been an actual Wikipedia page, the full template with its many options could have been utilized.
<references />
[edit] Past problems
- The extension didn't generate id attributes that could be uniformly styled with CSS2 attribute selectors
- Issue in Cite.php, see bug 4579
- Using multibyte characters, colons, spaces and other values that need to be encoded according to the HTML spec breaks internal links
- Issue with MediaWiki, not this extension, see bug 4461.
- Using
<ref>
in image captions breaks the XHTML output - Issue with MediaWiki, not this extension, see bug 1887.
[edit] Comparing ref/note style and Cite.php style
They are actually very similar.
- To make a single use footnote:
- Ref/note
- {{ref|foo}} at the in-text place.
- # {{note|foo}} text of note at the proper place in the Notes list.
- Cite.php
- <ref>text of note</ref> at the in-text place.
- (Only needed once per article)<references /> under the Notes heading.
- Ref/note
- To make a multiple use footnote:
- Ref/note
- With strict ref/note style this was impossible, but a number of alternative forms had been created, for the details of which, see the appropriate pages.
- Cite.php
- <ref name=foo>text of note</ref> at each in-text place.
- Alternatively <ref name=foo /> A self-closing tag on every use after name=foo has been defined.
- (Only needed once per article)<references /> under the Notes heading; exactly the same as to make a single-use note.
- <ref name=foo>text of note</ref> at each in-text place.
- Ref/note
[edit] Harvard references extension
There is an Extension:HarvardReferences that can be used to support "Harvard" ("author - date") system of references, e.g. [Smith 2010:1]. This reference system is often used in scientific literature. Both extensions are compatible. Moreover, links in "Harvard" system can be inserted into body of ref-link, and vice versa. It may be helpful to support book-style comments/subnotes with a "scientific" source references. For example:
<ref>This is a test subnote. [Smith 2010:121]</ref>