Skip to content

Commit d1f7714

Browse files
committed
Update perlcabal.org/syn/ links to design.perl6.org
1 parent 9f8892a commit d1f7714

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

docs/feather/pugscode.org/kp6.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525

2626
<DIV class="MENU">
27-
<br>&nbsp;&nbsp; <a href="http://perlcabal.org/syn/">Perl 6 Spec</a>
27+
<br>&nbsp;&nbsp; <a href="http://design.perl6.org/">Perl 6 Spec</a>
2828
<br>&nbsp;&nbsp; <a
2929
href="http://moritz.faui2k3.org/pugs/v6/docs/kp6-roadmap.pod.html">kp6
3030
Roadmap</a> (<a
@@ -72,7 +72,7 @@
7272

7373
<h2>What is KindaPerl6?</h2>
7474

75-
<p>KindaPerl6 is an ongoing implementation of the <a href="http://perlcabal.org/syn/">full Perl6 specification</a> written in Perl6.</p>
75+
<p>KindaPerl6 is an ongoing implementation of the <a href="http://design.perl6.org/">full Perl6 specification</a> written in Perl6.</p>
7676

7777
<p>KindaPerl6 (kp6) like MostlyPerl6 (mp6) is a Perl 6 compiler written in
7878
a subset of Perl 6. Whereas mp6 was written with portability in mind, the

docs/feather/script/update-syn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# This script is used by feather's cron to update
4-
# the Synopsis pages in http://perlcabal.org/syn/
4+
# the Synopsis pages in http://design.perl6.org/
55

66
# virtual mem: 1 GB
77
ulimit -v 1048576
@@ -38,7 +38,7 @@ cp -ufp docs/feather/hilite-*.png $DEST_DIR/
3838
# And the css file
3939
cp -ufp docs/feather/perl.css $DEST_DIR/
4040

41-
perl util/podhtm.pl --css /syn/perl.css --url-prefix http://perlcabal.org/syn/ --url-postfix .html --index --charset=UTF-8 --out $DEST_DIR/Differences.html docs/Perl6/Perl5/Differences.pod
41+
perl util/podhtm.pl --css /syn/perl.css --url-prefix http://design.perl6.org/ --url-postfix .html --index --charset=UTF-8 --out $DEST_DIR/Differences.html docs/Perl6/Perl5/Differences.pod
4242

4343
# Probably outdated, builds the Chinese version of Syn 1
4444
#cd $DEST_DIR/zh-cn

misc/gsoc-2014/ideas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ implementation is fairly complete, but some features are still missing,
1010
most notably various backtracking control constructs (`::`, `:::`, `<cut>`
1111
`<commit>`) and a few more esoteric features, like `<*foo>` and recursion
1212
into rules associated with submatches (`<~~0>` and the likes).
13-
[S05](http://perlcabal.org/syn/S05.html) has the gory details.
13+
[S05](http://design.perl6.org/S05.html) has the gory details.
1414

1515
A student interested in regex compilers could implement those missing
1616
features.

misc/pX/fglock/Pugs-Compiler-Rule/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ SEE ALSO
125125

126126
* compile_p6grammar.pl
127127

128-
* The Perl 6 Rules Spec: <http://perlcabal.org/syn/S05.html>
128+
* The Perl 6 Rules Spec: <http://design.perl6.org/S05.html>
129129

130130
COPYRIGHT
131131
Copyright 2006, 2007 by Flavio Soibelmann Glock and others.

misc/pX/fglock/Pugs-Compiler-Rule/lib/Pugs/Compiler/Rule.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ L<compile_p6grammar.pl>
202202
203203
=item *
204204
205-
The Perl 6 Rules Spec: L<http://perlcabal.org/syn/S05.html>
205+
The Perl 6 Rules Spec: L<http://design.perl6.org/S05.html>
206206
207207
=back
208208

misc/pX/fglock/Pugs-Compiler-Rule/util/compile_p6grammar.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ =head1 SEE ALSO
105105
106106
L<Pugs::Compiler::Grammar>, L<Pugs::Compiler::Rule>,
107107
L<Pugs::Compiler::Regex>,
108-
L<http://perlcabal.org/syn/S05.html>.
108+
L<http://design.perl6.org/S05.html>.
109109
110110
=cut
111111

misc/perl6advent-2010/articles/smartmatching.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ right-hand side:
5757
$foo ~~ [1, *, 1, *, 1, *]
5858

5959
The full table for smart matching behavior can be found at
60-
L<http://perlcabal.org/syn/S03.html#Smart_matching>.
60+
L<http://design.perl6.org/S03.html#Smart_matching>.
6161

6262
Notice how, unlikely in Perl 5, in Perl 6 smartmathing is the only syntactic
6363
way to match a regex, it has no special operator.

misc/perl6advent-2010/articles/temporal.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ There is also a Date object, which is created in a similar way, but without hour
3636

3737
=head2 Finally...
3838

39-
That's about it for Time in P6. To see all the gritty details go to http://perlcabal.org/syn/S32/Temporal.html or ask about it in the community!
39+
That's about it for Time in P6. To see all the gritty details go to http://design.perl6.org/S32/Temporal.html or ask about it in the community!

t/HOWTO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fits.
6363

6464
The typical file name of a test is C<t/spec/S29-list/map.t>. C<S29> is
6565
the synopsis where the feature is described, it can be found at
66-
L<http://perlcabal.org/syn/S29.html>. C<list> is the section within S29 where
66+
L<http://design.perl6.org/S29.html>. C<list> is the section within S29 where
6767
the feature is described, and C<map> is the feature being tested.
6868

6969
Please adhere to this style as good as possible, when you are in doubt, ask on
@@ -130,7 +130,7 @@ to the operator we just tested, because C<Rule.pod> describes regular
130130
expressions, and C<**> has a different meaning there.
131131

132132
The best match seems to be C<Operator.pod>. Looking at
133-
L<http://perlcabal.org/syn/> reveals that it's also called S03 for short. So
133+
L<http://design.perl6.org/> reveals that it's also called S03 for short. So
134134
we know that our smartlink will start with C<< L<S03/> >>. Next we find out
135135
which section the best match is. That's C<Exponentiation precedence> in our
136136
case, so our smartlink looks like this:

util/Text-SmartLinks/lib/Text/SmartLinks.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ sub process_yml_file {
834834
sub gen_html {
835835
my ($self, $pod, $title) = @_;
836836

837-
$Pod::Simple::HTML::Perldoc_URL_Prefix = 'http://perlcabal.org/syn/';
837+
$Pod::Simple::HTML::Perldoc_URL_Prefix = 'http://design.perl6.org/';
838838
$Pod::Simple::HTML::Perldoc_URL_Postfix = '.html';
839839

840840
$Pod::Simple::HTML::Content_decl =
@@ -893,7 +893,7 @@ sub add_footer {
893893
my ($self, $html) = @_;
894894
$$html =~ s{</body>}{
895895
[ <a href="#__top">Top</a> ] &nbsp;
896-
[ <a href="http://perlcabal.org/syn/">Index of Synopses</a> ]
896+
[ <a href="http://design.perl6.org/">Index of Synopses</a> ]
897897
</body>};
898898
}
899899

@@ -941,7 +941,7 @@ sub gen_preamble {
941941
return qq{
942942
<em>This page was generated by Text::SmartLinks v$VERSION at $time.<br>
943943
(<a href="https://github.com/perl6/specs/">syn</a> <strong>$pugs_rev</strong>$smoke_info)</em>
944-
&nbsp; [ <a href="http://perlcabal.org/syn/">Index of Synopses</a> ]<br>
944+
&nbsp; [ <a href="http://design.perl6.org/">Index of Synopses</a> ]<br>
945945
<a id='__top'></a>
946946
};
947947
}

0 commit comments

Comments
 (0)