From: <sk...@us...> - 2008-01-28 15:59:42
|
Revision: 438 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=438&view=rev Author: sknappe Date: 2008-01-28 07:59:22 -0800 (Mon, 28 Jan 2008) Log Message: ----------- fixed bug with interests Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-01-28 15:35:28 UTC (rev 437) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-01-28 15:59:22 UTC (rev 438) @@ -126,12 +126,12 @@ //Add Positives to Session if (!isset($_SESSION['positive'])){ - $array=array($subject => "http://dbpedia.org/resource/".str_replace(" ","_",$subject)); + $array=array("http://dbpedia.org/resource/".str_replace(" ","_",$subject)) => "http://dbpedia.org/resource/".str_replace(" ","_",$subject)); $_SESSION['positive']=$array; } else{ $array=$_SESSION['positive']; - $array[$subject]="http://dbpedia.org/resource/".str_replace(" ","_",$subject); + $array["http://dbpedia.org/resource/".str_replace(" ","_",$subject)]="http://dbpedia.org/resource/".str_replace(" ","_",$subject); $_SESSION['positive']=$array; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-01-28 16:03:50
|
Revision: 439 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=439&view=rev Author: sknappe Date: 2008-01-28 08:03:17 -0800 (Mon, 28 Jan 2008) Log Message: ----------- fixed bug with interests Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-01-28 15:59:22 UTC (rev 438) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-01-28 16:03:17 UTC (rev 439) @@ -126,7 +126,7 @@ //Add Positives to Session if (!isset($_SESSION['positive'])){ - $array=array("http://dbpedia.org/resource/".str_replace(" ","_",$subject)) => "http://dbpedia.org/resource/".str_replace(" ","_",$subject)); + $array=array("http://dbpedia.org/resource/".str_replace(" ","_",$subject) => "http://dbpedia.org/resource/".str_replace(" ","_",$subject)); $_SESSION['positive']=$array; } else{ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-02-06 14:47:44
|
Revision: 500 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=500&view=rev Author: sknappe Date: 2008-02-06 06:47:37 -0800 (Wed, 06 Feb 2008) Log Message: ----------- fixed some unnessecary code Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-06 14:46:49 UTC (rev 499) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-06 14:47:37 UTC (rev 500) @@ -368,7 +368,6 @@ session_write_close(); setRunning($id,"false"); $objResponse=new xajaxResponse(); - //$objResponse->append("searchcontent", "innerHTML", "Stop"); return $objResponse; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-02-06 16:37:03
|
Revision: 503 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=503&view=rev Author: sknappe Date: 2008-02-06 08:36:56 -0800 (Wed, 06 Feb 2008) Log Message: ----------- fixed a bug Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-06 16:36:36 UTC (rev 502) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-06 16:36:56 UTC (rev 503) @@ -140,12 +140,7 @@ $array["http://dbpedia.org/resource/".str_replace(" ","_",$subject)]="http://dbpedia.org/resource/".str_replace(" ","_",$subject); $_SESSION['positive']=$array; } - - - //BUILD SEARCHRESULT - if ($fromCache==-1) - $searchResult.="<a href=\"\" onclick=\"xajax_getsubjects('".$subject."');return false;\">Show more Results</a>"; - + } catch (Exception $e) { $content=$e->getMessage(); @@ -159,6 +154,10 @@ $artTitle=$_SESSION['articles'][$fromCache]['subject']; } + //BUILD SEARCHRESULT + if ($fromCache==-1) + $searchResult.="<a href=\"\" onclick=\"xajax_getsubjects('".$subject."');return false;\">Show more Results</a>"; + //Build lastArticles if (isset($_SESSION['articles'])){ foreach ($_SESSION['articles'] as $key => $value) @@ -339,9 +338,10 @@ session_start(); $id=$_SESSION['id']; $ksID=$_SESSION['ksID']; - session_write_stop(); - setRunning("true"); + session_write_close(); + setRunning($id,"true"); + $content=""; try{ require_once("DLLearnerConnection.php"); @@ -354,7 +354,7 @@ } catch (Exception $e){ $content=$e->getMessage(); } - + $objResponse = new xajaxResponse(); $objResponse->assign("searchcontent", "innerHTML", $content); return $objResponse; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-02-06 17:13:26
|
Revision: 505 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=505&view=rev Author: sknappe Date: 2008-02-06 09:13:22 -0800 (Wed, 06 Feb 2008) Log Message: ----------- bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-06 17:04:01 UTC (rev 504) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-06 17:13:22 UTC (rev 505) @@ -41,7 +41,7 @@ $sid = $_GET['sid']; session_id($sid); session_start(); - $articles=$_SESSION['articles']; + if (isset($_SESSION['articles'])) $articles=$_SESSION['articles']; $id=$_SESSION['id']; $ksID=$_SESSION['ksID']; session_write_close(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-02-07 09:40:40
|
Revision: 508 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=508&view=rev Author: sknappe Date: 2008-02-07 01:40:38 -0800 (Thu, 07 Feb 2008) Log Message: ----------- the first letter of the search string is now always big Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-06 17:54:26 UTC (rev 507) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-07 09:40:38 UTC (rev 508) @@ -47,6 +47,9 @@ session_write_close(); setRunning($id,"true"); + //get first Letter of label big + $subject=ucfirst($subject); + //if article is in session, get it out of the session if (isset($articles)){ foreach ($articles as $key => $value) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-02-07 11:43:24
|
Revision: 511 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=511&view=rev Author: sknappe Date: 2008-02-07 03:43:21 -0800 (Thu, 07 Feb 2008) Log Message: ----------- fixed a bug for redirects Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-07 10:40:10 UTC (rev 510) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-07 11:43:21 UTC (rev 511) @@ -125,7 +125,10 @@ //BUILD ARTICLE TITLE $artTitle=$triples['http://www.w3.org/2000/01/rdf-schema#label'][0]; + + //Restart the Session session_start(); + //store article in session, to navigate between last 5 articles quickly $contentArray=array('content' => $content,'subject' => $artTitle); if (!isset($_SESSION['nextArticle'])){ @@ -139,12 +142,16 @@ //Add Positives to Session if (!isset($_SESSION['positive'])){ - $array=array("http://dbpedia.org/resource/".str_replace(" ","_",$subject) => "http://dbpedia.org/resource/".str_replace(" ","_",$subject)); + if (isset($triples['http://dbpedia.org/property/redirect'])){ + $array=array($triples['http://dbpedia.org/property/redirect'][0] => $triples['http://dbpedia.org/property/redirect'][0]); + } + else $array=array("http://dbpedia.org/resource/".str_replace(" ","_",$subject) => "http://dbpedia.org/resource/".str_replace(" ","_",$subject)); $_SESSION['positive']=$array; } else{ $array=$_SESSION['positive']; - $array["http://dbpedia.org/resource/".str_replace(" ","_",$subject)]="http://dbpedia.org/resource/".str_replace(" ","_",$subject); + if (isset($triples['http://dbpedia.org/property/redirect'])) $array[$triples['http://dbpedia.org/property/redirect'][0]] = $triples['http://dbpedia.org/property/redirect'][0]; + else $array["http://dbpedia.org/resource/".str_replace(" ","_",$subject)]="http://dbpedia.org/resource/".str_replace(" ","_",$subject); $_SESSION['positive']=$array; } @@ -254,11 +261,11 @@ //add Positives and Negatives to Interests $posInterests=""; if (isset($_SESSION['positive'])) foreach($_SESSION['positive'] as $pos){ - $posInterests=$posInterests.substr (strrchr ($pos, "/"), 1)." <a href=\"\" onclick=\"xajax_toNegative('".$pos."');return false;\"><img src=\"images/minus.jpg\" alt=\"Minus\"/></a> <a href=\"\" onclick=\"xajax_removePosInterest('".$pos."');return false;\"><img src=\"images/remove.png\" alt=\"Minus\"/></a><br/>"; + $posInterests.=urldecode(substr (strrchr ($pos, "/"), 1))." <a href=\"\" onclick=\"xajax_toNegative('".$pos."');return false;\"><img src=\"images/minus.jpg\" alt=\"Minus\"/></a> <a href=\"\" onclick=\"xajax_removePosInterest('".$pos."');return false;\"><img src=\"images/remove.png\" alt=\"Minus\"/></a><br/>"; } $negInterests=""; if (isset($_SESSION['negative'])) foreach($_SESSION['negative'] as $neg){ - $negInterests=$negInterests.substr (strrchr ($neg, "/"), 1)." <a href=\"\" onclick=\"xajax_toPositive('".$neg."');return false;\"><img src=\"images/plus.jpg\" alt=\"Plus\"/></a> <a href=\"\" onclick=\"xajax_removeNegInterest('".$neg."');return false;\"><img src=\"images/remove.png\" alt=\"Minus\"/></a><br/>"; + $negInterests.=urldecode(substr (strrchr ($neg, "/"), 1))." <a href=\"\" onclick=\"xajax_toPositive('".$neg."');return false;\"><img src=\"images/plus.jpg\" alt=\"Plus\"/></a> <a href=\"\" onclick=\"xajax_removeNegInterest('".$neg."');return false;\"><img src=\"images/remove.png\" alt=\"Minus\"/></a><br/>"; } $objResponse=new xajaxResponse(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-02-07 17:11:30
|
Revision: 514 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=514&view=rev Author: sknappe Date: 2008-02-07 09:11:15 -0800 (Thu, 07 Feb 2008) Log Message: ----------- bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-07 16:21:07 UTC (rev 513) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-07 17:11:15 UTC (rev 514) @@ -177,13 +177,22 @@ } } + //add Positives and Negatives to Interests + $posInterests=""; + if (isset($_SESSION['positive'])) foreach($_SESSION['positive'] as $pos){ + $posInterests.=urldecode(substr (strrchr ($pos, "/"), 1))." <a href=\"\" onclick=\"xajax_toNegative('".$pos."');return false;\"><img src=\"images/minus.jpg\" alt=\"Minus\"/></a> <a href=\"\" onclick=\"xajax_removePosInterest('".$pos."');return false;\"><img src=\"images/remove.png\" alt=\"Delete\"/></a><br/>"; + } + $negInterests=""; + if (isset($_SESSION['negative'])) foreach($_SESSION['negative'] as $neg){ + $negInterests.=urldecode(substr (strrchr ($neg, "/"), 1))." <a href=\"\" onclick=\"xajax_toPositive('".$neg."');return false;\"><img src=\"images/plus.jpg\" alt=\"Plus\"/></a> <a href=\"\" onclick=\"xajax_removeNegInterest('".$neg."');return false;\"><img src=\"images/remove.png\" alt=\"Delete\"/></a><br/>"; + } $objResponse->assign("articlecontent", "innerHTML", $content); $objResponse->assign("ArticleTitle","innerHTML",$artTitle); $objResponse->assign("lastarticles","innerHTML",$lastArticles); $objResponse->assign("searchcontent", "innerHTML", $searchResult); - - $objResponse->call('xajax_showInterests'); + $objResponse->assign('Positives','innerHTML',$posInterests); + $objResponse->assign('Negatives','innerHTML',$negInterests); return $objResponse; } @@ -253,27 +262,6 @@ return $objResponse; } -function showInterests() -{ - $sid = $_GET['sid']; - session_id($sid); - session_start(); - //add Positives and Negatives to Interests - $posInterests=""; - if (isset($_SESSION['positive'])) foreach($_SESSION['positive'] as $pos){ - $posInterests.=urldecode(substr (strrchr ($pos, "/"), 1))." <a href=\"\" onclick=\"xajax_toNegative('".$pos."');return false;\"><img src=\"images/minus.jpg\" alt=\"Minus\"/></a> <a href=\"\" onclick=\"xajax_removePosInterest('".$pos."');return false;\"><img src=\"images/remove.png\" alt=\"Minus\"/></a><br/>"; - } - $negInterests=""; - if (isset($_SESSION['negative'])) foreach($_SESSION['negative'] as $neg){ - $negInterests.=urldecode(substr (strrchr ($neg, "/"), 1))." <a href=\"\" onclick=\"xajax_toPositive('".$neg."');return false;\"><img src=\"images/plus.jpg\" alt=\"Plus\"/></a> <a href=\"\" onclick=\"xajax_removeNegInterest('".$neg."');return false;\"><img src=\"images/remove.png\" alt=\"Minus\"/></a><br/>"; - } - - $objResponse=new xajaxResponse(); - $objResponse->assign('Positives','innerHTML',$posInterests); - $objResponse->assign('Negatives','innerHTML',$negInterests); - return $objResponse; -} - function removePosInterest($subject) { $sid = $_GET['sid']; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-02-07 20:37:22
|
Revision: 525 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=525&view=rev Author: sknappe Date: 2008-02-07 12:37:13 -0800 (Thu, 07 Feb 2008) Log Message: ----------- bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-07 20:33:47 UTC (rev 524) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-07 20:37:13 UTC (rev 525) @@ -93,7 +93,7 @@ // give the link to the corresponding Wikipedia article if(isset($triples['http://xmlns.com/foaf/0.1/page'])) - $content .= '<p><img src="images/wikipedia_favicon.png" alt"Wikipedia" /> <a href="'.$triples['http://xmlns.com/foaf/0.1/page'][0].'">view Wikipedia article</a>, '; + $content .= '<p><img src="'.$_GET['path'].'images/wikipedia_favicon.png" alt"Wikipedia" /> <a href="'.$triples['http://xmlns.com/foaf/0.1/page'][0].'">view Wikipedia article</a>, '; $content .= '<a href="'.$subject.'">view DBpedia resource description</a></p>'; // display a list of classes This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-02-13 14:54:41
|
Revision: 569 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=569&view=rev Author: sknappe Date: 2008-02-13 06:54:37 -0800 (Wed, 13 Feb 2008) Log Message: ----------- little bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-13 14:27:13 UTC (rev 568) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-13 14:54:37 UTC (rev 569) @@ -342,7 +342,7 @@ foreach ($concepts as $con){ $concept.="<tr><td><a href=\"\" onclick=\"xajax_getSubjectsFromConcept('".$con."');return false;\" onMouseOver=\"showdiv('div".$i."');showdiv('ConceptBox');\" onMouseOut=\"hidediv('div".$i."');hidediv('ConceptBox');\" />".$con."</a></td></tr>"; //put information about concepts in divs - $conceptinformation.="<div id=\"div".$i."\">".$con."</div>"; + $conceptinformation.="<div id=\"div".$i."\" style=\"display:none\">".$con."</div>"; $i++; } $concept.="</table>"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-02-29 09:17:34
|
Revision: 669 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=669&view=rev Author: sknappe Date: 2008-02-29 01:17:28 -0800 (Fri, 29 Feb 2008) Log Message: ----------- bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-29 05:41:38 UTC (rev 668) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-29 09:17:28 UTC (rev 669) @@ -34,6 +34,7 @@ $objResponse = new xajaxResponse(); $objResponse->assign("articlecontent", "innerHTML", $content); + $objResponse->assign("ArticleTitle","innerHTML","Searchresult for ".$label); return $objResponse; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-03-04 12:01:22
|
Revision: 684 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=684&view=rev Author: sknappe Date: 2008-03-04 04:01:07 -0800 (Tue, 04 Mar 2008) Log Message: ----------- bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-03-04 11:56:16 UTC (rev 683) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-03-04 12:01:07 UTC (rev 684) @@ -364,8 +364,8 @@ session_id($sid); session_start(); - $positives=$_SESSION['positive']; - $negatives=$_SESSION['negative']; + if (isset($_SESSION['positive'])) $positives=$_SESSION['positive']; + if (isset($_SESSION['negative'])) $negatives=$_SESSION['negative']; $id=$_SESSION['id']; $ksID=$_SESSION['ksID']; session_write_close(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-03-04 12:02:59
|
Revision: 685 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=685&view=rev Author: sknappe Date: 2008-03-04 04:02:49 -0800 (Tue, 04 Mar 2008) Log Message: ----------- bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-03-04 12:01:07 UTC (rev 684) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-03-04 12:02:49 UTC (rev 685) @@ -394,7 +394,7 @@ foreach ($concepts as $con){ $concept.="<tr><td><a href=\"\" onclick=\"xajax_getSubjectsFromConcept('".$con."');return false;\" onMouseOver=\"showdiv('div".$i."');showdiv('ConceptBox');\" onMouseOut=\"hidediv('div".$i."');hidediv('ConceptBox');\" />".$con."</a></td></tr>"; //put information about concepts in divs - $conceptinformation.="<div id=\"div".$i."\" style=\"display:none\">Concept Depth: ".$conceptDepth[$i-1]."<br/>Concept Arity: ".$conceptArity[$i-1]."</div>"; + $conceptinformation.="<div id=\"div".$i."\" style=\"display:none\">Concept Depth: ".$conceptDepth[$i-1]."<br/>Concept Arity: ".$conceptArity[$i-1]."<br/>Concept Length: ".$sc->getConceptLength($con)."</div>"; $i++; } $concept.="</table>"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sk...@us...> - 2008-06-18 18:26:26
|
Revision: 971 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=971&view=rev Author: sknappe Date: 2008-06-18 11:25:58 -0700 (Wed, 18 Jun 2008) Log Message: ----------- made the search better Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-06-18 18:25:40 UTC (rev 970) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-06-18 18:25:58 UTC (rev 971) @@ -220,7 +220,7 @@ $objResponse->assign("lastarticles","innerHTML",$lastArticles); $objResponse->assign('Positives','innerHTML',$posInterests); $objResponse->assign('Negatives','innerHTML',$negInterests); - $objResponse->call('xajax_learnConcept'); + //$objResponse->call('xajax_learnConcept'); return $objResponse; } @@ -486,7 +486,7 @@ else if ($count>($min+$distribution)) $style="font-size:medium;"; else $style="font-size:small;"; - $ret.="<a style='".$style."' href='javascript:xajax_getSubjectsFromConcept('".$tag."');>".$label[$tag]."</a> "; + $ret.='<a style="'.$style.'" href="#" onclick="xajax_getSubjectsFromConcept(\''.$tag.'\');">'.$label[$tag].'</a>'; } $ret.="</p>"; return $ret; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |