https://www.mediawiki.org/wiki/Special:Code/MediaWiki/114535
Revision: 114535
Author: bkaempgen
Date: 2012-03-27 18:28:40 +0000 (Tue, 27 Mar 2012)
Log Message:
-----------
== SWB - commit 2012-03-27 ==
// Info: In front of host, we had // before, but those seem not needed, any
more.
//(!isset( $info['host']) ) ? $host = "" : $host =
"//".$info['host'];
Modified Paths:
--------------
trunk/extensions/SemanticWebBrowser/CHANGELOG
trunk/extensions/SemanticWebBrowser/SWB_Settings.php
trunk/extensions/SemanticWebBrowser/specials/SearchTriple/SWB_SpecialBrowseWiki.php
Modified: trunk/extensions/SemanticWebBrowser/CHANGELOG
===================================================================
--- trunk/extensions/SemanticWebBrowser/CHANGELOG 2012-03-27 18:05:14 UTC
(rev 114534)
+++ trunk/extensions/SemanticWebBrowser/CHANGELOG 2012-03-27 18:28:40 UTC
(rev 114535)
@@ -1,3 +1,7 @@
+== SWB - commit 2012-03-27 ==
+// Info: In front of host, we had // before, but those seem not needed, any
more.
+//(!isset( $info['host']) ) ? $host = "" : $host =
"//".$info['host'];
+
== SWB - commit 2011-09-19 - 08:36 ==
* Changelog added
* Release-notes added
@@ -2,7 +6,41 @@
+== SWB- 2011_01_12 ==
+*hide incoming properties and show incoming properties work after correction
in method "linkHere"
+there is a mistake in SMW in special page " Browse Wiki" in hide properties
+*replace all tab to space
+*messages declaration is in 'qqq'
+
+== SWB- 2011_11_20 ==
+*incoming properties can be rename, if there is a page in wiki
+*if page exist show blue link otherwise red
+*incoming links also
+
+== SWB- 2011_11_16 ==
+*Title is shown with "_" without blanc
+
+==SWB- 2011_11_14 ==
+*incoming link has blanc instead of "_", for get the right page name add "_"
instead of blanc ,
+look for this in SMWDIWikiPage
+*check the title of the page: page shown not right, but dbkey is right
+
+==SWB- 2011_11_13 ==
+* "get incoming links" works
+* check why no eye isn't shown, find the mistake
+
+==SWB- 2011_10_20 ==
+1. Check for EURI if page exist, show the name of the page
+2. Page show now outgoing and incoming Links
+3. programm clear of echo-print
+
+== SWB - for commit 2011-10-13 ==
+"Browse Wiki & Semantic Web" works in toolbox as "Browse Properties"
+
+== SWB - commit 2011-10-05 ==
+*copy the SWB_Setup into SemanticWebBrowser.php
+*Some Bugs are fixed
+*Modified some methods in SWB_SpecialBrowseWiki.php
+*Clear the structure of SemanticWebBrowser
+
== SWB - commit before 2011-09-19 ==
* Basis functionality of browsing implemented based on browse wiki
*property of wikipage for search SWB is shown
-
-== SWB - 2011-11-27 ==
-* Incoming links work now
Modified: trunk/extensions/SemanticWebBrowser/SWB_Settings.php
===================================================================
--- trunk/extensions/SemanticWebBrowser/SWB_Settings.php 2012-03-27
18:05:14 UTC (rev 114534)
+++ trunk/extensions/SemanticWebBrowser/SWB_Settings.php 2012-03-27
18:28:40 UTC (rev 114535)
@@ -1,7 +1,8 @@
<?php
/**
- * @author Anna Kantorovitch and Benedikt Kämpgen
+ * @author Benedikt Kämpgen
+ * @author Anna Kantorovitch
* @file SWB_Settings
* @ingroup SWB
*/
@@ -19,9 +20,9 @@
$wgExtensionCredits['semantic'][] = array(
'path' => __FILE__,
'name' => 'Semantic Web Browser',
- 'version' => '0.2',
- 'author' => array( 'Benedikt Kaempgen', 'Anna Kantorovitch' ),
- 'url' => 'http://semantic-mediawiki.org',
+ 'version' => '0.3',
+ 'author' => array( '[http://www.b-kaempgen.de
Benedikt Kämpgen]', 'Anna Kantorovitch' ),
+ 'url' =>
'http://www.mediawiki.org/wiki/Extension:Semantic_Web_Browser',
'descriptionmsg' => 'swb_desc'
);
Modified:
trunk/extensions/SemanticWebBrowser/specials/SearchTriple/SWB_SpecialBrowseWiki.php
===================================================================
---
trunk/extensions/SemanticWebBrowser/specials/SearchTriple/SWB_SpecialBrowseWiki.php
2012-03-27 18:05:14 UTC (rev 114534)
+++
trunk/extensions/SemanticWebBrowser/specials/SearchTriple/SWB_SpecialBrowseWiki.php
2012-03-27 18:28:40 UTC (rev 114535)
@@ -149,7 +149,9 @@
$info = parse_url($this->articletext);
(!isset( $info['scheme']) ) ? $scheme = "" :
$scheme = $info['scheme'];
- (!isset( $info['host']) ) ? $host = "" :
$host = "//".$info['host'];
+ // Info: In front of host, we had // before,
but those seem not needed, any more.
+ //(!isset( $info['host']) ) ? $host = "" : $host =
"//".$info['host'];
+ (!isset( $info['host']) ) ? $host = "" :
$host = $info['host'];
(!isset( $info['path']) ) ? $path = "" :
$path = $info['path'];
(!isset( $info['query']) ) ? $query = "" :
$query = $info['query'];
(!isset( $info['fragment'])) ? $fragment = "" :
$fragment = $info['fragment'];
@@ -321,7 +323,9 @@
public static function isURI( $uri ){
$info = parse_url( $uri );
( !isset( $info['scheme'] ) ) ? $scheme = "" : $scheme =
$info['scheme'];
- ( !isset( $info['host'] ) ) ? $host = "" : $host =
"//".$info['host'];
+ // Info: In front of host, we had // before, but those seem not
needed, any more.
+ //(!isset( $info['host']) ) ? $host = "" : $host =
"//".$info['host'];
+ ( !isset( $info['host'] ) ) ? $host = "" : $host =
$info['host'];
( !isset( $info['path'] ) ) ? $path = "" : $path =
$info['path'];
( !isset( $info['query'] ) ) ? $query = "" : $query =
$info['query'];
( !isset($info['fragment']) ) ? $fragment = "" : $fragment =
$info['fragment'];
_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs