Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clinicaltrials
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
david Chavalarias
clinicaltrials
Commits
2334c801
Commit
2334c801
authored
Jan 26, 2017
by
Romain Loth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ssl: change absolute urls to avoid mixed content
parent
0a7a330b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
11 deletions
+15
-11
directory_content.php
php_library/directory_content.php
+5
-1
print_directory.php
print_directory.php
+2
-2
print_jobs_directory.php
print_jobs_directory.php
+2
-2
print_scholar_directory.php
print_scholar_directory.php
+2
-2
alt_index.html
templates/alt_index.html
+1
-1
base_layout.html
templates/base_layout.html
+2
-2
tips.html
tips.html
+1
-1
No files found.
php_library/directory_content.php
View file @
2334c801
...
@@ -44,7 +44,11 @@ foreach ($scholars as $scholar) {
...
@@ -44,7 +44,11 @@ foreach ($scholars as $scholar) {
<div class="span9" align="justify">'
;
<div class="span9" align="justify">'
;
$content
.=
'<div>'
;
$content
.=
'<div>'
;
if
(
$scholar
[
'photo_url'
]
!=
null
)
{
if
(
$scholar
[
'photo_url'
]
!=
null
)
{
$content
.=
'<img style="margin: 7px 10px 10px 0px" src="'
.
$scholar
[
'photo_url'
]
.
'" width="'
.
$imsize
.
'px" align="left">'
;
$photo_url
=
$scholar
[
'photo_url'
]
;
if
(
$_SERVER
[
'REQUEST_SCHEME'
]
==
'https'
)
{
$photo_url
=
preg_replace
(
'/^http:/i'
,
'https:'
,
$photo_url
)
;
}
$content
.=
'<img style="margin: 7px 10px 10px 0px" src="'
.
$photo_url
.
'" width="'
.
$imsize
.
'px" align="left">'
;
}
}
// raw binary picture
// raw binary picture
elseif
(
$scholar
[
'pic_file'
]
!=
null
)
{
elseif
(
$scholar
[
'pic_file'
]
!=
null
)
{
...
...
print_directory.php
View file @
2334c801
...
@@ -14,8 +14,8 @@ $meta = '<!DOCTYPE html>
...
@@ -14,8 +14,8 @@ $meta = '<!DOCTYPE html>
<meta name="author" content="">
<meta name="author" content="">
<!-- Le styles -->
<!-- Le styles -->
<link type="text/css" href="http://fonts.googleapis.com/css?family=Droid%20Sans" rel="stylesheet">
<link type="text/css" href="http
s
://fonts.googleapis.com/css?family=Droid%20Sans" rel="stylesheet">
<link type="text/css" href="http://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link type="text/css" href="http
s
://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link type="text/css" href="static/css/whoswho.css" rel="stylesheet">
<link type="text/css" href="static/css/whoswho.css" rel="stylesheet">
<link type="text/css" href="static/css/comex.css" rel="stylesheet">
<link type="text/css" href="static/css/comex.css" rel="stylesheet">
<link type="text/css" href="static/css/bootstrap_directory.css" rel="stylesheet">
<link type="text/css" href="static/css/bootstrap_directory.css" rel="stylesheet">
...
...
print_jobs_directory.php
View file @
2334c801
...
@@ -14,8 +14,8 @@ $meta = '<!DOCTYPE html>
...
@@ -14,8 +14,8 @@ $meta = '<!DOCTYPE html>
<meta name="author" content="">
<meta name="author" content="">
<!-- Le styles -->
<!-- Le styles -->
<link type="text/css" href="http://fonts.googleapis.com/css?family=Droid%20Sans" rel="stylesheet">
<link type="text/css" href="http
s
://fonts.googleapis.com/css?family=Droid%20Sans" rel="stylesheet">
<link type="text/css" href="http://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link type="text/css" href="http
s
://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link type="text/css" href="static/css/whoswho.css" rel="stylesheet">
<link type="text/css" href="static/css/whoswho.css" rel="stylesheet">
<link type="text/css" href="static/css/comex.css" rel="stylesheet">
<link type="text/css" href="static/css/comex.css" rel="stylesheet">
<link type="text/css" href="static/css/bootstrap_directory.css" rel="stylesheet">
<link type="text/css" href="static/css/bootstrap_directory.css" rel="stylesheet">
...
...
print_scholar_directory.php
View file @
2334c801
...
@@ -12,8 +12,8 @@ $meta = '<!DOCTYPE html>
...
@@ -12,8 +12,8 @@ $meta = '<!DOCTYPE html>
<meta name="author" content="">
<meta name="author" content="">
<!-- Le styles -->
<!-- Le styles -->
<link type="text/css" href="http://fonts.googleapis.com/css?family=Droid%20Sans" rel="stylesheet">
<link type="text/css" href="http
s
://fonts.googleapis.com/css?family=Droid%20Sans" rel="stylesheet">
<link type="text/css" href="http://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link type="text/css" href="http
s
://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link type="text/css" href="static/css/whoswho.css" rel="stylesheet">
<link type="text/css" href="static/css/whoswho.css" rel="stylesheet">
<link type="text/css" href="static/css/comex.css" rel="stylesheet">
<link type="text/css" href="static/css/comex.css" rel="stylesheet">
<link type="text/css" href="static/css/bootstrap_directory.css" rel="stylesheet">
<link type="text/css" href="static/css/bootstrap_directory.css" rel="stylesheet">
...
...
templates/alt_index.html
View file @
2334c801
...
@@ -134,7 +134,7 @@
...
@@ -134,7 +134,7 @@
</div>
</div>
<br/>
<br/>
<center>
<center>
<iframe
src=
"http://player.vimeo.com/video/38383946"
width=
"300"
height=
"170"
frameborder=
"0"
webkitAllowFullScreen
mozallowfullscreen
allowFullScreen
></iframe>
<iframe
src=
"http
s
://player.vimeo.com/video/38383946"
width=
"300"
height=
"170"
frameborder=
"0"
webkitAllowFullScreen
mozallowfullscreen
allowFullScreen
></iframe>
</center>
</center>
<br/><br/>
<br/><br/>
...
...
templates/base_layout.html
View file @
2334c801
...
@@ -15,8 +15,8 @@
...
@@ -15,8 +15,8 @@
<!-- for topbar search/refine -->
<!-- for topbar search/refine -->
<!-- ## fonts ## -->
<!-- ## fonts ## -->
<link
type=
"text/css"
href=
"http://fonts.googleapis.com/css?family=Ubuntu"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"http
s
://fonts.googleapis.com/css?family=Ubuntu"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"http://fonts.googleapis.com/css?family=Droid%20Sans"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"http
s
://fonts.googleapis.com/css?family=Droid%20Sans"
rel=
"stylesheet"
>
<!-- <link type=text/css rel=stylesheet href="{{ url_for('static', filename='css/bootstrap_index.css') }}"> -->
<!-- <link type=text/css rel=stylesheet href="{{ url_for('static', filename='css/bootstrap_index.css') }}"> -->
...
...
tips.html
View file @
2334c801
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<meta
name=
"description"
content=
""
>
<meta
name=
"description"
content=
""
>
<meta
name=
"author"
content=
""
>
<meta
name=
"author"
content=
""
>
<!-- Les styles -->
<!-- Les styles -->
<link
type=
"text/css"
href=
"http://fonts.googleapis.com/css?family=Ubuntu"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"http
s
://fonts.googleapis.com/css?family=Ubuntu"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"static/css/bootstrap.css"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"static/css/bootstrap.css"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"static/css/bootstrap_index.css"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"static/css/bootstrap_index.css"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"static/css/brownian-motion/jquery-ui-1.8.16.custom.css"
rel=
"stylesheet"
>
<link
type=
"text/css"
href=
"static/css/brownian-motion/jquery-ui-1.8.16.custom.css"
rel=
"stylesheet"
>
...
...
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