User:Mvolz/Notepad

From mediawiki.org

Notepad for User:Mvolz

Roadmap[edit]

OPW internship materials[edit]

LAbs Puppetz[edit]

https://wikitech.wikimedia.org/wiki/Help:Self-hosted_puppetmaster#Set_up_a_single_instance_self_hosted_puppetmaster https://git.wikimedia.org/blob/operations%2Fpuppet/c5fae9e7fc493957be643276c8e0020bc283aad1/modules%2Focg%2Ftemplates%2Focg.upstart.conf.erb https://wikitech.wikimedia.org/w/index.php?title=Special:NovaInstance&action=configure&instanceid=f95ca46f-be40-4c64-b05f-94a873ab19ea&project=services&region=eqiad

Code of interest[edit]

Extensions[edit]

Other relevant projects[edit]

Technical guidance[edit]

Parsoid[edit]

Parsoid/MediaWiki_DOM_spec

VE[edit]

https://doc.wikimedia.org/VisualEditor/master/
VisualEditor/Citation_tool
VisualEditor/Node_types
VisualEditor/API
VisualEditor_gadgets
Example gadget: [1]
VisualEditor/Software

Version Control[edit]

You can set the default username for future repositories with:

 git config --global --add gitreview.username "Mvolz"

To get the most recent version of VisualEditor:

git checkout master
git submodule update
git pull --rebase
git checkout -b <meaningful-branch-name>

# Give the branch a short but reasonably descriptive name (e.g. bug/1234, cleanup/some-thing, badtitle-error, ..)

# Now write some code. See the Git commands "add" , "rm" and "mv" to add, remove or rename files. When you're ready:
git commit --all

# In the Gerrit world you can do this only once per branch! Remember to follow the commit message guidelines.

git show HEAD

# Make sure that you are sending what you wanted to send.

git review

Citations[edit]

http://crosstech.crossref.org/2011/11/turning_dois_into_formatted_ci.html
http://aurimasv.github.io/z2csl/typeMap.xml
https://www.zotero.org/support/retrieve_pdf_metadata

http://www.ncbi.nlm.nih.gov/pmc/tools/id-converter-api/

Random Errorsssss[edit]

Error[edit]

( ! ) Fatal error: Maximum function nesting level of '100' reached, aborting! in /var/www/core/extensions/Scribunto/engines/LuaStandalone/LuaStandaloneEngine.php

Solution[edit]

vi /etc/php5/apache2/conf.d/20-xdebug.ini

Add line: xdebug.max_nesting_level=1000 ; the default nesting level of 100 isn't very mediawiki friendly

/etc/init.d/apache2 restart