dbgate-web-premium 5.5.7-alpha.45

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.
@@ -0,0 +1,121 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width,initial-scale=1" />
6
+
7
+ <title>DbGate</title>
8
+ <meta name="theme-color" content="#000000" />
9
+ <meta
10
+ name="description"
11
+ content="DbGate - web based opensource database administration tool for MS SQL, MySQL, Postgre SQL"
12
+ />
13
+
14
+ <link rel="icon" type="image/png" href="favicon.ico" />
15
+ <link rel="manifest" href="manifest.json" />
16
+
17
+ <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="dimensions.css" />
19
+ <link rel="stylesheet" href="bulma.css" />
20
+ <link rel="stylesheet" href="icon-colors.css" />
21
+ <link rel="stylesheet" href="build/bundle.css" />
22
+ <link rel="stylesheet" href="build/fonts/materialdesignicons.css" />
23
+ <link rel="stylesheet" href="build/diff2html.min.css" />
24
+
25
+ <script lang="javascript">
26
+ window.dbgate_page = 'login';
27
+ </script>
28
+
29
+
30
+ <script defer src="build/bundle.js"></script>
31
+
32
+ <style>
33
+ .lds-ellipsis {
34
+ display: inline-block;
35
+ position: relative;
36
+ width: 80px;
37
+ height: 80px;
38
+ }
39
+ .lds-ellipsis div {
40
+ position: absolute;
41
+ top: 33px;
42
+ width: 13px;
43
+ height: 13px;
44
+ border-radius: 50%;
45
+ background: #000;
46
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
47
+ }
48
+ .lds-ellipsis div:nth-child(1) {
49
+ left: 8px;
50
+ animation: lds-ellipsis1 0.6s infinite;
51
+ }
52
+ .lds-ellipsis div:nth-child(2) {
53
+ left: 8px;
54
+ animation: lds-ellipsis2 0.6s infinite;
55
+ }
56
+ .lds-ellipsis div:nth-child(3) {
57
+ left: 32px;
58
+ animation: lds-ellipsis2 0.6s infinite;
59
+ }
60
+ .lds-ellipsis div:nth-child(4) {
61
+ left: 56px;
62
+ animation: lds-ellipsis3 0.6s infinite;
63
+ }
64
+ @keyframes lds-ellipsis1 {
65
+ 0% {
66
+ transform: scale(0);
67
+ }
68
+ 100% {
69
+ transform: scale(1);
70
+ }
71
+ }
72
+ @keyframes lds-ellipsis3 {
73
+ 0% {
74
+ transform: scale(1);
75
+ }
76
+ 100% {
77
+ transform: scale(0);
78
+ }
79
+ }
80
+ @keyframes lds-ellipsis2 {
81
+ 0% {
82
+ transform: translate(0, 0);
83
+ }
84
+ 100% {
85
+ transform: translate(24px, 0);
86
+ }
87
+ }
88
+
89
+ #starting_dbgate_zero {
90
+ position: absolute;
91
+ left: 0;
92
+ top: 0;
93
+ right: 0;
94
+ bottom: 0;
95
+ display: flex;
96
+ align-items: center;
97
+ justify-content: space-around;
98
+ }
99
+
100
+ .inner-flex {
101
+ display: flex;
102
+ align-items: center;
103
+ flex-direction: column;
104
+ }
105
+ </style>
106
+ </head>
107
+
108
+ <body>
109
+ <div id="starting_dbgate_zero">
110
+ <div class="inner-flex">
111
+ <div class="lds-ellipsis">
112
+ <div></div>
113
+ <div></div>
114
+ <div></div>
115
+ <div></div>
116
+ </div>
117
+ <div>Loading DbGate App</div>
118
+ </div>
119
+ </div>
120
+ </body>
121
+ </html>
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "short_name": "DbGate",
3
+ "name": "DbGate database tool",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+ }
@@ -0,0 +1,121 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width,initial-scale=1" />
6
+
7
+ <title>DbGate</title>
8
+ <meta name="theme-color" content="#000000" />
9
+ <meta
10
+ name="description"
11
+ content="DbGate - web based opensource database administration tool for MS SQL, MySQL, Postgre SQL"
12
+ />
13
+
14
+ <link rel="icon" type="image/png" href="favicon.ico" />
15
+ <link rel="manifest" href="manifest.json" />
16
+
17
+ <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="dimensions.css" />
19
+ <link rel="stylesheet" href="bulma.css" />
20
+ <link rel="stylesheet" href="icon-colors.css" />
21
+ <link rel="stylesheet" href="build/bundle.css" />
22
+ <link rel="stylesheet" href="build/fonts/materialdesignicons.css" />
23
+ <link rel="stylesheet" href="build/diff2html.min.css" />
24
+
25
+ <script lang="javascript">
26
+ window.dbgate_page = 'not-logged';
27
+ </script>
28
+
29
+
30
+ <script defer src="build/bundle.js"></script>
31
+
32
+ <style>
33
+ .lds-ellipsis {
34
+ display: inline-block;
35
+ position: relative;
36
+ width: 80px;
37
+ height: 80px;
38
+ }
39
+ .lds-ellipsis div {
40
+ position: absolute;
41
+ top: 33px;
42
+ width: 13px;
43
+ height: 13px;
44
+ border-radius: 50%;
45
+ background: #000;
46
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
47
+ }
48
+ .lds-ellipsis div:nth-child(1) {
49
+ left: 8px;
50
+ animation: lds-ellipsis1 0.6s infinite;
51
+ }
52
+ .lds-ellipsis div:nth-child(2) {
53
+ left: 8px;
54
+ animation: lds-ellipsis2 0.6s infinite;
55
+ }
56
+ .lds-ellipsis div:nth-child(3) {
57
+ left: 32px;
58
+ animation: lds-ellipsis2 0.6s infinite;
59
+ }
60
+ .lds-ellipsis div:nth-child(4) {
61
+ left: 56px;
62
+ animation: lds-ellipsis3 0.6s infinite;
63
+ }
64
+ @keyframes lds-ellipsis1 {
65
+ 0% {
66
+ transform: scale(0);
67
+ }
68
+ 100% {
69
+ transform: scale(1);
70
+ }
71
+ }
72
+ @keyframes lds-ellipsis3 {
73
+ 0% {
74
+ transform: scale(1);
75
+ }
76
+ 100% {
77
+ transform: scale(0);
78
+ }
79
+ }
80
+ @keyframes lds-ellipsis2 {
81
+ 0% {
82
+ transform: translate(0, 0);
83
+ }
84
+ 100% {
85
+ transform: translate(24px, 0);
86
+ }
87
+ }
88
+
89
+ #starting_dbgate_zero {
90
+ position: absolute;
91
+ left: 0;
92
+ top: 0;
93
+ right: 0;
94
+ bottom: 0;
95
+ display: flex;
96
+ align-items: center;
97
+ justify-content: space-around;
98
+ }
99
+
100
+ .inner-flex {
101
+ display: flex;
102
+ align-items: center;
103
+ flex-direction: column;
104
+ }
105
+ </style>
106
+ </head>
107
+
108
+ <body>
109
+ <div id="starting_dbgate_zero">
110
+ <div class="inner-flex">
111
+ <div class="lds-ellipsis">
112
+ <div></div>
113
+ <div></div>
114
+ <div></div>
115
+ <div></div>
116
+ </div>
117
+ <div>Loading DbGate App</div>
118
+ </div>
119
+ </div>
120
+ </body>
121
+ </html>
@@ -0,0 +1,121 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width,initial-scale=1" />
6
+
7
+ <title>DbGate</title>
8
+ <meta name="theme-color" content="#000000" />
9
+ <meta
10
+ name="description"
11
+ content="DbGate - web based opensource database administration tool for MS SQL, MySQL, Postgre SQL"
12
+ />
13
+
14
+ <link rel="icon" type="image/png" href="favicon.ico" />
15
+ <link rel="manifest" href="manifest.json" />
16
+
17
+ <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="dimensions.css" />
19
+ <link rel="stylesheet" href="bulma.css" />
20
+ <link rel="stylesheet" href="icon-colors.css" />
21
+ <link rel="stylesheet" href="build/bundle.css" />
22
+ <link rel="stylesheet" href="build/fonts/materialdesignicons.css" />
23
+ <link rel="stylesheet" href="build/diff2html.min.css" />
24
+
25
+ <script lang="javascript">
26
+ window.dbgate_page = 'redirect';
27
+ </script>
28
+
29
+
30
+ <script defer src="build/bundle.js"></script>
31
+
32
+ <style>
33
+ .lds-ellipsis {
34
+ display: inline-block;
35
+ position: relative;
36
+ width: 80px;
37
+ height: 80px;
38
+ }
39
+ .lds-ellipsis div {
40
+ position: absolute;
41
+ top: 33px;
42
+ width: 13px;
43
+ height: 13px;
44
+ border-radius: 50%;
45
+ background: #000;
46
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
47
+ }
48
+ .lds-ellipsis div:nth-child(1) {
49
+ left: 8px;
50
+ animation: lds-ellipsis1 0.6s infinite;
51
+ }
52
+ .lds-ellipsis div:nth-child(2) {
53
+ left: 8px;
54
+ animation: lds-ellipsis2 0.6s infinite;
55
+ }
56
+ .lds-ellipsis div:nth-child(3) {
57
+ left: 32px;
58
+ animation: lds-ellipsis2 0.6s infinite;
59
+ }
60
+ .lds-ellipsis div:nth-child(4) {
61
+ left: 56px;
62
+ animation: lds-ellipsis3 0.6s infinite;
63
+ }
64
+ @keyframes lds-ellipsis1 {
65
+ 0% {
66
+ transform: scale(0);
67
+ }
68
+ 100% {
69
+ transform: scale(1);
70
+ }
71
+ }
72
+ @keyframes lds-ellipsis3 {
73
+ 0% {
74
+ transform: scale(1);
75
+ }
76
+ 100% {
77
+ transform: scale(0);
78
+ }
79
+ }
80
+ @keyframes lds-ellipsis2 {
81
+ 0% {
82
+ transform: translate(0, 0);
83
+ }
84
+ 100% {
85
+ transform: translate(24px, 0);
86
+ }
87
+ }
88
+
89
+ #starting_dbgate_zero {
90
+ position: absolute;
91
+ left: 0;
92
+ top: 0;
93
+ right: 0;
94
+ bottom: 0;
95
+ display: flex;
96
+ align-items: center;
97
+ justify-content: space-around;
98
+ }
99
+
100
+ .inner-flex {
101
+ display: flex;
102
+ align-items: center;
103
+ flex-direction: column;
104
+ }
105
+ </style>
106
+ </head>
107
+
108
+ <body>
109
+ <div id="starting_dbgate_zero">
110
+ <div class="inner-flex">
111
+ <div class="lds-ellipsis">
112
+ <div></div>
113
+ <div></div>
114
+ <div></div>
115
+ <div></div>
116
+ </div>
117
+ <div>Loading DbGate App</div>
118
+ </div>
119
+ </div>
120
+ </body>
121
+ </html>
@@ -0,0 +1,121 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width,initial-scale=1" />
6
+
7
+ <title>DbGate</title>
8
+ <meta name="theme-color" content="#000000" />
9
+ <meta
10
+ name="description"
11
+ content="DbGate - web based opensource database administration tool for MS SQL, MySQL, Postgre SQL"
12
+ />
13
+
14
+ <link rel="icon" type="image/png" href="favicon.ico" />
15
+ <link rel="manifest" href="manifest.json" />
16
+
17
+ <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="dimensions.css" />
19
+ <link rel="stylesheet" href="bulma.css" />
20
+ <link rel="stylesheet" href="icon-colors.css" />
21
+ <link rel="stylesheet" href="build/bundle.css" />
22
+ <link rel="stylesheet" href="build/fonts/materialdesignicons.css" />
23
+ <link rel="stylesheet" href="build/diff2html.min.css" />
24
+
25
+ <script lang="javascript">
26
+ window.dbgate_page = 'set-admin-password';
27
+ </script>
28
+
29
+
30
+ <script defer src="build/bundle.js"></script>
31
+
32
+ <style>
33
+ .lds-ellipsis {
34
+ display: inline-block;
35
+ position: relative;
36
+ width: 80px;
37
+ height: 80px;
38
+ }
39
+ .lds-ellipsis div {
40
+ position: absolute;
41
+ top: 33px;
42
+ width: 13px;
43
+ height: 13px;
44
+ border-radius: 50%;
45
+ background: #000;
46
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
47
+ }
48
+ .lds-ellipsis div:nth-child(1) {
49
+ left: 8px;
50
+ animation: lds-ellipsis1 0.6s infinite;
51
+ }
52
+ .lds-ellipsis div:nth-child(2) {
53
+ left: 8px;
54
+ animation: lds-ellipsis2 0.6s infinite;
55
+ }
56
+ .lds-ellipsis div:nth-child(3) {
57
+ left: 32px;
58
+ animation: lds-ellipsis2 0.6s infinite;
59
+ }
60
+ .lds-ellipsis div:nth-child(4) {
61
+ left: 56px;
62
+ animation: lds-ellipsis3 0.6s infinite;
63
+ }
64
+ @keyframes lds-ellipsis1 {
65
+ 0% {
66
+ transform: scale(0);
67
+ }
68
+ 100% {
69
+ transform: scale(1);
70
+ }
71
+ }
72
+ @keyframes lds-ellipsis3 {
73
+ 0% {
74
+ transform: scale(1);
75
+ }
76
+ 100% {
77
+ transform: scale(0);
78
+ }
79
+ }
80
+ @keyframes lds-ellipsis2 {
81
+ 0% {
82
+ transform: translate(0, 0);
83
+ }
84
+ 100% {
85
+ transform: translate(24px, 0);
86
+ }
87
+ }
88
+
89
+ #starting_dbgate_zero {
90
+ position: absolute;
91
+ left: 0;
92
+ top: 0;
93
+ right: 0;
94
+ bottom: 0;
95
+ display: flex;
96
+ align-items: center;
97
+ justify-content: space-around;
98
+ }
99
+
100
+ .inner-flex {
101
+ display: flex;
102
+ align-items: center;
103
+ flex-direction: column;
104
+ }
105
+ </style>
106
+ </head>
107
+
108
+ <body>
109
+ <div id="starting_dbgate_zero">
110
+ <div class="inner-flex">
111
+ <div class="lds-ellipsis">
112
+ <div></div>
113
+ <div></div>
114
+ <div></div>
115
+ <div></div>
116
+ </div>
117
+ <div>Loading DbGate App</div>
118
+ </div>
119
+ </div>
120
+ </body>
121
+ </html>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="116" height="116" id="svg2">
4
+ <defs id="defs4"/>
5
+ <metadata id="metadata7">
6
+ <rdf:RDF>
7
+ <cc:Work rdf:about="">
8
+ <dc:format>image/svg+xml</dc:format>
9
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
10
+ <dc:title/>
11
+ </cc:Work>
12
+ </rdf:RDF>
13
+ </metadata>
14
+ <text x="10.710938" y="111.5" id="text2996" xml:space="preserve" style="font-size:144px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"><tspan x="10.710938" y="111.5" id="tspan2998" style="font-size:150px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial Bold">?</tspan></text>
15
+ </svg>