-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
Update install.sh to support .pdez and .pdex on Linux #239
Comments
Created by: johhnry Hi, I am interested by this issue. Looking at the existing <mime-type type="text/x-processing.pdex">
<comment>Processing Contribution Bundle</comment>
<sub-class-of type="application/zip"/>
<glob pattern="*.pdex"/>
</mime-type>
<mime-type type="text/x-processing.pdez">
<comment>Processing Sketch Bundle</comment>
<sub-class-of type="application/zip"/>
<glob pattern="*.pdez"/>
</mime-type> I am not sure though about the For the type subclass, it should be one of those types:
but which one is more adapted? I listed the following changes:
What do you think? |
Created by: jeremydouglass Re:
Probably use It isn't multipart -- that problem space (html form data submission and part splitting with a size header) isn't relevant to .pdex / .pdez. It isn't
So: Use It is also possible to submit your own IANA Media Type / MIME type -- some examples of custom zip containers with their own registered MIME type include .cbr, .cbz, and .epub. A submission looks like this: https://www.iana.org/assignments/media-types/application/vnd.comicbook+zip However, the ones I'm familiar with in "archival container formats" using zip with a custom extension tend to have large ecosystems of software that all use the same format -- and in this case we would be starting out with just PDE, I believe...? |
Created by: benfry
With 9a94ccf and related commits, a zip file with extension
.pdex
can be loaded as a Library/Mode/Tool/Example set, and a zip file with the extension.pdez
will load a sketch from a single file. (The sketch will be unpacked into a temporary file.)On Linux, we need to update the
install.sh
scripts and the.xml
files that define the file types to include these two new associations.The text was updated successfully, but these errors were encountered: