User talk:Badmadevil: Difference between revisions

 
(6 intermediate revisions by 2 users not shown)
Line 1:
Welcome to Rosetta Code! I founded RC around a year ago, and still do most of the administrative work. Thanks for your code contributions. I'm curious, though, how did you hear about RC? --[[User:Short Circuit|Short Circuit]] 10:44, 23 February 2008 (MST)
:Hi, thanks. I heard from a forward message posted at Digital Mars D newsgroup about a month ago. -[[User:Badmadevil|badmadevil]] 03:03, 24 February 2008 (MST)
 
== Theme problems ==
Hi there, I'm really not seeing the issues you're reporting about the new skin. <del>If you could, post the browser version as well, as I see neither of the problems you've listed in the ones I'm testing with (FF3, Opera 9.5, IE7)</del> I'm really not seeing the issues you're talking about. Perhaps your font size is larger than normal? Ctrl + 0 or View > Zoom > Reset.
--[[User:Qrush|qrush]] 19:54, 22 June 2008 (UTC)
:oops... then my browser setting problem is the most possible explanation, sorry for the extra work. (btw, in my FF3, by changing zoom, it only affect the size of top-left logo's ''Rosetta Code'' text if ''zoom text only'', else everything is proportional) -- [[User:Badmadevil|badmadevil]] 04:08, 23 June 2008 (UTC)
:: This should be fixed. Give the skim another try. --[[User:Short Circuit|Short Circuit]] 00:14, 14 February 2009 (UTC)
 
== Mylang ==
Line 13 ⟶ 19:
*When PHP flag <i>allow_url_fopen</i> is enabled, it is possible to read contents from RC Site via local server. Then, by directly testing with RC Site, many bugs were found;
*''fixed'', it seems that articles in tasks or languages' pages have at least 3 version of url. In most cases, they refer to the same file, but it seems some are not (may be re-direction?). Previously, some url can be accessed while other cannot, if only using one version of url; now all 3 version is tried. The version of '/w/index.php?title=' has highest priority, so that page like C++ will not mistaken by C page;
::''changed'', it seems I'm wrong again. All pages can be accesses by '/wiki/Category:' version's url, only that to not mistaken C++ page with C page, url extracted from RC page have to be encoded 2 times. In most case, this '/wiki/Category:(encoded-url)' can reach the page correctly, only pages like ''PL/I'', ''PL/SQL'' need 1 decode. No more other version of url is needed. -- [[User:Badmadevil|badmadevil]] 09:14, 17 June 2008 (MDT)
*''fixed'', previously, required link nodes to be got by xpath are assumed to be inside a table, but it is found that language page having 7 or less task completed didn't use a table; the later case is dealing with another proper xpath;
*some pages have not any task completed, eg. assembler, pike, JoCaml. They are treated as error loading page, rather than display all tasks from Task-list page;
*''unsolved'', there are unknown errors on parsing pages of ''JScript.NET'' & ''Visual Basic.NET'' as DOM. They can be load as DOMDocument (so that it is not a problem of url, eg.wrong encoding of url string), but can't get the required Node by getElementById inside the DOMDoc;
::''fixed'', it is really a problem of wrong encoding, the 'dot' is not properly encoded, and the page loaded I said previously is the create new articles page. It has been fixed. All bugs should has been fixed. -- [[User:Badmadevil|badmadevil]] 12:22, 16 June 2008 (MDT)
*''Usage'', this version need not config, as long as allow_url_fopen is enabled. Place this script in a server (local server or RC Site) some where can be access from www, and that is it.
*Tested with PHP 5.2.1
Line 22 ⟶ 30:
| style="height:36em;float:left;clear:both;overflow:auto;" |
<php><?php
 
// may be need to enable allow_url_fopen, or change it to local file path
define('RCHost' , 'www.rosettacode.org') ;
define('ROSETTA', 'http://' . RCHost) ;
 
// 3 version of url prefix, when loading the Specific Language Page,
// they will be tried one by one
define('SafeURL', ROSETTA . '/w/index.php?title=') ;
define('Prefix', ROSETTA . '/wiki/Category:') ;
define('LastTryTaskURL', ROSETTA . '/wiki/Solutions_by_Programming_Task') ;
define('ListURL', 'Solutions_by_Programming_Language') ;
 
define('PAGENAMELANGID', 'PAGENAMELANGID') ; // if use as a query string key-value pair
define('NA', 'Not AvaliableNotAvaliable') ;
 
define('TaskURL', Prefix . 'Solutions_by_Programming_Task') ;
define('ListURL', Prefix . 'Solutions_by_Programming_Language') ;
 
$subfix = "" ;
$langID = LangId() ;
$IDLang = rawurldecodemyDecode($langID) ;
 
// this control how to access this scrtpt
$scriptURL = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['URL'] ;
 
function ScriptURL($langId = NA){
function ScriptURL($langId){
global $langID, $scriptURL ;
global $scriptURL, $subfix;
if($langId == NA) $langId = $langID ;
return $scriptURL . ($langId == NA ? "" : '?' . rawurlencode($langId)) ;
if($langId == NA)
$tail = strlen($subfix) == 0 ? '' : '?' . $subfix ;
else {
$tail = strlen($subfix) == 0 ? '' : '&' . $subfix ;
$tail = '?' . LANGID . '=' . myEncode($langId) . $tail ;
}
return $scriptURL . $tail ;
}
function pageUrl($page) {
global $subfix;
$tail = strlen($subfix) == 0 ? '' : '?' . $subfix ;
return Prefix . $page . $tail ;
}
function myEncode($s) { return str_replace('.', '%252E', rawurlencode($s)) ; }
function myDecode($s) { return str_replace('_', ' ' , rawurldecode($s)) ; }
 
function LangId(){
global $subfix ;
$langId = NA ;
if(count($_SERVER['QUERY_STRING']) > 0) {
parse_str($_SERVER['QUERY_STRING'], $query) ;
if(array_key_exists(LANGID, $query) && strlen($query[LANGID]) > 0)
$langId = $query[LANGID] ;
else
foreach($query as $key => $value)
if(strlen($value) == 0) {
$query[LANGID] = $key ;
$langId = $key ;
unset($query[$key]) ;
break ;
}
if(array_key_exists(LANGID, $query))
unset($query[LANGID]) ;
$subfix = http_build_query($query) ;
}
return $langId ;
}
 
class Page extends DOMDocument {
public $lnk , $id , $hdr, $msg , $tds, $url, $context ;
public $dict = array() , $ok = FALSETRUE ;
public $cnt = 0 , $notCnt = 0 ; // $notCnt = count of not implemented tasks
public $context ;
 
function __construct($url, $id, $isLangFile = FALSE) {
global $langID ;
if($this->idurl == $idlangID) ;{
if(!@$this->loadHTMLFile($this->url = pageURL($langID)))
if($isLangFile) {
if(!@$this->langURLloadHTMLFile(SafeURL))$this->url //= try one by onepageURL(myDecode($langID))))
if( $this->langURL(Prefix))ok = FALSE ;
if($this->ok) $this->context = $this->langURLgetElementById(LastTry$id) ;
} else {
if(@$this->loadHTMLFile($url) ;)
$this->context = $this->getElementById($this->id) ;
}
if($this->context) {
$xpath = new DOMXPath($this) ;
$this->hdr = $xpath->query('h2', $this->context)->item(0) ;
$this->msg = $xpath->query('p', $this->context)->item(0) ;
$this->lnk = if($xpath->query('table/tr/td/ul/li', $this->context) ;->length)
if( $this->lnk &&= $thisxpath->lnkquery('table/tr/td/ul/li', $this->length > 0context) {;
else // not inside a table
$this->cnt = $this->lnk->length ;
$this->ok = TRUE ;
} else { // not inside a table
$this->lnk = $xpath->query('ul/li', $this->context) ;
$this->cnt = if($this->lnk) { // may be zero task->length completed?;
} else
$this->cnt = $this->lnk->length ;
$this->ok = TRUEFALSE ;
}
}
}
}
 
function langURL($prefix) {
global $langID ;
$FAIL = TRUE ;
if(@$this->loadHTMLFile($prefix . $langID))
if($this->context = $this->getElementById($this->id))
$FAIL = FALSE ;
return $FAIL ;
}
 
function toHTML() {
// not need if this script is inside RC site
if(stristr($_SERVER['HTTP_HOST'], RCHost) === FALSE) {
$head = $this->getElementsByTagName("head")->item(0) ;
Line 101 ⟶ 123:
$base->setAttribute("href", ROSETTA) ;
$head->insertBefore($base, $head->firstChild) ;
}
return $this->saveHTML() ;
}
function prepare(&$taskList) {
 
function makeDict(&$taskList) {
global $scriptURL ;
$temp = array() ;
// collect lang's task list
for($i = 0 ; $i < $this->lnk->length ; $i++) {
$alink = $this->lnk->item($i)->getElementsByTagName("a")->item(0) ;
$href = temp[$alink->getAttribute("href")] = TRUE ;
$temp[$href] = TRUE ;
}
// set diff : total tasks - lang's tasks => not completed tasks
for($i = 0 ; $i < $taskList->length ; $i++) {
$alink = $taskList->item($i)->getElementsByTagName("a")->item(0) ;
$href = if(array_key_exists($alink->getAttribute("href"), ;$temp) === FALSE)
$this->dict[$this->notCnt++] = // import from Tasks into Lang
if(array_key_exists($href, $temp) === FALSE)
$this->dict[$this->notCnt++] = // import from Tasks to Lang
$this->importNode($taskList->item($i),true) ;
}
$lang->lnk = null ; // release node ref. to be remove
 
// clear All nodes under $this->context(id)'s node
// clone hdr, msg
$hdr = while($this->hdrcontext->cloneNode(TRUElastChild) ;
$msg = $this->msgcontext->cloneNoderemoveChild(TRUE$this->context->lastChild) ;
// create new hdr, msg
// clear All nodes under $this->context(id)'s node
$contextthis->hdr = $this->context->appendChild($this->createElement("h2")) ;
$this->contextmsg = $this->context->cloneNodeappendChild($this->createElement("p")) ; // shallow copy, remove all child
// make table
$context->parentNode->replaceChild($this->context, $context) ;
$table = $this->createElement("table") ;
// append hdr, msg back
$this->hdr = $this->context->appendChild($hdr) ;
$this->msg = $this->context->appendChild($msg) ;
// make table
$table = $this->createElement("table") ;
$tr = $this->createElement("tr") ;
for($i = 0 ; $i < 3 ; $i++)
$tr->appendChild($this->createElement("td")) ;
$table->appendChild($tr) ;
$this->context->appendChild($table) ;
// get tds later work with
$xpath = new DOMXPath($this) ;
$this->tds = $xpath->query('table/tr/td', $this->context) ;
// insert a languages list link
$alink = $this->createElement("a", "Other Languages") ;
$alink->setAttribute("href", $scriptURL) ;
$alink->setAttribute("title", "Not completed tasks by other languages") ;
$style = 'float:right;clear:right;position:relative;top:8px;' .
'background-color:#eec;padding:2px 8px 2px 8px;';
$alink->setAttribute("style", $style) ;
$this->context->insertBefore($alink, $this->hdr) ;
}
}
Line 171 ⟶ 177:
 
$curr = 0 ;
$splitMax = intval(($lang->notCnt + 2) / 3)tds->length ;
$splitMax = intval(($lang->notCnt + $splitMax - 1) / $splitMax) ;
if($splitMax < 5) $splitMax = 5 ;
 
$capital = '' ;
 
$lang->lnk = null ; // release node ref. to be remove
for($i = 0 ; $i < $lang->tds->length ; $i++) {
$td = $lang->tds->item($i) ;
$td->setAttribute("width", intval(100/$lang->tds->length) . "%") ;
 
$td->setAttribute("width", "33%") ;
$td->setAttribute("valign", "top") ;
$ul = NULL ;
Line 210 ⟶ 214:
}
}
 
function process_list(){ // replace languages link with corresponding scriptURL
global $list ;
Line 220 ⟶ 223:
}
}
function linkText(&$node, $pre, $href, $text, $post) {
 
$doc = $node->ownerDocument ;
function LangId(){
if($pre ) $node->appendChild($doc->createElement("span", $pre)) ;
$langId = NA ;
if(count($_GET) > 0href) {
if(!$text) $text = 'null' ;
if(array_key_exists(PAGENAME, $_GET) && strlen($_GET[PAGENAME]) > 0)
$langIdalink = $_GET[PAGENAME]doc->createElement("a", $text) ;
$alink->setAttribute("href", $href) ;
else {
$alink->setAttribute("title", $text) ;
$keys = array_keys($_GET) ;
$node->appendChild($alink) ;
if(count($keys) > 0 && strlen($keys[0]) > 0)
$langId = $keys[0] ;
}
}
if($post) $node->appendChild($doc->createElement("span", $post)) ;
return $langId ;
}
 
Line 240 ⟶ 241:
 
if($langID != NA) {
$lang = new Page($langID, 'mw-pages', TRUE) ;
if($lang->ok) {
$task = new Page(pageURL(TaskURL), 'mw-pages') ;
if($task->ok)
$lang->makeDictprepare($task->lnk) ;
}
}
 
if($langID != NA && $lang->ok && $task->ok) {
linkText($lang->hdr->nodeValue =, 'Not Completed Tasks by ', .$lang->url, $IDLang, NULL) ;
linkText($lang->hdr, ' ( ', ScriptURL(NA), 'Other Languages', ' ) ') ;
 
process_task() ;
 
echo $lang->toHTML() ;
} else {
$list = new Page(pageURL(ListURL), 'mw-subcategories') ;
if($list->ok) {
if($langID == NA)
$list->hdr->nodeValue = 'Not Completed Tasks by Languages' ;
else {
$list->hdr->nodeValue = 'Not Completed Tasks by Languages removeChild($list->hdr->lastChild) "';
linkText($list->hdr, 'Not Completed Tasks by Languages ( "',
. $IDLang . '" has no task completed or page error) ' ;
$lang->url, $IDLang, '" hasn\'t any task completed yet ) ') ;
 
}
process_list() ;
 
echo $list->toHTML() ;
}
else
echo '<html><body><br/><br/>
<h3 align=center>Unknown Error,
<html><body>
<a href="' . ROSETTA . '">Return Rosetta Code Main Page</a> or
<h3>Unknown Error,
<a href="' javascript:history.go(-1) ROSETTA . ';">ReturnGo Rosetta Code Main PageBack</a> or.
<a href="javascript:history.go(-1) ;">Go Back </ah3>.
</h3body></html>' ;
</body></html>' ;
}
 
?></php>
|}
Hope it can be a temporary solution. -- [[User:Badmadevil|badmadevil]] 0612:0133, 1622 June 2008 (MDTUTC)