Skip to content

Commit db03116

Browse files
committed
update 2012 folder links
1 parent ace24d9 commit db03116

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; This file is for unifying the coding style for different editors and IDEs.
2-
; More information at http://editorconfig.org
2+
; More information at https://editorconfig.org
33

44
root = true
55

2012/01/13/SOPA-Blackout-component.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@ Suggestions welcomed...
3232

3333
<?php
3434
class SopaBlackoutComponent extends Object {
35-
36-
35+
36+
3737
var $sopa_blackout_page_title = 'Supporting anti-SOPA Blackout day'; // title and h1 content
3838
var $sopa_blackout_include_video = true; // embed the video from americancensorship.org on your site?
3939
var $sopa_blackout_include_form = true; // include the form from americancensorship.org on your site?
40-
var $sopa_blackout_message = '<p>On the Tuesday 24th January 2012, the US Senate will vote on the <a href="http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act" target="_blank">internet censorship bill</a>.<br /><br />Whilst it is an American law, it has far reaching repurcusions for the web as a whole.<br /><br />There are many companies against SOPA, such as <a href="http://www.mattcutts.com/blog/internet-censorship-sopa/" target="_blank">Google</a>, <a href="http://blog.reddit.com/2012/01/stopped-they-must-be-on-this-all.html" target="_blank">Reddit</a>, <a href="http://news.cnet.com/8301-31921_3-57342914-281/silicon-valley-execs-blast-sopa-in-open-letter/" target="_blank">Facebook, Twitter, Wikipedia</a>, and today I am lending my weight to the argument by taking my site down for the day.<br /><br />If you think SOPA doesn\'t affect you, please think again. Watch the video below, or use the form below to force politicians to take notice.<br /><br />Thank you</p>';
41-
var $sopa_blackout_date = '2012-01-18'; // SOPA Blackout Day - 18th January 2012
40+
var $sopa_blackout_message = '<p>On the Tuesday 24th January 2012, the US Senate will vote on the <a href="https://en.wikipedia.org/wiki/Stop_Online_Piracy_Act" target="_blank">internet censorship bill</a>.<br /><br />Whilst it is an American law, it has far reaching repurcusions for the web as a whole.<br /><br />There are many companies against SOPA, such as <a href="http://www.mattcutts.com/blog/internet-censorship-sopa/" target="_blank">Google</a>, <a href="http://blog.reddit.com/2012/01/stopped-they-must-be-on-this-all.html" target="_blank">Reddit</a>, <a href="http://news.cnet.com/8301-31921_3-57342914-281/silicon-valley-execs-blast-sopa-in-open-letter/" target="_blank">Facebook, Twitter, Wikipedia</a>, and today I am lending my weight to the argument by taking my site down for the day.<br /><br />If you think SOPA doesn\'t affect you, please think again. Watch the video below, or use the form below to force politicians to take notice.<br /><br />Thank you</p>';
41+
var $sopa_blackout_date = '2012-01-18'; // SOPA Blackout Day - 18th January 2012
4242
var $sopa_blackout_timestart = 8; // Starting at 8am or 08:00:00
4343
var $sopa_blackout_timeend = 20; // Ending at 8pm or 20:00:00
4444
var $sopa_blackout_timezone = null; // recommended timezones would be America/New_York or America/Los_Angeles
45-
46-
45+
46+
4747
//called before Controller::beforeFilter()
4848
function initialize(&$controller, $settings = array()) {
4949
// saving the controller reference for later use
5050
$this->controller =& $controller;
5151
}
52-
53-
52+
53+
5454
//called after Controller::beforeRender()
5555
function beforeRender(&$controller) {
5656
if($this->sopablackout_checkdate()){
@@ -75,9 +75,9 @@ Suggestions welcomed...
7575
if($this->sopa_blackout_include_video===true){
7676
$message .='
7777
<div class="sopablackout_padding">
78-
<iframe src="http://player.vimeo.com/video/31100268" width="600" height="338" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
78+
<iframe src="https://player.vimeo.com/video/31100268" width="600" height="338" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
7979
</div>';
80-
}
80+
}
8181
if($this->sopa_blackout_include_form===true){
8282
$message .='
8383
<div class="sopablackout_padding">
@@ -94,7 +94,7 @@ Suggestions welcomed...
9494
exit();
9595
}
9696
}
97-
97+
9898
function sopablackout_checkdate(){
9999
$toreturn = false;
100100
if(date('Y-m-d')==$this->sopa_blackout_date){
@@ -107,7 +107,7 @@ Suggestions welcomed...
107107
}
108108
return $toreturn;
109109
}
110-
110+
111111
}
112112

113113
?>

2012/02/15/reCAPTCHA-Plugin-for-CakePHP-2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ I have updated and improved `tbsmcd's reCAPTCHA Plugin`_ for CakePHP2.
88

99
1. Get reCAPTCHA key.
1010
=====================
11-
http://www.google.com/recaptcha
11+
https://www.google.com/recaptcha
1212

1313

1414
2. Setting.

2012/03/05/CakePHP-2-1-0-just-landed.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,13 @@ Links
208208
+ [3] `https://plugins.cakephp.org`_
209209
+ [4] `https://cakephp.org/`_
210210
+ [5] `https://book.cakephp.org/`_
211-
+ [6] `http://pear.cakephp.org/`_
211+
+ [6] `https://pear.cakephp.org/`_
212212

213213

214214

215215

216216
.. _https://plugins.cakephp.org: https://plugins.cakephp.org
217-
.. _http://pear.cakephp.org/: http://pear.cakephp.org/
217+
.. _https://pear.cakephp.org/: https://pear.cakephp.org/
218218
.. _https://book.cakephp.org/: https://book.cakephp.org/
219219
.. _https://github.com/cakephp/cakephp: https://github.com/cakephp/cakephp
220220
.. _https://cakephp.org/changelogs/2.1.0: https://cakephp.org/changelogs/2.1.0

2012/04/04/Minify-plugin-for-CakePHP-2-0.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ GitHub
8080
Any criticism or suggestion is welcome on
8181
`https://github.com/maurymmarques/minify-cakephp`_.
8282

83-
.. _submodule: http://help.github.com/submodules
84-
.. _CookBook: http://code.google.com/p/minify/wiki/CookBook
83+
.. _submodule: https://help.github.com/submodules
84+
.. _CookBook: https://code.google.com/p/minify/wiki/CookBook
8585
.. _Firebug: https://addons.mozilla.org/pt-br/firefox/addon/firebug/
8686
.. _YSlow: https://addons.mozilla.org/en-US/firefox/addon/yslow/
8787
.. _HtmlHelper: https://book.cakephp.org/2.0/en/core-libraries/helpers/html.html
8888
.. _plugin syntax: https://book.cakephp.org/2.0/en/appendices/glossary.html#term-plugin-syntax
8989
.. _Minify: https://github.com/mrclay/minify
9090
.. _FAQ: http://code.google.com/p/minify/wiki/FAQ
91-
.. _http://code.google.com/p/minify: http://code.google.com/p/minify
91+
.. _https://code.google.com/p/minify: https://code.google.com/p/minify
9292
.. _https://github.com/maurymmarques/minify-cakephp: https://github.com/maurymmarques/minify-cakephp
9393

9494
.. author:: maurymmarques

2012/05/08/CakeFest-2012.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ network with fellow developers and make new friends!
5151
Check out the `CakeFest`_ website, and don't miss out on tickets!
5252

5353

54-
.. _CakeFest: http://cakefest.org
54+
.. _CakeFest: https://cakefest.org
5555

5656
.. author:: predominant
5757
.. categories:: news

0 commit comments

Comments
 (0)