-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from jamiefaye/dev
Dev
- Loading branch information
Showing
129 changed files
with
10,625 additions
and
21,881 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1, maximum-scale=1, user-scalable=no"> | ||
<meta charset="UTF-8"> | ||
<title>Midian</title> | ||
<!-- https://stackoverflow.com/questions/951791/javascript-global-error-handling --> | ||
<div id="npoptemp" style="display: none;"></div> | ||
<script type="text/javascript"> | ||
|
||
window.onerror = function(msg, url, line, col, error) { | ||
var extra = !col ? '' : '\ncolumn: ' + col; | ||
extra += !error ? '' : '\nerror: ' + error; | ||
alert("Error: " + msg + "\nurl: " + url + "\nline: " + line + extra); | ||
return true; | ||
}; | ||
|
||
var buildType='xpj2json'; | ||
</script> | ||
<link rel="stylesheet" href="filewidget.css"> | ||
<link rel="stylesheet" href="edit.css"> | ||
<link rel="stylesheet" href="midian.css"> | ||
|
||
</head> | ||
<body> | ||
This program lets you view MPC .xpj-format using a JSON browser. | ||
<p> | ||
To use this program, press the "Choose File" button and select a xpj file to work with. You will then see a "wedge" pointing to the right. Clip on that to explore deeper. Repeat as desired. | ||
<p> | ||
<table class='nobord'><tr> | ||
<td><input id='midiopenlocal' name="file" type="file" accept=".xpj,.XPJ"/></td> | ||
</tr> | ||
</table> | ||
</div> | ||
<div id='popupspot'></div> | ||
<p class='tinygap'/> | ||
<div id='midiview'> | ||
</div> | ||
|
||
<div id='docspot'> | ||
</div> | ||
<div id='midiantab'> | ||
</div> | ||
© 2019 Catnip/Jamie Faye Fenton. | ||
<script src="midian.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1, maximum-scale=1, user-scalable=no"> | ||
<meta charset="UTF-8"> | ||
<title>Midian</title> | ||
<!-- https://stackoverflow.com/questions/951791/javascript-global-error-handling --> | ||
<div id="npoptemp" style="display: none;"></div> | ||
<script type="text/javascript"> | ||
|
||
window.onerror = function(msg, url, line, col, error) { | ||
var extra = !col ? '' : '\ncolumn: ' + col; | ||
extra += !error ? '' : '\nerror: ' + error; | ||
alert("Error: " + msg + "\nurl: " + url + "\nline: " + line + extra); | ||
return true; | ||
}; | ||
|
||
var buildType='xpj2midi'; | ||
</script> | ||
<link rel="stylesheet" href="filewidget.css"> | ||
<link rel="stylesheet" href="edit.css"> | ||
<link rel="stylesheet" href="midian.css"> | ||
|
||
</head> | ||
<body> | ||
This program lets you open MPC .xpj-format files for conversion to .mid (Midi) files. | ||
<p> | ||
To use this program, press the "Choose File" button and select a xpj file to work with. | ||
<p> | ||
<table class='nobord'><tr> | ||
<td><input id='midiopenlocal' name="file" type="file" accept=".xpj,.XPJ"/></td> | ||
</tr> | ||
</table> | ||
</div> | ||
<div id='popupspot'></div> | ||
<p class='tinygap'/> | ||
<div id='midiview'> | ||
</div> | ||
|
||
<div id='docspot'> | ||
</div> | ||
<div id='midiantab'> | ||
</div> | ||
© 2019 Catnip/Jamie Faye Fenton. | ||
<script src="midian.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.