Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Que hay de nuevo en Django 1.6
Search
Camilo Nova
October 03, 2013
Technology
2
1.7k
Que hay de nuevo en Django 1.6
http://www.meetup.com/Django-Bogota/events/141124812/
Camilo Nova
October 03, 2013
Tweet
Share
More Decks by Camilo Nova
See All by Camilo Nova
Django FoodPorn
camilonova
3
270
Other Decks in Technology
See All in Technology
Service Monitoring Platformについて
lycorptech_jp
PRO
0
310
未回答質問の回答一覧 / 開発をリードする品質保証 QAエンジニアと開発者の未来を考える-Findy Online Conference -
findy_eventslides
0
210
JAWS-UG SRE支部 #14 LT
okaru
0
110
大規模モノレポの秩序管理 失速しない多言語化フロントエンドの運用 / JSConf JP 2025
shoota
0
250
旧から新へ: 大規模ウェブクローラの Perl から Go への移行 / YAPC::Fukuoka 2025
motemen
3
1.1k
改竄して学ぶコンテナサプライチェーンセキュリティ ~コンテナイメージの完全性を目指して~/tampering-container-supplychain-security
mochizuki875
1
340
膨大なデータをどうさばく? Java × MQで作るPub/Subアーキテクチャ
zenta
0
110
Javaコミュニティの歩き方 ~参加から貢献まで、すべて教えます~
tabatad
0
130
なぜブラウザで帳票を生成したいのか どのようにブラウザで帳票を生成するのか
yagisanreports
0
140
その意思決定、まだ続けるんですか? ~痛みを超えて未来を作る、AI時代の撤退とピボットの技術~
applism118
0
200
社内外から"使ってもらえる"データ基盤を支えるアーキテクチャの秘訣/登壇資料(飯塚 大地・高橋 一貴)
hacobu
PRO
0
250
それでは聞いてください「Impeller導入に失敗しました」 #FlutterKaigi #skia
tacck
PRO
0
140
Featured
See All Featured
Building Flexible Design Systems
yeseniaperezcruz
329
39k
A designer walks into a library…
pauljervisheath
210
24k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
658
61k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
9
1k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
253
22k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
36
6.1k
GitHub's CSS Performance
jonrohan
1032
470k
The Illustrated Children's Guide to Kubernetes
chrisshort
51
51k
Designing for humans not robots
tammielis
254
26k
Why You Should Never Use an ORM
jnunemaker
PRO
60
9.6k
RailsConf 2023
tenderlove
30
1.3k
How to train your dragon (web standard)
notwaldorf
97
6.4k
Transcript
Django 1.6 Camilo Nova Thursday, October 3, 13
Thursday, October 3, 13
Malcolm Tredinnick Dedicado a Malcolm Tredinnick Thursday, October 3, 13
Plantilla de proyectos y aplicaciones • django-admin.py startproject • django-admin.py
startapp • ‘admin’ habilitado por defecto. • ‘sites’ deja de venir por defecto. Thursday, October 3, 13
Manejo de transacciones • Allí estaba pero nadie lo usaba.
• Ahora tiene un esquema simplificado, menos complicado y fácil de leer. • ‘autocommit’ viene activo por defecto. Thursday, October 3, 13
Conexiones persistentes • Es posible mantener la conexión a la
base de datos. • Por compatibilidad hacia atras esta característica esta desactivada por defecto. Thursday, October 3, 13
Test Runner • Django 1.6 trae un nuevo test runner
que permite mayor flexibilidad. django.test.runner.DiscoverRunner Thursday, October 3, 13
BinaryField Thursday, October 3, 13
django-admin.py check Thursday, October 3, 13
.earliest() Thursday, October 3, 13
Filtrar fechas por hour, minute, second Thursday, October 3, 13
HTML5 forms Thursday, October 3, 13
jQuery Thursday, October 3, 13
Deployment checklist Thursday, October 3, 13
Pillow Thursday, October 3, 13
book_list = Book.objects.all().order_by(‘id’) if book_list: book = book_list[0] else: book
= None return book Thursday, October 3, 13
return Book.objects.all().order_by(‘id’).first() Thursday, October 3, 13
.first() y .last() Thursday, October 3, 13
Thursday, October 3, 13
Cambios incompatibles hacia atras Thursday, October 3, 13
autocommit Thursday, October 3, 13
autocommit para PostgreSQL Thursday, October 3, 13
test runner Thursday, October 3, 13
QuerySet.datetimes() Thursday, October 3, 13
hour, minute, second Thursday, October 3, 13
BooleanField Thursday, October 3, 13
django.contrib.auth password reset Thursday, October 3, 13
serialización de sesión en JSON Thursday, October 3, 13
Blank Passwords Thursday, October 3, 13
Deprecation Thursday, October 3, 13
Transacciones Thursday, October 3, 13
django.contrib.comments Thursday, October 3, 13
PostgreSQL 8.4 Thursday, October 3, 13
CACHE_MIDDLEWARE_ANONYMOUS_ONLY Thursday, October 3, 13
SEND_BROKEN_LINK_EMAILS Thursday, October 3, 13
ModelForm fields Thursday, October 3, 13
https:// docs.djangoproject.com /en/dev/releases/1.6/ Thursday, October 3, 13
South Thursday, October 3, 13
https://misindicadores.co Thursday, October 3, 13
https://misindicadores.co Thursday, October 3, 13