Skip to content

Commit 490cf97

Browse files
Merge pull request #1 from pythonfluente/main
Atualização
2 parents 16f1268 + 6a9cf7e commit 490cf97

File tree

771 files changed

+101521
-2809
lines changed

Some content is hidden

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

771 files changed

+101521
-2809
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
Publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
1313
with:
1414
node-version: 18
1515

1616
- name: Install asciidoctor
1717
run: npm install -g asciidoctor asciidoctor-chunker
1818

1919
- name: Build
20-
run: asciidoctor livro.adoc -o index.html
20+
run: asciidoctor Livro.adoc -o index.html
2121

2222
# - name: Split
2323
# run: asciidoctor-chunker index.html -o output

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
exports/
12
*.bkp
23
.DS_Store
34

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"asciidoc.antora.enableAntoraSupport": true
3+
}

README.adoc

Lines changed: 26 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,31 @@
33

44
# Python Fluente, Segunda Edição
55

6-
Tradução brasileira escrita por https://github.com/pauloc[@pauloc],
6+
Tradução oficial de https://www.oreilly.com/library/view/fluent-python-2nd/9781492056348/[__Fluent Python, Second Edition__].
7+
Traduzida por https://github.com/pauloc[@pauloc],
78
produzida por https://github.com/ramalho[@ramalho],
89
e revisada pela comunidade 😉.
910

11+
----
12+
1 2 3 4 5 6
13+
██ ██ ██ ██ ██ ██ Parte I ✅
14+
15+
7 8 9 10
16+
██ ██ ██ ██ Parte II ✅
17+
18+
11 12 13 14 15 16
19+
██ ██ ██ ██ ██ ██ Parte III ✅
20+
21+
17 18 19 20 21
22+
██ ██ ██ ██ ██ Parte IV ✅
23+
24+
22 23 24
25+
██ ██ ██ Parte V ✅
26+
27+
----
28+
29+
█ = capítulo traduzido
30+
1031
## Procedência e licença para copiar
1132

1233
++++
@@ -33,28 +54,20 @@ Você pode remixar, transformar ou criar a partir do material apenas para uso pr
3354
Para distribuir o material derivado, obtenha permissão por escrito do autor.
3455
Registre um https://github.com/pythonfluente/pythonfluente2e/issues[__issue__]
3556
para comunicar sua intenção de redistribuir ou publicar em qualquer meio uma obra derivada
36-
e aguarde uma resposta do autor.
57+
e aguarde uma resposta do autor.
3758

3859
Para mais detalhes, leia a
3960
https://creativecommons.org/licenses/by-nc-nd/4.0/deed.pt_BR[licença simplificada]
40-
e o
61+
e o
4162
https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode[texto completo da licença em inglês].
4263

4364
[NOTE]
4465
====
45-
Esta *não é uma obra derivada* da tradução de Python Fluente, 1ª edição,
46-
publicada pela Editora Novatec em 2015.
47-
4866
Esta tradução foi feita diretamente do texto original em inglês de
4967
__Fluent Python, Second Edition__, com autorização da O'Reilly Media.
5068
51-
Qualquer coincidência é acidental ou causada pelo fato de que LR escreveu
52-
as duas edições do original em inglês,
53-
contribuiu com a tradução da Novatec como revisor técnico,
54-
e trabalhou anos programando com PC—o novo tradutor.
55-
56-
Também é possível que o ChatGPT tenha ingerido de alguma forma a tradução da Novatec.
57-
Brincadeira. Não usamos o ChatGPT para traduzir o livro.
69+
Esta *não é uma obra derivada* da tradução de Python Fluente, 1ª edição,
70+
publicada pela Editora Novatec em 2015. Qualquer coincidência é acidental.
5871
====
5972

6073
__Python Fluente, Segunda Edição__ © 2023 Luciano Ramalho.

atributos-pt_BR.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@
1818
:appendix-caption: Apêndice
1919
:appendix-refsig: {appendix-caption}
2020
:toc-title: Sumário
21-
ifdef::preface-title[:preface-title: Prefácio]
21+
:preface-title: Prefácio
2222
:example-caption: Exemplo
2323
:figure-caption: Figura
24-
ifdef::listing-caption[:listing-caption: Listagem]
24+
:listing-caption: Listagem
2525
:table-caption: Tabela
2626
:untitled-label: Sem título
2727
:last-update-label: HTML gerado em
2828
:version-label: Versão
29+
// Substituições
30+
:dunder: __

0 commit comments

Comments
 (0)