5,933
edits
Manorainjan (talk | contribs) (→merge) |
Manorainjan (talk | contribs) (→Resources for use with this wiki: new section) |
||
| Line 40: | Line 40: | ||
I turned it into a simple page.[[User:Manorainjan|Manorainjan]] ([[User talk:Manorainjan|talk]]) 12:40, 26 November 2014 (UTC) | I turned it into a simple page.[[User:Manorainjan|Manorainjan]] ([[User talk:Manorainjan|talk]]) 12:40, 26 November 2014 (UTC) | ||
== Resources for use with this wiki == | |||
There is a script to be run by [[wp:Greasemonkey]] which is mentioned on [http://c2.com/cgi/wiki?MoreAboutCodes MoreAboutCodes] with an outdated link: | |||
// ==UserScript== | |||
// @name C2 Wiki – Fill In Code Word When Editing | |||
// @namespace roryokane.com | |||
// @description Automatically fills in the code word (CAPTCHA) “567” on the edit page of the C2 wiki, WikiWikiWeb. | |||
// @include http://c2.com/cgi/wiki?edit=* | |||
// @version 1 | |||
// @grant none | |||
// ==/UserScript== | |||
// "Type the code word, 567, here [...]" | |||
var textField = document.getElementsByName("code")[0]; | |||
var codeWord = "567"; // hard-coded; I’ve never personally seen it be anything else. | |||
textField.value = codeWord; | |||
edits