Skip to content

Commit

Permalink
Docs site uses HTTPS protocol now
Browse files Browse the repository at this point in the history
  • Loading branch information
philwareham committed Feb 23, 2017
1 parent 7c5d2e6 commit 9fa94f2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.txt
Expand Up @@ -20,7 +20,7 @@ system. Textpattern is both free and open source.

* The Textpattern FAQ is available at http://textpattern.com/faq/
* In-depth documentation and a comprehensive tag index is available in the
Textpattern user documentation at http://docs.textpattern.io
Textpattern user documentation at https://docs.textpattern.io
* You can get support and information via:
Forum: https://forum.textpattern.io/
Twitter: http://textpattern.com/@textpattern
Expand Down Expand Up @@ -111,5 +111,5 @@ system. Textpattern is both free and open source.
== Contributing ==

Want to help out with the development of Textpattern CMS? Please refer to the
Contributing documentation http://docs.textpattern.io/development/contributing
Contributing documentation https://docs.textpattern.io/development/contributing
for full details.
2 changes: 1 addition & 1 deletion textpattern/include/txp_tag.php
Expand Up @@ -102,7 +102,7 @@ public function renderTagHelp($name, $panel)
hed(gTxt('tag_'.$this->tagname), 2).
href(
gTxt('documentation').sp.span(gTxt('opens_external_link'), array('class' => 'ui-icon ui-icon-extlink')),
'http://docs.textpattern.io/tags/'.$this->tagname,
'https://docs.textpattern.io/tags/'.$this->tagname,
array(
'class' => 'txp-tagbuilder-docs-link',
'rel' => 'external',
Expand Down
2 changes: 1 addition & 1 deletion textpattern/setup/article.body.textile
Expand Up @@ -14,6 +14,6 @@ h3. What do you want to do next?

There is a host of "Frequently Asked Questions":http://textpattern.com/faq/ to help you get started.

"Textpattern tags":http://docs.textpattern.io/tags/, their attributes and values are explained and sampled within the "Textpattern User Documentation":http://docs.textpattern.io/, where you will also find valuable tips and tutorials.
"Textpattern tags":https://docs.textpattern.io/tags/, their attributes and values are explained and sampled within the "Textpattern User Documentation":https://docs.textpattern.io/, where you will also find valuable tips and tutorials.

There's also a crowd of friendly, helpful people over at the "Textpattern support forum":https://forum.textpattern.io/. Come and pay a visit!
2 changes: 1 addition & 1 deletion textpattern/setup/txpsql.php
Expand Up @@ -315,7 +315,7 @@
) $tabletype ";

$create_sql[] = "INSERT INTO `".PFX."txp_link` VALUES (1, NOW(), 'textpattern', 'http://textpattern.com/', 'Textpattern Website', '10', '', '')";
$create_sql[] = "INSERT INTO `".PFX."txp_link` VALUES (2, NOW(), 'textpattern', 'http://docs.textpattern.io/', 'Textpattern User Documentation', '20', '', '')";
$create_sql[] = "INSERT INTO `".PFX."txp_link` VALUES (2, NOW(), 'textpattern', 'https://docs.textpattern.io/', 'Textpattern User Documentation', '20', '', '')";
$create_sql[] = "INSERT INTO `".PFX."txp_link` VALUES (3, NOW(), 'textpattern', 'http://textpattern.org/', 'Textpattern Resources', '30', '', '')";
$create_sql[] = "INSERT INTO `".PFX."txp_link` VALUES (4, NOW(), 'textpattern', 'http://textpattern.com/@textpattern', '@textpattern', '40', '', '')";
$create_sql[] = "INSERT INTO `".PFX."txp_link` VALUES (5, NOW(), 'textpattern', 'http://textpattern.com/+', '+Textpattern CMS', '50', '', '')";
Expand Down
2 changes: 1 addition & 1 deletion textpattern/update/_update.php
Expand Up @@ -116,7 +116,7 @@ function newest_file()

// Invite optional third parties to the update experience
// Convention: Put custom code into file(s) at textpattern/update/custom/post-update-abc-foo.php
// where 'abc' is the third party's reserved prefix (@see http://docs.textpattern.io/development/plugin-developer-prefixes)
// where 'abc' is the third party's reserved prefix (@see https://docs.textpattern.io/development/plugin-developer-prefixes)
// and 'foo' is whatever. The execution order among all files is undefined.
$files = glob(txpath.'/update/custom/post-update*.php');

Expand Down

0 comments on commit 9fa94f2

Please sign in to comment.