Skip to content

Commit 6606f6f

Browse files
committed
misc link fixes
1 parent db5f6a4 commit 6606f6f

37 files changed

+54
-63
lines changed

_config_prod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Form Tools Documentation
77
88
description: "Documentation and tutorials for all things Form Tools."
99
baseurl: ""
10-
url: "http://docs.formtools.org"
10+
url: "https://docs.formtools.org"
1111

1212
# build settings
1313
markdown: kramdown

installation/step1.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Step 1 of the installation script is just a welcome screen, and lets you choose your
1717
language for both the installation script and Form Tools itself. The language packs are
1818
found in the /global/lang folder, and can be downloaded from
19-
the <a href="http://translations.formtools.org">Translations page</a>.
19+
the <a href="https://translations.formtools.org">Translations page</a>.
2020
</p>
2121

2222
<p>

installation/step2.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
If you're on a Windows server, you may need to contact your hosting provider to ask them
2929
to set the permissions on that folder appropriately.</li>
3030
<li><b>Core Field Types module not installed</b>. As of Form Tools 2.1.5, the
31-
<a href="http://modules.formtools.org/core_field_types/?page=index">Core Field Types</a> module
31+
<a href="https://docs.formtools.org/modules/core_field_types/">Core Field Types</a> module
3232
is now required. It comes included in all the default download packages, but if you
33-
used the <a href="http://www.formtools.org/build/">Custom Build script</a>, you may
33+
used the <a href="https://formtools.org/build/">Custom Build script</a>, you may
3434
not have included it. To remedy this, just download the module and upload it to your
3535
/modules folder. Then refresh the Form Tools installation page and it will automatically
3636
detect that it's ready to be installed.</li>

module_development/common_tasks.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h3>Displaying information in tabs</h3>
2828
</p>
2929

3030
<p>
31-
See the <a href="http://modules.formtools.org/hello_tabs/">Hello Tabs!</a> example module for a simple illustration of how to
31+
See the <a href="https://docs.formtools.org/modules/hello_tabs/">Hello Tabs!</a> example module for a simple illustration of how to
3232
implement tabs into your module. Basically it works by passing a special <b>$tabs</b> variable to the
3333
template, then calling the tabset_open.tpl and tabset_close.tpl templates in your template. They do the
3434
job of rendering the tab information that you passed to it.

module_development/example_modules.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h3>Example Modules</h3>
2323
<strong>Hello World!</strong>
2424
</div>
2525
<div class="col-lg-9">
26-
<a href="http://modules.formtools.org/hello_world/" class="btn btn-primary pull-right">Learn More</a>
26+
<a href="https://docs.formtools.org/modules/hello_world/" class="btn btn-primary pull-right">Learn More</a>
2727
A simple module containing just the basics. Outputs a simple "Hello World!" message to the screen.
2828
</div>
2929
</div>
@@ -33,7 +33,7 @@ <h3>Example Modules</h3>
3333
<strong>Hello Tabs!</strong>
3434
</div>
3535
<div class="col-lg-9">
36-
<a href="http://modules.formtools.org/hello_tabs/" class="btn btn-primary pull-right">Learn More</a>
36+
<a href="https://docs.formtools.org/modules/hello_tabs/" class="btn btn-primary pull-right">Learn More</a>
3737
A common technique for separating your content visually on the page is to use tabs to separate the data. This
3838
module demonstrates how to implement a tabset in your pages.
3939
</div>
@@ -44,7 +44,7 @@ <h3>Example Modules</h3>
4444
<strong>Hello Database!</strong>
4545
</div>
4646
<div class="col-lg-9">
47-
<a href="http://modules.formtools.org/hello_database/" class="btn btn-primary pull-right">Learn More</a>
47+
<a href="https://docs.formtools.org/modules/hello_database/" class="btn btn-primary pull-right">Learn More</a>
4848
This module demonstrates how to interact with the database with three simple examples:
4949
<ul>
5050
<li>The installation / uninstallation scripts are included which create a table of random numbers.</li>

module_development/file_index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<p>
1616
The index.php file is the first page the user is linked to after they select the module. This
1717
page should contain whatever PHP code you require on your index page. A bare-bones example can
18-
be lifted from the <a href="http://modules.formtools.org/hello_world/">Hello World!</a> module:
18+
be lifted from the <a href="https://docs.formtools.org/modules/hello_world/">Hello World!</a> module:
1919
</p>
2020

2121
{% codemirror php %}

module_development/file_lang.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
File created: Oct 24th, 12:46 PM
3939

4040
If you would like to help translate this module, please visit:
41-
http://www.formtools.org/translations/
41+
https://translations.formtools.org/help.php
4242
*/
4343

4444
$L = array();

module_development/file_module.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
$MODULE["author"] = "Ben Keen";
3232
$MODULE["author_email"] = "[email protected]";
33-
$MODULE["author_link"] = "http://www.formtools.org";
33+
$MODULE["author_link"] = "https://formtools.org";
3434
$MODULE["version"] = "1.0.0-beta-20090114";
3535
$MODULE["date"] = "2009-01-14";
3636
$MODULE["origin_language"] = "en_us";

module_development/related_links.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818

1919
<ol>
2020
<li>
21-
<a href="http://modules.formtools.org/submission_pre_parser/">Submission Pre-Parser module</a>.
21+
<a href="https://docs.formtools.org/modules/submission_pre_parser/">Submission Pre-Parser module</a>.
2222
At its core, it's fundamentally just a visual wrapper for writing your own code hooks.
2323
It registers a single code hook for each of the <b>ft_process_form</b>,
2424
<b>ft_api_process_form</b> and <b>ft_update_submission</b> functions. When those functions
2525
are executed, the module processes each and every "rule" (i.e. PHP code) that has been
2626
added through the UI.</li>
27-
<li><a href="http://modules.formtools.org/extended_client_fields">Extended Client Fields module</a>.
27+
<li><a href="https://docs.formtools.org/modules/extended_client_fields">Extended Client Fields module</a>.
2828
This module uses both code and template hooks to insert new fields into the edit client
2929
pages - both administrator and client - which are saved to the database by attaching
3030
custom events to the functions that get called when the form is updated. If you want a

modules/core_field_types/index.html

+1-6
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,9 @@
77
- Core Field Types
88
---
99

10-
<p class="alert alert-info">
11-
For people upgrading to 2.1.5 or later, installing this module is <b>optional but
12-
recommended</b>.
13-
</p>
14-
1510
<p>
1611
The Core Field Types module is included in all Form Tools
17-
<a href="http://www.formtools.org/download.php">download packages</a>
12+
<a href="https://formtools.org/download/">download packages</a>
1813
from 2.1.5 onwards. It is used by the installation script to populate the database with
1914
the Core field types for use in your forms. Namely:
2015
</p>

modules/custom_fields/core_field_types.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ <h4>Additional Field Types</h4>
4848
<p>
4949
In addition, field types may also be created via separate modules. This has several
5050
benefits over using the Custom Fields module, but it's considerably more complex.
51-
<a href="http://www.formtools.org/download.php">The main Form Tools download package</a>,
51+
<a href="https://formtools.org/download/">The main Form Tools download package</a>,
5252
contains two additional field type modules:
5353
</p>
5454

modules/custom_fields/external_forms.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h4>A little context</h4>
5555
So, to sum up: if you wish to re-create the form field types you create within
5656
this module for use on your site, you'll need to do it manually. This may be quite a
5757
bit of work, depending on exactly what you're doing. If you have questions, let us
58-
know through <a href="http://forums.formtools.org">the forums</a>.
58+
know through <a href="https://forums.formtools.org">the forums</a>.
5959
</p>
6060

6161

modules/custom_fields/questions.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h3>Questions?</h3>
2222
As stated elsewhere, we'll be continually updating the documentation for this module to
2323
better explain the more subtle features and coming up with decent examples of how it
2424
can be best utilized. So please send us your questions through
25-
<a href="http://forums.formtools.org">the forums</a>.
25+
<a href="https://forums.formtools.org">the forums</a>.
2626
</p>
2727

2828
{% include close_section.html %}

modules/custom_fields/when_to_use.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h4>Still Not sure?</h4>
6363

6464
<p>
6565
If you're not sure about whether you should pick this module to create your field
66-
types / changes, <a href="http://forums.formtools.org">pipe up in the forums</a> and
66+
types / changes, <a href="https://forums.formtools.org">pipe up in the forums</a> and
6767
describe what you're trying to do. We'll try to help out!
6868
</p>
6969

modules/data_visualization/admin/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h3>Administration</h3>
3737
</p>
3838

3939
<p>
40-
If you have any suggestions for this page, please let us know through <a href="http://forums.formtools.org">the forums</a>.
40+
If you have any suggestions for this page, please let us know through <a href="https://forums.formtools.org">the forums</a>.
4141
</p>
4242

4343

modules/data_visualization/other/feature_suggestions.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h3>Feature Suggestions</h3>
2828
</p>
2929

3030
<p>
31-
Please let us know through <a href="http://forums.formtools.org">the
31+
Please let us know through <a href="https://forums.formtools.org">the
3232
forums</a>. We're very much looking forward to your suggestions - we take them very
3333
seriously.
3434
</p>

modules/facebook_forms/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h3>Facebook Forms</h3>
3434
</p>
3535

3636
<p>
37-
So, enjoy! As always, please let us know through <a href="http://forums.formtools.org">the
37+
So, enjoy! As always, please let us know through <a href="https://forums.formtools.org">the
3838
forums</a> what you think of the module, what features you would like to see and any
3939
problems you encounter.
4040
</p>

modules/facebook_forms/other/limitations.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h3>Known Limitations</h3>
3333

3434
<p>
3535
If you're interested in seeing more features added to this module, let us
36-
know <a href="http://forums.formtools.org">through the forums!</a>
36+
know <a href="https://forums.formtools.org">through the forums!</a>
3737
</p>
3838

3939
{% include close_section.html %}

modules/form_builder/other/more_help.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<h3>More Help</h3>
1616

1717
<p>
18-
The <a href="http://forums.formtools.org">forums!</a> We're never going to be able to answer all questions here,
18+
The <a href="https://forums.formtools.org">forums!</a> We're never going to be able to answer all questions here,
1919
so please let us know through our forums what problems you're encountering and we'll see if we can help.
2020
</p>
2121

modules/system_check/common_problems.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ <h3>Common Problems</h3>
101101

102102
<p>
103103
<span class="blue bold">LOW</span>. This error will prevent the
104-
<a href="http://modules.formtools.org/export_manager/">Export Manager</a> module from working
104+
<a href="http://docs.formtools.org/modules/export_manager/">Export Manager</a> module from working
105105
properly, but there should be no other side-effects.
106106
</p>
107107

modules/text_override/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h4>How it works</h4>
2222
All language strings for the Form Tools user interface are pulled from language files
2323
found in your <b>/global/lang</b> folder. This allows you to display the interface in any
2424
language that you want, provided a language file exists. For a full list of the available
25-
languages, see the <a href="http://translations.formtools.org">translations section</a>.
25+
languages, see the <a href="https://translations.formtools.org">translations section</a>.
2626
</p>
2727

2828
<p>

theme_development/about_folder.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
$theme_name = "Default";
3535
$theme_author = "Form Tools";
3636
$theme_author_email = "[email protected]";
37-
$theme_link = "http://themes.formtools.org/themes";
37+
$theme_link = "https://themes.formtools.org";
3838
$theme_description = "The default Form Tools theme.";
3939
$theme_version = "1.0.0";
4040
$supports_ft_versions = "2.0.0";

theme_development/create_theme.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</p>
1818

1919
<ol>
20-
<li><a href="http://themes.formtools.org/example/">Download the example theme</a> and unzip it
20+
<li><a href="https://themes.formtools.org">Download the example theme</a> and unzip it
2121
on your desktop.</li>
2222
<li>Choose a name for your theme (here, we'll call it "my_theme")and rename the
2323
"example" folder.</li>

tutorials/adding_first_form/form_types.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h4>POST forms and API forms</h4>
2323

2424
<li><b>2. API forms</b> work by using PHP to gather and send the form data. The API comes
2525
pre-installed with all bundled Form Tools installations (i.e. the zip and tar files found
26-
on the <a href="http://www.formtools.org/download.php">download page</a>). This method is extremely
26+
on the <a href="https://formtools.org/download/">download page</a>). This method is extremely
2727
powerful and generally favoured for multi-page forms, or forms that require server-side
2828
validation.
2929
</li></ul>

upgrading/2_1_0.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ <h3>Things you should know before choosing to upgrade</h3>
4545

4646
<ol>
4747
<li><b>Required Field Type modules</b>. You <i>must</i> install the
48-
<a href="http://modules.formtools.org/field_type_file/" target="_blank">File
49-
Upload</a> and the <a href="http://modules.formtools.org/field_type_tinymce/" target="_blank">TinyMCE field</a>
48+
<a href="https://docs.formtools.org/modules/field_type_file/" target="_blank">File
49+
Upload</a> and the <a href="https://docs.formtools.org/modules/field_type_tinymce/" target="_blank">TinyMCE field</a>
5050
at the time that you upgrade. This is to ensure backward compatibility. If you don't want
5151
either of them, you can safely uninstall them later. If you attempt to upgrade without either of them
5252
installed, the script will whine at you when you try to log in, and tell you you need to install them.
@@ -60,14 +60,14 @@ <h3>Things you should know before choosing to upgrade</h3>
6060
textareas, dropdowns etc.) are handled in Form Tools 2.1.0 is very different from
6161
earlier releases. Because of this, we now feed different information to be used in
6262
the Export Manager's fields. Any old export type's Smarty markup won't work any more.
63-
For more information on this, see <a href="http://modules.formtools.org/export_manager/?page=v2changes">this
63+
For more information on this, see <a href="https://docs.formtools.org/modules/export_manager/v2changes/">this
6464
page in the Export Manager module documentation</a>.
6565
</li>
6666

6767
<li><b>So where's the WYSIWYG settings page?</b><br>
6868
Gone! The Settings -&gt; WYSIWYG page has been totally removed. All the existing WYSIWYG
6969
functionality is still available, but it's managed through the
70-
<a href="http://modules.formtools.org/field_type_tinymce/">TinyMCE Field Type</a> module.
70+
<a href="https://docs.formtools.org/modules/field_type_tinymce/">TinyMCE Field Type</a> module.
7171
Upgrading to 2.1.0 or later will automatically remove the WYSIWYG menu item from your
7272
nav menu. If you liked it there, you can always add it back in by editing the
7373
administrator's menu.

userdoc/changes_in_210.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<li>Form Tools differentiates between <a href="{{site.baseurl}}/userdoc/form_management/form_types">Internal and External
1919
forms</a>.</li>
2020
<li>The WYSIWYG field type has been moved to a
21-
<a href="http://modules.formtools.org/field_type_tinymce/?page=index">separate module</a>. The same
21+
<a href="https://docs.formtools.org/modules/field_type_tinymce/">separate module</a>. The same
2222
options are available but no longer found in the Settings tabset. Now you configure the
2323
default settings through the module.</li>
2424
<li>The Edit Form -&gt; Database tab has been removed, and all the information to manage the
@@ -32,9 +32,9 @@
3232
</ul>
3333
2.1.0 was designed to be more flexible in the way these field types work. You can
3434
have any number of settings, and customize them through the
35-
<a href="http://modules.formtools.org/custom_fields/?page=index">Custom Fields module</a>. You
35+
<a href="https://docs.formtools.org/modules/custom_fields/">Custom Fields module</a>. You
3636
can also use the
37-
<a href="http://modules.formtools.org/field_type_google_maps/?page=index">Google Maps field
37+
<a href="https://docs.formtools.org/modules/field_type_google_maps/">Google Maps field
3838
type</a> (a separate module).
3939
</li>
4040
<li>Lots of interface updates! All sortable lists (options, settings, Views, Fields etc.)

userdoc/emails/emails_recipients_tab.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<p>
6666
If you have the Swift Mailer module installed and configured, you will also see an
6767
"undeliverable email recipient" field here. Please see the following page in the
68-
<a href="http://modules.formtools.org/swift_mailer/?page=undeliverable_emails">Swift Mailer
68+
<a href="https://docs.formtools.org/modules/swift_mailer/undeliverable_emails/">Swift Mailer
6969
documentation</a> for more information.
7070
</p>
7171

userdoc/emails/emails_test_tab.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h4>A few remarks about sending test emails</h4>
5757
the default Form Tools installation is notoriously fickle. It's implemented differently
5858
for each web server, and some servers limit options like being able to send email in
5959
multi-part format (HTML + text at the same time). If you have trouble getting it running,
60-
you may be interested in the <a href="http://modules.formtools.org/swift_mailer/?page=index">Swift Mailer
60+
you may be interested in the <a href="https://docs.formtools.org/modules/swift_mailer/">Swift Mailer
6161
module</a>.
6262
</li>
6363
</ul>

userdoc/field_types/other_field_types.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<p>
1616
As mentioned elsewhere, Form Tools 2.1.0 now has the capacity to have any number of field
1717
types to allow any form of data input. The simplest way to add field types is via the
18-
<a href="http://modules.formtools.org/custom_fields/?page=index">Custom Fields module</a>, but for
18+
<a href="https://docs.formtools.org/custom_fields/modules/">Custom Fields module</a>, but for
1919
additional control, field types can also be added as separate modules. The other field
2020
types will be listed below when they are added.
2121
</p>
2222

2323
<ul>
24-
<li><a href="http://modules.formtools.org/field_type_google_maps/?page=index">Google Maps fields</a></li>
24+
<li><a href="https://docs.formtools.org/modules/field_type_google_maps/">Google Maps fields</a></li>
2525
</ul>
2626

2727
{% include close_section.html %}

userdoc/field_types/predefined_field_types.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<p>
1616
The pre-defined field types are the ones that are included in the base installation of Form
1717
Tools: no modules, just the Core script. If you chose to download one of the
18-
<a href="http://www.formtools.org/download.php">pre-packaged installations</a> then it will
18+
<a href="https://formtools.org/download/">pre-packaged installations</a> then it will
1919
include the File Upload and TinyMCE (WYSIWYG) rich-text editor field type modules as well.
2020
But let's start with the pre-defined field types. We'll look at them one by one, see what
2121
options are available for each, how they can be configured and a few other tips and tricks!

userdoc/form_management/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ <h4>Integrating your forms</h4>
5454
<p>
5555
The following pages explains all of the subjects mentioned in brief above, hopefully
5656
answering the majority of your questions. If you can't find the answer to your question
57-
here in the user doc, <a href="http://forums.formtools.org">just post it in our forums!</a>
57+
here in the user doc, <a href="https://forums.formtools.org">just post it in our forums!</a>
5858
</p>
5959

6060
{% include close_section.html %}

userdoc/form_management/submission_type_comparison.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ <h4>process.php vs. the API: Ultimate Smackdown</h4>
9494
<p>
9595
As the table notes: using the API requires a least <i>some</i> PHP knowledge - and a
9696
little can go a long way. Plus if you get stuck, you can always visit our
97-
<a href="http://forums.formtools.org">forums</a> to seek help.
97+
<a href="https://forums.formtools.org">forums</a> to seek help.
9898
</p>
9999

100100

0 commit comments

Comments
 (0)