-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: r is null #1
Comments
You need to allow read/write to /public/tiddlers with the rainbow pane edit ACL permission |
Do you mean add |
But I'm the owner of my POD, I should have all permissions. Update: https://github.com/solid/node-solid-server#upgrading-from-version-4
|
No in your own solid pod where the app cannot set permission |
I'm confused, how can I save to my own POD? |
Where do you think is the line that this Error happened? |
Your pod is by default the root of your WebId or the solid pod if you put in one |
The information error is in solid-file-widget |
Can you descript the steps you add permissions? |
Go to your pod/public/tiddlers select the rainbow pane and add everybody to owners |
But there is no I thought it would be created automatically. |
And I think you should not add everybody to owners. Otherwise, everybody can delete your wiki. If you login your WebID, you already have all permission in sub-folders. |
Oh, you should add this to the Readme, after I create that folder manually, this tiddler works. |
Should I create a |
Ok I made it work following these steps in a full new solid pod v4.3.1 :
I used chrome browser with both : Whenever you got a 500 error clear the local storage in the browser. |
No the creation of folder "/main" is by default if allowed. There seem to
be insufficient error tracking
Le dim. 14 avr. 2019 à 10:30, lin onetwo <[email protected]> a
écrit :
… Should I create a ./main inside /public/tiddlers manually?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACHZ5miahJEcBA0ZUKjXydpbzSsyYh6aks5vgucYgaJpZM4cubZ3>
.
|
I'm using solid-server V5. So in V5, folder creation is not working, and it's happened in solid-file-widget, am I right? I may take a look into it. |
No in V5 see bug #1170. |
Happy if you find the origin of the 500 error in solid-file-widget. There is a browser test in /demo |
I see you are reworking the app. Nice I have begun some work to convert tiddlers.json to RDF.ttl both ways. I am interested with you intentions with RDF so as to be at least compatible. |
Hi, I think the index file stores SkinnyTiddlers (without Text tiddler field): @prefix : <#>.
@prefix pub: <>.
@prefix ldp: <http://www.w3.org/ns/ldp#>.
@prefix terms: <http://purl.org/dc/terms/>.
@prefix XML: <http://www.w3.org/2001/XMLSchema#>.
@prefix tid: <tiddlywiki/>.
@prefix st: <http://www.w3.org/ns/posix/stat#>.
@prefix tur: <http://www.w3.org/ns/iana/media-types/text/turtle#>.
@prefix tiddly: <https://tiddlywiki.com/#>.
<sometiddler.ttl>
a tur:Resource, ldp:Resource;
terms:created "2019-05-02T09:37:18Z"^^XML:dateTime;
terms:modified "2019-05-02T09:37:18Z"^^XML:dateTime;
st:mtime 1556789838.111;
tiddly:Title "SomeTitle";
st:size 1.
<anothertiddler.ttl>
a tur:Resource, ldp:Resource;
terms:modified "2019-05-02T09:37:18Z"^^XML:dateTime;
st:mtime 1556789838.111;
st:size 1. We can use So this index file will contains all fields from https://tiddlywiki.com/#TiddlerFields , except the What do you think? |
And actual tiddler is just to add a @prefix : <#>.
@prefix pub: <>.
@prefix ldp: <http://www.w3.org/ns/ldp#>.
@prefix terms: <http://purl.org/dc/terms/>.
@prefix XML: <http://www.w3.org/2001/XMLSchema#>.
@prefix tid: <tiddlywiki/>.
@prefix st: <http://www.w3.org/ns/posix/stat#>.
@prefix tur: <http://www.w3.org/ns/iana/media-types/text/turtle#>.
@prefix tiddly: <https://tiddlywiki.com/#>.
<>
a tur:Resource, ldp:Resource;
terms:created "2019-05-02T09:37:18Z"^^XML:dateTime;
terms:modified "2019-05-02T09:37:18Z"^^XML:dateTime;
st:mtime 1556789838.111;
tiddly:Title "SomeTitle";
tiddly:Text "asdfasfhusadfupiadshfohdsaoifhoaidshf";
st:size 100. I think this is enough for interoperability, and I hope searching and reasoning can be done on those files. |
Wait, why not just use LDP container as an index file? |
Index file is not needed and can be build at run time. I kept it because it was in the model I followed. |
What's the Most vocab you choose is reasonable, much better than what I thought (tiddly:Title and tiddly:Text) The one I think can improve is <sometiddler.ttl>
a tur:Resource, ldp:Resource;
a <SomeTag.ttl>; |
Tag is an index and not a tiddler |
_canonical_uri is for example the URL of a external file like music, photos .... |
For a structured definition list of tiddlerfields goto https//tiddlywiki.com tag concepts and choose tiddlerfields |
Ok, sometimes a tag can be another tiddler, while sometimes not. Maybe just store it as a string of Will it be comma separated value? |
Yes it is comma separated value |
Why it's hard to convert back from ttl to json hard? Just parse the CSV then fill in the |
Yes but for me parse is not clear. I need example s |
I didn't think too much, I will just retrieve the object of |
After I click "Allow" on:
Console errors:
TypeError: r is null
and nothing created.The text was updated successfully, but these errors were encountered: