Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Poduptime
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
diasporg
Poduptime
Commits
cb05c188
Commit
cb05c188
authored
Dec 16, 2016
by
David Morley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bs4 readyness
parent
0a1547aa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
8 deletions
+11
-8
cleanup.php
cleanup.php
+1
-1
css/newstyle.css
css/newstyle.css
+0
-1
db/pull.php
db/pull.php
+5
-5
js/podup.js
js/podup.js
+5
-1
No files found.
cleanup.php
View file @
cb05c188
...
...
@@ -108,7 +108,7 @@ echo "✪";
?>
<td>
<form
method=
"post"
action=
"db/kill.php"
target=
"_blank"
>
<input
name=
"comments"
size=
10
>
<input
name=
"comments"
value=
"
<?php
echo
$row
[
"sslvalid"
]
?>
"
size=
10
>
<input
name=
"domain"
value=
"
<?php
echo
$row
[
"domain"
]
?>
"
type=
"hidden"
>
<input
name=
"adminkey"
value=
"
<?php
echo
$_COOKIE
[
"adminkey"
]
?>
"
type=
"hidden"
>
<input
name=
"action"
type=
"radio"
value=
"warn"
>
warn
...
...
css/newstyle.css
View file @
cb05c188
...
...
@@ -54,7 +54,6 @@ display: inline-block;
}
.morehover
{
display
:
inline-block
;
font-size
:
10px
;
vertical-align
:
super
;
}
#map
{
height
:
580px
;
}
...
...
db/pull.php
View file @
cb05c188
...
...
@@ -107,9 +107,9 @@ while ($row = pg_fetch_all($result)) {
$chss
=
curl_init
();
curl_setopt
(
$chss
,
CURLOPT_URL
,
"https://"
.
$domain
.
"/nodeinfo/1.0"
);
curl_setopt
(
$chss
,
CURLOPT_POST
,
0
);
curl_setopt
(
$chss
,
CURLOPT_HEADER
,
1
);
curl_setopt
(
$chss
,
CURLOPT_CONNECTTIMEOUT
,
5
);
curl_setopt
(
$chss
,
CURLOPT_TIMEOUT
,
5
);
curl_setopt
(
$chss
,
CURLOPT_HEADER
,
0
);
curl_setopt
(
$chss
,
CURLOPT_CONNECTTIMEOUT
,
9
);
curl_setopt
(
$chss
,
CURLOPT_TIMEOUT
,
9
);
curl_setopt
(
$chss
,
CURLOPT_RETURNTRANSFER
,
1
);
curl_setopt
(
$chss
,
CURLOPT_NOBODY
,
0
);
$outputssl
=
curl_exec
(
$chss
);
...
...
@@ -120,8 +120,8 @@ while ($row = pg_fetch_all($result)) {
curl_setopt
(
$ch
,
CURLOPT_URL
,
"http://"
.
$domain
.
"/nodeinfo/1.0"
);
curl_setopt
(
$ch
,
CURLOPT_POST
,
0
);
curl_setopt
(
$ch
,
CURLOPT_HEADER
,
0
);
curl_setopt
(
$ch
,
CURLOPT_CONNECTTIMEOUT
,
5
);
curl_setopt
(
$ch
,
CURLOPT_TIMEOUT
,
5
);
curl_setopt
(
$ch
,
CURLOPT_CONNECTTIMEOUT
,
9
);
curl_setopt
(
$ch
,
CURLOPT_TIMEOUT
,
9
);
curl_setopt
(
$ch
,
CURLOPT_RETURNTRANSFER
,
1
);
curl_setopt
(
$ch
,
CURLOPT_NOBODY
,
0
);
$output
=
curl_exec
(
$ch
);
...
...
js/podup.js
View file @
cb05c188
...
...
@@ -23,7 +23,7 @@ $(document).ready(function(){
$
.
facebox
.
settings
.
closeImage
=
'
images/closelabel.png
'
$
.
facebox
.
settings
.
loadingImage
=
'
images/loading.gif
'
$
(
'
a[rel*=facebox]
'
).
facebox
()
$
(
'
.tipsy
'
).
tipsy
();
//
$('.tipsy').tipsy();
$
(
'
#add
'
).
click
(
function
()
{
$
(
'
#howto
'
).
show
(
'
slow
'
);
$
(
'
#add
'
).
hide
(
'
slow
'
);
$
(
'
#results
'
).
hide
(
'
slow
'
);
});
...
...
@@ -38,3 +38,7 @@ $.facebox.settings.loadingImage = 'images/loading.gif'
});
});
$
(
function
()
{
$
(
'
[data-toggle="tooltip"]
'
).
tooltip
()
})
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment