Skip to content

Commit

Permalink
Old 'http' links were replaced with 'https' versions.
Browse files Browse the repository at this point in the history
In examples too. Fix for #616
  • Loading branch information
Altai-man committed Jun 22, 2016
1 parent 1a08bb7 commit 5549fcb
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://travis-ci.org/perl6/doc.svg?branch=master)](https://travis-ci.org/perl6/doc) [![artistic](https://img.shields.io/badge/license-Artistic%202.0-blue.svg?style=flat)](https://opensource.org/licenses/Artistic-2.0)

An HTML version of this documentation can be found at http://doc.perl6.org/.
An HTML version of this documentation can be found at https://doc.perl6.org/.

(If you are browsing this repository via github, it will not display most
files correctly, because this is Perl 6 Pod, and github assumes Perl 5 POD).
Expand Down
6 changes: 3 additions & 3 deletions doc/Language/5to6-perlsyn.pod
Expand Up @@ -158,14 +158,14 @@ L<here|/language/control#given>.
C<goto> I<probably> works similarly in Perl 6 to the way it does in Perl 5.
However, as of this writing, it does not seem to be functional. For what is
planned for C<goto>, see
L<http://design.perl6.org/S04.html#The_goto_statement>.
L<https://design.perl6.org/S04.html#The_goto_statement>.
=head2 The Ellipsis Statement
C<...> (along with C<!!!> and C<???>) are used to create stub
declarations. This is a bit more complicated than the use of C<...> in
Perl 5, so you'll probably want to look at
L<http://design.perl6.org/S06.html#Stub_declarations> for the gory
L<https://design.perl6.org/S06.html#Stub_declarations> for the gory
details. That said, there doesn't seem to be an I<obvious> reason why it
shouldn't still fulfill the role it did in Perl 5, despite its role
being expanded in Perl 6.
Expand All @@ -182,6 +182,6 @@ the Perl 6 interpreter to check your pod. You can do this by using the
C<--doc> switch. E. g. C<perl6 --doc Whatever.pod>. This will output any
problems to standard error. (Depending on how/where you've installed
perl6, you may need to specify the location of C<Pod::To::Text>.)
Details on Perl 6 style pod is at L<http://design.perl6.org/S26.html>.
Details on Perl 6 style pod is at L<https://design.perl6.org/S26.html>.
=end pod
2 changes: 1 addition & 1 deletion doc/Language/5to6-perlvar.pod
Expand Up @@ -319,7 +319,7 @@ If you want to I<understand> why that works, you can look at these documents:
...and possibly
=item L<http://design.perl6.org/S02.html#line_1126>
=item L<https://design.perl6.org/S02.html#line_1126>
...though the design documents are not always up to date.
Expand Down
4 changes: 2 additions & 2 deletions doc/Language/glossary.pod
Expand Up @@ -761,7 +761,7 @@ of an operator and operands that can be subexpressions or L<#value>s.
Operators are an alternative syntax for a L<#multi-method>. With that
syntax, what would be the L<argument|#Argument>s of the function are named
operands instead. Operators are classified into
L<categories|http://design.perl6.org/S02.html#Grammatical_Categories> of
L<categories|https://design.perl6.org/S02.html#Grammatical_Categories> of
categories. A category has a precedence, an arity, and can be L<#fiddly>,
L<#iffy>, L<#diffy>. Perl 6 is very creative as to what is an operator, so
there are many categories. Operators are made of many tokens, possibly with
Expand Down Expand Up @@ -822,7 +822,7 @@ many in the L<#Perl Community>.
=head1 POD
B<P>lain B<O>l' B<D>ocumentation, a documentation format understood by Perl
6. See L<S26|http://design.perl6.org/S26.html> for details.
6. See L<S26|https://design.perl6.org/S26.html> for details.
=head1 Property
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/io.pod
Expand Up @@ -164,7 +164,7 @@ Use C<rmdir> to remove I<empty> directories:
=begin comment
TODO: base on https://github.com/perl6/specs/blob/master/S32-setting-library/IO.pod?
TODO: http://doc.perl6.org/type/IO::Handle has close but no open
TODO: https://doc.perl6.org/type/IO::Handle has close but no open
=end comment
=end pod
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/modules.pod
Expand Up @@ -485,7 +485,7 @@ writing/test modules at L<Modules Extra|/language/modules-extra>
=head1 The Future of Ecosystem
L<http://modules.perl6.org> and github-based infrastructure is temporary. The
L<https://modules.perl6.org> and github-based infrastructure is temporary. The
plan is to establish something similar to Perl 5's PAUSE/CPAN/MetaCPAN
infrastructure. B<Volunteers needed!>
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/mop.pod
Expand Up @@ -110,7 +110,7 @@ The presence of a C<Scalar> object indicates that the object is "itemized".
B<Note:> this documentation largely reflects the meta object system as
implemented by the L<Rakudo Perl 6 compiler|http://rakudo.org/>, since the
L<design documents|http://design.perl6.org/> are very light on details.
L<design documents|https://design.perl6.org/> are very light on details.
For each type declarator keyword, such as C<class>, C<role>, C<enum>,
C<module>, C<package>, C<grammar> or C<subset>, there is a separate meta
Expand Down
4 changes: 2 additions & 2 deletions doc/Language/performance.pod
Expand Up @@ -105,7 +105,7 @@ previously existing set of definitions then you probably just made your code tha
=head2 Speed up type-checks and call resolution
Most L<C<where> clauses|/type/Signature#Type_Constraints> -- and thus most
L<subsets|http://design.perl6.org/S12.html#Types_and_Subtypes> -- force dynamic (run-time)
L<subsets|https://design.perl6.org/S12.html#Types_and_Subtypes> -- force dynamic (run-time)
type checking and call resolution for any call it I<might> match. This is slower, or at least later,
than compile-time.
Expand Down Expand Up @@ -153,7 +153,7 @@ programming that someone else has done for you, and the upshot is that you can c
L<use Perl 5 modules in Perl 6|http://stackoverflow.com/a/27206428/1077672>.
More generally, Perl 6 is designed for smooth interop with other languages and there are a number
of L<modules aimed at providing convenient use of libs from other langs|http://modules.perl6.org/#q=inline>.
of L<modules aimed at providing convenient use of libs from other langs|https://modules.perl6.org/#q=inline>.
=head2 Make the Rakudo compiler generate faster code
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/regexes.pod
Expand Up @@ -889,7 +889,7 @@ files:
Named regexes can and should be grouped in L<grammars|/language/grammars>. A
list of predefined subrules is listed in
L<S05|http://design.perl6.org/S05.html#Predefined_Subrules>.
L<S05|https://design.perl6.org/S05.html#Predefined_Subrules>.
=head1 Adverbs
Expand Down
4 changes: 2 additions & 2 deletions doc/Language/syntax.pod
Expand Up @@ -440,7 +440,7 @@ See the L<Signatures|/type/Signature> documentation for more about signatures.
my Int $x where * > 3 = 7; # same constraint, but using L<Whatever> short-hand
See L<Variable Declarators and
Scope|http://docs.perl6.org/language/variables#Variable_Declarators_and_Scope>
Scope|/language/variables#Variable_Declarators_and_Scope>
for more details on other scopes (our, has).
=head3 Subroutine declaration
Expand Down Expand Up @@ -476,7 +476,7 @@ You can declare a unit of things without explicit curly brackets.
=head3 Multi-dispatch declaration
See also L<Multi-dispatch|http://docs.perl6.org/language/functions#Multi-dispatch>.
See also L<Multi-dispatch|/language/functions#Multi-dispatch>.
Subroutines can be declared with multiple signatures.
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Mu.pod
Expand Up @@ -272,7 +272,7 @@ prints
Initiate a specified spell normally (do not use for class 7 spells)
See the L<documentation specification|http://design.perl6.org/S26.html> for
See the L<documentation specification|https://design.perl6.org/S26.html> for
details about attaching Pod to variables, classes, functions, methods, etc.
=head2 trait is export
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/Str.pod
Expand Up @@ -532,8 +532,8 @@ Special case: sprintf("<b>%s</b>\n", "Perl 6") will not work use either of the
Returns C<True> if the invocant is identical to or starts with C<$needle>.
say "Hello, World".starts-with("Hello"); # True
say "http://perl6.org/".starts-with('ftp'); # False
say "Hello, World".starts-with("Hello"); # True
say "https://perl6.org/".starts-with('ftp'); # False
=head2 method ends-with
Expand Down
2 changes: 1 addition & 1 deletion html/.htaccess
@@ -1,2 +1,2 @@
Redirect 301 /language/5to6 http://doc.perl6.org/language/5to6-nutshell
Redirect 301 /language/5to6 https://doc.perl6.org/language/5to6-nutshell
ErrorDocument 404 /404.html
4 changes: 2 additions & 2 deletions htmlify.p6
Expand Up @@ -15,7 +15,7 @@ use v6;
# run htmlify, captures the output, and on success, syncs both the generated
# files and the logs. In case of failure, only the logs are synchronized.
#
# The build logs are available at http://doc.perl6.org/build-log/
# The build logs are available at https://doc.perl6.org/build-log/
#

BEGIN say 'Initializing ...';
Expand Down Expand Up @@ -209,7 +209,7 @@ sub process-pod-dir($dir, :&sorted-by = &[cmp], :$sparse) {
if $sparse {
@pod-sources = @pod-sources[^(@pod-sources / $sparse).ceiling];
}

say "Processing $dir Pod files ...";
my $total = +@pod-sources;
my $kind = $dir.lc;
Expand Down

0 comments on commit 5549fcb

Please sign in to comment.