Skip to content

Update the spanish's preface.md #1291

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
129 changes: 45 additions & 84 deletions es/preface.md
Original file line number Diff line number Diff line change
@@ -1,96 +1,57 @@
- 1.[Go environment configuration](01.0.md)
- 1.1. [Installation](01.1.md)
- 1.2. [$GOPATH and workspace](01.2.md)
- 1.3. [Go commands](01.3.md)
- 1.4. [Go development tools](01.4.md)
- 1.5. [Summary](01.5.md)
- 2.[Go basic knowledge](02.0.md)
- 2.1. ["Hello, Go"](02.1.md)
- 2.2. [Go foundation](02.2.md)
- 2.3. [Control statements and functions](02.3.md)
- 1.[Configurando el entorno de Go](01.0.md)
- 1.1. [Instalación](01.1.md)
- 1.2. [$GOPATH y el ambiente de trabajo](01.2.md)
- 1.3. [Comandos Go](01.3.md)
- 1.4. [Herramientas de Desarrollo para Go](01.4.md)
- 1.5. [Resumen](01.5.md)
- 2.[Go, Conocimiento básico](02.0.md)
- 2.1. [¿Qué hace a Go diferente de otros lenguajes](02.1.md)
- 2.2. [Principios de Go](02.2.md)
- 2.3. [Sentencias de control y funciones](02.3.md)
- 2.4. [struct](02.4.md)
- 2.5. [Object-oriented](02.5.md)
- 2.6. [interface](02.6.md)
- 2.7. [Concurrency](02.7.md)
- 2.8. [Summary](02.8.md)
- 3.[Web foundation](03.0.md)
- 3.1. [Web working principles](03.1.md)
- 3.2. [Build a simple web server](03.2.md)
- 3.3. [How Go works with web](03.3.md)
- 3.4. [Get into http package](03.4.md)
- 3.5. [Summary](03.5.md)
- 4.[User form](04.0.md)
- 4.1. [Process form inputs](04.1.md)
- 4.2. [Verification of inputs](04.2.md)
- 2.5. [Orientado a objetos](02.5.md)
- 2.6. [Interfaces](02.6.md)
- 2.7. [Concurrencia](02.7.md)
- 2.8. [Resumen](02.8.md)
- 3.[Conocimientos básicos sobre la Web](03.0.md)
- 3.1. [Principios para el trabajo en la Web](03.1.md)
- 3.2. [Armando un servidor web sencillo](03.2.md)
- 3.3. [Como trabaja Go con la web](03.3.md)
- 3.4. [Obteniendo el paquete http](03.4.md)
- 3.5. [Resumen](03.5.md)
- 4.[Formularios de Usuarios](04.0.md)
- 4.1. [Procesando las entradas de los formularios](04.1.md)
- 4.2. [Verificando las entradas](04.2.md)
- 4.3. [Cross site scripting](04.3.md)
- 4.4. [Duplicate submissions](04.4.md)
- 4.5. [File upload](04.5.md)
- 4.6. [Summary](04.6.md)
- 5.[Database](05.0.md)
- 5.1. [database/sql interface](05.1.md)
- 4.4. [Envíos duplicados](04.4.md)
- 4.5. [Subida de archivos](04.5.md)
- 4.6. [Resumen](04.6.md)
- 5.[Bases de Datos](05.0.md)
- 5.1. [Envíos duplicados](05.1.md)
- 5.2. [MySQL](05.2.md)
- 5.3. [SQLite](05.3.md)
- 5.4. [PostgreSQL](05.4.md)
- 5.5. [Develop ORM based on beedb](05.5.md)
- 5.6. [NoSQL database](05.6.md)
- 5.7. [Summary](05.7.md)
- 6.[Data storage and session](06.0.md)
- 6.1. [Session and cookies](06.1.md)
- 6.2. [How to use session in Go](06.2.md)
- 6.3. [Session storage](06.3.md)
- 6.4. [Prevent hijack of session](06.4.md)
- 6.5. [Summary](06.5.md)
- 7.[Text files](07.0.md)
- 5.5. [Desarrollo de un ORM basado en beedb](05.5.md)
- 5.6. [Bases de Datos NoSQL](05.6.md)
- 5.7. [Resumen](05.7.md)
- 6.[Almacenamiento de datos y Sesiones](06.0.md)
- 6.1. [Sesiones y cookies](06.1.md)
- 6.2. [¿Cómo usar sesiones en Go?](06.2.md)
- 6.3. [Almacenamiento de sesiones](06.3.md)
- 6.4. [Prevenir el hijacking de sesión](06.4.md)
- 6.5. [Resumen](06.5.md)
- 7.[Archivos de texto](07.0.md)
- 7.1. [XML](07.1.md)
- 7.2. [JSON](07.2.md)
- 7.3. [Regexp](07.3.md)
- 7.4. [Templates](07.4.md)
- 7.5. [Files](07.5.md)
- 7.6. [Strings](07.6.md)
- 7.7. [Summary](07.7.md)
- 8.[Web services](08.0.md)
- 7.4. [Plantillas](07.4.md)
- 7.5. [Archivos](07.5.md)
- 7.6. [Cadenas](07.6.md)
- 7.7. [Resumen](07.7.md)
- 8.[Servicios web](08.0.md)
- 8.1. [Sockets](08.1.md)
- 8.2. [WebSocket](08.2.md)
- 8.3. [REST](08.3.md)
- 8.4. [RPC](08.4.md)
- 8.5. [Summary](08.5.md)
- 9.[Security and encryption](09.0.md)
- 9.1. [CSRF attacks](09.1.md)
- 9.2. [Filter inputs](09.2.md)
- 9.3. [XSS attacks](09.3.md)
- 9.4. [SQL injection](09.4.md)
- 9.5. [Password storage](09.5.md)
- 9.6. [Encrypt and decrypt data](09.6.md)
- 9.7. [Summary](09.7.md)
- 10.[Internationalization and localization](10.0.md)
- 10.1 [Time zone](10.1.md)
- 10.2 [Localized resources](10.2.md)
- 10.3 [International sites](10.3.md)
- 10.4 [Summary](10.4.md)
- 11.[Error handling, debugging and testing](11.0.md)
- 11.1. [Error handling](11.1.md)
- 11.2. [Debugging by using GDB](11.2.md)
- 11.3. [Write test cases](11.3.md)
- 11.4. [Summary](11.4.md)
- 12.[Deployment and maintenance](12.0.md)
- 12.1. [Logs](12.1.md)
- 12.2. [Errors and crashes](12.2.md)
- 12.3. [Deployment](12.3.md)
- 12.4. [Backup and recovery](12.4.md)
- 12.5. [Summary](12.5.md)
- 13.[Build a web framework](13.0.md)
- 13.1. [Project program](13.1.md)
- 13.2. [Customized routers](13.2.md)
- 13.3. [Design controllers](13.3.md)
- 13.4. [Logs and configurations](13.4.md)
- 13.5. [Add, delete and update blogs](13.5.md)
- 13.6. [Summary](13.6.md)
- 14.[Develop web framework](14.0.md)
- 14.1. [Static files](14.1.md)
- 14.2. [Session](14.2.md)
- 14.3. [Form](14.3.md)
- 14.4. [User validation](14.4.md)
- 14.5. [Multi-language support](14.5.md)
- 14.6. [pprof](14.6.md)
- 14.7. [Summary](14.7.md)
- Appendix A [References](ref.md)
- 8.5. [Resumen](08.5.md)
- Appendix A [References](ref.md)