diff --git a/pgweb/core/feeds.py b/pgweb/core/feeds.py index 7e588455..076ddd4d 100644 --- a/pgweb/core/feeds.py +++ b/pgweb/core/feeds.py @@ -16,8 +16,7 @@ class VersionFeed(Feed): return Version.objects.filter(tree__gt=0).filter(testing=0) def item_link(self, obj): - return "https://www.postgresql.org/docs/%s/static/%s" % (obj.numtree, obj.relnotes) + return "https://www.postgresql.org/docs/%s/%s" % (obj.numtree, obj.relnotes) def item_pubdate(self, obj): return datetime.combine(obj.reldate,time.min) - diff --git a/pgweb/docs/struct.py b/pgweb/docs/struct.py index 9848812d..87e5635e 100644 --- a/pgweb/docs/struct.py +++ b/pgweb/docs/struct.py @@ -30,14 +30,14 @@ def get_struct(): if version >= 10: version = int(version) - yield ('docs/%s/static/%s' % (version, filename), + yield ('docs/%s/%s' % (version, filename), testing and 0.1 or docprio, # beta/rc versions always get 0.1 in prio loaded) # Also yield the current version urls, with the highest # possible priority if version == currentversion.tree: - yield ('docs/current/static/%s' % filename, + yield ('docs/current/%s' % filename, 1.0, loaded) # For our internal sitemap (used only by our own search engine), @@ -48,6 +48,6 @@ def get_internal_struct(): curs.execute("SELECT d.file, v.docsloaded FROM docs d INNER JOIN core_version v ON v.tree=d.version WHERE version = 0") for filename, loaded in curs.fetchall(): - yield ('docs/devel/static/%s' % (filename, ), + yield ('docs/devel/%s' % (filename, ), 0.1, loaded) diff --git a/pgweb/util/contexts.py b/pgweb/util/contexts.py index 5f80c5e3..b24f5438 100644 --- a/pgweb/util/contexts.py +++ b/pgweb/util/contexts.py @@ -11,7 +11,7 @@ sitenav = { ]}, {'title': 'Feature Matrix', 'link':'/about/featurematrix/'}, {'title': 'Donate', 'link':'/about/donate/'}, - {'title': 'History', 'link':'/docs/current/static/history.html'}, + {'title': 'History', 'link':'/docs/current/history.html'}, {'title': 'Sponsors', 'link':'/about/sponsors/', 'submenu': [ {'title': 'Servers', 'link': '/about/servers/'}, ]}, diff --git a/templates/core/about.html b/templates/core/about.html index ce5c7858..1199b681 100644 --- a/templates/core/about.html +++ b/templates/core/about.html @@ -5,15 +5,15 @@
PostgreSQL is a powerful, open source object-relational database system that uses and extends the SQL language combined with many features that safely store and scale the most complicated data workloads. The origins of PostgreSQL date back to 1986 as part of the POSTGRES project at the University of California at Berkeley and has more than 30 years of active development on the core platform.
+PostgreSQL is a powerful, open source object-relational database system that uses and extends the SQL language combined with many features that safely store and scale the most complicated data workloads. The origins of PostgreSQL date back to 1986 as part of the POSTGRES project at the University of California at Berkeley and has more than 30 years of active development on the core platform.
PostgreSQL has earned a strong reputation for its proven architecture, reliability, data integrity, robust feature set, extensibility, and the dedication of the open source community behind the software to consistently deliver performant and innovative solutions. PostgreSQL runs on all major operating systems, has been ACID-compliant since 2001, and has powerful add-ons such as the popular PostGIS geospatial database extender. It is no surprise that PostgreSQL has become the open source relational database of choice for many people and organisations.
-Getting started with using PostgreSQL has never been easier - pick a project you want to build, and let PostgreSQL safely and robustly store your data.
+Getting started with using PostgreSQL has never been easier - pick a project you want to build, and let PostgreSQL safely and robustly store your data.
- PostgreSQL comes with many features aimed to help developers build applications, administrators to protect data integrity and build fault-tolerant environments, and help you manage your data no matter how big or small the dataset. In addition to being free and open source, PostgreSQL is highly extensible. For example, you can define your own data types, build out custom functions, even write code from different programming languages without recompiling your database! + PostgreSQL comes with many features aimed to help developers build applications, administrators to protect data integrity and build fault-tolerant environments, and help you manage your data no matter how big or small the dataset. In addition to being free and open source, PostgreSQL is highly extensible. For example, you can define your own data types, build out custom functions, even write code from different programming languages without recompiling your database!
-PostgreSQL tries to conform with the SQL standard where such conformance does not contradict traditional features or could lead to poor architectural decisions. Many of the features required by the SQL standard are supported, though sometimes with slightly differing syntax or function. Further moves towards conformance can be expected over time. As of the version 11 release in October 2018, PostgreSQL conforms to at least 160 of the 179 mandatory features for SQL:2011 Core conformance, where as of this writing, no relational database meets full conformance with this standard. +
PostgreSQL tries to conform with the SQL standard where such conformance does not contradict traditional features or could lead to poor architectural decisions. Many of the features required by the SQL standard are supported, though sometimes with slightly differing syntax or function. Further moves towards conformance can be expected over time. As of the version 11 release in October 2018, PostgreSQL conforms to at least 160 of the 179 mandatory features for SQL:2011 Core conformance, where as of this writing, no relational database meets full conformance with this standard.
Below is an inexhaustive of various features found in PostgreSQL, with more being added in every major release:
diff --git a/templates/docs/archive.html b/templates/docs/archive.html index c7843baf..6cff6317 100644 --- a/templates/docs/archive.html +++ b/templates/docs/archive.html @@ -18,7 +18,7 @@ If you are still using any of these releases, you are strongly advised to upgrad {%for v in versions%}This section contains current - and archived manuals for PostgreSQL users. You can read the release notes, and view a listing of books + and archived manuals for PostgreSQL users. You can read the release notes, and view a listing of books written about PostgreSQL.
- PostgreSQL 11 makes significant improvements to the table partitioning - system, adds support for stored procedures capable of transaction - management, improves query parallelism and adds parallelized data - definition capabilities, and introduces just-in-time (JIT) compilation + PostgreSQL 11 makes significant improvements to the table partitioning + system, adds support for stored procedures capable of transaction + management, improves query parallelism and adds parallelized data + definition capabilities, and introduces just-in-time (JIT) compilation for accelerating the execution of expressions in queries.
PostgreSQL 11 provides users with improvements to overall performance of the database system, with specific enhancements associated with very large databases - and high computational workloads. Further, PostgreSQL 11 makes significant improvements - to the table partitioning - system, adds support for stored procedures capable of transaction - management, improves query parallelism and adds parallelized data - definition capabilities, and introduces just-in-time (JIT) compilation + and high computational workloads. Further, PostgreSQL 11 makes significant improvements + to the table partitioning + system, adds support for stored procedures capable of transaction + management, improves query parallelism and adds parallelized data + definition capabilities, and introduces just-in-time (JIT) compilation for accelerating the execution of expressions in queries.
HTML 格式文档和 man 格式的文档随PostgreSQL一起安装,用户也可以免费地在网站上 -对在线文档进行浏览。 +对在线文档进行浏览。
-HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber Sie können jederzeit die Online Dokumentation nutzen. +HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber Sie können jederzeit die Online Dokumentation nutzen.
HTML documentation and man pages are installed with PostgreSQL, but feel free to -browse our online documentation at online +browse our online documentation at online documentation.
diff --git a/templates/pages/about/press/presskit10/es.html b/templates/pages/about/press/presskit10/es.html index a6a1b838..2a3e3f72 100644 --- a/templates/pages/about/press/presskit10/es.html +++ b/templates/pages/about/press/presskit10/es.html @@ -132,7 +132,7 @@ Para más detalles sobre las características antes mencionadas, por favor vea l recursos:-Documentación en formato HTML y manuales en formato man se instalan con PostgreSQL, pero siéntase libre de explorar nuestra documentación en línea. +Documentación en formato HTML y manuales en formato man se instalan con PostgreSQL, pero siéntase libre de explorar nuestra documentación en línea.
La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. -La documentation en ligne, exhaustive et interactive, +La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée librement.
diff --git a/templates/pages/about/press/presskit10/hi.html b/templates/pages/about/press/presskit10/hi.html index de4e0657..43a32693 100644 --- a/templates/pages/about/press/presskit10/hi.html +++ b/templates/pages/about/press/presskit10/hi.html @@ -80,7 +80,7 @@ उपरोक्त सुविधाओं और अन्य के स्पष्टीकरण के लिए, कृपया निम्नलिखित संसाधन देखें:-एच.टी.एम.एल.(HTML)प्रलेखन और मैन पेज PostgreSQL के साथ स्थापित किए गए हैं, लेकिन ऑनलाइन प्रलेखन में हमारे Online Documentation ब्राउज़ करने में आप संकोच न करें । +एच.टी.एम.एल.(HTML)प्रलेखन और मैन पेज PostgreSQL के साथ स्थापित किए गए हैं, लेकिन ऑनलाइन प्रलेखन में हमारे Online Documentation ब्राउज़ करने में आप संकोच न करें ।
untuk penjelasan dari fitur-fitur diatas dan lainnya, mohon lihat tautan dibawah ini:
-Dokumentasi HTML dan halaman petunjuk telah dipasang dengan PostgreSQL, silakan melihat dokumentasi online kami di dokumentasi online. +Dokumentasi HTML dan halaman petunjuk telah dipasang dengan PostgreSQL, silakan melihat dokumentasi online kami di dokumentasi online.
לקבלת הסברים על התכונות הנ"ל ואחרים, עיין במשאבים הבאים:
תיעוד HTML ודפי man מותקנים עם PostgreSQL, אך אתם מוזמנים לעיין בתיעוד מקוון. +
תיעוד HTML ודפי man מותקנים עם PostgreSQL, אך אתם מוזמנים לעיין בתיעוד מקוון.
-La documentazione in formato HTML ed il manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare la nostra documentazione online. +La documentazione in formato HTML ed il manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare la nostra documentazione online.
HTML documentation and man pages are installed with PostgreSQL, but feel free to -browse our online documentation at online +browse our online documentation at online documentation.
diff --git a/templates/pages/about/press/presskit10/my.html b/templates/pages/about/press/presskit10/my.html index b792674d..80e501c9 100644 --- a/templates/pages/about/press/presskit10/my.html +++ b/templates/pages/about/press/presskit10/my.html @@ -123,7 +123,7 @@ parallelized ျဖစ္ျပီးသား data scans အမ်ိဳးအ ေအာက္ေဖာ္ျပပါ resources မ်ားကိုျကည့္ရႈႏုိင္ပါသည္။HTML documentation and man pages မ်ားသည္ PostgreSQL ထဲပါ၀င္ျပီးသာျဖစ္ေသာ္လည္း, - online documentation တြင္ရွာေဖြျကည့္ရႈႏုိင္ပါသည္။ online + online documentation တြင္ရွာေဖြျကည့္ရႈႏုိင္ပါသည္။ online documentation.
diff --git a/templates/pages/about/press/presskit10/pt.html b/templates/pages/about/press/presskit10/pt.html index 72b53f78..43915b6f 100644 --- a/templates/pages/about/press/presskit10/pt.html +++ b/templates/pages/about/press/presskit10/pt.html @@ -79,7 +79,7 @@ A replicação lógica expande as funcionalidades de replicação atuais do Post Para explicações detalhadas destas e outras funcionalidades, favor ver as seguintes páginas:-Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar na nossa documentação online. +Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar na nossa documentação online.
Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную -онлайн-документацию. +онлайн-документацию.
เอกสาร HTML และหน้าหลักได้รับการติดตั้งด้วย PostgreSQL อย่าเกรงใจที่จะ -เปิดดูเอกสารออนไลน์ของเราที่ เอกสาร +เปิดดูเอกสารออนไลน์ของเราที่ เอกสาร ออนไลน์.
diff --git a/templates/pages/about/press/presskit10/vi.html b/templates/pages/about/press/presskit10/vi.html index 44f67039..a8d5fd7a 100644 --- a/templates/pages/about/press/presskit10/vi.html +++ b/templates/pages/about/press/presskit10/vi.html @@ -85,7 +85,7 @@ Để xem diễn giải của các tính năng kể trên và các mục khác, vui lòng xem các nguồn sau đây:-Tài liệu HTML và các trang hướng dẫn được cài đặt bằng PostgreSQL, nhưng quý vị có thể duyệt xem qua tài liệu trực tuyến của chúng tôi tại online +Tài liệu HTML và các trang hướng dẫn được cài đặt bằng PostgreSQL, nhưng quý vị có thể duyệt xem qua tài liệu trực tuyến của chúng tôi tại online documentation.
diff --git a/templates/pages/about/press/presskit11/base.html b/templates/pages/about/press/presskit11/base.html index 0689962f..c4918aaa 100644 --- a/templates/pages/about/press/presskit11/base.html +++ b/templates/pages/about/press/presskit11/base.html @@ -64,7 +64,7 @@ For explanations of the above features and others, please see the following resources:PostgreSQL 11 comes with HTML documentation HTML documentation as well as man pages, and you can also browse the documentation online in both -HTML and +HTML and PDF formats
diff --git a/templates/pages/about/press/presskit11/cn.html b/templates/pages/about/press/presskit11/cn.html index e8003b10..4ab834f0 100644 --- a/templates/pages/about/press/presskit11/cn.html +++ b/templates/pages/about/press/presskit11/cn.html @@ -17,7 +17,7 @@ Momjian说道,“在已被证明PostgreSQL擅长于事务类负载的基础上PostgreSQL 11 在目前版本已有了按值列表或是按范围作为分区键值的分区表功能外,又增加了按哈希键值分区的功能,也称之为“Hash分区”。 PostgreSQL 11 还通过在分区功能中使用外部数据封装器postgres_fdw的功能,也进一步提升了数据聚合能力。
+PostgreSQL 11 在目前版本已有了按值列表或是按范围作为分区键值的分区表功能外,又增加了按哈希键值分区的功能,也称之为“Hash分区”。 PostgreSQL 11 还通过在分区功能中使用外部数据封装器postgres_fdw的功能,也进一步提升了数据聚合能力。
为了帮助管理分区,PostgreSQL 11 引入了将不含有分区键值的记录自动转入缺省分区的功能,并增加了在(主表)执行创建主键、外键、索引和触发器时,会将这些操作全部自动复制给所有分区表的功能。另外PostgreSQL 11现在也支持当记录中的分区键值字段被更新后,会自动将该记录移至新的正确的分区表中的功能。
@@ -56,7 +56,7 @@ Momjian说道,“在已被证明PostgreSQL擅长于事务类负载的基础上新版本中的完整的新特性列表,请参阅这里的: -发布声明 ,网址是:https://www.postgresql.org/docs/11/static/release-11.html
+发布声明 ,网址是:https://www.postgresql.org/docs/11/release-11.html {% endblock presskit_content %} {% block presskit_about %} diff --git a/templates/pages/about/press/presskit11/de.html b/templates/pages/about/press/presskit11/de.html index 449634c6..90a5a4e8 100644 --- a/templates/pages/about/press/presskit11/de.html +++ b/templates/pages/about/press/presskit11/de.html @@ -16,7 +16,7 @@ fügt parallelisierte Datendefinitionsfunktionen hinzu. Außerdem wird neu einePostgreSQL 11 enthält die Fähigkeit zur Partitionierung von Daten durch einen Hash-Schlüssel, auch bekannt als Hash-Partitionierung. Diese Funktionalität existiert zusätzlich zur bereits vorhandenen Möglichkeit, die Daten anhand von Werten oder Listen zu partitionieren. PostgreSQL 11 verbessert weiterhin die Möglichkeiten zur Abfrage von Daten auf anderen Systemen (Federation) mit einer Funktionalität welche die Nutzung von Foreign Data Wrapper für Partitionen erlaubt, postgres_fdw.
+PostgreSQL 11 enthält die Fähigkeit zur Partitionierung von Daten durch einen Hash-Schlüssel, auch bekannt als Hash-Partitionierung. Diese Funktionalität existiert zusätzlich zur bereits vorhandenen Möglichkeit, die Daten anhand von Werten oder Listen zu partitionieren. PostgreSQL 11 verbessert weiterhin die Möglichkeiten zur Abfrage von Daten auf anderen Systemen (Federation) mit einer Funktionalität welche die Nutzung von Foreign Data Wrapper für Partitionen erlaubt, postgres_fdw.
Um die Verwaltung von Partitionen zu unterstützen, führt PostgreSQL 11 eine Catch-all, oder Default Partition ein, welche alle Daten enthält die keinem Partitionsschlüssel entsprechen. Desweiteren existiert nun die Möglichkeit, Primärschlüssel (Primary Keys), Fremdschlüssel (Foreign Keys), Indexes und Trigger an alle Partitionen weiterzugeben. Weiterhin unterstützt PostgreSQL 11 das Verschieben von Daten in die richtige Partition, wenn der Partitionsschlüssel geändert wurde.
@@ -55,9 +55,9 @@ das Feedback von einer aktiven Benutzergemeinschaft und die harte Arbeit der LeuDie komplette Liste der Features in diesem Release ist in den Release Notes enthalten, die hier zu finden sind:
+Die komplette Liste der Features in diesem Release ist in den Release Notes enthalten, die hier zu finden sind:
-https://www.postgresql.org/docs/11/static/release-11.html
+https://www.postgresql.org/docs/11/release-11.html
{% endblock presskit_content %} {% block presskit_about %} diff --git a/templates/pages/about/press/presskit11/en.html b/templates/pages/about/press/presskit11/en.html index bd511b84..cfcb6596 100644 --- a/templates/pages/about/press/presskit11/en.html +++ b/templates/pages/about/press/presskit11/en.html @@ -39,7 +39,7 @@ hash partitioning, adding to the current ability to partition data in PostgreSQL by a list of values or by a range. PostgreSQL 11 further improves its data federation abilities with functionality improvements for partitions that use the PostgreSQL foreign data wrapper, -postgres_fdw. +postgres_fdw.To help with managing partitions, PostgreSQL 11 introduces a catch-all default partition for data that does not match a partition key, and the ability to @@ -117,8 +117,8 @@ interface to help make it easier to leave the command-line tool
For a full list of features included in this release, please read the -release notes, +release notes, which can be found at:
-https://www.postgresql.org/docs/11/static/release-11.html
+https://www.postgresql.org/docs/11/release-11.html
{% endblock presskit_content %} diff --git a/templates/pages/about/press/presskit11/es.html b/templates/pages/about/press/presskit11/es.html index 0bc97eae..39828ff3 100644 --- a/templates/pages/about/press/presskit11/es.html +++ b/templates/pages/about/press/presskit11/es.html @@ -46,7 +46,7 @@ PostgreSQL de particionamiento de datos por una lista de valores o por rango. PostgreSQL 11 perfecciona aún más sus habilidades de federación de datos con mejoras funcionales para particiones que usan el controlador federado de datos PostgreSQL (foreign data wrapper), -postgres_fdw. +postgres_fdw.Para ayudar con el manejo de particiones, PostgreSQL 11 introduce una partición predeterminada (catch-all) para los datos que no coinciden con ninguna @@ -129,10 +129,10 @@ por línea de comandos, para facilitar la salida de dicha herramienta.
Para una lista completa de características incluidas en esta versión, por favor lea las -Notas de la versión, +Notas de la versión, que pueden ser encontradas en:
-https://www.postgresql.org/docs/11/static/release-11.html
+https://www.postgresql.org/docs/11/release-11.html
{% endblock presskit_content %} {% block presskit_about %} diff --git a/templates/pages/about/press/presskit11/fr.html b/templates/pages/about/press/presskit11/fr.html index bb9b8724..e9a13312 100644 --- a/templates/pages/about/press/presskit11/fr.html +++ b/templates/pages/about/press/presskit11/fr.html @@ -43,7 +43,7 @@ majeure (avec de nouvelles fonctionnalités) sera PostgreSQL 12. aux autres possibilités de partitionnement (par listes de valeur ou par intervalles). De plus, PostgreSQL 11 augmente la convergence des données avec de nombreuses améliorations du partitionnement sur les Foreign Data Wrappers, -postgres_fdw. +postgres_fdw.Pour faciliter la maintenance sur les partitions, PostgreSQL 11 introduit une partition par défaut pour les données ne correspondant à aucune partition, @@ -127,10 +127,10 @@ PostgreSQL (psql) pour faciliter la sortie
Pour une liste complète des fonctionnalités de cette nouvelle version, vous -pouvez lire les notes de version, qui peut +pouvez lire les notes de version, qui peut être trouvée ici :
-https://www.postgresql.org/docs/11/static/release-11.html
+https://www.postgresql.org/docs/11/release-11.html
{% endblock presskit_content %} {% block presskit_about %} diff --git a/templates/pages/about/press/presskit11/he.html b/templates/pages/about/press/presskit11/he.html index 1dd9bb56..e309ec59 100644 --- a/templates/pages/about/press/presskit11/he.html +++ b/templates/pages/about/press/presskit11/he.html @@ -25,7 +25,7 @@ PostgreSQL נהנית מיתרונות של מעל 20 שנות פיתוח עםPostgreSQL 11 מוסיפה את היכולת לחלק את הנתונים על ידי מפתח hash, הידוע גם בשם hash partitioning, ומוסיפה יכולת זו לחלוקת נתונים ב PostgreSQL על ידי רשימת ערכים או על ידי טווח. PostgreSQL 11 משפרת עוד יותר את יכולות פדרצית הנתונים עם שיפורים פונקציונליים עבור מחיצות המשתמשות בעטיפת הנתונים הזרים, -postgres_fdw. +postgres_fdw.
כדי לסייע בניהול המחיצות, PostgreSQL 11 מציגה מחיצת ברירת המחדל עבור נתונים שאינם תואמים למפתח מחיצה, והיכולת ליצור מפתחות ראשיים, מפתחות זרים, אינדקסים וטריגרים על מחיצות המועברים לכל הטבלאות. PostgreSQL 11 תומכת גם בעברת רשומות באופן אוטומטי למחיצה הנכונה אם עדכון של מפתח המחיצה עבור רשומה זו.
@@ -62,9 +62,9 @@ PostgreSQL נהנית מיתרונות של מעל 20 שנות פיתוח עםלקבלת רשימה מלאה של התכונות הכלולות במהדורה זו, אנא קרא את - הערות גרסה + הערות גרסה , אשר ניתן למצוא בכתובת: -https://www.postgresql.org/docs/11/static/release-11.html +https://www.postgresql.org/docs/11/release-11.html
{% endblock presskit_content %} diff --git a/templates/pages/about/press/presskit11/id.html b/templates/pages/about/press/presskit11/id.html index d6c36c9e..b678b198 100644 --- a/templates/pages/about/press/presskit11/id.html +++ b/templates/pages/about/press/presskit11/id.html @@ -37,7 +37,7 @@ PostgreSQL 12. hash partitioning, menambah kemampuan saat ini untuk mempartisi data di PostgreSQL oleh daftar nilai atau rentang. PostgreSQL 11 meningkatkan lebih lanjut datanya kemampuan federasi dengan peningkatan fungsi untuk partisi yang digunakan fitur "Foreign Data Wrapper/FDW" -postgres_fdw. +postgres_fdw.Untuk membantu mengelola partisi, PostgreSQL 11 memperkenalkan partisi "Catch-All" untuk menampung data yang tidak sesuai dengan kunci partisi, dan kemampuan untuk @@ -111,10 +111,10 @@ antarmuka untuk membantu membuatnya lebih mudah meninggalkan alat baris perintah
Untuk daftar lengkap fitur yang termasuk dalam rilis ini, silakan baca -catatan rilis, +catatan rilis, yang dapat ditemukan di:
-https://www.postgresql.org/docs/11/static/release-11.html
+https://www.postgresql.org/docs/11/release-11.html
{% endblock presskit_content %} {% block presskit_about %} diff --git a/templates/pages/about/press/presskit11/it.html b/templates/pages/about/press/presskit11/it.html index 6e980802..26de63b6 100644 --- a/templates/pages/about/press/presskit11/it.html +++ b/templates/pages/about/press/presskit11/it.html @@ -17,7 +17,7 @@PostgreSQL 11 introduce hash partitioning, ovvero la capacità di partizionare dati sulla base di una chiave hash. Questa funzionalità va ad aggiungersi ai metodi di partizionamento per lista di valori e per range attualmente disponibili in PostgreSQL. -PostgreSQL 11 inoltre arricchisce le capacità di federazione dati con nuove funzionalità per le partizioni che utilizzano postgres_fdw, il Foreign Data Wrapper di PostgreSQL.
+PostgreSQL 11 inoltre arricchisce le capacità di federazione dati con nuove funzionalità per le partizioni che utilizzano postgres_fdw, il Foreign Data Wrapper di PostgreSQL.Per aiutare con la gestione delle partizioni, PostgreSQL 11 introduce le partizioni di default per i dati che non rientrano in nessuna chiave di partizionamento, nonché la possibilità di aggiungere chiavi primarie, chiavi esterne, indici e trigger sulle tabelle partizionate che vengono direttamente passati alle partizioni sottostanti. PostgreSQL 11 inoltre supporta automaticamente lo spostamento di righe nella partizione corretta in caso di aggiornamento della chiave di partizionamento.
@@ -55,9 +55,9 @@ PostgreSQL 11 inoltre arricchisce le capacità di federazione dati con nuove funPer una lista completa di funzionalità incluse in questa release si faccia riferimento alle note di rilascio disponibili in lingua inglese all'indirizzo:
+Per una lista completa di funzionalità incluse in questa release si faccia riferimento alle note di rilascio disponibili in lingua inglese all'indirizzo:
-https://www.postgresql.org/docs/11/static/release-11.html
+https://www.postgresql.org/docs/11/release-11.html
{% endblock presskit_content %} {% block presskit_about %} diff --git a/templates/pages/about/press/presskit11/jp.html b/templates/pages/about/press/presskit11/jp.html index 356f9f59..81359051 100644 --- a/templates/pages/about/press/presskit11/jp.html +++ b/templates/pages/about/press/presskit11/jp.html @@ -18,7 +18,7 @@ PostgreSQL 11のバグ修正を含む次のアップデートリリースはPostPostgreSQL 11には、現行のリストパーティションやレンジパーティション機能に加え、ハッシュ・パーティショニングとしても知られるハッシュ・キーによるデータ分割機能が追加されています。 -PostgreSQL 11は、PostgreSQLの外部データラッパーpostgres_fdwに対するパーティションの機能強化により、データ・フェデレーション機能をさらに向上させました。 +PostgreSQL 11は、PostgreSQLの外部データラッパーpostgres_fdwに対するパーティションの機能強化により、データ・フェデレーション機能をさらに向上させました。 パーティション管理の助けとして、PostgreSQL 11では、パーティションキーと一致しないデータの格納するデフォルトパーティションや、すべてのパーティションに渡されるパーティションテーブルのプライマリキー、外部キー、インデックス、トリガを作成する機能が導入されています。更に、パーティションキーのデータが更新された場合、行を自動的に正しいパーティションに移動する機能もサポートされています。
PostgreSQL 11では、新しいパーティション消去ストラテジーにより、パーティション読取時のクエリのパフォーマンスが改善しています。 @@ -54,7 +54,7 @@ PostgreSQL 11では、いくつかのデータ定義コマンドに並列処理 -PostgreSQLのコマンドラインインタフェースにキーワード "quit"と "exit"を含めることで、コマンドラインツールから簡単に抜けられるようになりました。
このリリースに含まれる機能の全リストは リリースノートにありますのでご覧ください。 +
このリリースに含まれる機能の全リストは リリースノートにありますのでご覧ください。 こちらからもご覧いただけます {% endblock presskit_content %} diff --git a/templates/pages/about/press/presskit11/kr.html b/templates/pages/about/press/presskit11/kr.html index 6b444d3b..7c400f9f 100644 --- a/templates/pages/about/press/presskit11/kr.html +++ b/templates/pages/about/press/presskit11/kr.html @@ -35,7 +35,7 @@ PostgreSQL 11에 대한 문제점 수정판인 다음 버전은 PostgreSQL 11.1
PostgreSQL 11에서 해시 파티션 테이블을 지원합니다. 이제, 나열 list 파티션, 범위 range 파티션과 함께 파티션 키로 해시 키를 사용할 수 있게 되었습니다. PostgreSQL 11에서는 PostgreSQL 외부 자료 싸개 wrapper인 -postgres_fdw +postgres_fdw 모듈을 이용하는 외부 테이블을 파티션 하위 테이블로 사용하는 기능이 좀 더 좋아져서 분산 노드 자료 처리가 좋아졌습니다.
@@ -111,10 +111,10 @@ PostgreSQL 개발자들의 많은 노력 없이는 불가능합니다. 다음은이번 배포판과 관련된 모든 내용은 아래 -release notes 페이지에서 +release notes 페이지에서 자세히 다룹니다:
-https://www.postgresql.org/docs/11/static/release-11.html (영문)
+https://www.postgresql.org/docs/11/release-11.html (영문)
http://postgresql.kr/docs/11/release-11.html (한글, 번역 예정)
{% endblock presskit_content %} diff --git a/templates/pages/about/press/presskit11/my.html b/templates/pages/about/press/presskit11/my.html index 35899a65..8732f326 100644 --- a/templates/pages/about/press/presskit11/my.html +++ b/templates/pages/about/press/presskit11/my.html @@ -45,7 +45,7 @@ PostgreSQL 12 ပငျဖစည။ တ စ ရငးအလက ထပျဖည့ သငးသည။ PostgreSQL foreign data wrapper သ ေသ ေဒတ ေဘစ အ ခမာ က အဆင့ျမင့တငျပ PostgreSQL 11 သည ေဒတ စစညး ုိင စမးရည က တ တကေအ ငျပလပ သည။ -postgres_fdw. +postgres_fdw.စီမံခန့်ခွဲမှုနှင့်အတူကူညီနိုင်ရန်အတွက် partitions ကို, PostgreSQL 11 ဒေတာအတွက်ဖမ်း-အားလုံး default အ partition ကိုတစ်ဦး partition ကိုသော့နှင့်အဓိကသော့ချက်, နိုင်ငံခြားသော့အညွှန်းကိန်းဖန်တီးနိုင်စွမ်းမကိုက်ညီမိတ်ဆက် @@ -132,7 +132,7 @@ PostgreSQL 11 မ ပ ဝင ေသ တ တကေျပာငးလမအ တက
Para ajudar com gerenciamento de partições, o PostgreSQL 11 introduziu uma partição padrão para todos os dados que não correspondem a uma chave de @@ -129,11 +129,11 @@ comando do PostgreSQL para facilitar a saída da ferramenta.
Para obter uma lista completa dos recursos incluídos nesta versão, leia as -notas de +notas de lançamento, que podem ser encontradas em:
-https://www.postgresql.org/docs/11/static/release-11.html
+https://www.postgresql.org/docs/11/release-11.html
{% endblock presskit_content %} {% block presskit_about %} diff --git a/templates/pages/about/press/presskit11/ru.html b/templates/pages/about/press/presskit11/ru.html index 15c612b4..fdb80331 100644 --- a/templates/pages/about/press/presskit11/ru.html +++ b/templates/pages/about/press/presskit11/ru.html @@ -48,7 +48,7 @@ DB-Engines и был отмечен в postgres_fdw. +секций, использующих обёртку сторонних данных postgres_fdw.Для упрощения управления секциями в PostgreSQL 11 вводится понятие «секции по
умолчанию», которая получает данные, не удовлетворяющие условиям ни одной из
@@ -129,10 +129,10 @@ PostgreSQL. Ниже приведены некоторые из новых во
использовать ключевые слова quit
и exit
.
Полный список новых возможностей, +
Полный список новых возможностей, включённых в данный релиз, можно найти по ссылке (англ.):
-https://www.postgresql.org/docs/11/static/release-11.html
+https://www.postgresql.org/docs/11/release-11.html
{% endblock presskit_content %} {% block presskit_about %} diff --git a/templates/pages/about/press/presskit11/th.html b/templates/pages/about/press/presskit11/th.html index c2377f59..204ce139 100644 --- a/templates/pages/about/press/presskit11/th.html +++ b/templates/pages/about/press/presskit11/th.html @@ -30,7 +30,7 @@ Momjian สมาชิกโพสต์เกรสคิวแอล 11 ได้เพิ่มความสามารถในการแบ่งพาร์ติชั่นข้อมูลโดยใช้แฮชคีย์หรือที่เรียกว่า แฮช พาร์ติชั่นนิ่งเพื่อเพิ่มความสามารถในการแบ่งพาร์ติชั่นข้อมูลในโพสต์เกรสคิวแอลปัจจุบัน ตามรายการค่า หรือตามช่วงซึ่งโพสต์เกรสคิวแอล 11ช่วยปรับปรุงข้อมูลให้ดียิ่งขึ้น การรวมความสามารถพร้อมกับการปรับปรุงฟังก์ชันสำหรับพาร์ติชั่นที่ใช้ ฟอเรียนท์ ดาต้า แรปเปอร์ของโพสต์เกรสคิวแอล 11 -postgres_fdw.
+postgres_fdw.เพื่อช่วยในการจัดการพาร์ติชั่น โพสต์เกรสคิวแอล 11ได้เพิ่มดีฟอลต์แคช-ออล พาร์ติชั่นสำหรับข้อมูลที่ไม่ตรงกับคีย์พาร์ติชั่นและความสามารถในการ สร้างคีย์หลัก คีย์ต่างประเทศ ดัชนีและทริกเกอร์บนพาร์ติชั่นที่ ส่งผ่านไปยังตารางทั้งหมดอีกทั้งโพสต์เกรสคิวแอล 11ยังคอยสนับสนุนการเคลื่อนย้ายแถวโดยอัตโนมัติ ไปยังพาร์ติชั่นที่ถูกต้องในกรณีที่มีการอัปเดตคีย์พาร์ติชั่นสำหรับแถวนั้น
@@ -100,7 +100,7 @@ Momjian สมาชิกอินเตอร์เฟสที่ช่วยให้ง่ายต่อการออกจากเครื่องมือบรรทัดคำสั่ง สำหรับรายการทั้งหมดของฟีเจอร์ที่รวมอยู่ในการเปิดตัวนี้ โปรดอ่าน
-บันทึกการเปิดตัว, ซึ่งสามารถดูได้ที่:
{% endblock presskit_content %} diff --git a/templates/pages/about/press/presskit11/vi.html b/templates/pages/about/press/presskit11/vi.html index 52f75707..c628de74 100644 --- a/templates/pages/about/press/presskit11/vi.html +++ b/templates/pages/about/press/presskit11/vi.html @@ -75,9 +75,9 @@ sử dụng mệnh đềINCLUDE
và sẽ hữu ích khi thực hi
-Để biết danh sách đầy đủ các tính năng có trong bản phát hành này, vui lòng đọc release notes, +Để biết danh sách đầy đủ các tính năng có trong bản phát hành này, vui lòng đọc release notes, có thể được tìm thấy tại: -https://www.postgresql.org/docs/11/static/release-11.html
+https://www.postgresql.org/docs/11/release-11.html {% endblock presskit_content %} {% block presskit_about %} diff --git a/templates/pages/about/press/presskit90/br.html b/templates/pages/about/press/presskit90/br.html index 9fb0f068..e43e7ca3 100644 --- a/templates/pages/about/press/presskit90/br.html +++ b/templates/pages/about/press/presskit90/br.html @@ -100,7 +100,7 @@ Mais Informações Sobre Essas Funcionalidades Para uma explicação detalhada destas e de outras funcionalidades, por favor consulte os seguintes recursos online:A documentação HTML e as páginas do man são instaladas com o PostgreSQL, mas sinta-se a vontade para navegar, procurar e comemtar na nossa extensa, documentação online interativa.
+A documentação HTML e as páginas do man são instaladas com o PostgreSQL, mas sinta-se a vontade para navegar, procurar e comemtar na nossa extensa, documentação online interativa.
diff --git a/templates/pages/about/press/presskit90/de.html b/templates/pages/about/press/presskit90/de.html index b5b8a1a6..2ea54db2 100644 --- a/templates/pages/about/press/presskit90/de.html +++ b/templates/pages/about/press/presskit90/de.html @@ -100,7 +100,7 @@ Mehr Informationen über diese Features Informationen über diese und andere Features sind unter folgenden Adressen zu finden:
@@ -119,7 +119,7 @@ Informationen über diese und andere Features sind unter folgenden AdressenZusammen mit PostgreSQL werden eine HTML-Dokumentation und Man Pages installiert. Daneben gibt es natürlich noch die durchsuchbare, detaillierte, interaktive Onlinedokumentation mit Kommentaren.
+Zusammen mit PostgreSQL werden eine HTML-Dokumentation und Man Pages installiert. Daneben gibt es natürlich noch die durchsuchbare, detaillierte, interaktive Onlinedokumentation mit Kommentaren.
diff --git a/templates/pages/about/press/presskit90/el.html b/templates/pages/about/press/presskit90/el.html index 4f9b62af..2c7530bc 100644 --- a/templates/pages/about/press/presskit90/el.html +++ b/templates/pages/about/press/presskit90/el.html @@ -136,7 +136,7 @@ Stored Procedures Για επεξηγήσεις αυτών των χαρακτηριστικών , παρακαλούμε ανατρέξτε στης παρακάτω αναφορές.
@@ -163,7 +163,7 @@ Stored Procedures-Τεκμηρίωση HTML και σελίδες man εγκαθίστανται μαζί με την PostgreSQL, αλλά μπορείτε να περιηγηθείτε, να αναζητήσετε και να σχολιάσετε την εκτεταμένη, διαδραστική online τεκμηρίωση. +Τεκμηρίωση HTML και σελίδες man εγκαθίστανται μαζί με την PostgreSQL, αλλά μπορείτε να περιηγηθείτε, να αναζητήσετε και να σχολιάσετε την εκτεταμένη, διαδραστική online τεκμηρίωση.
HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation.
+HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation.
@@ -155,8 +155,8 @@ Raymond O'Donnell
+353 (0)87 2241365
Australia
-Charles Duffy
-au@postgresql.org
+Charles Duffy
+au@postgresql.org
(02) 9452 9163
La documentación en formatos HTML y man se instala junto con PostgreSQL, pero también está disponible una copia en línea para navegar, buscar y comentar en nuestro sitio interactivo de documentación en línea.
+La documentación en formatos HTML y man se instala junto con PostgreSQL, pero también está disponible una copia en línea para navegar, buscar y comentar en nuestro sitio interactivo de documentación en línea.
diff --git a/templates/pages/about/press/presskit90/fr.html b/templates/pages/about/press/presskit90/fr.html index c81cdaa5..ebf5761d 100644 --- a/templates/pages/about/press/presskit90/fr.html +++ b/templates/pages/about/press/presskit90/fr.html @@ -105,7 +105,7 @@ Informations complémentaires concernant les fonctionnalités Pour les explications concernant ces fonctionnalités, ou d'autres, se référer aux ressources suivantes :
La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, requêtée et commentée.
+La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, requêtée et commentée.
diff --git a/templates/pages/about/press/presskit90/it.html b/templates/pages/about/press/presskit90/it.html index 1c95d783..39895204 100644 --- a/templates/pages/about/press/presskit90/it.html +++ b/templates/pages/about/press/presskit90/it.html @@ -101,7 +101,7 @@ Maggiori informazioni su queste caratteristiche Per maggiori informazioni su queste caratteristiche potete consultare le seguenti pagine:
@@ -120,7 +120,7 @@ Per maggiori informazioni su queste caratteristiche potete consultare le seguentLa documentazione in HTML e le pagine man sono installate assieme a PostgreSQL, ma sentitevi liberi di navigare, cercare e commentare all'interno della nostra vasta documentazione online.
+La documentazione in HTML e le pagine man sono installate assieme a PostgreSQL, ma sentitevi liberi di navigare, cercare e commentare all'interno della nostra vasta documentazione online.
diff --git a/templates/pages/about/press/presskit90/ja.html b/templates/pages/about/press/presskit90/ja.html index 7769c7d0..9d559a5d 100644 --- a/templates/pages/about/press/presskit90/ja.html +++ b/templates/pages/about/press/presskit90/ja.html @@ -106,7 +106,7 @@ PostgreSQLは数千のユーザと貢献者、多くの企業や組織による 上記機能などの詳細については以下のリソースを参照してください。
@@ -125,7 +125,7 @@ PostgreSQLは数千のユーザと貢献者、多くの企業や組織によるHTML文書およびマニュアルページはPostgreSQLでインストールされますが、拡張可能かつ対話式のオンライン文書で閲覧、検索、コメント記入を自由に行ってください。
+HTML文書およびマニュアルページはPostgreSQLでインストールされますが、拡張可能かつ対話式のオンライン文書で閲覧、検索、コメント記入を自由に行ってください。
diff --git a/templates/pages/about/press/presskit90/nl.html b/templates/pages/about/press/presskit90/nl.html index c5fa05d9..c2aa08b4 100644 --- a/templates/pages/about/press/presskit90/nl.html +++ b/templates/pages/about/press/presskit90/nl.html @@ -100,7 +100,7 @@ Meer Informatie over deze Features Voor uitleg van deze en andere features, zie de volgende links (meest in het Engels):
@@ -119,7 +119,7 @@ Voor uitleg van deze en andere features, zie de volgende links (meest in het EngHTML documentatie en man pages worden met PostgreSQL mee-geinstalleerd, maar U kunt ook lezen, doorzoeken, en commentaar achterlaten op de interactieve online documentation (Engels).
+HTML documentatie en man pages worden met PostgreSQL mee-geinstalleerd, maar U kunt ook lezen, doorzoeken, en commentaar achterlaten op de interactieve online documentation (Engels).
diff --git a/templates/pages/about/press/presskit90/pt.html b/templates/pages/about/press/presskit90/pt.html index 5e96d096..275e507e 100644 --- a/templates/pages/about/press/presskit90/pt.html +++ b/templates/pages/about/press/presskit90/pt.html @@ -101,7 +101,7 @@ Mais informação acerca destas funcionalidades Para uma explicação detalhada destas funcionalidades e outras, por favor consulte os seguintes recursos online:
@@ -120,7 +120,7 @@ Para uma explicação detalhada destas funcionalidades e outras, por favor consuA documentação HTML e as man pages são instaladas com o PostgreSQL, mas sinta-se livre para navegar, pesquisar e comentar a nossa extensa e interactiva documentação online.
+A documentação HTML e as man pages são instaladas com o PostgreSQL, mas sinta-se livre para navegar, pesquisar e comentar a nossa extensa e interactiva documentação online.
diff --git a/templates/pages/about/press/presskit90/ro.html b/templates/pages/about/press/presskit90/ro.html index e0ddde57..a3a982c0 100644 --- a/templates/pages/about/press/presskit90/ro.html +++ b/templates/pages/about/press/presskit90/ro.html @@ -100,7 +100,7 @@ Performanță și Facilități Avansate Pentru detalii despre facilităţile menţionate în secţiunea anterioară vă invităm să consultaţi următoarele surse de informaţii:
@@ -119,7 +119,7 @@ Pentru detalii despre facilităţile menţionate în secţiunea anterioară văDocumentația în format HTML si paginile man sunt instalate odată cu PostgreSQL. În plus, documentația este disponibilă și online, cu posibilități de căutare și de adăugare de comentarii.
+Documentația în format HTML si paginile man sunt instalate odată cu PostgreSQL. În plus, documentația este disponibilă și online, cu posibilități de căutare și de adăugare de comentarii.
diff --git a/templates/pages/about/press/presskit90/ru.html b/templates/pages/about/press/presskit90/ru.html index 34a0e754..5beac9ab 100644 --- a/templates/pages/about/press/presskit90/ru.html +++ b/templates/pages/about/press/presskit90/ru.html @@ -100,7 +100,7 @@ PostgreSQL 9.0 включает более десятка других круп Более подробную информацию о вышеуказанных и остальных изменениях можно найти по следующим ссылкам:
Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию.
+Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию.
diff --git a/templates/pages/about/press/presskit90/tr.html b/templates/pages/about/press/presskit90/tr.html index 0fb85acf..6c276793 100644 --- a/templates/pages/about/press/presskit90/tr.html +++ b/templates/pages/about/press/presskit90/tr.html @@ -97,7 +97,7 @@ Başarım ve Gelişmiş Özellikler Bu özellikler hakkında daha fazla bilgi almak için aşağıdaki kaynaklara gözatabilirsiniz:
@@ -117,7 +117,7 @@ Bu özellikler hakkında daha fazla bilgi almak için aşağıdaki kaynaklara g-HTML belgeler ve yardım sayfaları PostgreSQL ile kurulurlar, ancak isterseniz etkileşimli çevrimiçi belgelerimizde arama yapabilir, gezinebilir ve yorum yapabilirsiniz. +HTML belgeler ve yardım sayfaları PostgreSQL ile kurulurlar, ancak isterseniz etkileşimli çevrimiçi belgelerimizde arama yapabilir, gezinebilir ve yorum yapabilirsiniz.
HTML文档和man手册页会和PostgreSQL同步安装,用户也可以免费地通过在线方式对在线文档进行浏览、搜索、回复意见。
+HTML文档和man手册页会和PostgreSQL同步安装,用户也可以免费地通过在线方式对在线文档进行浏览、搜索、回复意见。
diff --git a/templates/pages/about/press/presskit91/br.html b/templates/pages/about/press/presskit91/br.html index 36d64e4c..2391157c 100644 --- a/templates/pages/about/press/presskit91/br.html +++ b/templates/pages/about/press/presskit91/br.html @@ -53,7 +53,7 @@ A extensibilidade do PostgreSQL possibilita aos usuários adicionar novos recurs
No vigésimo quinto ano de desenvolvimento do PostgreSQL, nossa comunidade continua avançando a tecnologia de bancos de dados a cada versão anual. Baixe a versão 9.1 agora e experiencie o sistema de bancos de dados de código aberto mais avançado do mundo.
@@ -93,7 +93,7 @@ A extensibilidade do PostgreSQL possibilita aos usuários adicionar novos recurs Para explicações desses recursos e de outros, por favor veja as seguintes fontes:
-Documentação HTML e man pages são instaladas com o PostgreSQL, mas fique à vontade para navegar, pesquisar e comentar em nossa extensa e interativa documentação online. +Documentação HTML e man pages são instaladas com o PostgreSQL, mas fique à vontade para navegar, pesquisar e comentar em nossa extensa e interativa documentação online.
-Alle der oben genannten Features und vieles mehr, sind auf der Was ist neu In 9.1 Wiki-Seite, sowie in den Release Notes. +Alle der oben genannten Features und vieles mehr, sind auf der Was ist neu In 9.1 Wiki-Seite, sowie in den Release Notes.
Im 25. Jahr PostgreSQL Datenbank-Entwicklung setzt unsere Community die Entwicklung der Datenbank Technologie mit jedem jährlichen Release fort. Laden Sie die Version 9.1 jetzt herunter und erleben Sie das modernste Open-Source-Datenbank-System der Welt.
@@ -93,7 +93,7 @@ PostgreSQLs Erweiterbarkeit ermöglicht es Benutzern, neue Funktionen zu einer l Für weitere Informationen zu dieser und anderen Features finden Sie hier weitere Ressourcen:
@@ -121,7 +121,7 @@ Es gibt 23 Releases von POSTGRES und PostgreSQL, das beinhaltet 9.1. PostgreSQL-HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber es steht jederzeit frei, die umfangreiche und interaktive Online Dokumentation zu besuchen und zu durchsuchen. +HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber es steht jederzeit frei, die umfangreiche und interaktive Online Dokumentation zu besuchen und zu durchsuchen.
Στο 25ο έτος ανάπτυξης της PostgreSQL, η κοινότητά μας συνεχίζει να προοδεύει τεχνολογίκα σε κάθε νεα έκδοση σε ετήσια βάση. Κατεβάστε έκδοση 9.1 τώρα και αποκτήστε την εμπειρία χρήσης του πιο προηγμένου συστήματος ανοικτού κώδικα βάσεων δεδομένων στον κόσμο. @@ -196,7 +196,7 @@ cascading, σχετιζόμενων εγγραφών σε μία μόνο εντ
Τεκμηρίωση HTML και σελίδες man εγκαθίστανται μαζί με την PostgreSQL, αλλά μπορείτε να περιηγηθείτε, να αναζητήσετε και να σχολιάσετε την εκτεταμένη, διαδραστική -online τεκμηρίωση. +online τεκμηρίωση.
diff --git a/templates/pages/about/press/presskit91/en.html b/templates/pages/about/press/presskit91/en.html index 83ca6632..93f1cdff 100644 --- a/templates/pages/about/press/presskit91/en.html +++ b/templates/pages/about/press/presskit91/en.html @@ -9,7 +9,7 @@
Text of Original Release
Details of Features
- 25 Years of Database Innovation
+ 25 Years of Database Innovation
Where to Download
Documentation
License
@@ -20,7 +20,7 @@
-12 SEPTEMBER 2011: The PostgreSQL Global Development Group announces the release of PostgreSQL 9.1. This latest version of the leading open source database offers innovative technology, unmatched extensibility, and new features such as synchronous replication, K-Nearest Neighbor indexing, and foreign data wrappers. +12 SEPTEMBER 2011: The PostgreSQL Global Development Group announces the release of PostgreSQL 9.1. This latest version of the leading open source database offers innovative technology, unmatched extensibility, and new features such as synchronous replication, K-Nearest Neighbor indexing, and foreign data wrappers.
"PostgreSQL 9.1 provides some of the most advanced enterprise capabilities of any open source database, and is backed by a vibrant and innovative community with proven customer success. PostgreSQL is well positioned for building and running applications in the cloud," said Charles Fan, Sr. VP R&D, VMware.
@@ -52,7 +52,7 @@ PostgreSQL's extensibility enables users to add new functionality to a running p-All of the above features, and more, are detailed on the What's New In 9.1 wiki page, as well as our release notes. +All of the above features, and more, are detailed on the What's New In 9.1 wiki page, as well as our release notes.
In PostgreSQL's 25th year of database development, our community continues to advance database technology with every annual release. Download version 9.1 now and experience the most advanced open source database system in the world.
@@ -83,7 +83,7 @@ Our community is innovating, delivering cutting-edge features which are new to t
-PostgreSQL's extensibility enables users to add new functionality to a running production database, and use them for tasks no other database system can perform. Version 9.1 adds critical new extensibility features, including: +PostgreSQL's extensibility enables users to add new functionality to a running production database, and use them for tasks no other database system can perform. Version 9.1 adds critical new extensibility features, including:
-HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation. +HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation.
Con 25 años de desarrollo en la bases de datos PostgreSQL, nuestra comunidad continúa a la cabeza de la tecnología de bases de datos con cada lanzamiento anual. Descarge la versión 9.1 ahora y experimente con el sistema de bases de datos de código abierto más avanzado del mundo.
@@ -93,7 +93,7 @@ La extensibilidad de PostgreSQL permite a los usuarios añadir nuevas func Para explicaciones de estás características y otras, por favor consulte las siguientes fuentes:
-Documentación HTML y "man pages" son instalados con PostgreSQL; aún así, sientase libre de leer, buscar y comentar en nuestra extensa e interactiva documentación en línea. +Documentación HTML y "man pages" son instalados con PostgreSQL; aún así, sientase libre de leer, buscar y comentar en nuestra extensa e interactiva documentación en línea.
Texte original
Détail des fonctionnalités
- 25 ans d'innovation en bases de données
+ 25 ans d'innovation en bases de données
Où télécharger
Documentation
Licence
@@ -59,7 +59,7 @@ L'extensibilité de PostgreSQL permet aux utilisateurs d'ajouter de nouvelles fo
-Toutes les fonctionnalités précédentes, et bien plus encore, sont détaillées dans la page du Wiki « What's New In PostgreSQL 9.1 », dont une version français est disponible : « Quoi de neuf dans PostgreSQL 9.1 ». Les notes de version détaillent également toutes ces fonctionnalités. +Toutes les fonctionnalités précédentes, et bien plus encore, sont détaillées dans la page du Wiki « What's New In PostgreSQL 9.1 », dont une version français est disponible : « Quoi de neuf dans PostgreSQL 9.1 ». Les notes de version détaillent également toutes ces fonctionnalités.
Après 25 ans de développement du moteur, notre communauté continue de faire évoluer la technologie du moteur à chaque nouvelle version annuelle. Téléchargez la version 9.1 et vivez l'expérience du système de gestion de bases de données OpenSource de référence.
@@ -94,7 +94,7 @@ Notre communauté innove avec des fonctionnalités de pointe, nouvelles dans l'i
-L'extensibilité de PostgreSQL permet aux utilisateurs d'ajouter de nouvelles fonctionnalités à une base en production, et de les utiliser pour réaliser des tâches qu'aucun autre moteur ne peut réaliser. La version 9.1 ajoute de nouvelles fonctionnalités d'extension, dont : +L'extensibilité de PostgreSQL permet aux utilisateurs d'ajouter de nouvelles fonctionnalités à une base en production, et de les utiliser pour réaliser des tâches qu'aucun autre moteur ne peut réaliser. La version 9.1 ajoute de nouvelles fonctionnalités d'extension, dont :
-Le projet POSTGRES a été inauguré à l'Université de Californie, Berkeley, en juin 1986 avec la publication du descriptif original de POSTGRES par Lawrence A. Rowe et Michael R. Stonebraker. Dans les 25 années qui ont suivi, POSTGRES est devenu un projet libre, a été converti au SQL, a changé de nom pour devenir PostgreSQL, et est devenu un des moteurs relationnels de références. Aujourd'hui notre communauté rivalise avec quelques-unes des plus grosses compagnies mondiales d'édition de logiciels pour fournir de nouvelles fonctionnalités de bases de données et améliorer les performances. +Le projet POSTGRES a été inauguré à l'Université de Californie, Berkeley, en juin 1986 avec la publication du descriptif original de POSTGRES par Lawrence A. Rowe et Michael R. Stonebraker. Dans les 25 années qui ont suivi, POSTGRES est devenu un projet libre, a été converti au SQL, a changé de nom pour devenir PostgreSQL, et est devenu un des moteurs relationnels de références. Aujourd'hui notre communauté rivalise avec quelques-unes des plus grosses compagnies mondiales d'édition de logiciels pour fournir de nouvelles fonctionnalités de bases de données et améliorer les performances.
Il y a eu 23 versions de POSTGRES et PostgreSQL avec la version 9.1. PostgreSQL est la seule base majeure à proposer des versions complètes et cohérentes chaque année.
@@ -131,7 +131,7 @@ Il y a eu 23 versions de POSTGRES et PostgreSQL avec la version 9.1. PostgreSQLLa documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, requêtée et commentée.
+La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, requêtée et commentée.
diff --git a/templates/pages/about/press/presskit91/it.html b/templates/pages/about/press/presskit91/it.html index 5abda962..1b99856f 100644 --- a/templates/pages/about/press/presskit91/it.html +++ b/templates/pages/about/press/presskit91/it.html @@ -53,7 +53,7 @@ L'estensibilità di PostgreSQL consente agli utenti di aggiungere nuove funziona
-Tutte le funzionalità descritte sopra e molte altre sono descritte in dettaglio sia nella pagina del wiki di PostgreSQL intitolata "What's New In 9.1" che nelle note di rilascio. +Tutte le funzionalità descritte sopra e molte altre sono descritte in dettaglio sia nella pagina del wiki di PostgreSQL intitolata "What's New In 9.1" che nelle note di rilascio.
Nel 25° anniversario dello sviluppo del database PostgreSQL, la nostra comunità continua a migliorare la tecnologia dei database ad ogni rilascio annuale. Scarica subito la versione 9.1 e prova il più avanzato sistema di database open source al mondo.
@@ -98,7 +98,7 @@ L'estensibilità è stata da sempre una delle caratteristiche peculiari di Postg Per maggiori spiegazioni su queste e altre funzionalità, siete pregati di consultare le seguenti risorse (in lingua inglese):
@@ -127,7 +127,7 @@ Ci sono state ben 23 release di POSTGRES e PostgreSQL, compresa la 9.1. PostgreS-Documentazione in formato HTML e manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, ricercare e lasciare commenti sulla documentazione online interattiva. +Documentazione in formato HTML e manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, ricercare e lasciare commenti sulla documentazione online interattiva.
PostgreSQLの25年に渡るデータベース開発において、私たちのコミュニティは毎年のリリースを @@ -177,7 +177,7 @@ PostgreSQLはこれまでも常に拡張することができましたが、よ 上記の機能やその他の機能については以下のリソースを参照ください。
@@ -211,7 +211,7 @@ POSTGRESとPostgreSQLはバージョン9.1を含め23回リリースされましHTML文書およびマニュアルページはPostgreSQLでインストールされますが、拡張可能かつ対話式の -オンライン文書で閲覧、検索、コメ +オンライン文書で閲覧、検索、コメ ント記入を自由に行ってください。
diff --git a/templates/pages/about/press/presskit91/ro.html b/templates/pages/about/press/presskit91/ro.html index 33b6af84..95c9b651 100644 --- a/templates/pages/about/press/presskit91/ro.html +++ b/templates/pages/about/press/presskit91/ro.html @@ -52,7 +52,7 @@ Extensibilitatea PostgreSQL-ului constă în posibilitatea de a adăuga noi funcÎn cei 25 ani de existenţă a PostgreSQL, fiecare nouă versiune a introdus tehnologii noi. Descărcaţi PostgreSQL 9.1 şi faceţi cunoştinţă cu cel mai avansat sistem de baze de date open source din lume.
@@ -92,7 +92,7 @@ Extensibilitatea PostgreSQL-ului constă în posibilitatea de a adăuga noi func Pentru mai multe informaţii despre funcţionalităţile prezentate vă invităm să consultaţi următoarele :
@@ -120,7 +120,7 @@ Au existat 23 de versiuni ale POSTGRES şi PostgreSQL, inclusiv 9.1. PostgreSQL-Documentaţia în format HTML şi paginile man sînt instalate împreună cu PostgreSQL. În plus poate fi consultată documentaţia online , care oferă posibilitatea de căutare şi de scriere de comentarii . +Documentaţia în format HTML şi paginile man sînt instalate împreună cu PostgreSQL. În plus poate fi consultată documentaţia online , care oferă posibilitatea de căutare şi de scriere de comentarii .
-Подробное описание всех вышеперечисленных функций, а также функций, не упомянутых в этом пресс-релизе, вы найдете на странице What's New In 9.1 или в информации о релизе. +Подробное описание всех вышеперечисленных функций, а также функций, не упомянутых в этом пресс-релизе, вы найдете на странице What's New In 9.1 или в информации о релизе.
PostgreSQL разрабатывается на протяжении 25 лет, и каждый год появляются новые возможности и улучшаются старые. Загрузите версию 9.1 сейчас и получите самую продвинутую СУБД с открытым кодом в мире.
@@ -93,7 +93,7 @@ PostgreSQL разрабатывается на протяжении 25 лет, Более подробную информацию о вышеуказанных и остальных изменениях можно найти по следующим ссылкам:
-Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию. +Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию.
在PostgreSQL25年的开发过程中,我们社区将持续致力于开发新的数据库技术,并每年发布一个新的大版本。现在可以下载9.1版本并体验世界上最为强大的开源数据库系统。 @@ -96,7 +96,7 @@ PostgreSQL的可扩展性允许用户增加新的功能来运行生产环境的 对上述特性或其他特性的详细解释,也可以参见下列文档:
@@ -129,7 +129,7 @@ POSTGRES项目起源于加利福利亚的伯克利大学,最早源于1986年6HTML文档和man手册页会和PostgreSQL同步安装,用户也可以免费地通过在线方式对在线文档进行浏览、搜索、回复意见。
+HTML文档和man手册页会和PostgreSQL同步安装,用户也可以免费地通过在线方式对在线文档进行浏览、搜索、回复意见。
-Documentació HTML i "pàgines man" s’instal·len amb PostgreSQL. A més a més, poden buscar i comentar en la nostra extensa i interactiva documentació en línia . +Documentació HTML i "pàgines man" s’instal·len amb PostgreSQL. A més a més, poden buscar i comentar en la nostra extensa i interactiva documentació en línia .
-HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber es steht jederzeit frei, die umfangreiche und interaktive Online Dokumentation zu besuchen und zu durchsuchen. +HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber es steht jederzeit frei, die umfangreiche und interaktive Online Dokumentation zu besuchen und zu durchsuchen.
Τεκμηρίωση HTML και σελίδες man εγκαθίστανται μαζί με την PostgreSQL, αλλά μπορείτε να περιηγηθείτε, να αναζητήσετε και να σχολιάσετε την εκτεταμένη, διαδραστική -online τεκμηρίωση. +online τεκμηρίωση.
diff --git a/templates/pages/about/press/presskit92/en.html b/templates/pages/about/press/presskit92/en.html index 857461da..6ef54e06 100644 --- a/templates/pages/about/press/presskit92/en.html +++ b/templates/pages/about/press/presskit92/en.html @@ -63,8 +63,8 @@ With PostgreSQL 9.2, query results can be returned as JSON data types. Combined For explanations of the above features and others, please see the following resources:-HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation. +HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation.
-La documentación en formatos HTML y man se instala junto con PostgreSQL; aún así, siéntase libre de leer, buscar y comentar en nuestra extensa documentación interactiva en línea. +La documentación en formatos HTML y man se instala junto con PostgreSQL; aún así, siéntase libre de leer, buscar y comentar en nuestra extensa documentación interactiva en línea.
-10 SEPTEMBRE 2012 : +10 SEPTEMBRE 2012 : Le PostgreSQL Global Development Group annonce la sortie de PostgreSQL 9.2, dernière version en date du système de gestion de bases de données libre de référence. Depuis l'annonce de la version bêta en mai, les développeurs et les intégrateurs louent les avancées en terme de performance, de flexibilité et d'extensibilité. Une adoption massive de cette version est attendue. @@ -29,8 +29,8 @@ Une adoption massive de cette version est attendue.
-Grâce aux améliorations apportées à l'extensibilité verticale, PostgreSQL exploite mieux les ressources matérielles de serveurs plus puissants. -Les avancées dans la gestion des verrous, l'efficacité d'écriture, les accès aux données par les seuls index, et autres opérations de bas niveau, permettent à PostgreSQL de gérer des volumes conséquents. +Grâce aux améliorations apportées à l'extensibilité verticale, PostgreSQL exploite mieux les ressources matérielles de serveurs plus puissants. +Les avancées dans la gestion des verrous, l'efficacité d'écriture, les accès aux données par les seuls index, et autres opérations de bas niveau, permettent à PostgreSQL de gérer des volumes conséquents. En chiffres, cela donne :
La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée.
+La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée.
diff --git a/templates/pages/about/press/presskit92/it.html b/templates/pages/about/press/presskit92/it.html index 33568256..a07ea0aa 100644 --- a/templates/pages/about/press/presskit92/it.html +++ b/templates/pages/about/press/presskit92/it.html @@ -60,8 +60,8 @@ Con PostgreSQL 9.2, i risultati delle query possono essere restituiti come dati Per spiegazioni sulle funzionalità elencate sopra e per ulteriori informazioni, si ramanda alla consultazione delle seguenti risorse:
-Documentazione in formato HTML e manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, ricercare e lasciare commenti sulla documentazione online interattiva. +Documentazione in formato HTML e manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, ricercare e lasciare commenti sulla documentazione online interattiva.
-HTML文書およびマニュアルページはPostgreSQLでインストールされますが、拡張可能かつ対話式のオンライン文書で閲覧、検索、コメント記入を自由に行ってください。 +HTML文書およびマニュアルページはPostgreSQLでインストールされますが、拡張可能かつ対話式のオンライン文書で閲覧、検索、コメント記入を自由に行ってください。
-HTML documentatie en man pages worden mee-geinstalleerd met PostgreSQL, maar je kunt ook gebruikmaken van onze uitgebreide, interactieve online documentatie. +HTML documentatie en man pages worden mee-geinstalleerd met PostgreSQL, maar je kunt ook gebruikmaken van onze uitgebreide, interactieve online documentatie.
-Dokumentacja w formacie HTML i strony manuali są instalowane z PostgreSQL, dodatkowo można je oglądać, przeszukiwać i komentować na stronie dokumentacji online. +Dokumentacja w formacie HTML i strony manuali są instalowane z PostgreSQL, dodatkowo można je oglądać, przeszukiwać i komentować na stronie dokumentacji online.
-Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar, pesquisar e comentar na nossa vasta documentação online interativa. +Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar, pesquisar e comentar na nossa vasta documentação online interativa.
-Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию. +Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию.
-Документація у форматі HTML і сторінки довідки встановлюються разом із PostgreSQL, але ви можете без будь-яких обмежень проглядати, користуватись пошуком і коментувати нашу детальну інтерактивну онлайн-документацію. +Документація у форматі HTML і сторінки довідки встановлюються разом із PostgreSQL, але ви можете без будь-яких обмежень проглядати, користуватись пошуком і коментувати нашу детальну інтерактивну онлайн-документацію.
-HTML 格式文档和 man 格式的文档随PostgreSQL一起安装,用户也可以免费地在网站上对在线文档进行浏览、搜索和反馈评论。 +HTML 格式文档和 man 格式的文档随PostgreSQL一起安装,用户也可以免费地在网站上对在线文档进行浏览、搜索和反馈评论。
-HTML Dokumentation und Manpages werden mit PostgreSQL installiert; des Weiteren ist auch eine umfangreiche und interaktive online Dokumentation verfügbar. +HTML Dokumentation und Manpages werden mit PostgreSQL installiert; des Weiteren ist auch eine umfangreiche und interaktive online Dokumentation verfügbar.
-HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation. +HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation.
La documentación HTML y las páginas de manual se instalan con PostgreSQL, pero siéntase libre de navegar, -buscar y hacer comentarios sobre nuestra extensa e interactiva documentación en línea. +buscar y hacer comentarios sobre nuestra extensa e interactiva documentación en línea.
9 SEPTEMBRE 2013 : Le PostgreSQL Global Development Group annonce la publication de PostgreSQL 9.3, la dernière version du système de gestion de bases de données relationnelles OpenSource le plus évolué. +
9 SEPTEMBRE 2013 : Le PostgreSQL Global Development Group annonce la publication de PostgreSQL 9.3, la dernière version du système de gestion de bases de données relationnelles OpenSource le plus évolué. Cette version étend la fiabilité, la disponibilité et la capacité de PostgreSQL à s'interfacer avec d'autres bases de données. Les utilisateurs rapportent déjà des développements rendus possibles par cette version. @@ -29,12 +29,12 @@ de PostgreSQL. Je me demande réellement comment je pouvais mener à bien mes pr
Accès en écriture aux données externes
-La version 9.3 de PostgreSQL permet l'écriture au travers des gestionnaires de +La version 9.3 de PostgreSQL permet l'écriture au travers des gestionnaires de données externes (« Foreign Data Wrappers », en anglais). Cela permet les échanges -bi-directionnels entre plusieurs systèmes. Les environnements informatiques -d'aujourd'hui intègrent plusieurs bases de données et des sources de données +bi-directionnels entre plusieurs systèmes. Les environnements informatiques +d'aujourd'hui intègrent plusieurs bases de données et des sources de données semi-structurées. PostgreSQL permet de les intégrer dans un ensemble cohérent. -L'équipe a également développé postgres_fdw, pilote hautement performant de +L'équipe a également développé postgres_fdw, pilote hautement performant de fédération PostgreSQL-PostgreSQL en lecture/écriture.
« Les gestionnaires de données externes modifiables nous permettent de connecter @@ -54,19 +54,19 @@ Recherche et Développement chez Gandi.net. « Je suis particulièreme impatient d'en apprendre plus sur le mécanisme de bascule rapide annoncé en 9.3. »
-Cette nouvelle version inclut de nouvelles fonctionnalités qui étendent et +Cette nouvelle version inclut de nouvelles fonctionnalités qui étendent et améliorent encore la fiabilité et la disponibilité de PostgreSQL :
Fonctionnalités orientées développeurs
-Comme toute nouvelle version, PostgreSQL 9.3 propose de nombreuses fonctionnalités +Comme toute nouvelle version, PostgreSQL 9.3 propose de nombreuses fonctionnalités facilitant le travail avec PostgreSQL. Cela le rend plus flexible et plus agréable pour les développeurs, les administrateurs et les architectes. Parmi ces fonctionnalités, citons : @@ -78,38 +78,38 @@ volumineuses ;
De plus, avec PostgreSQL 9.3, la possibilité de définir ses propres processus -autonomes intégrés (« Background Workers », en anglais) permet aux développeurs -d'écrire des gestionnaires de tâches, des gestionnaires de requêtes, des +autonomes intégrés (« Background Workers », en anglais) permet aux développeurs +d'écrire des gestionnaires de tâches, des gestionnaires de requêtes, des traitements parallèles, des outils de « queueing » ou toute autre application permettant d'utiliser PostgreSQL comme séquenceur de tâches. -Un exemple concret est Mongres, un processus autonome intégré qui accepte les +Un exemple concret est Mongres, un processus autonome intégré qui accepte les requêtes MongoDB, les interprète et les transmet à PostgreSQL.
À propos de PostgreSQL
-PostgreSQL est le système de gestion de bases de données libre de référence. Sa -communauté mondiale est composée de milliers d'utilisateurs et contributeurs, +PostgreSQL est le système de gestion de bases de données libre de référence. Sa +communauté mondiale est composée de milliers d'utilisateurs et contributeurs, et de plusieurs dizaines d'entreprises et institutions. Le projet PostgreSQL, démarré il y a 25 ans, à l'université de Californie, à Berkeley, a atteint aujourd’hui un rythme de développement sans pareil. L'ensemble des fonctionnalités proposées est mature et plus riche que ceux des systèmes commerciaux leaders sur les fonctionnalités avancées, les -extensions, la sécurité et la stabilité, offertes à un niveau que seul PostgreSQL +extensions, la sécurité et la stabilité, offertes à un niveau que seul PostgreSQL atteint. -Pour en savoir plus, et prendre part à la communauté, rendez-vous sur +Pour en savoir plus, et prendre part à la communauté, rendez-vous sur le site du projet.
-Pour des explications concernant les fonctionnalités décrites plus haut, +Pour des explications concernant les fonctionnalités décrites plus haut, et les autres, se référer aux ressources suivantes :
La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée.
+La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée.
diff --git a/templates/pages/about/press/presskit93/it.html b/templates/pages/about/press/presskit93/it.html index 6f6d9c2b..3c2b6640 100644 --- a/templates/pages/about/press/presskit93/it.html +++ b/templates/pages/about/press/presskit93/it.html @@ -107,8 +107,8 @@ per l'Italia, http://www.itpug.org. Per spiegazioni sulle funzionalità elencate sopra e per ulteriori informazioni, si ramanda alla consultazione delle seguenti risorse:
Documentazione in formato HTML e manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, -ricercare e lasciare commenti sulla documentazione online +ricercare e lasciare commenti sulla documentazione online interattiva.
diff --git a/templates/pages/about/press/presskit93/jp.html b/templates/pages/about/press/presskit93/jp.html index d6496a0d..301fa389 100644 --- a/templates/pages/about/press/presskit93/jp.html +++ b/templates/pages/about/press/presskit93/jp.html @@ -77,8 +77,8 @@ PostgreSQLの詳細についてはPostgreSQ 上記機能やその他に関する説明については、下記リソースを参照してください。-HTML文書およびマニュアルページはPostgreSQLでインストールされますが、拡張可能かつ対話式のオンライン文書で閲覧、検索、コメント記入を自由に行ってください。 +HTML文書およびマニュアルページはPostgreSQLでインストールされますが、拡張可能かつ対話式のオンライン文書で閲覧、検索、コメント記入を自由に行ってください。
-Dokumentacja (po angielsku) w formacie HTML i strony manuali są instalowane z PostgreSQL, dodatkowo można je oglądać, przeszukiwać i komentować na stronie dokumentacji online. +Dokumentacja (po angielsku) w formacie HTML i strony manuali są instalowane z PostgreSQL, dodatkowo można je oglądać, przeszukiwać i komentować na stronie dokumentacji online.
-Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar, pesquisar e comentar na nossa vasta documentação online interativa. +Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar, pesquisar e comentar na nossa vasta documentação online interativa.
-Релиз PostgreSQL включает в себя документацию в формате HTML и руководство пользователя, но вы также можете без каких-либо ограничений просматривать и комментировать нашу подробную интерактивную документацию в сети Интернет. +Релиз PostgreSQL включает в себя документацию в формате HTML и руководство пользователя, но вы также можете без каких-либо ограничений просматривать и комментировать нашу подробную интерактивную документацию в сети Интернет.
-Документація у форматі HTML і сторінки з інструкцією встановлюються разом із PostgreSQL, але ви можете без жодних обмежень проглядати, користуватися пошуком і коментувати нашу детальну, інтерактивну онлайн документацію. +Документація у форматі HTML і сторінки з інструкцією встановлюються разом із PostgreSQL, але ви можете без жодних обмежень проглядати, користуватися пошуком і коментувати нашу детальну, інтерактивну онлайн документацію.
-Документація у форматі HTML і сторінки з інструкцією встановлюються разом із PostgreSQL, але ви можете без жодних обмежень проглядати, користуватися пошуком і коментувати нашу детальну, інтерактивну онлайн документацію. +Документація у форматі HTML і сторінки з інструкцією встановлюються разом із PostgreSQL, але ви можете без жодних обмежень проглядати, користуватися пошуком і коментувати нашу детальну, інтерактивну онлайн документацію.
-HTML 格式文档和 man 格式的文档随PostgreSQL一起安装,用户也可以免费地在网站上对在线文档进行浏览、搜索和反馈评论。 +HTML 格式文档和 man 格式的文档随PostgreSQL一起安装,用户也可以免费地在网站上对在线文档进行浏览、搜索和反馈评论。
-HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber Sie können jederzeit die umfangreiche, interaktive Online Dokumentation nutzen, durchsuchen und kommentieren. +HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber Sie können jederzeit die umfangreiche, interaktive Online Dokumentation nutzen, durchsuchen und kommentieren.
-HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation. +HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation.
-La documentación en formato HTML y los manuales en formato man se instalan con PostgreSQL, pero siéntase libre de explorar, buscar y comentar en nuestra extensa documentación en línea interactiva. +La documentación en formato HTML y los manuales en formato man se instalan con PostgreSQL, pero siéntase libre de explorar, buscar y comentar en nuestra extensa documentación en línea interactiva.
-La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée librement. +La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée librement.
-Dokumentasi HTML dan manual diinstalasi bersamaan dengan PostgreSQL, namun silakan menelusuri secara bebas, mencari, dan berkomentar pada dokumentasi online yang luas dan interaktif kami. +Dokumentasi HTML dan manual diinstalasi bersamaan dengan PostgreSQL, namun silakan menelusuri secara bebas, mencari, dan berkomentar pada dokumentasi online yang luas dan interaktif kami.
Documentazione in formato HTML e manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, -ricercare e lasciare commenti sulla documentazione online +ricercare e lasciare commenti sulla documentazione online interattiva.
diff --git a/templates/pages/about/press/presskit94/jp.html b/templates/pages/about/press/presskit94/jp.html index 025209b1..e9180ad7 100644 --- a/templates/pages/about/press/presskit94/jp.html +++ b/templates/pages/about/press/presskit94/jp.html @@ -73,8 +73,8 @@ PostgreSQLを使えば、彼らが好むスキーマレスのデータフォー 上記機能やその他に関する説明については、下記リソースを参照してください。-HTML文書およびマニュアルページはPostgreSQLでインストールされますが、拡張可能かつ対話式のオンライン文書で閲覧、検索、コメント記入を自由に行ってください。 +HTML文書およびマニュアルページはPostgreSQLでインストールされますが、拡張可能かつ対話式のオンライン文書で閲覧、検索、コメント記入を自由に行ってください。
-Dokumentacja (po angielsku) w formacie HTML i strony manuali są instalowane z PostgreSQL, dodatkowo można je oglądać, przeszukiwać i komentować na stronie dokumentacji online. +Dokumentacja (po angielsku) w formacie HTML i strony manuali są instalowane z PostgreSQL, dodatkowo można je oglądać, przeszukiwać i komentować na stronie dokumentacji online.
-Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar, pesquisar e comentar na nossa vasta documentação online interativa. +Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar, pesquisar e comentar na nossa vasta documentação online interativa.
-Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию. +Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию.
UPSERT
-A most-requested feature by application developers for several years, "UPSERT" is shorthand for "INSERT, ON CONFLICT UPDATE", allowing new and updated rows to be treated the same. UPSERT simplifies web and mobile application development by enabling the database to handle conflicts between concurrent data changes. This feature also removes the last significant barrier to migrating legacy MySQL applications to PostgreSQL. +A most-requested feature by application developers for several years, "UPSERT" is shorthand for "INSERT, ON CONFLICT UPDATE", allowing new and updated rows to be treated the same. UPSERT simplifies web and mobile application development by enabling the database to handle conflicts between concurrent data changes. This feature also removes the last significant barrier to migrating legacy MySQL applications to PostgreSQL.
Developed over the last two years by Heroku programmer Peter Geoghegan, PostgreSQL's implementation of UPSERT is significantly more flexible and powerful than those offered by other relational databases. The new ON CONFLICT clause permits ignoring the new data, or updating different columns or relations in ways which will support complex ETL (Extract, Transform, Load) toolchains for bulk data loading. And, like all of PostgreSQL, it is designed to be absolutely concurrency-safe and to integrate with all other PostgreSQL features, including Logical Replication.
@@ -62,8 +62,8 @@ PostgreSQL 9.5 includes multiple new features for bigger databases, and for inte For explanations of the above features and others, please see the following resources:
-HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation. +HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation.
UPSERT
-UPSERT, raccourci de « INSERT, ON CONFLICT UPDATE », est une fonctionnalité réclamée depuis longtemps par les développeurs d'applications. +UPSERT, raccourci de « INSERT, ON CONFLICT UPDATE », est une fonctionnalité réclamée depuis longtemps par les développeurs d'applications. Elle permet de traiter de la même façon l'ajout ou l'actualisation de lignes. UPSERT simplifie le développement des applications web et mobile en permettant de laisser la base gérer les conflits entre modifications concurrentes des données. -Cette fonctionnalité supprime également la dernière barrière à la migration d'applications MySQL historiques vers PostgreSQL. +Cette fonctionnalité supprime également la dernière barrière à la migration d'applications MySQL historiques vers PostgreSQL.
-Développée sur les deux dernières années par Peter Geoghegan, programmeur au sein de la société Heroku, l'implantation de UPSERT au sein de PostgreSQL est nettement plus souple et puissante que celle de la plupart des autres SGBDR. -La nouvelle clause ON CONFLICT permet d'ignorer la nouvelle donnée, ou d'actualiser différentes colonnes ou relations, de façon à supporter les chaînes d'ETL (Extract, Transform, LOAD) les plus complexes. +Développée sur les deux dernières années par Peter Geoghegan, programmeur au sein de la société Heroku, l'implantation de UPSERT au sein de PostgreSQL est nettement plus souple et puissante que celle de la plupart des autres SGBDR. +La nouvelle clause ON CONFLICT permet d'ignorer la nouvelle donnée, ou d'actualiser différentes colonnes ou relations, de façon à supporter les chaînes d'ETL (Extract, Transform, LOAD) les plus complexes. Et, à l'instar de PostgreSQL, cette fonctionnalité a été conçue pour être totalement concurrentielle, et s'intégrer avec les autres fonctionnalités de PostgreSQL, dont la réplication logique.
Row Level Security @@ -47,7 +47,7 @@ PostgreSQL continue d'étendre les possibilités de sécurisation des accès, av RLS propose un vrai contrôle d'accès par ligne et par colonne, qui s'intègre avec les outils externe de sécurisation, tel SELinux. PostgreSQL est déjà connu comme « la base la plus sécurisée par défaut ». RLS conforte cette position de meilleur choix par défaut pour les applications à fort besoin de sécurisation, telles que la conformité PCI, la dIrective Européenne de protection des données, et les standards de protection des données des systèmes de santé.
-RLS est l'aboutissement de 5 ans d'ajout de fonctionnalités de sécurité à PostgreSQL, ce qui inclut les travaux de KaiGai Kohei de NEC, Stephen Frost de Crunchy Data, et ceux de Dean Rasheed. À travers cette fonctionnalité, les administrateurs de base de données peuvent définir des politiques de sécurité, qui filtrent les lignes visibles en fonction des utilisateurs. +RLS est l'aboutissement de 5 ans d'ajout de fonctionnalités de sécurité à PostgreSQL, ce qui inclut les travaux de KaiGai Kohei de NEC, Stephen Frost de Crunchy Data, et ceux de Dean Rasheed. À travers cette fonctionnalité, les administrateurs de base de données peuvent définir des politiques de sécurité, qui filtrent les lignes visibles en fonction des utilisateurs. La sécurisation mises en place par ce biais est résistante aux injections SQL et autres trous de sécurité de niveau applicatif.
@@ -61,7 +61,7 @@ Citons : Les index BRIN : Ce nouveau type d'index permet la création d'index beaucoup plus petits, mais très efficaces, pour les tables volumineuses. Il est nécessaire que les données soient ordonnées. Par exemple, des tables contenant des millions de lignes de traces peuvent être indexées et interrogées en 5% du temps nécessaire lors de l'utilisation d'index de type BTree.
-Tris plus rapides : PostgreSQL trie désormais les données textuelles et numériques plus rapidement, à l'aide d'un algorithme appelé "clés abrégées" ou "abbreviated keys". +Tris plus rapides : PostgreSQL trie désormais les données textuelles et numériques plus rapidement, à l'aide d'un algorithme appelé "clés abrégées" ou "abbreviated keys". Cela accélère certaines requêtes qui nécessitent de trier des volumes considérables de données d'un facteur 2 à 12, et peut également accélérer la création d'index d'un facteur 20.
CUBE, ROLLUP et GROUPING SETS : Ces nouvelles clauses du standard permettent de produire des rapports avec plusieurs niveaux de synthèse en une seule requête. @@ -78,8 +78,8 @@ CUBE permet également une meilleure intégration de PostgreSQL avec un nombre p Plus d'informations sur les fonctionnalités ci-dessus et les autres dans les liens suivants :
-La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée librement. +La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée librement.
PostgreSQL est le système de gestion de bases de données libre de référence. Sa communauté mondiale est composée de plusieurs milliers d'utilisateurs et contributeurs, et de plusieurs dizaines d'entreprises et institutions. Le projet PostgreSQL, démarré il y a 25 ans, à l'université de Californie, à Berkeley, a atteint aujourd’hui un rythme de développement sans pareil. -L'ensemble des fonctionnalités proposées est mature et plus riche que ceux des systèmes commerciaux leaders sur les fonctionnalités avancées, les extensions, la sécurité et la stabilité, offertes à un niveau que seul PostgreSQL atteint. +L'ensemble des fonctionnalités proposées est mature et plus riche que ceux des systèmes commerciaux leaders sur les fonctionnalités avancées, les extensions, la sécurité et la stabilité, offertes à un niveau que seul PostgreSQL atteint. Pour en savoir plus à propos de PostgreSQL et participer à la communauté : PostgreSQL.org.
diff --git a/templates/pages/about/press/presskit95/it.html b/templates/pages/about/press/presskit95/it.html index 1e15939e..59724063 100644 --- a/templates/pages/about/press/presskit95/it.html +++ b/templates/pages/about/press/presskit95/it.html @@ -63,8 +63,8 @@ Per spiegazioni sulle funzionalità elencate sopra e per ulteriori informazioni, si rimanda alle seguenti risorse:-La documentazione in formato HTML ed il manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, ricercare e lasciare commenti sulla documentazione online interattiva. +La documentazione in formato HTML ed il manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, ricercare e lasciare commenti sulla documentazione online interattiva.
-Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию. +Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную онлайн-документацию.
-HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber Sie können jederzeit die umfangreiche, interaktive Online Dokumentation nutzen, durchsuchen und kommentieren. +HTML Dokumentation und Manpages werden mit PostgreSQL installiert, aber Sie können jederzeit die umfangreiche, interaktive Online Dokumentation nutzen, durchsuchen und kommentieren.
-HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation. +HTML documentation and man pages are installed with PostgreSQL, but feel free to browse, search and comment on our extensive, interactive online documentation.
-Documentación en formato HTML y manuales en formato man se instalan con PostgreSQL, pero siéntase libre de explorar, buscar y comentar en nuestra extensa documentación en línea interactiva. +Documentación en formato HTML y manuales en formato man se instalan con PostgreSQL, pero siéntase libre de explorar, buscar y comentar en nuestra extensa documentación en línea interactiva.
-La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée librement. +La documentation au format HTML et les pages de manuel sont installées avec PostgreSQL. La documentation en ligne, exhaustive et interactive, peut être parcourue, interrogée et commentée librement.
-Dokumentasi HTML dan man-pages ter-install dengan PostgreSQL, namun silakan menjelajah, mencari, dan berkomentar dalam dokumentasi online kami yang ekstensif dan interaktif. +Dokumentasi HTML dan man-pages ter-install dengan PostgreSQL, namun silakan menjelajah, mencari, dan berkomentar dalam dokumentasi online kami yang ekstensif dan interaktif.
-La documentazione in formato HTML ed il manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, ricercare e lasciare commenti sulla documentazione online interattiva. +La documentazione in formato HTML ed il manuale in formato man sono installati contestualmente a PostgreSQL. Tuttavia è estremamente consigliato navigare, ricercare e lasciare commenti sulla documentazione online interattiva.
-Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar, pesquisar e comentar na nossa vasta documentação online. +Documentação HTML e man pages são instalados com o PostgreSQL, mas fique a vontade para navegar, pesquisar e comentar na nossa vasta documentação online.
Более подробную информацию о новых возможностях можно найти по следующим ссылкам (данные материалы предоставлены на английском языке):
Документация в формате HTML и страницы с руководством устанавливаются вместе с PostgreSQL, но вы можете без каких-либо ограничений просматривать, пользоваться поиском и комментировать нашу подробную, интерактивную -онлайн-документацию. +онлайн-документацию.
The source code can be found in the main file browser. Instructions for building from source can be found in the -documentation. +documentation.
diff --git a/templates/pages/download/snapshots.html b/templates/pages/download/snapshots.html index f5a28d03..129ed19e 100644 --- a/templates/pages/download/snapshots.html +++ b/templates/pages/download/snapshots.html @@ -19,7 +19,7 @@ as they have had little or no testing or quality control.The latest development version of the documentation is also -available online. +available online.
Found a bug in PostgreSQL? Please read over our bug reporting guidelines +
Found a bug in PostgreSQL? Please read over our bug reporting guidelines and then report it using our bug reporting form.
You can see previous bug reports, and track your own on the pgsql-bugs@lists.postgresql.org mailing diff --git a/templates/support/versioning.html b/templates/support/versioning.html index 95f21e45..45c039bf 100644 --- a/templates/support/versioning.html +++ b/templates/support/versioning.html @@ -55,9 +55,9 @@ number, e.g. 9.5.3 to 9.5.4. Major versions usually change the internal format of system tables and data files. These changes are often complex, so we do not maintain backward compatibility of all stored data. A dump/reload of the database or use of the -pg_upgrade module is required +pg_upgrade module is required for major upgrades. We also recommend reading the -upgrading section of the major +upgrading section of the major version you are planning to upgrade to.