appscms-tools-theme 1.1.4 → 1.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/head/index.html +4 -0
- data/assets/js/googledriveinput.js +155 -0
- data/assets/js/multiselect.js +156 -0
- metadata +4 -4
- data/assets/js/files/en/jpg.json +0 -153
- data/assets/js/files/en/png.json +0 -61
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 502d0d4902e6c598312953ca39fe2299d6e57d809882a4b92f7ab3ba7e384c65
|
|
4
|
+
data.tar.gz: bc94d9c7d3beaafdf8225240aeab61f0407e62c5c5c28d745c35365b3d6ef81f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75d7ab170959c8aabd623454b52378d2909e4adca11098e904417c85fad8658ec66cc406c9f68824bb83911c9094eaf2b9736640b9c609473f90972829284728
|
|
7
|
+
data.tar.gz: 76905d83a5b96cc791c22164ef1ee836b80ca37f51a4e0fa991946abcb5bcefbc338ada0c92bbdf2b6d510d1b886a23bd4a1daee3e5007e17149f2e5c5598b8d
|
data/_includes/head/index.html
CHANGED
|
@@ -34,6 +34,10 @@
|
|
|
34
34
|
<meta data-rh="true" name="twitter:title" content="{{title}}">
|
|
35
35
|
<meta data-rh="true" name="twitter:description" content="{{description}}">
|
|
36
36
|
<meta data-rh="true" name="twitter:image:src" content="{{site.url}}{{favicon}}">
|
|
37
|
+
{%- if page.noindex -%}
|
|
38
|
+
<meta name="robots" content="noindex">
|
|
39
|
+
{%- endif -%}
|
|
40
|
+
|
|
37
41
|
{%- if site.pwa -%}
|
|
38
42
|
<link rel="manifest" href="/assets/js/manifest.json">
|
|
39
43
|
{%- endif -%}
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
const addScripts=()=>{
|
|
5
|
+
const scripts=document.getElementsByTagName('script')
|
|
6
|
+
const check= Array.from(scripts).find(item=>item.src==='https://www.dropbox.com/static/api/2/dropins.js')
|
|
7
|
+
if(!check){
|
|
8
|
+
const dropboxscript = document.createElement('script')
|
|
9
|
+
dropboxscript.src = 'https://www.dropbox.com/static/api/2/dropins.js'
|
|
10
|
+
dropboxscript.dataset.appKey = '{{site.dropboxapikey}}'
|
|
11
|
+
dropboxscript.id='dropboxjs'
|
|
12
|
+
document.head.append(dropboxscript)
|
|
13
|
+
}
|
|
14
|
+
const checkgooglescript= Array.from(scripts).find(item=>item.src==='https://apis.google.com/js/api.js')
|
|
15
|
+
if(!checkgooglescript){
|
|
16
|
+
const googlescript = document.createElement('script')
|
|
17
|
+
googlescript.src = 'https://apis.google.com/js/api.js'
|
|
18
|
+
document.head.append(googlescript)
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
const developerKey = '{{site.developerKey}}'
|
|
22
|
+
const clientId ='{{site.clientId}}'
|
|
23
|
+
const appId = '{{site.appId}}'
|
|
24
|
+
const scope = [
|
|
25
|
+
'https://www.googleapis.com/auth/drive.file',
|
|
26
|
+
'https://www.googleapis.com/auth/drive.appdata',
|
|
27
|
+
]
|
|
28
|
+
let pickerApiLoaded = false
|
|
29
|
+
let oauthToken
|
|
30
|
+
const loadPicker = (mimeType) => {
|
|
31
|
+
var mimeTypes=mimeType
|
|
32
|
+
gapi.load('auth', { callback: onAuthApiLoad })
|
|
33
|
+
gapi.load('picker', { callback: onPickerApiLoad })
|
|
34
|
+
}
|
|
35
|
+
const onAuthApiLoad = () => {
|
|
36
|
+
window.gapi.auth.authorize(
|
|
37
|
+
{
|
|
38
|
+
client_id: clientId,
|
|
39
|
+
scope: scope,
|
|
40
|
+
immediate: false,
|
|
41
|
+
},
|
|
42
|
+
handleAuthResult
|
|
43
|
+
)
|
|
44
|
+
}
|
|
45
|
+
let onPickerApiLoad = () => {
|
|
46
|
+
pickerApiLoaded = true
|
|
47
|
+
createPicker()
|
|
48
|
+
}
|
|
49
|
+
const handleAuthResult = (authResult) => {
|
|
50
|
+
if (authResult && !authResult.error) {
|
|
51
|
+
oauthToken = authResult.access_token
|
|
52
|
+
createPicker()
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
const createPicker = () => {
|
|
56
|
+
if (pickerApiLoaded && oauthToken) {
|
|
57
|
+
const view = new google.picker.View(google.picker.ViewId.DOCS)
|
|
58
|
+
view.setMimeTypes(mimeTypes)
|
|
59
|
+
const picker = new google.picker.PickerBuilder()
|
|
60
|
+
.enableFeature(google.picker.Feature.NAV_HIDDEN)
|
|
61
|
+
.enableFeature(google.picker.Feature.MULTISELECT_ENABLED)
|
|
62
|
+
.setAppId(appId)
|
|
63
|
+
.setOAuthToken(oauthToken)
|
|
64
|
+
.addView(view)
|
|
65
|
+
.addView(new google.picker.DocsUploadView())
|
|
66
|
+
.setDeveloperKey(developerKey)
|
|
67
|
+
.setCallback(pickerCallback)
|
|
68
|
+
.build()
|
|
69
|
+
picker.setVisible(true)
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
const pickerCallback = async (data) => {
|
|
73
|
+
if (data.action == google.picker.Action.PICKED) {
|
|
74
|
+
showLoader()
|
|
75
|
+
const res = await fetch(
|
|
76
|
+
`https://www.googleapis.com/drive/v3/files/${data.docs[0].id}?alt=media`,
|
|
77
|
+
{
|
|
78
|
+
headers: {
|
|
79
|
+
Authorization: `Bearer ${oauthToken}`,
|
|
80
|
+
},
|
|
81
|
+
}
|
|
82
|
+
).then((res) => res.blob())
|
|
83
|
+
let metadata = {
|
|
84
|
+
type: data.docs[0].mimeType,
|
|
85
|
+
}
|
|
86
|
+
let file = new File([res], data.docs[0].name, metadata)
|
|
87
|
+
closeLoader()
|
|
88
|
+
getFile(file)
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
function chooseFromDropbox(filemimes) {
|
|
92
|
+
Dropbox.choose({
|
|
93
|
+
success: async (files) => {
|
|
94
|
+
if (files.length < 0) {
|
|
95
|
+
return
|
|
96
|
+
}
|
|
97
|
+
var file = files[0]
|
|
98
|
+
const url = new URL(file.link)
|
|
99
|
+
showLoader()
|
|
100
|
+
const response = await fetch(url).then((res) => res.blob())
|
|
101
|
+
let metadata = {
|
|
102
|
+
type: response.type,
|
|
103
|
+
}
|
|
104
|
+
let newFile = new File([response], file.name, metadata)
|
|
105
|
+
closeLoader()
|
|
106
|
+
getDropBoxFile(newFile)
|
|
107
|
+
},
|
|
108
|
+
cancel: function () {},
|
|
109
|
+
linkType: 'direct',
|
|
110
|
+
multiselect: false,
|
|
111
|
+
extensions: [...filemimes],
|
|
112
|
+
folderselect: false,
|
|
113
|
+
})
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
const fileupload=(file)=>{
|
|
117
|
+
gapi.load('auth', {'callback': onAuthLoad});
|
|
118
|
+
}
|
|
119
|
+
const onAuthLoad=()=> {
|
|
120
|
+
window.gapi.auth.authorize(
|
|
121
|
+
{
|
|
122
|
+
'client_id': clientId,
|
|
123
|
+
'scope': scope,
|
|
124
|
+
'immediate': false
|
|
125
|
+
},
|
|
126
|
+
handleAuth);
|
|
127
|
+
}
|
|
128
|
+
const handleAuth=(authResult)=> {
|
|
129
|
+
if (authResult && !authResult.error) {
|
|
130
|
+
showuploadloading()
|
|
131
|
+
var formData = new FormData();
|
|
132
|
+
const fileToUpload = file
|
|
133
|
+
var metadata = {
|
|
134
|
+
name: fileToUpload.name,
|
|
135
|
+
mimeType: fileToUpload.type
|
|
136
|
+
};
|
|
137
|
+
formData.append( "metadata", new Blob( [JSON.stringify( metadata )], {type: "application/json"} ));
|
|
138
|
+
formData.append( "file", fileToUpload );
|
|
139
|
+
fetch( "https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart", {
|
|
140
|
+
method: "POST",
|
|
141
|
+
headers: new Headers({ "Authorization": "Bearer " + gapi.auth.getToken().access_token }),
|
|
142
|
+
body: formData
|
|
143
|
+
}).then( function( response ){
|
|
144
|
+
stopuploadloading()
|
|
145
|
+
return response.json();
|
|
146
|
+
|
|
147
|
+
}).then( function( value ){
|
|
148
|
+
stopuploadloading()
|
|
149
|
+
showmessage()
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
---
|
|
2
|
+
---
|
|
3
|
+
|
|
4
|
+
const addScripts=()=>{
|
|
5
|
+
const scripts=document.getElementsByTagName('script')
|
|
6
|
+
const check= Array.from(scripts).find(item=>item.src==='https://www.dropbox.com/static/api/2/dropins.js')
|
|
7
|
+
if(!check){
|
|
8
|
+
const dropboxscript = document.createElement('script')
|
|
9
|
+
dropboxscript.src = 'https://www.dropbox.com/static/api/2/dropins.js'
|
|
10
|
+
dropboxscript.dataset.appKey = '{{site.dropboxapikey}}'
|
|
11
|
+
dropboxscript.id='dropboxjs'
|
|
12
|
+
document.head.append(dropboxscript)
|
|
13
|
+
}
|
|
14
|
+
const checkgooglescript= Array.from(scripts).find(item=>item.src==='https://apis.google.com/js/api.js')
|
|
15
|
+
if(!checkgooglescript){
|
|
16
|
+
const googlescript = document.createElement('script')
|
|
17
|
+
googlescript.src = 'https://apis.google.com/js/api.js'
|
|
18
|
+
document.head.append(googlescript)
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
const developerKey = '{{site.developerKey}}'
|
|
22
|
+
const clientId ='{{site.clientId}}'
|
|
23
|
+
const appId = '{{site.appId}}'
|
|
24
|
+
const scope = [
|
|
25
|
+
'https://www.googleapis.com/auth/drive.file',
|
|
26
|
+
'https://www.googleapis.com/auth/drive.appdata',
|
|
27
|
+
]
|
|
28
|
+
let pickerApiLoaded = false
|
|
29
|
+
let oauthToken
|
|
30
|
+
const loadPicker = () => {
|
|
31
|
+
gapi.load('auth', { callback: onAuthApiLoad })
|
|
32
|
+
gapi.load('picker', { callback: onPickerApiLoad })
|
|
33
|
+
}
|
|
34
|
+
const onAuthApiLoad = () => {
|
|
35
|
+
window.gapi.auth.authorize(
|
|
36
|
+
{
|
|
37
|
+
client_id: clientId,
|
|
38
|
+
scope: scope,
|
|
39
|
+
immediate: false,
|
|
40
|
+
},
|
|
41
|
+
handleAuthResult
|
|
42
|
+
)
|
|
43
|
+
}
|
|
44
|
+
let onPickerApiLoad = () => {
|
|
45
|
+
pickerApiLoaded = true
|
|
46
|
+
createPicker()
|
|
47
|
+
}
|
|
48
|
+
const handleAuthResult = (authResult) => {
|
|
49
|
+
if (authResult && !authResult.error) {
|
|
50
|
+
oauthToken = authResult.access_token
|
|
51
|
+
createPicker()
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
const createPicker = () => {
|
|
55
|
+
if (pickerApiLoaded && oauthToken) {
|
|
56
|
+
const view = new google.picker.View(google.picker.ViewId.DOCS)
|
|
57
|
+
view.setMimeTypes(mimeTypes)
|
|
58
|
+
const picker = new google.picker.PickerBuilder()
|
|
59
|
+
.enableFeature(google.picker.Feature.NAV_HIDDEN)
|
|
60
|
+
.enableFeature(google.picker.Feature.MULTISELECT_ENABLED)
|
|
61
|
+
.setAppId(appId)
|
|
62
|
+
.setOAuthToken(oauthToken)
|
|
63
|
+
.addView(view)
|
|
64
|
+
.addView(new google.picker.DocsUploadView())
|
|
65
|
+
.setDeveloperKey(developerKey)
|
|
66
|
+
.setCallback(pickerCallback)
|
|
67
|
+
.build()
|
|
68
|
+
picker.setVisible(true)
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
const pickerCallback = async (data) => {
|
|
72
|
+
if (data.action == google.picker.Action.PICKED) {
|
|
73
|
+
showLoader()
|
|
74
|
+
var filesArray=data.docs.map(async(i)=>{
|
|
75
|
+
const res= await fetch(`https://www.googleapis.com/drive/v3/files/${i.id}?alt=media`,{
|
|
76
|
+
headers: {
|
|
77
|
+
'Authorization': `Bearer ${oauthToken}` }
|
|
78
|
+
}).then(res=>res.blob())
|
|
79
|
+
let metadata = {
|
|
80
|
+
type: i.mimeType
|
|
81
|
+
}
|
|
82
|
+
const file = new File([res], i.name, metadata);
|
|
83
|
+
return file
|
|
84
|
+
})
|
|
85
|
+
closeLoader()
|
|
86
|
+
getFile(filesArray)
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
function chooseFromDropbox() {
|
|
90
|
+
Dropbox.choose({
|
|
91
|
+
success: async (files) => {
|
|
92
|
+
if (files.length < 0) {
|
|
93
|
+
return
|
|
94
|
+
}
|
|
95
|
+
var dropboxArray=files.map(async(file)=>{
|
|
96
|
+
showLoader()
|
|
97
|
+
const url = new URL(file.link)
|
|
98
|
+
const response = await fetch(url).then((res) => res.blob())
|
|
99
|
+
let metadata = {
|
|
100
|
+
type: response.type,
|
|
101
|
+
}
|
|
102
|
+
let newFile = new File([response], file.name, metadata)
|
|
103
|
+
return newFile
|
|
104
|
+
})
|
|
105
|
+
|
|
106
|
+
closeLoader()
|
|
107
|
+
getDropBoxFile(dropboxArray)
|
|
108
|
+
},
|
|
109
|
+
cancel: function () {},
|
|
110
|
+
linkType: 'direct',
|
|
111
|
+
multiselect: true,
|
|
112
|
+
extensions: [...filemimes],
|
|
113
|
+
folderselect: false,
|
|
114
|
+
})
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
const fileupload=(file)=>{
|
|
118
|
+
gapi.load('auth', {'callback': onAuthLoad});
|
|
119
|
+
}
|
|
120
|
+
const onAuthLoad=()=> {
|
|
121
|
+
window.gapi.auth.authorize(
|
|
122
|
+
{
|
|
123
|
+
'client_id': clientId,
|
|
124
|
+
'scope': scope,
|
|
125
|
+
'immediate': false
|
|
126
|
+
},
|
|
127
|
+
handleAuth);
|
|
128
|
+
}
|
|
129
|
+
const handleAuth=(authResult)=> {
|
|
130
|
+
if (authResult && !authResult.error) {
|
|
131
|
+
showuploadloading()
|
|
132
|
+
var formData = new FormData();
|
|
133
|
+
const fileToUpload = file
|
|
134
|
+
var metadata = {
|
|
135
|
+
name: fileToUpload.name,
|
|
136
|
+
mimeType: fileToUpload.type
|
|
137
|
+
};
|
|
138
|
+
formData.append( "metadata", new Blob( [JSON.stringify( metadata )], {type: "application/json"} ));
|
|
139
|
+
formData.append( "file", fileToUpload );
|
|
140
|
+
fetch( "https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart", {
|
|
141
|
+
method: "POST",
|
|
142
|
+
headers: new Headers({ "Authorization": "Bearer " + gapi.auth.getToken().access_token }),
|
|
143
|
+
body: formData
|
|
144
|
+
}).then( function( response ){
|
|
145
|
+
stopuploadloading()
|
|
146
|
+
return response.json();
|
|
147
|
+
|
|
148
|
+
}).then( function( value ){
|
|
149
|
+
stopuploadloading()
|
|
150
|
+
showmessage()
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appscms-tools-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vivek-appscms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-07-
|
|
11
|
+
date: 2021-07-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -291,10 +291,10 @@ files:
|
|
|
291
291
|
- assets/images/rating.png
|
|
292
292
|
- assets/instagram.svg
|
|
293
293
|
- assets/js/TopScroll.js
|
|
294
|
-
- assets/js/files/en/jpg.json
|
|
295
|
-
- assets/js/files/en/png.json
|
|
296
294
|
- assets/js/googledrive.js
|
|
295
|
+
- assets/js/googledriveinput.js
|
|
297
296
|
- assets/js/manifest.json
|
|
297
|
+
- assets/js/multiselect.js
|
|
298
298
|
- assets/linkdin.svg
|
|
299
299
|
- assets/noserverupload.svg
|
|
300
300
|
- assets/pdf.svg
|
data/assets/js/files/en/jpg.json
DELETED
|
@@ -1,153 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"Format": "Jpg file",
|
|
3
|
-
"ShortName": "Jpg",
|
|
4
|
-
"FullName": "Jpge",
|
|
5
|
-
"Category": "Image",
|
|
6
|
-
"Pros": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
|
|
7
|
-
"Cons": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
|
|
8
|
-
"CreatedbyName": "jpg",
|
|
9
|
-
"CreatedbyLink": "jpg",
|
|
10
|
-
"CreatedInYear": "2021",
|
|
11
|
-
"BasicInformation": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
|
|
12
|
-
"DetailedInformation": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
|
|
13
|
-
"Softwaresused": [
|
|
14
|
-
{
|
|
15
|
-
"platform": "Windows",
|
|
16
|
-
"softwares": [
|
|
17
|
-
{
|
|
18
|
-
"name": "Adobe Audition CC 2021",
|
|
19
|
-
"link": "/",
|
|
20
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
21
|
-
"type": "free"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"name": "Adobe Audition CC 2021",
|
|
25
|
-
"link": "/",
|
|
26
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
27
|
-
"type": "paid"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "Adobe Audition CC 2021",
|
|
31
|
-
"link": "/",
|
|
32
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
33
|
-
"type": "freemium"
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"platform": "Windows",
|
|
39
|
-
"softwares": [
|
|
40
|
-
{
|
|
41
|
-
"name": "Adobe Audition CC 2021",
|
|
42
|
-
"link": "/",
|
|
43
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
44
|
-
"type": "free"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"name": "Adobe Audition CC 2021",
|
|
48
|
-
"link": "/",
|
|
49
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
50
|
-
"type": "paid"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"name": "Adobe Audition CC 2021",
|
|
54
|
-
"link": "/",
|
|
55
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
56
|
-
"type": "freemium"
|
|
57
|
-
}
|
|
58
|
-
]
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"platform": "Windows",
|
|
62
|
-
"softwares": [
|
|
63
|
-
{
|
|
64
|
-
"name": "Adobe Audition CC 2021",
|
|
65
|
-
"link": "/",
|
|
66
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
67
|
-
"type": "free"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"name": "Adobe Audition CC 2021",
|
|
71
|
-
"link": "/",
|
|
72
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
73
|
-
"type": "paid"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"name": "Adobe Audition CC 2021",
|
|
77
|
-
"link": "/",
|
|
78
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
79
|
-
"type": "freemium"
|
|
80
|
-
}
|
|
81
|
-
]
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"platform": "Windows",
|
|
85
|
-
"softwares": [
|
|
86
|
-
{
|
|
87
|
-
"name": "Adobe Audition CC 2021",
|
|
88
|
-
"link": "/",
|
|
89
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
90
|
-
"type": "free"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"name": "Adobe Audition CC 2021",
|
|
94
|
-
"link": "/",
|
|
95
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
96
|
-
"type": "paid"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"name": "Adobe Audition CC 2021",
|
|
100
|
-
"link": "/",
|
|
101
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
102
|
-
"type": "freemium"
|
|
103
|
-
}
|
|
104
|
-
]
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"platform": "Windows",
|
|
108
|
-
"softwares": [
|
|
109
|
-
{
|
|
110
|
-
"name": "Adobe Audition CC 2021",
|
|
111
|
-
"link": "/",
|
|
112
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
113
|
-
"type": "free"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"name": "Adobe Audition CC 2021",
|
|
117
|
-
"link": "/",
|
|
118
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
119
|
-
"type": "paid"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"name": "Adobe Audition CC 2021",
|
|
123
|
-
"link": "/",
|
|
124
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
125
|
-
"type": "freemium"
|
|
126
|
-
}
|
|
127
|
-
]
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"platform": "Android",
|
|
131
|
-
"softwares": [
|
|
132
|
-
{
|
|
133
|
-
"name": "Google",
|
|
134
|
-
"link": "/",
|
|
135
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
136
|
-
"type": "free"
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
"name": "Apple",
|
|
140
|
-
"link": "/",
|
|
141
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
142
|
-
"type": "paid"
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"name": "Adobe Audition CC 2021",
|
|
146
|
-
"link": "/",
|
|
147
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
148
|
-
"type": "premium"
|
|
149
|
-
}
|
|
150
|
-
]
|
|
151
|
-
}
|
|
152
|
-
]
|
|
153
|
-
}
|
data/assets/js/files/en/png.json
DELETED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"Format": "Png File",
|
|
3
|
-
"ShortName": "Png",
|
|
4
|
-
"FullName": "Png",
|
|
5
|
-
"Category": "Png",
|
|
6
|
-
"Pros": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
|
|
7
|
-
"Cons": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
|
|
8
|
-
"CreatedbyName": "Png",
|
|
9
|
-
"CreatedbyLink": "Png",
|
|
10
|
-
"CreatedInYear": "2021",
|
|
11
|
-
"BasicInformation": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
|
|
12
|
-
"DetailedInformation": "OXPS i.e. XML XML Description Definition File is the latest version of XPS file format developed by Microsoft and Ecma international in 2006. With PDF of Adobe Inc., XPS is a compact text format designed to maintain the integrity of the document. This file format is widely used in Windows8. Windows8 provides built-in applications that can be used to open and view documents in .oxps file format. Older versions of Windows do not have built-in tools and do not support OXPS file format. There are third-party softwares that help open an OXPS file.",
|
|
13
|
-
"Softwaresused": [
|
|
14
|
-
{
|
|
15
|
-
"platform": "Windows",
|
|
16
|
-
"softwares": [
|
|
17
|
-
{
|
|
18
|
-
"name": "Adobe Audition CC 2021",
|
|
19
|
-
"link": "/",
|
|
20
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
21
|
-
"type": "free"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"name": "Adobe Audition CC 2021",
|
|
25
|
-
"link": "/",
|
|
26
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
27
|
-
"type": "paid"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "Adobe Audition CC 2021",
|
|
31
|
-
"link": "/",
|
|
32
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
33
|
-
"type": "freemium"
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"platform": "Android",
|
|
39
|
-
"softwares": [
|
|
40
|
-
{
|
|
41
|
-
"name": "Google",
|
|
42
|
-
"link": "/",
|
|
43
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
44
|
-
"type": "free"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"name": "Apple",
|
|
48
|
-
"link": "/",
|
|
49
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
50
|
-
"type": "paid"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"name": "Adobe Audition CC 2021",
|
|
54
|
-
"link": "/",
|
|
55
|
-
"image": "https://cdn.fileinfo.com/img/icons/apps/128/mplayer_mplayer.png",
|
|
56
|
-
"type": "premium"
|
|
57
|
-
}
|
|
58
|
-
]
|
|
59
|
-
}
|
|
60
|
-
]
|
|
61
|
-
}
|