-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
594 additions
and
594 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,43 +1,43 @@ | ||
JSONView ??? | ||
* Fixed display of newlines and multiple spaces - formatting is now better preserved. | ||
* Fixed display of ECMAScript 5th Edition style JSON (with non-object/array root values) thanks to a patch from Josh Kline. | ||
* URLs are matched even with uppercase scheme (such as "httpS://") | ||
JSONView 0.4 | ||
* Preference dialog with an option to send "application/json" in the HTTP Accept header. | ||
* Fixed a bug where values that were 0 or false would not show up. | ||
* Fixed a bug where documents would sometimes show up as invalid when Firebug was enabled | ||
* Bumped compatibility for 3.7a1pre | ||
JSONView 0.3 | ||
* Detects and displays JSONP, including display of the callback. | ||
* Doesn't show empty arrays and objects as collapsible, and displays them on one line. | ||
* Fixed an error reading large files. | ||
JSONView 0.2 | ||
* .json files can be opened in JSONView from the local machine. | ||
* Added Bulgarian, German, Hungarian, and (partial) Turkish translations. Thanks to | ||
Стоян Димитров, Archaeopteryx, Team erweiterungen.de, MIKES KASZMÁN István and Ersen Yolda from BabelZilla.org. | ||
* Compatible with FF 3.5.* | ||
JSONView 0.1 | ||
* String values which contain only a URL are displayed as a clickable link. Props to stig.murberg for the patch. | ||
* Added Catalan, Spanish, Japanese, Portugese (Brazil), Russian, and Simplified Chinese translations. Thanks to | ||
Fani Kozolchyk, and Xavi Ivars - Softcatalà, hoolooday, drry, Marcelo Ghelman (ghelman.net), Пирятинский Виталий, | ||
and urko from BabelZilla.org. | ||
JSONView 0.1b3: | ||
* Compatible with FF 3.1 Beta 3 | ||
* Fixed a bug where documents >8KB wouldn't be parsed. | ||
* Added Czech, French, and Dutch translations. Thanks to funTomas, Goofy, and markh at babelzilla.org. | ||
* Removed dependency on jQuery - extension is smaller, faster, no more warnings in strict mode. | ||
JSONView 0.1b2: | ||
* Compatible with FF 3.1 Beta 2 | ||
JSONView 0.1b1: | ||
JSONView ??? | ||
* Fixed display of newlines and multiple spaces - formatting is now better preserved. | ||
* Fixed display of ECMAScript 5th Edition style JSON (with non-object/array root values) thanks to a patch from Josh Kline. | ||
* URLs are matched even with uppercase scheme (such as "httpS://") | ||
|
||
JSONView 0.4 | ||
* Preference dialog with an option to send "application/json" in the HTTP Accept header. | ||
* Fixed a bug where values that were 0 or false would not show up. | ||
* Fixed a bug where documents would sometimes show up as invalid when Firebug was enabled | ||
* Bumped compatibility for 3.7a1pre | ||
|
||
JSONView 0.3 | ||
* Detects and displays JSONP, including display of the callback. | ||
* Doesn't show empty arrays and objects as collapsible, and displays them on one line. | ||
* Fixed an error reading large files. | ||
|
||
JSONView 0.2 | ||
* .json files can be opened in JSONView from the local machine. | ||
* Added Bulgarian, German, Hungarian, and (partial) Turkish translations. Thanks to | ||
Стоян Димитров, Archaeopteryx, Team erweiterungen.de, MIKES KASZMÁN István and Ersen Yolda from BabelZilla.org. | ||
* Compatible with FF 3.5.* | ||
|
||
JSONView 0.1 | ||
|
||
* String values which contain only a URL are displayed as a clickable link. Props to stig.murberg for the patch. | ||
* Added Catalan, Spanish, Japanese, Portugese (Brazil), Russian, and Simplified Chinese translations. Thanks to | ||
Fani Kozolchyk, and Xavi Ivars - Softcatalà, hoolooday, drry, Marcelo Ghelman (ghelman.net), Пирятинский Виталий, | ||
and urko from BabelZilla.org. | ||
|
||
JSONView 0.1b3: | ||
|
||
* Compatible with FF 3.1 Beta 3 | ||
* Fixed a bug where documents >8KB wouldn't be parsed. | ||
* Added Czech, French, and Dutch translations. Thanks to funTomas, Goofy, and markh at babelzilla.org. | ||
* Removed dependency on jQuery - extension is smaller, faster, no more warnings in strict mode. | ||
|
||
JSONView 0.1b2: | ||
|
||
* Compatible with FF 3.1 Beta 2 | ||
|
||
JSONView 0.1b1: | ||
|
||
* First beta release |
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 |
---|---|---|
@@ -1,29 +1,29 @@ | ||
<?xml version="1.0"?> | ||
<project name="jsonview" default="createxpi"> | ||
<property name="build.version" value="0.6"/> | ||
<property name="xpi.name" value="${ant.project.name}-${build.version}.xpi"/> | ||
<property name="xpi-babelzilla.name" value="${ant.project.name}-${build.version}-babelzilla.xpi"/> | ||
|
||
<target name="createxpi"> | ||
<delete file="${xpi.name}"/> | ||
<zip destfile="${xpi.name}"> | ||
<zipfileset dir="src"> | ||
<exclude name="**.svn" /> | ||
<!-- these locales are only for BabelZilla, and should not be included in release versions --> | ||
<exclude name="**/amo-descriptions.properties" /> | ||
<exclude name="**/description.properties" /> | ||
</zipfileset> | ||
</zip> | ||
<echo message="Remember to bump the version number in build.xml and install.rdf!" /> | ||
</target> | ||
|
||
<!-- Create an XPI for BabelZilla that contains extra strings for translation. Do not release this! --> | ||
<target name="babelzilla"> | ||
<delete file="${xpi-babelzilla.name}"/> | ||
<zip destfile="${xpi-babelzilla.name}"> | ||
<zipfileset dir="src"> | ||
<exclude name="**.svn" /> | ||
</zipfileset> | ||
</zip> | ||
</target> | ||
</project> | ||
<?xml version="1.0"?> | ||
<project name="jsonview" default="createxpi"> | ||
<property name="build.version" value="0.6"/> | ||
<property name="xpi.name" value="${ant.project.name}-${build.version}.xpi"/> | ||
<property name="xpi-babelzilla.name" value="${ant.project.name}-${build.version}-babelzilla.xpi"/> | ||
|
||
<target name="createxpi"> | ||
<delete file="${xpi.name}"/> | ||
<zip destfile="${xpi.name}"> | ||
<zipfileset dir="src"> | ||
<exclude name="**.svn" /> | ||
<!-- these locales are only for BabelZilla, and should not be included in release versions --> | ||
<exclude name="**/amo-descriptions.properties" /> | ||
<exclude name="**/description.properties" /> | ||
</zipfileset> | ||
</zip> | ||
<echo message="Remember to bump the version number in build.xml and install.rdf!" /> | ||
</target> | ||
|
||
<!-- Create an XPI for BabelZilla that contains extra strings for translation. Do not release this! --> | ||
<target name="babelzilla"> | ||
<delete file="${xpi-babelzilla.name}"/> | ||
<zip destfile="${xpi-babelzilla.name}"> | ||
<zipfileset dir="src"> | ||
<exclude name="**.svn" /> | ||
</zipfileset> | ||
</zip> | ||
</target> | ||
</project> |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
MIT License | ||
Copyright (c) 2009 Benjamin Hollis | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
MIT License | ||
|
||
Copyright (c) 2009 Benjamin Hollis | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
content jsonview content/ contentaccessible=yes | ||
overlay chrome://browser/content/browser.xul chrome://jsonview/content/browser-overlay.xul | ||
skin jsonview default skin/default/ | ||
locale jsonview en-US locale/en-US/ | ||
locale jsonview cs-CZ locale/cs-CZ/ | ||
locale jsonview fr-FR locale/fr-FR/ | ||
locale jsonview nl-NL locale/nl-NL/ | ||
locale jsonview es-ES locale/es-ES/ | ||
locale jsonview ca-AD locale/ca-AD/ | ||
locale jsonview ja-JP locale/ja-JP/ | ||
locale jsonview pt-BR locale/pt-BR/ | ||
locale jsonview ru-RU locale/ru-RU/ | ||
locale jsonview zh-CN locale/zh-CN/ | ||
locale jsonview bg-BG locale/bg-BG/ | ||
locale jsonview de-DE locale/de-DE/ | ||
locale jsonview hu-HU locale/hu-HU/ | ||
locale jsonview tr-TR locale/tr-TR/ | ||
component {64890660-53c4-11dd-ae16-0800200c9a66} components/jsonview.js | ||
contract @mozilla.org/streamconv;1?from=application/json&to=*/* {64890660-53c4-11dd-ae16-0800200c9a66} | ||
content jsonview content/ contentaccessible=yes | ||
overlay chrome://browser/content/browser.xul chrome://jsonview/content/browser-overlay.xul | ||
skin jsonview default skin/default/ | ||
locale jsonview en-US locale/en-US/ | ||
locale jsonview cs-CZ locale/cs-CZ/ | ||
locale jsonview fr-FR locale/fr-FR/ | ||
locale jsonview nl-NL locale/nl-NL/ | ||
locale jsonview es-ES locale/es-ES/ | ||
locale jsonview ca-AD locale/ca-AD/ | ||
locale jsonview ja-JP locale/ja-JP/ | ||
locale jsonview pt-BR locale/pt-BR/ | ||
locale jsonview ru-RU locale/ru-RU/ | ||
locale jsonview zh-CN locale/zh-CN/ | ||
locale jsonview bg-BG locale/bg-BG/ | ||
locale jsonview de-DE locale/de-DE/ | ||
locale jsonview hu-HU locale/hu-HU/ | ||
locale jsonview tr-TR locale/tr-TR/ | ||
component {64890660-53c4-11dd-ae16-0800200c9a66} components/jsonview.js | ||
contract @mozilla.org/streamconv;1?from=application/json&to=*/* {64890660-53c4-11dd-ae16-0800200c9a66} | ||
category ext-to-type-mapping json application/json |
Oops, something went wrong.