Project

General

Profile

Actions

Feature #72169

closed

Fluid: Included jquery libs should be included using https:// connection.

Added by Ingo Reuter over 8 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Fluid
Target version:
-
Start date:
2015-12-11
Due date:
% Done:

100%

Estimated time:
0.50 h
PHP Version:
Tags:
Complexity:
easy
Sprint Focus:

Description

The extension "fluid" includes jquery libraries form google cdn. This include should be done with https:// instead of http:// protocoll.

root/typo3/sysext/fluid/Configuration/TypoScript/setup.txt:

# includes jQuery library and default styles for Fluid Autocomplete Widget
page.headerData.998 = TEXT
page.headerData.998.value (
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" type="text/css" media="all" />
    <link rel="stylesheet" href="http://static.jquery.com/ui/css/demo-docs-theme/ui.theme.css" type="text/css" media="all" />
)

This should be changed to:

# includes jQuery library and default styles for Fluid Autocomplete Widget
page.headerData.998 = TEXT
page.headerData.998.value (
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
    <link rel="stylesheet" href="http://ajaxs.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" type="text/css" media="all" />
    <link rel="stylesheet" href="https://static.jquery.com/ui/css/demo-docs-theme/ui.theme.css" type="text/css" media="all" />
)

There should be also an option to prevent the extension to generate the headerData if jquery is already included (by t3jquery for example)

Actions

Also available in: Atom PDF