changeset 111:f08004002444

updates to demo
author drewp@bigasterisk.com
date Fri, 18 Mar 2022 23:42:52 -0700
parents 3cdbbd913f1d
children f46b9dfa9b9c
files .hgignore demo-view.n3 index.html repos.n3
diffstat 4 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Fri Mar 18 23:41:24 2022 -0700
+++ b/.hgignore	Fri Mar 18 23:42:52 2022 -0700
@@ -6,3 +6,4 @@
 yarn-error.log
 .vscode/settings.json
 types/
+dist/
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/demo-view.n3	Fri Mar 18 23:42:52 2022 -0700
@@ -0,0 +1,10 @@
+@prefix ex: <http://example.com/> .
+@prefix demo: <http://example.com/demo/> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix : <http://bigasterisk.com/netRoutes/ns#> .
+
+<> a ex:View ; rdfs:label "repos" .
+<> ex:table demo:table1 .
+demo:table1 
+  ex:primaryType :FilteredNic;
+  ex:joinType :Traffic .
--- a/index.html	Fri Mar 18 23:41:24 2022 -0700
+++ b/index.html	Fri Mar 18 23:42:52 2022 -0700
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html>
   <body>
-    <h1>streamed-graph demo1</h1>
+    <h1>streamed-graph demo</h1>
     
     <div id="demo"></div>
 
@@ -11,8 +11,8 @@
       render(
         html`
           <streamed-graph
-            url="/collector/graph/reposync"
-            view="repos.n3"
+            url="/net-route-input/graph/netRouteInput/events"
+            view="demo-view.n3"
             expanded="true"
           ></streamed-graph>
         `,
--- a/repos.n3	Fri Mar 18 23:41:24 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-@prefix : <http://example.com/> .
-@prefix demo: <http://example.com/demo/> .
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-
-
-<> a :View ; rdfs:label "repos" .
-<> :table demo:table1 .
-demo:table1 
-  :primaryType :Repo;
-  :joinType :HgRepo;
-  :joinType :GithubRepo .