You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by re...@apache.org on 2011/06/28 15:25:51 UTC

svn commit: r1140596 - /incubator/clerezza/trunk/parent/platform.shellcustomizer/src/main/scala/org/apache/clerezza/platform/shellcustomizer/PlatformShellCustomizer.scala

Author: reto
Date: Tue Jun 28 13:25:51 2011
New Revision: 1140596

URL: http://svn.apache.org/viewvc?rev=1140596&view=rev
Log:
CLEREZZA-510: removed dependency on EasyGraph as Henry suggests this not to be part of the next release

Modified:
    incubator/clerezza/trunk/parent/platform.shellcustomizer/src/main/scala/org/apache/clerezza/platform/shellcustomizer/PlatformShellCustomizer.scala

Modified: incubator/clerezza/trunk/parent/platform.shellcustomizer/src/main/scala/org/apache/clerezza/platform/shellcustomizer/PlatformShellCustomizer.scala
URL: http://svn.apache.org/viewvc/incubator/clerezza/trunk/parent/platform.shellcustomizer/src/main/scala/org/apache/clerezza/platform/shellcustomizer/PlatformShellCustomizer.scala?rev=1140596&r1=1140595&r2=1140596&view=diff
==============================================================================
--- incubator/clerezza/trunk/parent/platform.shellcustomizer/src/main/scala/org/apache/clerezza/platform/shellcustomizer/PlatformShellCustomizer.scala (original)
+++ incubator/clerezza/trunk/parent/platform.shellcustomizer/src/main/scala/org/apache/clerezza/platform/shellcustomizer/PlatformShellCustomizer.scala Tue Jun 28 13:25:51 2011
@@ -18,32 +18,34 @@ package org.apache.clerezza.platform.she
  * specific language governing permissions and limitations
  * under the License.
  */
+
 import org.apache.clerezza.shell.Shell
 import org.apache.clerezza.shell.ShellCustomizer
-import org.apache.clerezza.rdf.scala.utils.{EasyGraph, Preamble}
+import org.apache.clerezza.rdf.scala.utils.Preamble
 import org.apache.clerezza.rdf.core.MGraph
 import org.apache.clerezza.platform.graphprovider.content._
 
 class PlatformShellCustomizer extends ShellCustomizer {
 
-	private var contentGraphProvider: ContentGraphProvider = null
+  private var contentGraphProvider: ContentGraphProvider = null
+
+  def bindings(e: Shell.Environment): List[(String, String, Any)] = {
+    val bundleContext = e.componentContext.getBundleContext
+    List(("contentGraphPreamble", classOf[Preamble].getName, new Preamble(contentGraphProvider.getContentGraph)),
+      ("platformDsl", classOf[PlatformDsl].getName, new PlatformDsl(e.out, bundleContext)))
+  }
+
+  def imports: List[String] = List("contentGraphPreamble._",
+    "platformDsl._", "org.apache.clerezza.rdf.core._",
+    "org.apache.clerezza.rdf.core.access.TcManager",
+    "org.apache.clerezza.rdf.ontologies._",
+    "org.apache.clerezza.rdf.scala.utils._")
+
+  protected def bindContentGraphProvider(p: ContentGraphProvider) {
+    contentGraphProvider = p
+  }
 
-	def bindings(e: Shell.Environment): List[(String, String, Any)] = {
-		val bundleContext = e.componentContext.getBundleContext
-		List(("contentGraphPreamble", classOf[Preamble].getName, new Preamble(contentGraphProvider.getContentGraph)),
-				("platformDsl", classOf[PlatformDsl].getName, new PlatformDsl(e.out, bundleContext)))
-	}
-	def imports: List[String] = List("org.apache.clerezza.rdf.scala.utils.EasyGraph._", "contentGraphPreamble._",
-									"platformDsl._", "org.apache.clerezza.rdf.core._",
-									"org.apache.clerezza.rdf.core.access.TcManager",
-									"org.apache.clerezza.rdf.ontologies._",
-									"org.apache.clerezza.rdf.scala.utils._")
-
-	protected def bindContentGraphProvider(p: ContentGraphProvider) {
-		contentGraphProvider = p
-	}
-
-	protected def unbindContentGraphProvider(p: ContentGraphProvider) {
-		contentGraphProvider = null
-	}
+  protected def unbindContentGraphProvider(p: ContentGraphProvider) {
+    contentGraphProvider = null
+  }
 }