User:Mvolz/Notepad
Notepad for User:Mvolz
Roadmap
editOPW internship materials
editLAbs Puppetz
edithttps://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®ion=eqiad
Code of interest
editExtensions
edit- Extension:Link Suggest
- User:Adamtheclown/Extension:LinkSuggest
- User:Aurimas/CiteByDOI
- Extension:Cite/Special:Cite.php
- Extension:Cite/Cite.php
- Extension:Cite
- Extension:VisualEditor
- Extension:WikiEditor
- OOjs_UI
Other relevant projects
edit- Citation Bot source code
- ProveIt
- Open Access Reader
- Issues with templates on ProjMed
- Abbv vs exp. citations
- Template filler- unmaintained
- Citegen
- RefToolbar 2.0 autofilling
- Reform citation structure
- Node implementation of zotero (very incomplete)
- Translation server zotero (complete)
- Citeproc node zotero
- Zotero dataserver
Technical guidance
editParsoid
editVE
edit- https://doc.wikimedia.org/VisualEditor/master/
- VisualEditor/Citation_tool
- VisualEditor/Node_types
- VisualEditor/API
- VisualEditor_gadgets
- Example gadget: [1]
- VisualEditor/Software
Version Control
editYou 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
editRandom Errorsssss
editError
edit( ! ) Fatal error: Maximum function nesting level of '100' reached, aborting! in /var/www/core/extensions/Scribunto/engines/LuaStandalone/LuaStandaloneEngine.php
Solution
editvi /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