Skip to content

Commit 7afe426

Browse files
authored
Merge pull request #2177 from tbrowder/phase2
Phase2
2 parents f8d9b44 + 289999e commit 7afe426

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+578
-74
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ SELINUX_OPT := $(shell [ $(DOCKER_SELINUX_LABEL) -eq 1 ] && echo "$(COL
1313

1414
html: bigpage htmlify
1515

16-
htmlify: init-highlights assets
16+
htmlify: init-highlights assets gen-pod6-source
1717
perl6 htmlify.p6
1818

19+
gen-pod6-source:
20+
perl6 manage-page-order.p6 update
21+
1922
init-highlights:
2023
ATOMDIR="./highlights/atom-language-perl6"; \
2124
if [ -d "$$ATOMDIR" ]; then (cd "$$ATOMDIR" && git pull); \

doc/404.pod6

100755100644
File mode changed.

doc/HomePage.pod6

100755100644
File mode changed.

doc/Language/0-html-source/README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is a place holder to preserve this dir in the doc repo.

doc/Language/00-POD6-CONTROL

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# Do not edit this file except to sort the lines in the
2+
# desired order.
3+
#
4+
# DO NOT REMOVE OR MODIFY THE FILE NAME AT THE END OF EACH LINE
5+
6+
7+
Perl 6 Example P6-101 FILE: 101-basics
8+
9+
group: MIGRATION GUIDES
10+
11+
Perl 5 to Perl 6 guide - In a Nutshell FILE: 5to6-nutshell
12+
Perl 5 to Perl 6 guide - Overview FILE: 5to6-overview
13+
Perl 5 to Perl 6 guide - Functions FILE: 5to6-perlfunc
14+
Perl 5 to Perl 6 guide - Operators FILE: 5to6-perlop
15+
Perl 5 to Perl 6 guide - Syntax FILE: 5to6-perlsyn
16+
Perl 5 to Perl 6 guide - Special Variables FILE: 5to6-perlvar
17+
Haskell to Perl 6 - Nutshell FILE: haskell-to-p6
18+
Javascript (Node) to Perl 6 - Nutshell FILE: js-nutshell
19+
Python to Perl 6 - Nutshell FILE: py-nutshell
20+
Ruby to Perl 6 - Nutshell FILE: rb-nutshell
21+
22+
group: TUTORIALS
23+
24+
Classes and objects FILE: classtut
25+
Concurrency FILE: concurrency
26+
Core modules FILE: modules-core
27+
Doing math with Perl 6 FILE: math
28+
Entering unicode characters FILE: unicode_entry
29+
Grammar tutorial FILE: grammar_tutorial
30+
Input/output FILE: io
31+
Inter-process communication FILE: ipc
32+
Iterating FILE: iterating
33+
Module development utilities FILE: modules-extra
34+
Module packages FILE: module-packages
35+
Modules FILE: modules
36+
37+
group: GENERAL REFERENCE
38+
39+
About the docs FILE: about
40+
Community FILE: community
41+
FAQ FILE: faq
42+
Glossary FILE: glossary
43+
Perl 6 pod FILE: pod
44+
Pod 6 tables FILE: tables
45+
Terms FILE: terms
46+
Testing FILE: testing
47+
Traps to avoid FILE: traps
48+
49+
group: PERL 6 FUNDAMENTAL TOPICS
50+
51+
Containers FILE: containers
52+
Contexts and contextualizers FILE: contexts
53+
Control flow FILE: control
54+
Data structures FILE: structures
55+
Date and time functions FILE: temporal
56+
Enumeration FILE: enumeration
57+
Exceptions FILE: exceptions
58+
Functions FILE: functions
59+
Grammars FILE: grammars
60+
Hashes and maps FILE: hashmap
61+
Input/output: the definitive guide FILE: io-guide
62+
Lists, sequences, and arrays FILE: list
63+
Meta-object protocol FILE: mop
64+
Native calling interface FILE: nativecall
65+
Newline handling in Perl 6 FILE: newline
66+
Numerics FILE: numerics
67+
Object orientation FILE: objects
68+
Operators FILE: operators
69+
Packages FILE: packages
70+
Performance FILE: performance
71+
Perl 6 native types FILE: nativetypes
72+
Phasers FILE: phasers
73+
Pragmas FILE: pragmas
74+
Quoting constructs FILE: quoting
75+
Regexes FILE: regexes
76+
Routines FILE: routines
77+
Sets, bags, and mixes FILE: setbagmix
78+
Subscripts FILE: subscripts
79+
Syntax FILE: syntax
80+
System interaction FILE: system
81+
Traits FILE: traits
82+
Type system FILE: typesystem
83+
Unicode FILE: unicode
84+
Unicode versus ASCII symbols FILE: unicode_ascii
85+
Variables FILE: variables
86+
87+
group: PERL 6 ADVANCED TOPICS
88+
89+
Experimental Features FILE: experimental

doc/Language/101-basics.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
=begin pod :tag<tutorial> :page-order<A00>
1+
=begin pod :tag<tutorial>
22
33
=TITLE Perl 6 by example P6-101
44

doc/Language/5to6-nutshell.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
=begin pod :tag<convert> :page-order<A01>
1+
=begin pod :tag<convert>
22
33
=TITLE Perl 5 to Perl 6 guide - In a Nutshell
44

doc/Language/5to6-overview.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
=begin pod :tag<convert> :page-order<A02>
1+
=begin pod :tag<convert>
22
33
=TITLE Perl 5 to Perl 6 guide - Overview
44

doc/Language/5to6-perlfunc.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
=begin pod :tag<convert> :page-order<A03>
1+
=begin pod :tag<convert>
22
33
=TITLE Perl 5 to Perl 6 guide - Functions
44

doc/Language/5to6-perlop.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
=begin pod :tag<convert> :page-order<A04>
1+
=begin pod :tag<convert>
22
33
=TITLE Perl 5 to Perl 6 guide - Operators
44

0 commit comments

Comments
 (0)