Extension talk:TemplateAdventures

From mediawiki.org
Latest comment: 12 years ago by COGDEN in topic Proposal

Looks like a good idea. Are you aware of User:VasilievVV/Extension:InlineScripts? That's another approach to deal with huge cite templates :). Regards, --Church of emacs talk · contrib 15:18, 5 May 2010 (UTC)Reply

Call for examples and suggestions[edit]

These template-replacements are generally written according to examples. I therefore call for the people out there to come with examples of usage of the templates existing in the extension (which is #citation: by now) with the desired output.

In addition, ideas for other heavy resource templates are also welcome. --Svippong 16:19, 19 April 2011 (UTC)Reply

Or you could buy / borrow a major humanities style guide (the humanities guides generally cover all possible citations, and all permutations) and systematically walk through the required fields in a highly documented style guide like Chicago. Fifelfoo 23:34, 19 April 2011 (UTC)Reply

Worried about ossifying something that is broken[edit]

I fully understand why you are doing this, and I support it. However, I am worried that this might prevent our references style from ever being repaired. Consider this wiki code:

  • {{citation|author1=Ann Orther|author2=Anne Uther|title=What's a title?|journal=Journal of Artificial Citations|year=2011|page=42}}
  • {{citation|author=Sam Riter|title=How About A Book For A Change?|year=2011|location=New Jeans|publisher=Levi & Levi|page=42}}
  • {{citation|title=Why does the year look so different here?|year=2011|publisher=World Wide Websites Inc.}}

Here is what it produces:

  • Ann Orther; Anne Uther (2011), "What's a title?", Journal of Artificial Citations: 42
  • Sam Riter (2011), How About A Book For A Change?, New Jeans: Levi & Levi, p. 42
  • Why does the year look so different here?, World Wide Websites Inc., 2011

We have been working with this for years, but it is just not acceptable in the long run. On Wikipedia there is no valid reason to introduce the page number sometimes with "p. " and sometimes with ":". On Wikipedia there is no valid reason to put the year sometimes in parentheses and sometimes not. Someone has copied a kludgy, historically grown citation style that tries to cram everything into as little space as possible and has moved it into an environment where consistency is a lot more important than space. Will your extension be flexible enough so that such issues of style can be fixed without changing it? Hans Adler 16:07, 22 April 2011 (UTC)Reply

The hope is 'yes, it will'. All rendered text is done with messages, which means page being 'p.' or ':' are two different messages, just change them to the same version, and it will appear as intended. The placement of the year remains at present unmoveable (and other stuff), but I intend to create - perhaps - a format string, where this structure could be defined, but I have not come up with an appropriate syntax. --Svippong 16:27, 22 April 2011 (UTC)Reply
How about the following for a syntax (this is just an example):
{{AUTHORS}} {{YEAR/DATE:AUTHORS}}.  {{EDITORS}} {{YEAR/DATE:EDITORS}}. etc.
Idea:
  • Curly brackets indicates a variable. e.g. {{AUTHORS}} means it is the variable 'authors', i.e. the list of authors/creators given to a specific citation.
  • Slashes inside variables indicate OR, i.e. it is one of the variables in the brackets, with the first taking precedence of the next, e.g. {{YEAR/DATE}} means that it is for both 'year' and 'date', but if both are set, only 'year' will appear.
  • Colon indicate which area it belongs to, that is, it will only appear here if that variable is set. So if 'authors' is not set, {{YEAR/DATE:AUTHORS}} will not appear even if 'year' and/or 'date' is set.
    • In addition, the 'authors' part of the variable here tells the system which format it should be rendered as, if there is a desire for date/year to remain different depending on where they are put. It seems to me, that dates appear at the front if authors/editors are set, but at the back if not.
  • Full stops, '.', indicates section separation. If a section is empty, it will of course not be granted a separator. This is purely for syntax purposes.
I hope it made somewhat sense. And I sure hope it is useful too. --Svippong 17:42, 22 April 2011 (UTC)Reply
I think that's more or less the right direction, although I guess that your example syntax is not general enough (and that you know it). I think ideally the extension should have nothing to do with citations and just add a new and efficient method of getting things done which happens to be a key to solving the problem with the citation templates. Hans Adler 21:36, 22 April 2011 (UTC)Reply
Well, then we might be back to the original problem. The reason the original system is slow, is because it is parsed by a general purpose language that is intended for writing articles rather than programming.
I would never suggest to the MediaWiki developers to develop the WikiCode further, it is complicated as it is. While I obviously won't rule your request out, but I don't think the extension cannot be general enough, unfortunately without losing major performance (and adding complexity). --Svippong 21:52, 22 April 2011 (UTC)Reply

Separating semantic content from formatting[edit]

Ideally, html code should separate semantic content from formatting wherever possible, and leave formatting to style sheets. For example, instead of hard-coding an italicized journal title, the journal title should ideally be wrapped with something like <span class="citation journaltitle">Physical Review D</span>, and then the italicization can be addressed in the stylesheet. Or if someone wanted to portray journal titles in all caps or small caps or underlined, or in a different color, she would be free to use a style sheet that did so. Wrapping article titles in quotation marks could also be done in the style sheet. I've been hesitant to propose this with respect to the Wikipedia citation/core template because it would add even more complexity. But it seems like it would be a good addition here, and easily done. After I've had some time to study the php code here, I might be able to put together a patch proposal.COGDEN 20:24, 22 April 2011 (UTC)Reply

This is not only a good idea, but far better from a developing standpoint, because then I have to consider far less the actual styling of any part of the code, and rather focus on its content (as HTML should be). --Svippong 21:53, 22 April 2011 (UTC)Reply

Proposal[edit]

I have a proposal, and have submitted a proposed working patch to the Bugzilla ticket for this project. At w:Template_talk:Citation/core, there was a brief discussion about the possibility of incorporating several alternative citation styles, such as APA, MLA, Bluebook, Chicago Manual of Style, etc.

The proposed php template differs from the original design in one significant way: instead of the first unnamed parameter after the colon being a selector for the type of work cited, it is now a selector for the citation style. This adds flexibility and the possibility for multiple citation styles such as Bluebook for citing legal references, or unknown future citation styles we can't foresee. The user can still include an unnamed parameter for the type of work cited (i.e., "book", etc.), but it would come at least after the first pipe symbol.

Thus, an example function call might look like this: {{#citation:APA|book|last=Smith|first=John|title=My Book|publisher=Random House}}. Instead of "APA", the first unnamed parameter can be blank or "default" in which case the function follows a default style, which would be similar to what is now done by Citation/core. Alternatively, the user could use parameters such as "MLA", "Bluebook", "Chicago", etc. There will be separate classes deriving from TemplateAdventureBasic for each citation style.

In the proposed template, un-named parameters may occur anywhere within the template call, and may be recognized by the TemplateAdventureBasic-derived class. Like the w:Template:Citation template, we might be able to make the Citation class smart enough that you don't necessarily have to include such parameters as "book", "journal", "news", "web", etc. COGDEN 07:44, 4 May 2011 (UTC)Reply

Indeed. I agree on the style tip, but your patch didn't entirely work. See my comment on Bugzilla. --Svippong 13:44, 4 May 2011 (UTC)Reply
Sorry about that. I think I used the wrong settings to make the patch. The CitationChicago class was not important, anyway, as it was just a copy of Citation for now. COGDEN 01:43, 6 May 2011 (UTC)Reply