Skip to content

Commit 54ee8a5

Browse files
committed
Merge branch 'csv' of https://github.com/solid/issue-pane into csv
2 parents d44ee82 + 0a3334b commit 54ee8a5

File tree

4 files changed

+9
-16
lines changed

4 files changed

+9
-16
lines changed

csvButton.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
import { icons, ns, utils, widgets } from 'solid-ui'
88
import { store } from 'solid-logic'
99

10-
const TestCSVstring = 'A,B,C\n1,2,3\n4,5,6\nfoo,bar,baz\n'
11-
1210
export function quoteString(value) {
1311
// https://www.rfc-editor.org/rfc/rfc4180
1412
const stripped = value.replaceAll('\n', ' ')
@@ -117,7 +115,7 @@ export function csvButton (dom, tracker) {
117115
const wrapper = dom.createElement('div')
118116
// Add a button
119117
const button = widgets.button(dom, icons.iconBase + 'noun_Document_998605.svg',
120-
'Copy as CSV', async event => {
118+
'Copy as CSV', async _event => {
121119

122120
const div = button.parentNode.parentNode
123121
console.log('button gparent div', div)

dev/context.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// import { longChatPane } from "chat-pane";
21
import { DataBrowserContext, PaneRegistry } from "pane-registry";
32
import { LiveStore, solidLogicSingleton, store } from "solid-logic";
43

dist/state-big-tracker.ttl

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
2-
31
@prefix dc: <http://purl.org/dc/terms/> .
42
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
5-
@prefix con: <http://www.w3.org/2000/10/swap/pim/contact#> .
6-
@prefix dc: <http://purl.org/dc/elements/1.1/>.
7-
@prefix doap: <http://usefulinc.com/ns/doap#> .
8-
@prefix wf: <http://www.w3.org/2005/01/wf/flow#> .
9-
@prefix ical: <http://www.w3.org/2002/12/cal/ical#> .
10-
@prefix owl: <http://www.w3.org/2002/07/owl#> .
11-
@prefix ui: <http://www.w3.org/ns/ui#> .
12-
@prefix dct: <http://purl.org/dc/terms/> .
13-
3+
@prefix con: <http://www.w3.org/2000/10/swap/pim/contact#> .
4+
@prefix dc: <http://purl.org/dc/elements/1.1/>.
5+
@prefix doap: <http://usefulinc.com/ns/doap#> .
6+
@prefix wf: <http://www.w3.org/2005/01/wf/flow#> .
7+
@prefix ical: <http://www.w3.org/2002/12/cal/ical#> .
8+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
9+
@prefix ui: <http://www.w3.org/ns/ui#> .
10+
@prefix dct: <http://purl.org/dc/terms/> .
1411
@prefix : <big-tracker.ttl#> . # the config file
1512

1613
<#Task1> wf:tracker :this ;

test/big-tracker.ttl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#Processed by Id
22
# using base file:///Users/timbl_1/src/github.com/solidos/solidos/workspaces/issue-pane/test/big-tracker-config.ttl
33
@prefix : <tracker.n3#> .
4-
@prefix ca: <https://olarkin.inrupt.net/profile/card#> .
54
@prefix con: <http://www.w3.org/2000/10/swap/pim/contact#> .
65
@prefix doap: <http://usefulinc.com/ns/doap#> .
76
@prefix flow: <http://www.w3.org/2005/01/wf/flow#> .

0 commit comments

Comments
 (0)