Add rel="noopener" to all _blank target urls
authorMagnus Hagander <magnus@hagander.net>
Wed, 23 Sep 2020 12:53:34 +0000 (14:53 +0200)
committerMagnus Hagander <magnus@hagander.net>
Wed, 23 Sep 2020 14:20:48 +0000 (16:20 +0200)
48 files changed:
media/js/showdown_preview.js
pgweb/events/migrations/0002_event_badged.py
pgweb/events/models.py
templates/account/userprofileform.html
templates/contributors/list.html
templates/core/about.html
templates/core/community.html
templates/docs/index.html
templates/downloads/productlist.html
templates/index.html
templates/pages/about/contact.html
templates/pages/about/donate_pg_org.html
templates/pages/about/licence.html
templates/pages/about/press/faq.html
templates/pages/about/press/presskit10/cn.html
templates/pages/about/press/presskit10/de.html
templates/pages/about/press/presskit10/en.html
templates/pages/about/press/presskit10/es.html
templates/pages/about/press/presskit10/fr.html
templates/pages/about/press/presskit10/hi.html
templates/pages/about/press/presskit10/id.html
templates/pages/about/press/presskit10/il.html
templates/pages/about/press/presskit10/it.html
templates/pages/about/press/presskit10/kr.html
templates/pages/about/press/presskit10/my.html
templates/pages/about/press/presskit10/pt.html
templates/pages/about/press/presskit10/ru.html
templates/pages/about/press/presskit10/th.html
templates/pages/about/press/presskit10/vi.html
templates/pages/about/press/presskit12/base.html
templates/pages/about/press/presskit12/en.html
templates/pages/community/recognition.html
templates/pages/developer/beta.html
templates/pages/developer/roadmap.html
templates/pages/developer/summerofcode.html
templates/pages/docs/faq.html
templates/pages/download.html
templates/pages/download/freebsd.html
templates/pages/download/linux/debian.html
templates/pages/download/linux/redhat.html
templates/pages/download/linux/suse.html
templates/pages/download/linux/ubuntu.html
templates/pages/download/openbsd.html
templates/pages/support.html
templates/profserv/list.html
templates/pugs/index.html
templates/sponsors/servers.html
templates/sponsors/sponsors.html

index c33996f0ea8a927d5392f5943b8dd64f760ad97a..91b08f0f7a53aa461d8522b90aa047dad69e77e5 100644 (file)
@@ -29,7 +29,7 @@ function attach_showdown_preview(objid, admin) {
 
     obj.parentNode.insertBefore(newdiv, obj.nextSibling);
 
-    obj.infospan_html_base = admin ? '' : 'This field supports <a href="https://daringfireball.net/projects/markdown/basics" target="_blank">markdown</a>. See below for a preview.';
+    obj.infospan_html_base = admin ? '' : 'This field supports <a href="https://daringfireball.net/projects/markdown/basics" target="_blank" rel="noopener">markdown</a>. See below for a preview.';
 
     obj.infospan = document.createElement('span');
     obj.infospan.innerHTML = obj.infospan_html_base;
index 70705e108bfaffbfa18c8a57405641d8b234114e..0571329238fa12fa1ae9f783853c5e3a4987c111 100644 (file)
@@ -14,7 +14,7 @@ class Migration(migrations.Migration):
         migrations.AddField(
             model_name='event',
             name='badged',
-            field=models.BooleanField(default=False, help_text='Choose "Community event" if this is a community recognized event following the <a href="/community/recognition/#conferences" target="_blank">community event guidelines</a>.', verbose_name='Community event'),
+            field=models.BooleanField(default=False, help_text='Choose "Community event" if this is a community recognized event following the <a href="/community/recognition/#conferences" target="_blank" rel="noopener">community event guidelines</a>.', verbose_name='Community event'),
         ),
         migrations.AddField(
             model_name='event',
index 185a6a7ca475117d49b133f07299c5ea1d925c2b..e0c0fd97f24db35df0ececc49ebf577998079da8 100644 (file)
@@ -13,7 +13,7 @@ class Event(TwostateModerateModel):
     country = models.ForeignKey(Country, null=True, blank=True, on_delete=models.CASCADE)
     language = models.ForeignKey(Language, null=True, blank=True, default='eng', help_text="Primary language for event. When multiple languages, specify this in the event description", on_delete=models.CASCADE)
 
-    badged = models.BooleanField(null=False, blank=False, default=False, verbose_name='Community event', help_text='Choose "Community event" if this is a community recognized event following the <a href="/community/recognition/#conferences" target="_blank">community event guidelines</a>.')
+    badged = models.BooleanField(null=False, blank=False, default=False, verbose_name='Community event', help_text='Choose "Community event" if this is a community recognized event following the <a href="/community/recognition/#conferences" target="_blank" rel="noopener">community event guidelines</a>.')
     description_for_badged = models.TextField(blank=True, null=True, verbose_name='Description for community event', help_text='DEPRECRATED: This was used in the beginning of community events to collect additional information.')
     startdate = models.DateField(null=False, blank=False, verbose_name="Start date")
     enddate = models.DateField(null=False, blank=False, verbose_name="End date")
index f07b6b605ac99cf0dd6ae07c178eb533ef4b6e43..96ed2779cd159d688ac201a219a3bd5b9490ebdb 100644 (file)
@@ -96,7 +96,7 @@
 
   {% if contribform %}
     <h2>Edit contributor information</h2>
-    <p>You can edit the information that's shown on the <a href="/community/contributors/" target="_blank">contributors</a> page. Please be careful as your changes will take effect immediately!
+    <p>You can edit the information that's shown on the <a href="/community/contributors/" target="_blank" rel="noopener">contributors</a> page. Please be careful as your changes will take effect immediately!
     </p>
     {% for field in contribform %}
       <div class="form-group row">
index e83f1cef4565261cad9d0ce2a2b3fff47119266b..201afb3dafd978cf7eb906db60bfdfec55708fa7 100644 (file)
@@ -31,7 +31,7 @@
        <td>{{c.firstname}} {{c.lastname}} {%if t.showemail and c.email%}({{c.email|hidemail}}){%endif%}
           {%if c.company %}
           <br/>
-          <a href="{{c.companyurl}}" target="_blank">{{c.company}}</a>{%endif%}
+          <a href="{{c.companyurl}}" target="_blank" rel="noopener">{{c.company}}</a>{%endif%}
           <br/>
           {{c.location}}
         </td>
index 657fda77adb9a2505ab0d2787988710a57c8d623..4ab7b72d36dcbc9bf826cd02466503d434f37282 100644 (file)
@@ -6,7 +6,7 @@
 
 <h2>What is PostgreSQL?</h2>
 <p>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 <a href="/docs/current/history.html">POSTGRES</a> project at the University of California at Berkeley and has more than 30 years of active development on the core platform.</p>
-<p>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 <a href="/download/">all major operating systems</a>, has been <a href="https://en.wikipedia.org/wiki/ACID" target="_blank">ACID</a>-compliant since 2001, and has powerful add-ons such as the popular <a href="https://postgis.net/" target="_blank">PostGIS</a> geospatial database extender.  It is no surprise that PostgreSQL has become the open source relational database of choice for many people and organisations.</p>
+<p>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 <a href="/download/">all major operating systems</a>, has been <a href="https://en.wikipedia.org/wiki/ACID" target="_blank" rel="noopener">ACID</a>-compliant since 2001, and has powerful add-ons such as the popular <a href="https://postgis.net/" target="_blank" rel="noopener">PostGIS</a> geospatial database extender.  It is no surprise that PostgreSQL has become the open source relational database of choice for many people and organisations.</p>
 <p><a href="/docs/current/tutorial.html">Getting started</a> with using PostgreSQL has never been easier - pick a project you want to build, and let PostgreSQL safely and robustly store your data.</p>
 
 <h2>Why use PostgreSQL?</h2>
         {% for quote in quotes %}
           <div class="item carousel-item {% if forloop.first %}active{% endif %}">
             <p class="testimonial">{{ quote.quote }}</p>
-            <p class="overview">{{ quote.who }}, <a href="{{ quote.link }}" target="_blank">{{ quote.org }}</a></p>
+            <p class="overview">{{ quote.who }}, <a href="{{ quote.link }}" target="_blank" rel="noopener">{{ quote.org }}</a></p>
           </div>
         {% endfor %}
                        </div>
index e934f80d10654396757293fe3eee671c19a9357c..fe2f2c0fb9c76784049fff6696a406ef00c1ea15 100644 (file)
           <li><a href="/list/pgsql-general/">General PostgreSQL Support</a></li>
           <li><a href="/list/pgsql-jobs/">Jobs</a></li>
         </ul>
-        and more. We also have many local <a href="/community/user-groups/">PostgreSQL User Groups</a> all over the world, and there is also an active <a href="/community/irc/">IRC</a> &amp; <a href="https://postgres-slack.herokuapp.com/" target="_blank">Slack</a> community.
+        and more. We also have many local <a href="/community/user-groups/">PostgreSQL User Groups</a> all over the world, and there is also an active <a href="/community/irc/">IRC</a> &amp; <a href="https://postgres-slack.herokuapp.com/" target="_blank" rel="noopener">Slack</a> community.
       </p>
       <p>
         There are also links to <a href="/community/international/">international sites</a> that contain PostgreSQL information in various languages.
       </p>
       <p>People in the PostgreSQL community also contribute to:</p>
       <ul>
-        <li><a href="https://planet.postgresql.org/" target="_blank">Planet PostgreSQL</a>, an aggregator of blogs covering many topics around PostgreSQL</li>
-        <li><a href="https://wiki.postgresql.org" target="_blank">PostgreSQL Wiki</a>, our wiki, hosting user generated content as well as information for how to contribute code to PostgreSQL</li>
+        <li><a href="https://planet.postgresql.org/" target="_blank" rel="noopener">Planet PostgreSQL</a>, an aggregator of blogs covering many topics around PostgreSQL</li>
+        <li><a href="https://wiki.postgresql.org" target="_blank" rel="noopener">PostgreSQL Wiki</a>, our wiki, hosting user generated content as well as information for how to contribute code to PostgreSQL</li>
       </ul>
     </div>
     <div class="col-md-4">
@@ -41,7 +41,7 @@
     <div class="col-md-8">
       <h2>External Resources</h2>
       <ul>
-        <li><a href="https://www.pg-forum.de/" target="_blank">pg-forum.de</a>, a German PostgreSQL forum.</li>
+        <li><a href="https://www.pg-forum.de/" target="_blank" rel="noopener">pg-forum.de</a>, a German PostgreSQL forum.</li>
       </ul>
       <p>
         Please send appropriate links to <a href="mailto:webmaster@postgresql.org">webmaster@postgresql.org</a> for possible inclusion on this page.
index f54cdc83386a7d0397acc9108ba90901768282e9..22bceba7353b727b31fe2fd1ae6497be7e088cbe 100644 (file)
         <dt>Translated Manuals</dt>
         <dd>
             <ul>
-              <li><a href="http://www.postgres.cn/docs" target="_blank">Chinese</a></li>
-              <li><a href="https://docs.postgresql.fr" target="_blank">French</a></li>
-              <li><a href="https://www.postgresql.jp/document/" target="_blank">Japanese</a></li>
-              <li><a href="https://postgrespro.ru/docs/postgresql" target="_blank">Russian</a></li>
+              <li><a href="http://www.postgres.cn/docs" target="_blank" rel="noopener">Chinese</a></li>
+              <li><a href="https://docs.postgresql.fr" target="_blank" rel="noopener">French</a></li>
+              <li><a href="https://www.postgresql.jp/document/" target="_blank" rel="noopener">Japanese</a></li>
+              <li><a href="https://postgrespro.ru/docs/postgresql" target="_blank" rel="noopener">Russian</a></li>
             </ul>
         </dd>
         <dd><p></p><a href="/docs/manuals/">More manuals</a></dd>
index 5db8fd02f69fc5ac1f68dc59f6f2d56092e3f572..abf05e59e22cc964161a9164669f3f87ae798adb 100644 (file)
@@ -9,7 +9,7 @@
 <p>{{category.blurb|safe}}</p>
 
 {% for product in products %}
-  <h2 class="news"><a href="{{product.url}}" target="_blank">{{product.name}}</a></h2>
+  <h2 class="news"><a href="{{product.url}}" target="_blank" rel="noopener">{{product.name}}</a></h2>
   <table class="table table-striped product-table">
     <thead class="thead-light">
       <tr>
@@ -25,8 +25,8 @@
        <td>{{product.description|markdown:"safe"}}</td>
         <td>{{product.licencetype}}</td>
         <td>{{product.price}}</td>
-        <td><a href="{{product.org.url}}" target="_blank">{{product.org.name}}</a></td>
-        <td><a href="{{product.url}}" target="_blank">View</a></td>
+        <td><a href="{{product.org.url}}" target="_blank" rel="noopener">{{product.org.name}}</a></td>
+        <td><a href="{{product.url}}" target="_blank" rel="noopener">View</a></td>
       </tr>
     </tbody>
   </table>
index 8748d4d1703d0e015a64a39199809c93d7472d1c..5ed28cf78efd0bb37db69ebbb758504e610792bc 100644 (file)
       <h2>Mailing Lists</h2>
       <div class="text">
         <p>
-          The PostgreSQL <a href="https://lists.postgresql.org" target="_blank">mailing lists</a> enable you to interact with active community participants on subjects related to the development of PostgreSQL, discovering how to use PostgreSQL, or learning about upcoming events and product releases.
+          The PostgreSQL <a href="https://lists.postgresql.org" target="_blank" rel="noopener">mailing lists</a> enable you to interact with active community participants on subjects related to the development of PostgreSQL, discovering how to use PostgreSQL, or learning about upcoming events and product releases.
         </p>
         <p>
           In order to manage your mailing list subscription, you need a <a href="{{link_root}}/account/">PostgreSQL community account</a>. <a href="{{link_root}}/account/">Signing up</a> is easy and gives you direct access to the <a href="{{link_root}}/community/">global PostgreSQL community</a>.
    <!-- END First Row Planet PostgreSQL -->
    <div class="row">
      <div class="col-sm-12">
-       <a href="https://planet.postgresql.org" title="Browse Archives" target="_blank"><button type="button" class="btn btn-center btn-primary">Browse Archives</button></a>
+       <a href="https://planet.postgresql.org" title="Browse Archives" target="_blank" rel="noopener"><button type="button" class="btn btn-center btn-primary">Browse Archives</button></a>
      </div>
    </div>
  </div>
index 39c87397d923ff16b7da164af96b551d1f063e4c..fa89b510dc27fb9fd417c9b13f964e6706477444 100644 (file)
@@ -45,6 +45,6 @@ funds group directly at <a href="mailto:funds-group@postgresql.org">funds-group@
 
 <h2>Twitter</h2>
 
-<p>Follow us on <a href="https://twitter.com/postgresql" target="_blank">Twitter</a>.</p>
+<p>Follow us on <a href="https://twitter.com/postgresql" target="_blank" rel="noopener">Twitter</a>.</p>
 
 {%endblock%}
index fd4bbe7b11364f2891feebdf72de1346902f4df7..46f2d82bb5c73aefed19906e12d0c5d0a3478e3e 100644 (file)
@@ -4,12 +4,12 @@
 
 <h1>Donate to PostgreSQL <i class="far fa-money-bill-alt"></i></h1>
 
-<p>PostgreSQL donations are managed by the <a href="https://wiki.postgresql.org/wiki/Funding_Requests" target="_blank">funds group</a>. The money donated goes to many vital services that the PostgreSQL community needs including advocacy materials, project infrastructure, legal expenses, and more.</p>
+<p>PostgreSQL donations are managed by the <a href="https://wiki.postgresql.org/wiki/Funding_Requests" target="_blank" rel="noopener">funds group</a>. The money donated goes to many vital services that the PostgreSQL community needs including advocacy materials, project infrastructure, legal expenses, and more.</p>
 
 <h2>Donate by Credit Card / PayPal</h2>
 <p>
   PostgreSQL donations are processed via Paysimple (third party) and deposited
-  into the <a href="https://spi-inc.org/projects/postgresql/" target="_blank">PostgreSQL account at Software in the Public Interest (SPI)</a>.
+  into the <a href="https://spi-inc.org/projects/postgresql/" target="_blank" rel="noopener">PostgreSQL account at Software in the Public Interest (SPI)</a>.
   You can click the button below, which will redirect you to PayPal where your
   donation will be processed:
 </p>
index 5e13a7da900ba95d3698e0ff15d37fa7d55783aa..880e9c2b9469c97088db503d50e9c5a7b1fe341f 100644 (file)
@@ -39,7 +39,7 @@ a liberal Open Source license, similar to the BSD or MIT licenses.</p>
 <h2>Why not the GNU General Public License?</h2>
 
 <p>
-  People often ask why PostgreSQL is not released under the <a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank">GNU General
+  People often ask why PostgreSQL is not released under the <a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank" rel="noopener">GNU General
 Public License</a>. The simple answer is: we like our license and do not
 want to change it!
 </p>
index 830be227b85563126d34b5b7e3825e200283e487..66573f740043a2351ad6e213c19891f49c6c5215 100644 (file)
@@ -23,7 +23,7 @@ A: PostgreSQL is released under the OSI-approved PostgreSQL Licence.  There is n
 A: Over 500.  As with other open source projects, of course, we depend on hundreds of community members for documentation, translations, advocacy, conferences, website development, infrastructure, and peer-to-peer support.</p>
 
 <p><strong>Q: How many PostgreSQL users are there, worldwide?</strong><br />
-A: Our wide distribution through the open source world and liberal licensing make that a difficult question to answer with any accuracy.  451Research estimates that around 30% of tech companies use PostgreSQL for core applications as of 2012, and around 11% of Debian users worldwide install PostgreSQL. Most users get PostgreSQL with a Linux distribution, or with some of the many other products, OSS software, and hardware devices that include PostgreSQL. Many indexes, such as the <a href="https://db-engines.com/en/ranking" target="_blank">DB-Engines Ranking</a>, demonstrate that PostgreSQL adoption continues to grow at a rapid pace, including DB-Engines recognition of PostgreSQL as the <a href="https://db-engines.com/en/blog_post/76">DBMS of the Year in 2017</a> and <a href="https://db-engines.com/en/blog_post/79" target="_blank">2018</a>.</p>
+A: Our wide distribution through the open source world and liberal licensing make that a difficult question to answer with any accuracy.  451Research estimates that around 30% of tech companies use PostgreSQL for core applications as of 2012, and around 11% of Debian users worldwide install PostgreSQL. Most users get PostgreSQL with a Linux distribution, or with some of the many other products, OSS software, and hardware devices that include PostgreSQL. Many indexes, such as the <a href="https://db-engines.com/en/ranking" target="_blank" rel="noopener">DB-Engines Ranking</a>, demonstrate that PostgreSQL adoption continues to grow at a rapid pace, including DB-Engines recognition of PostgreSQL as the <a href="https://db-engines.com/en/blog_post/76">DBMS of the Year in 2017</a> and <a href="https://db-engines.com/en/blog_post/79" target="_blank" rel="noopener">2018</a>.</p>
 
 <p><strong>Q: Can we talk to some of your users?</strong><br />
 A: Please contact <a href="mailto:press@postgresql.org">press@postgresql.org</a> and our press volunteers will try to arrange a contact.</p>
index 21b84b6164a80359211bc9be913ed997b28be04b..3fc06a945032c26f175c0129a898b0d367523191 100644 (file)
@@ -59,7 +59,7 @@ Postgresql 10.0版本所具备的重要改进,如逻辑复制、显示声明
 
 <p>"自9.3版本发布后,Yandex 公司便广泛使用PostgreSQL数据库产品,现在我们惊讶于PostgreSQL10,因为10版本终于给我们带来了翘首以盼的分区功能和内置的逻辑复制。
 这将会使得PostgreSQL 应用到Yandex公司更多的服务上,"
-来自<a href="https://www.yandex.com/" target="_blank">Yandex公司</a>的DBA团队负责人 Vladimir Borodin表示。</p>
+来自<a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex公司</a>的DBA团队负责人 Vladimir Borodin表示。</p>
 
 <b>显示声明的表分区功能 - 更加方便地进行数据分区</b>
 
@@ -85,13 +85,13 @@ PostgreSQL 10版本引入了新的表分区的语法,这允许用户更加方
 <p>"PostgreSQL 10.0版本中的同步复制的优选提交(Quorum Commit,即通过读写副本数的优化来平衡读写性能)功能,
 从应用程序的角度给了我们更多的选择,以几乎零停机的代价来扩展我们基础设施的能力。
 这允许我们可以连续发布或是更新数据库基础设施而不必忍受长时间停机维护的代价,"
-<a href="https://www.simple.com/" target="_blank">Simplem金融公司</a>的高级基础设施工程师Curt Micol先生说道。</p>
+<a href="https://www.simple.com/" target="_blank" rel="noopener">Simplem金融公司</a>的高级基础设施工程师Curt Micol先生说道。</p>
 
 <b>SCRAM-SHA-256 安全认证机制 - 让你的数据存取更安全</b>
 
-<p>SCRAM安全认证算法在<a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802]</a>进行了详细的定义,它是通过提供一个强加密的框架来改进密码的安全存储和传输的协议。
+<p>SCRAM安全认证算法在<a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802]</a>进行了详细的定义,它是通过提供一个强加密的框架来改进密码的安全存储和传输的协议。
 PostgreSQL 10版本引入的SCRAM-SHA-256 安全认证方法,
-在<a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a>
+在<a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a>
 中有详细定义,它可以提供比现在基于MD5加密算法更好的安全性。</p>
 
 <a name="features"></a><h2>有关新特性的更多信息</h2>
@@ -184,27 +184,27 @@ PostgreSQL的专业特性不仅包含顶级商业数据库系统的功能特性
 "对逻辑复制和改进后的并行查询等功能的研发,代表着社区多年的努力成果,也表明随着技术需求的发展, 社区会继续努力以确保 Postgres 的领导地位。"
 </p>
 
-<p>"自9.3版本发布后,Yandex 公司便广泛使用PostgreSQL数据库产品,现在我们惊讶于PostgreSQL10,因为10版本终于给我们带来了翘首以盼的分区功能和内置的逻辑复制。这将会使得PostgreSQL 应用到Yandex公司更多的服务上," 来自<a href="https://www.yandex.com/" target="_blank">Yandex公司</a>的
+<p>"自9.3版本发布后,Yandex 公司便广泛使用PostgreSQL数据库产品,现在我们惊讶于PostgreSQL10,因为10版本终于给我们带来了翘首以盼的分区功能和内置的逻辑复制。这将会使得PostgreSQL 应用到Yandex公司更多的服务上," 来自<a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex公司</a>的
 DBA团队负责人 Vladimir Borodin说道。
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex公司</a> 是一家使用机器学习技术提供人工智能产品和服务的技术公司。
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex公司</a> 是一家使用机器学习技术提供人工智能产品和服务的技术公司。
 Yandex公司的目标是帮助客户和商业伙们更好地探索在线和离线业务。
 从1997年起,Yandex公司已交付了世界级的、本地业务相关的搜索和信息服务。
 另外,Yandex公司也为全球上百万的用户开发了市场领先的按需乘车服务、导航产品以及其他移动应用。
-可以通过<a href="https://yandex.com/company/contacts/" target="_blank"> https://yandex.com/company/contacts/</a>网址来访问Yandex公司。
+可以通过<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener"> https://yandex.com/company/contacts/</a>网址来访问Yandex公司。
 
 </p>
 <p>"PostgreSQL 10.0版本中的同步复制的优选提交(Quorum Commit,即通过读写副本数的优化来平衡读写性能)功能,
 从应用程序的角度给了我们更多的选择,以几乎零停机的代价来扩展我们基础设施的能力。
 这允许我们可以连续发布或是更新数据库基础设施而不必忍受长时间停机维护的代价。"
- 来自<a href="https://www.simple.com/" target="_blank">Simple财务</a>公司的高级基础设施工程师Curt Micol先生说道。
+ 来自<a href="https://www.simple.com/" target="_blank" rel="noopener">Simple财务</a>公司的高级基础设施工程师Curt Micol先生说道。
 </p>
 
-<p>成立于2009年,<a href="https://www.simple.com/" target="_blank">Simple财务</a>公司是一家正在改变人们
+<p>成立于2009年,<a href="https://www.simple.com/" target="_blank" rel="noopener">Simple财务</a>公司是一家正在改变人们
 对于储蓄业务和开销管理想法的科技公司。Simple公司的产品将人们的预算和储蓄操作集中于一个漂亮的移动应用中,
 并且帮助人们节约他们所需的物品的花费,以及帮助人们对想要物品的进行预算管理。可以通过这个
-  <a href="https://www.simple.com/" target="_blank">Simple财务</a>网站以及这个邮箱
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple财务</a>网站以及这个邮箱
   <a href="mailto:press@simple.com">press@simple.com</a>与他们联系。
 </p>
 
index 0406ac2adce79e73b1ef1b0780461ff8ede89b37..5fda25c2543dd5852431f824a8baca4f39b14b63 100644 (file)
@@ -51,7 +51,7 @@
 
 <p>Die logische Replikation erweitert die aktuell bereits vorhandenen Merkmale der PostgreSQL Replikation um die M&ouml;glichkeit, Modifikationen auf der Ebene der Datenbank und pro Tabellenebene an verschiedene PostgreSQL Datenbanken zu senden. Benutzer k&ouml;nnen nun die Daten, die auf verschiedene Datenbankcluster repliziert werden, fein abstimmen, und haben so die M&ouml;glichkeit, Zero-Downtime-Upgrades f&uuml;r zuk&uuml;nftige PostgreSQL-Versionen durchzuf&uuml;hren.</p>
 
-<p>&quot;Wir nutzen PostgreSQL sehr umfangreich seit 9.3 und freuen uns sehr &uuml;ber Version 10, da es eine Basis f&uuml;r die lang erwartete Partitionierung und eine integrierte logische Replikation bietet. Das wird uns erlauben, PostgreSQL in noch mehr Services zu nutzen&quot;, sagte Vladimir Borodin, DBA Team Lead bei <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+<p>&quot;Wir nutzen PostgreSQL sehr umfangreich seit 9.3 und freuen uns sehr &uuml;ber Version 10, da es eine Basis f&uuml;r die lang erwartete Partitionierung und eine integrierte logische Replikation bietet. Das wird uns erlauben, PostgreSQL in noch mehr Services zu nutzen&quot;, sagte Vladimir Borodin, DBA Team Lead bei <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <b>Deklarative Tabellenpartitionierung - Bequemlichkeit bei der Aufteilung Ihrer Daten</b>
 
 
 <p>PostgreSQL 10 f&uuml;hrt Quorum-Commit f&uuml;r die synchrone Replikation ein, was eine Flexibilit&auml;t bei der Best&auml;tigung f&uuml;r die prim&auml;re Datenbank erm&ouml;glicht. Dabei wird best&auml;tigt dass &Auml;nderungen erfolgreich in Remote-Repliken geschrieben wurden. Ein Administrator kann nun festlegen, dass wenn eine Anzahl von Replikaten best&auml;tigt hat, dass eine &Auml;nderung der Datenbank vorgenommen wurde, die Daten als sicher geschrieben angesehen werden k&ouml;nnen.</p>
 
-<p>&quot;Quorum Commit f&uuml;r die synchrone Replikation in PostgreSQL 10 bietet mehr M&ouml;glichkeiten um die Infrastruktur der Datenbank mit nahezu null Ausfallzeiten aus der Anwendungsperspektive zu erweitern. Damit k&ouml;nnen wir unsere Datenbank Infrastruktur kontinuierlich einsetzen und aktualisieren, ohne dass lange Wartungsfenster entstehen&quot;, so Curt Micol , Personal Infrastructure Engineer bei <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+<p>&quot;Quorum Commit f&uuml;r die synchrone Replikation in PostgreSQL 10 bietet mehr M&ouml;glichkeiten um die Infrastruktur der Datenbank mit nahezu null Ausfallzeiten aus der Anwendungsperspektive zu erweitern. Damit k&ouml;nnen wir unsere Datenbank Infrastruktur kontinuierlich einsetzen und aktualisieren, ohne dass lange Wartungsfenster entstehen&quot;, so Curt Micol , Personal Infrastructure Engineer bei <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <b>SCRAM-SHA-256 Authentifizierung - Sichern Sie Ihren Datenzugriff</b>
 
-<p>Der in <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a> definierte Salted Challenge Response Authentication Mechanism (SCRAM) definiert ein Protokoll zur Verbesserung der sicheren Speicherung und &Uuml;bertragung von Passw&ouml;rtern durch die Bereitstellung eines Frameworks f&uuml;r eine starke Passwortverhandlung . PostgreSQL 10 implementiert die SCRAM-SHA-256-Authentifizierungsmethode, die in <a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a> definiert ist, um eine verbesserte Sicherheit gegen&uuml;ber der vorhandenen MD5-basierten Authentifizierungsmethode mittels Passw&ouml;rtern zu erm&ouml;glichen.</p>
+<p>Der in <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a> definierte Salted Challenge Response Authentication Mechanism (SCRAM) definiert ein Protokoll zur Verbesserung der sicheren Speicherung und &Uuml;bertragung von Passw&ouml;rtern durch die Bereitstellung eines Frameworks f&uuml;r eine starke Passwortverhandlung . PostgreSQL 10 implementiert die SCRAM-SHA-256-Authentifizierungsmethode, die in <a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a> definiert ist, um eine verbesserte Sicherheit gegen&uuml;ber der vorhandenen MD5-basierten Authentifizierungsmethode mittels Passw&ouml;rtern zu erm&ouml;glichen.</p>
 
 <a name="features"></a><h2>Mehr &uuml;ber die Features</h2>
 <p>
@@ -166,17 +166,17 @@ community at <a href="https://www.postgresql.org">PostgreSQL.org</a>.
   about version 10 since it brings basis for long-awaited partitioning and
   built-in logical replication. It will allow us to use PostgreSQL in even more
   services,&quot; said Vladimir Borodin, DBA Team Lead at
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a> is a technology company
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a> is a technology company
 that builds intelligent products and services powered by machine learning. Yandex's
 goal is to help consumers and businesses better navigate the online and offline
 world. Since 1997, Yandex has delivered world-class, locally relevant search and
 information services. Additionally, Yandex has developed market-leading on-demand
 transportation services, navigation products, and other mobile applications for
 millions of consumers across the globe.  To contact Yandex, please visit
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
@@ -185,13 +185,13 @@ millions of consumers across the globe.  To contact Yandex, please visit
   zero downtime from the application perspective. This allows us to continuously
   deploy and update our database infrastructure without incurring long
   maintenance windows,&quot; said Curt Micol, Staff Infrastructure Engineer at
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
-<p>Founded in 2009, <a href="https://www.simple.com/" target="_blank">Simple</a>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
+<p>Founded in 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
   is a technology company that’s changing the way people bank and think about
   their money. Simple's product blends budgeting and banking into a single
   beautiful app, with tools that help people save for the things they need and
   spend responsibly on the things they want.  Contact
-  <a href="https://www.simple.com/" target="_blank">Simple</a> at
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> at
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index fc98706af56c1c2abd6974034ad4d7d8ff11ada9..e96d75501ce092b4c17513bff9b22b6d825445ca 100644 (file)
@@ -75,7 +75,7 @@
   about version 10 since it brings basis for long-awaited partitioning and
   built-in logical replication. It will allow us to use PostgreSQL in even more
   services,&quot; said Vladimir Borodin, DBA Team Lead at
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <b>Declarative Table Partitioning - Convenience in dividing your data</b>
 
   zero downtime from the application perspective. This allows us to continuously
   deploy and update our database infrastructure without incurring long
   maintenance windows,&quot; said Curt Micol, Staff Infrastructure Engineer at
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <b>SCRAM-SHA-256 authentication - Secure your data access</b>
 
 <p>The Salted Challenge Response Authentication Mechanism (SCRAM) defined in
-  <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a>
+  <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a>
   defines a protocol to improve upon the secure storage and transmission of
   passwords by providing a framework for strong password negotiation.
   PostgreSQL 10 introduces the SCRAM-SHA-256 authentication method, defined in
-  <a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a>, to
+  <a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a>, to
   provide better security than the existing MD5-based password authentication
   method.</p>
 
@@ -261,17 +261,17 @@ community at <a href="https://www.postgresql.org">PostgreSQL.org</a>.
   about version 10 since it brings basis for long-awaited partitioning and
   built-in logical replication. It will allow us to use PostgreSQL in even more
   services,&quot; said Vladimir Borodin, DBA Team Lead at
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a> is a technology company
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a> is a technology company
 that builds intelligent products and services powered by machine learning. Yandex's
 goal is to help consumers and businesses better navigate the online and offline
 world. Since 1997, Yandex has delivered world-class, locally relevant search and
 information services. Additionally, Yandex has developed market-leading on-demand
 transportation services, navigation products, and other mobile applications for
 millions of consumers across the globe.  To contact Yandex, please visit
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
@@ -280,13 +280,13 @@ millions of consumers across the globe.  To contact Yandex, please visit
   zero downtime from the application perspective. This allows us to continuously
   deploy and update our database infrastructure without incurring long
   maintenance windows,&quot; said Curt Micol, Staff Infrastructure Engineer at
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
-<p>Founded in 2009, <a href="https://www.simple.com/" target="_blank">Simple</a>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
+<p>Founded in 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
   is a technology company that’s changing the way people bank and think about
   their money. Simple's product blends budgeting and banking into a single
   beautiful app, with tools that help people save for the things they need and
   spend responsibly on the things they want.  Contact
-  <a href="https://www.simple.com/" target="_blank">Simple</a> at
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> at
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index 2a3e3f72e80be6f16879443e328287bb504805e1..73b3724c9ecb7a4c24d7d91e3ce739404f850286 100644 (file)
@@ -77,7 +77,7 @@
   emocionados por la versión 10 pues trae la base para el
   particionamiento y la replicación lógica integrada tan esperados. Eso nos permitirá usar
   PostgreSQL en aún más servicios&quot;, dice Vladimir Borodin, Director del equipo
-  DBA en <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+  DBA en <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <b>Particionamiento declarativo de tablas — Comodidad al dividir sus datos</b>
 
   de la aplicación. Esto nos permite implementar y actualizar continuamente
   nuestra infraestructura de base de datos sin recurrir a largas ventanas de
   mantenimiento&quot;, dice Curt Micol, Ingeniero de infraestructura en
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <b>Autenticación SCRAM-SHA-256 — Proteja el acceso a sus datos</b>
 
 <p>El mecanismo de autenticación SCRAM (Salted Challenge Response Authentication
-  Mechanism) definido en <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a>
+  Mechanism) definido en <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a>
   define un protocolo para avanzar a un almacenamiento y transmisión de contraseñas seguro
   proveyendo un framework robusto para negociación de contraseñas. PostgreSQL 10
   introduce el método de autenticación SCRAM-SHA-256, definido en
-  <a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a>, para ofrecer mayor
+  <a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a>, para ofrecer mayor
   seguridad que el método de autenticación por contraseñas anterior, basado en MD5.</p>
 
 <a name="features"></a><h2>Más sobre las características</h2>
@@ -270,16 +270,16 @@ participe en nuestra comunidad en <a href="https://www.postgresql.org">PostgreSQ
   emocionados por la versión 10 pues trae la base para el
   particionamiento y la replicación lógica integrada tan esperados. Eso nos permitirá usar
   PostgreSQL en aún más servicios&quot;, dice Vladimir Borodin, Director del equipo
-  DBA en <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+  DBA en <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a> es una compañía de tecnología
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a> es una compañía de tecnología
 que construye productos y servicios inteligentes basados en aprendizaje de máquina.
 El objetivo de Yandex es ayudar a clientes y negocios a navegar mejor el mundo en línea
 y fuera de línea. Desde 1997, Yandex ha provisto servicios de búsqueda e información local
 relevantes de primera clase. Adicionalmente, Yandex ha desarrollado servicios para transporte,
 productos de navegación y otras aplicaciones móviles bajo demanda líderes en el mercado, para
 millones de consumidores alrededor del mundo. Para ponerse en contacto con Yandex, por favor visite
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
@@ -289,15 +289,15 @@ millones de consumidores alrededor del mundo. Para ponerse en contacto con Yande
   de la aplicación. Esto nos permite implementar y actualizar continuamente
   nuestra infraestructura de base de datos sin recurrir a largas ventanas de
   mantenimiento&quot;, dice Curt Micol, Ingeniero de infraestructura en
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
-<p>Fundada en 2009, <a href="https://www.simple.com/" target="_blank">Simple</a>
+<p>Fundada en 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
   es una compañía de tecnología que está cambiando la forma en que las personas
   manejan sus finanzas y cómo piensan sobre su dinero. El producto de Simple combina
   el presupuesto con la banca en una sola hermosa aplicación, con herramientas que
   ayudan a las personas ahorrar para las cosas que ncesitan y gastar responsablemente
   en las cosas que quieren. Póngase en contacto con
-  <a href="https://www.simple.com/" target="_blank">Simple</a> en
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> en
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index b14e5fd89ba290f769b4cc3124c5634599619f12..734ee15de3352aae5f1965f6c5a5e4ecdf4ec832 100644 (file)
@@ -57,7 +57,7 @@ Ainsi, la prochaine version mineure de PostgreSQL sera la 10.1 et la prochaine v
 <p> La réplication logique élargit les possibilités des fonctionnalités actuelles de réplication de PostgreSQL avec la capacité d'envoyer les modifications sur un ensemble de bases PostgreSQL tout en filtrant les données pour ne répliquer que certaine(s) base(s) ou certaine(s) table(s).
 Les utilisateurs pourront ensuite envoyer les données répliquées sur plusieurs clusters PostgreSQL et pourront même effectuer une migration vers une future version majeure sans impact utilisateur.</p>
 
-<p>&laquo;&nbsp;Nous avons beaucoup utilisé PostgreSQL depuis la version 9.3 et sommes vraiment impatients de voir arriver la version 10 car elle apporte les bases d'un vrai partitionnement, fonctionnalité très attendue, et qu'elle permet la réplication logique native. Cela va nous permettre d'utiliser encore plus PostgreSQL pour nos services,&nbsp;&raquo; a annoncé Vladimir Boroin, Responsable DBA chez <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+<p>&laquo;&nbsp;Nous avons beaucoup utilisé PostgreSQL depuis la version 9.3 et sommes vraiment impatients de voir arriver la version 10 car elle apporte les bases d'un vrai partitionnement, fonctionnalité très attendue, et qu'elle permet la réplication logique native. Cela va nous permettre d'utiliser encore plus PostgreSQL pour nos services,&nbsp;&raquo; a annoncé Vladimir Boroin, Responsable DBA chez <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <b>Partitionnement de table déclaratif - La division facile de vos données</b>
 
@@ -71,14 +71,14 @@ Les utilisateurs pourront ensuite envoyer les données répliquées sur plusieur
 
 <p>PostgreSQL 10 ajoute une validation par quorum pour les réplications synchrones, ce qui permet plus de flexibilité sur la manière dont le nœud primaire reçoit les acquittements d'écriture sur disque des réplications. Un administrateur peut maintenant préciser le nombre de réplicas qui doivent valider la réelle écriture des données dans la base pour que les données soient considérées comme enregistrées en toute sécurité.</p>
 
-<p>&laquo;&nbsp;La validation par quorum pour les réplications synchrones dans PostgreSQL 10 offre plus de possibilités de promotion d'une infrastructure en quasi-continuité de service du point de vue de l'application. Cela nous permet de déployer en continu et de mettre à jour notre base de données sans avoir recours à de longues fenêtres de maintenance,&nbsp;&raquo; a déclaré Curt Micol, ingénieur de production chez <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+<p>&laquo;&nbsp;La validation par quorum pour les réplications synchrones dans PostgreSQL 10 offre plus de possibilités de promotion d'une infrastructure en quasi-continuité de service du point de vue de l'application. Cela nous permet de déployer en continu et de mettre à jour notre base de données sans avoir recours à de longues fenêtres de maintenance,&nbsp;&raquo; a déclaré Curt Micol, ingénieur de production chez <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <b>Authentification SCRAM-SHA-256 - La sécurisation de l'accès à vos données</b>
 
-<p>L'authentification SCRAM (Salted Challenge Response Authentication Mechanism), définie dans la  <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a>,
+<p>L'authentification SCRAM (Salted Challenge Response Authentication Mechanism), définie dans la  <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a>,
 décrit un protocole pour améliorer la sécurisation du stockage et de la transmission du mot de passe en fournissant un cadre pour la négociation de mots de passe forts.
 PostgreSQL 10 ajoute la méthode d'authentification SCRAM-SHA-256, telle que définie dans la
-<a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a>, pour proposer une solution plus sécurisée que la méthode d'authentification actuelle, basée sur MD5.</p>
+<a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a>, pour proposer une solution plus sécurisée que la méthode d'authentification actuelle, basée sur MD5.</p>
 
 
 <a name="features"></a><h2>Plus d'informations à propos des nouveautés</h2>
@@ -176,26 +176,26 @@ PostgreSQL et participer à la communauté :
 &laquo;&nbsp;Des fonctionnalités comme la réplication logique et l'amélioration du parallélisme représentent des années de travail et prouvent le dévouement constant de la communauté pour assurer la suprématie de Postgres alors que la demande évolue.&nbsp;&raquo;
 </p>
 <p>
-&laquo;&nbsp;Nous avons beaucoup utilisé PostgreSQL depuis la version 9.3 et sommes vraiment impatients de voir arriver la version 10 car elle apporte les bases d'un vrai partitionnement, fonctionnalité très attendue, et qu'elle permet la réplication logique native. Cela va nous permettre d'utiliser encore plus PostgreSQL pour nos services, &nbsp;&raquo;a annoncé Vladimir Boroin, Responsable DBA chez  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.
+&laquo;&nbsp;Nous avons beaucoup utilisé PostgreSQL depuis la version 9.3 et sommes vraiment impatients de voir arriver la version 10 car elle apporte les bases d'un vrai partitionnement, fonctionnalité très attendue, et qu'elle permet la réplication logique native. Cela va nous permettre d'utiliser encore plus PostgreSQL pour nos services, &nbsp;&raquo;a annoncé Vladimir Boroin, Responsable DBA chez  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a> est une entreprise de technologie
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a> est une entreprise de technologie
 qui construit des produits intelligents et des services animés par le Machine Learning.
 Le but de Yandex est d'aider les personnes et les entreprises  à mieux naviguer entre le monde connecté et déconnecté.
 Depuis 1997, Yandex fourni internationalement des services d'information et de recherches d'informations pertientes localement.
 De plus, Yandex est leader sur le marché des services de transport à la demande et développe les produits de navigation ainsi que d'autres applications mobiles qui touchent des millions de personnes dans le monde.
 Pour contacter Yandex, veuillez visiter
-<a href="https://yandex.com/company/contacts/" target="_blank">https://yandex.com/company/contacts/</a>
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">https://yandex.com/company/contacts/</a>
 </p>
 <p>
 &laquo;&nbsp;La validation par quorum pour les réplications synchrones dans PostgreSQL 10 offre plus de possibilités de promotion d'une infrastructure en quasi-continuité de service du point de vue de l'application. Cela nous permet de déployer en continu et de mettre à jour notre base de données sans avoir recours à de longues fenêtres de maintenance.&quot;  a déclaré Curt Micol, ingénieur de production chez
-<a href="https://www.simple.com/" target="_blank">Simple Finance</a>.
+<a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.
 </p>
 <p>
-Créée en 2009, <a href="https://www.simple.com/" target="_blank">Simple</a>
+Créée en 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
 est une entreprise de technologie qui souhaite changer la manière dont les gens épargnent et pensent leur argent.
 Simple permet de mêler la gestion de son budget et de sa banque dans une seule application, avec des outils qui aident les gens à épargner pour acheter ce dont ils ont besoin et à dépenser raisonnablement pour ce qu'ils veulent avoir.
-Vous pouvez contacter  <a href="https://www.simple.com/" target="_blank">Simple</a> à cette adresse
+Vous pouvez contacter  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> à cette adresse
   <a href="mailto:press@simple.com">press@simple.com</a>.
 </p>
 
index 43a326932e62e97a5a42f38f253f517290a4c72d..515c2a179e98f2dea3ab3b7cff23ef098205db9e 100644 (file)
@@ -51,7 +51,7 @@
 
 <p>तार्किक प्रतिकृति PostgreSQL की वर्तमान प्रतिकृति सुविधाओं को प्रति-डेटाबेस और प्रति-तालिका स्तर पर विभिन्न PostgreSQL डाटाबेस में संशोधनों को भेजने की क्षमता के साथ फैली हुई है। उपयोगकर्ता अब विभिन्न डाटाबेस क्लस्टर पर दोहराए गए डेटा को ठीक कर सकते हैं और भविष्य में प्रमुख PostgreSQL संस्करणों के लिए शून्य-डाउनटाइम अपग्रेड करने की क्षमता रखेंगे।</p>
 
-<p>&quot;"9.3 के बाद से हम अत्यधिक रूप से PostgreSQL का उपयोग कर रहे हैं और संस्करण 10 के बारे में बेहद उत्साहित हैं क्योंकि यह लंबे समय से प्रतीक्षित विभाजन और अंतर्निर्मित तार्किक प्रतिकृति को आधार देता  है। यह हमें और अधिक सेवाओं में PostgreSQL का उपयोग करने की अनुमति देगा |" <a href="https://www.yandex.com/" target="_blank"> Yandex </a> में DBA टीम लीड Vladimir Borodin ने कहा |
+<p>&quot;"9.3 के बाद से हम अत्यधिक रूप से PostgreSQL का उपयोग कर रहे हैं और संस्करण 10 के बारे में बेहद उत्साहित हैं क्योंकि यह लंबे समय से प्रतीक्षित विभाजन और अंतर्निर्मित तार्किक प्रतिकृति को आधार देता  है। यह हमें और अधिक सेवाओं में PostgreSQL का उपयोग करने की अनुमति देगा |" <a href="https://www.yandex.com/" target="_blank" rel="noopener"> Yandex </a> में DBA टीम लीड Vladimir Borodin ने कहा |
 </p>
 
 <b>घोषणात्मक तालिका विभाजन - अपने डेटा को विभाजित करने में आसानी</b>
 <p>PostgreSQL 10 तुल्यकालिक प्रतिकृति के लिए कोरम प्रतिबद्धता प्रस्तुत करता है, जिससे कि प्राथमिक डाटाबेस को रिमोट प्रतिलिपि में परिवर्तन के सफलतापूर्वक लिखे जाने की स्वीकृति प्राप्त करने में लचीलेपन मिलता है | एक व्यवस्थापक अब निर्दिष्ट कर सकता है कि यदि किसी भी संख्या में प्रतिकृतियों ने स्वीकार किया है कि डेटाबेस में परिवर्तन किया गया है, तो डेटा सुरक्षित रूप से लिखा गया है, यह माना जा सकता है |
 </p>
 
-<p>&quot;PostgreSQL 10 में तुल्यकालिक प्रतिकृति के लिए कोरम कम्मिट हमें अधिक विकल्प देकर डाटाबेस इंफ्रास्ट्रक्चर को बढ़ावा देने की हमारी क्षमता का विस्तार करता है, जिसमे  आवेदन के परिप्रेक्ष्य से करीब शून्य डाउनटाइम है । इससे हमें लंबे समय तक रखरखाव खिड़कियां लगाए बिना हमारे डाटाबेस अवसंरचना को निरंतर और अद्यतन करने की सुविधा मिलती है,&quot; कर्ट मिकोल , <a href="https://www.simple.com/" target="_blank"> Simple Finance </a> में स्टाफ इंफ्रास्ट्रक्चर इंजीनियर ने कहा |
+<p>&quot;PostgreSQL 10 में तुल्यकालिक प्रतिकृति के लिए कोरम कम्मिट हमें अधिक विकल्प देकर डाटाबेस इंफ्रास्ट्रक्चर को बढ़ावा देने की हमारी क्षमता का विस्तार करता है, जिसमे  आवेदन के परिप्रेक्ष्य से करीब शून्य डाउनटाइम है । इससे हमें लंबे समय तक रखरखाव खिड़कियां लगाए बिना हमारे डाटाबेस अवसंरचना को निरंतर और अद्यतन करने की सुविधा मिलती है,&quot; कर्ट मिकोल , <a href="https://www.simple.com/" target="_blank" rel="noopener"> Simple Finance </a> में स्टाफ इंफ्रास्ट्रक्चर इंजीनियर ने कहा |
 </p>
 
 <b>SCRAM-SHA-256 प्रमाणीकरण - अपना डेटा एक्सेस सुरक्षित करें</b>
 
-<p><a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a> में परिभाषित नमकीन चैलेंज रिस्पांस प्रमाणीकरण तंत्र (SCRAM) एक मजबूत प्रोटोकॉल को परिभाषित करता है जिसमे मजबूत पासवर्ड वार्ता की रूपरेखा प्रदान की जाती है ताकि पासवर्ड के संचरण और सुरक्षित संग्रहण पर सुधार किया जा सके । मौजूदा एमडी 5-आधारित पासवर्ड प्रमाणीकरण विधि की तुलना में बेहतर सुरक्षा प्रदान करने के लिए PostgreSQL 10 , SCRAM-SHA-256 प्रमाणीकरण विधि को <a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a> में परिभाषित करता है।
+<p><a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a> में परिभाषित नमकीन चैलेंज रिस्पांस प्रमाणीकरण तंत्र (SCRAM) एक मजबूत प्रोटोकॉल को परिभाषित करता है जिसमे मजबूत पासवर्ड वार्ता की रूपरेखा प्रदान की जाती है ताकि पासवर्ड के संचरण और सुरक्षित संग्रहण पर सुधार किया जा सके । मौजूदा एमडी 5-आधारित पासवर्ड प्रमाणीकरण विधि की तुलना में बेहतर सुरक्षा प्रदान करने के लिए PostgreSQL 10 , SCRAM-SHA-256 प्रमाणीकरण विधि को <a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a> में परिभाषित करता है।
   </p>
 
 <a name="features"></a><h2>सुविधाओं के बारे में अधिक जानकारी </h2>
@@ -164,25 +164,25 @@ PostgreSQL दुनिया के सबसे उन्नत ओपन स
 
 </p>
 
-<p>&quot;9.3 के बाद से हम अत्यधिक रूप से PostgreSQL का उपयोग कर रहे हैं और संस्करण 10 के बारे में बेहद उत्साहित हैं क्योंकि यह लंबे समय से प्रतीक्षित विभाजन और अंतर्निर्मित तार्किक प्रतिकृति को आधार देता  है। यह हमें और अधिक सेवाओं में PostgreSQL का उपयोग करने की अनुमति देगा |" <a href="https://www.yandex.com/" target="_blank"> Yandex </a> में DBA टीम लीड Vladimir Borodin ने कहा |
+<p>&quot;9.3 के बाद से हम अत्यधिक रूप से PostgreSQL का उपयोग कर रहे हैं और संस्करण 10 के बारे में बेहद उत्साहित हैं क्योंकि यह लंबे समय से प्रतीक्षित विभाजन और अंतर्निर्मित तार्किक प्रतिकृति को आधार देता  है। यह हमें और अधिक सेवाओं में PostgreSQL का उपयोग करने की अनुमति देगा |" <a href="https://www.yandex.com/" target="_blank" rel="noopener"> Yandex </a> में DBA टीम लीड Vladimir Borodin ने कहा |
 </p>
 
 
 <p>
 
 
-<a href="https://yandex.com/" target="_blank">Yandex </a>  एक तकनीकी कंपनी है जो मशीन लर्निंग से संचालित बुद्धिमान उत्पादों और सेवाओं को बनाती है। यैंडेक्स का लक्ष्य उपभोक्ताओं और व्यवसायों को ऑनलाइन और ऑफलाइन दुनिया को बेहतर ढंग से नेविगेट करने में मदद करना है। 1997 के बाद से, यांडेक्स ने विश्व स्तरीय, स्थानीय रूप से प्रासंगिक खोज और सूचना सेवाओं को जन्म दिया है | इसके अतिरिक्त, यैंडेक्स ने दुनिया भर में लाखों उपभोक्ताओं के लिए बाजार-अग्रणी पर-मांग परिवहन सेवाएं , नेविगेशन उत्पाद  और अन्य मोबाइल एप्लिकेशन विकसित किए हैं। यांडेक्स से संपर्क करने के लिए, कृपया <a href="https://yandex.com/company/contacts/" target="_blank"> https://yandex.com/company/contacts/ </a> पर जाएं |
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex </a>  एक तकनीकी कंपनी है जो मशीन लर्निंग से संचालित बुद्धिमान उत्पादों और सेवाओं को बनाती है। यैंडेक्स का लक्ष्य उपभोक्ताओं और व्यवसायों को ऑनलाइन और ऑफलाइन दुनिया को बेहतर ढंग से नेविगेट करने में मदद करना है। 1997 के बाद से, यांडेक्स ने विश्व स्तरीय, स्थानीय रूप से प्रासंगिक खोज और सूचना सेवाओं को जन्म दिया है | इसके अतिरिक्त, यैंडेक्स ने दुनिया भर में लाखों उपभोक्ताओं के लिए बाजार-अग्रणी पर-मांग परिवहन सेवाएं , नेविगेशन उत्पाद  और अन्य मोबाइल एप्लिकेशन विकसित किए हैं। यांडेक्स से संपर्क करने के लिए, कृपया <a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener"> https://yandex.com/company/contacts/ </a> पर जाएं |
 
 </p>
 
 
-<p>&quot;PostgreSQL 10 में तुल्यकालिक प्रतिकृति के लिए कोरम कम्मिट हमें अधिक विकल्प देकर डाटाबेस इंफ्रास्ट्रक्चर को बढ़ावा देने की हमारी क्षमता का विस्तार करता है, जिसमे  आवेदन के परिप्रेक्ष्य से करीब शून्य डाउनटाइम है । इससे हमें लंबे समय तक रखरखाव खिड़कियां लगाए बिना हमारे डाटाबेस अवसंरचना को निरंतर और अद्यतन करने की सुविधा मिलती है,&quot; कर्ट मिकोल , <a href="https://www.simple.com/" target="_blank"> Simple Finance </a> में स्टाफ इंफ्रास्ट्रक्चर इंजीनियर ने कहा |
+<p>&quot;PostgreSQL 10 में तुल्यकालिक प्रतिकृति के लिए कोरम कम्मिट हमें अधिक विकल्प देकर डाटाबेस इंफ्रास्ट्रक्चर को बढ़ावा देने की हमारी क्षमता का विस्तार करता है, जिसमे  आवेदन के परिप्रेक्ष्य से करीब शून्य डाउनटाइम है । इससे हमें लंबे समय तक रखरखाव खिड़कियां लगाए बिना हमारे डाटाबेस अवसंरचना को निरंतर और अद्यतन करने की सुविधा मिलती है,&quot; कर्ट मिकोल , <a href="https://www.simple.com/" target="_blank" rel="noopener"> Simple Finance </a> में स्टाफ इंफ्रास्ट्रक्चर इंजीनियर ने कहा |
 </p>
 
 
 <p>
 
-  2009 में स्थापित, <a href="https://www.simple.com/" target="_blank"> Simple </a> एक प्रौद्योगिकी कंपनी है जो लोगों के बैंकिंग और अपने पैसे के बारे में सोचने के तरीके को बदलती है | सिंपल का उत्पाद बजट और बैंकिंग को एक खूबसूरत ऐप में जोड़ता है, इसमें ऐसे उपकरण हैं जो लोगों को उनकी जरूरतों के लिए बचाने में मदद करते है और उन चीज़ों पर जिम्मेदारी से खर्च करवाते है जिन्हें वे चाहते हैं |<a href="mailto:press@simple.com"> press@simple.com </a> पर  <a href="https://www.simple.com/" target="_blank">Simple </a> से संपर्क करें |
+  2009 में स्थापित, <a href="https://www.simple.com/" target="_blank" rel="noopener"> Simple </a> एक प्रौद्योगिकी कंपनी है जो लोगों के बैंकिंग और अपने पैसे के बारे में सोचने के तरीके को बदलती है | सिंपल का उत्पाद बजट और बैंकिंग को एक खूबसूरत ऐप में जोड़ता है, इसमें ऐसे उपकरण हैं जो लोगों को उनकी जरूरतों के लिए बचाने में मदद करते है और उन चीज़ों पर जिम्मेदारी से खर्च करवाते है जिन्हें वे चाहते हैं |<a href="mailto:press@simple.com"> press@simple.com </a> पर  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple </a> से संपर्क करें |
 
 
 </p>
index bb9a7d30c698c561a694345e6c2e6a12957d3685..ee1e216ad38ed8a646d742696f0c6074ee0ef061 100644 (file)
@@ -53,7 +53,7 @@
 <p>Replikasi logikal memperluas fitur replikasi dari PostgreSQL saat ini dengan kemampuan untuk mengirim perubahan pada tingkat per-database dan per-tabel ke database PostgreSQL yang berbeda. Pengguna sekarang dapat menyempurnakan data yang direplikasi ke berbagai cluster database dan akan memiliki kemampuan untuk melakukan upgrade dengan <i>zero-downtime</i> ke versi PostgreSQL utama di kemudian hari.</p>
 
 <p>&quot;Kami telah banyak PostgreSQL secara besar-besaran sejak versi 9.3 dan sangat membuncah dengan kehadiran versi 10 karena menyajikan dasar untuk partisi yang telah lama ditunggu dan replikasi logikal yang tertanam pada PostgreSQL. Ini akan memungkinkan kami untuk menggunakan PostgreSQL bahkan di dalam lebih banyak lagi layanan,&quot; ujar Vladimir Borodin, Kepala Tim DBA di
-<a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+<a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <b>Deklarasi Tabel Partisi - Kenyamanan dalam membagi data Anda</b>
 
 
 <p>PostgreSQL 10 memperkenalkan <i>Quorum Commit</i> untuk replikasi sinkron, yang memungkinkan fleksibilitas dalam bagaimana database utama menerima informasi bahwa perubahan berhasil ditulis ke replika jarak jauh. Administrator sekarang dapat menentukan bahwa jika sejumlah replika telah mengetahui bahwa perubahan pada database telah dilakukan, maka data dapat dianggap aman ditulis.</p>
 
-<p>&quot;<i>Quorum Commit</i> untuk melakukan replikasi sinkron di PostgreSQL 10 memberikan lebih banyak pilihan untuk memperluas kemampuan kita dalam mempromosikan infrastruktur database dengan hampir nol <i>downtime</i> dari perspektif aplikasi. Hal ini memungkinkan kita untuk terus menyebarkan dan memperbarui infrastruktur database kita tanpa menimbulkan waktu maintenance yang panjang,&quot; kata Curt Micol, Staff Infrastructure Engineer di <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+<p>&quot;<i>Quorum Commit</i> untuk melakukan replikasi sinkron di PostgreSQL 10 memberikan lebih banyak pilihan untuk memperluas kemampuan kita dalam mempromosikan infrastruktur database dengan hampir nol <i>downtime</i> dari perspektif aplikasi. Hal ini memungkinkan kita untuk terus menyebarkan dan memperbarui infrastruktur database kita tanpa menimbulkan waktu maintenance yang panjang,&quot; kata Curt Micol, Staff Infrastructure Engineer di <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <b>Otentikasi SCRAM-SHA-256 - Amankan akses data Anda</b>
 
-<p>Salted Challenge Response Authentication Mechanism (SCRAM) yang didefinisikan dalam <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a> mendefinisikan protokol untuk memperbaiki penyimpanan dan transmisi kata sandi yang aman dengan menyediakan kerangka kerja untuk negosiasi kata sandi yang kuat. PostgreSQL 10 memperkenalkan metode otentikasi SCRAM-SHA-256, yang didefinisikan dalam
-<a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a>, untuk memberikan keamanan yang lebih baik daripada metode otentikasi kata sandi MD5 yang ada.</p>
+<p>Salted Challenge Response Authentication Mechanism (SCRAM) yang didefinisikan dalam <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a> mendefinisikan protokol untuk memperbaiki penyimpanan dan transmisi kata sandi yang aman dengan menyediakan kerangka kerja untuk negosiasi kata sandi yang kuat. PostgreSQL 10 memperkenalkan metode otentikasi SCRAM-SHA-256, yang didefinisikan dalam
+<a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a>, untuk memberikan keamanan yang lebih baik daripada metode otentikasi kata sandi MD5 yang ada.</p>
 
 <a name="features"></a><h2>Penjelasan tambahan tentang fitur-fitur</h2>
 <p>untuk penjelasan dari fitur-fitur diatas dan lainnya, mohon lihat tautan dibawah ini:
@@ -150,19 +150,19 @@ PostgreSQL adalah database open source paling maju di dunia, dengan komunitas gl
 <p>PostgreSQL adalah database open source paling maju di dunia, dengan komunitas global dari ribuan pengguna, kontributor, perusahaan dan organisasi. Proyek PostgreSQL dibangun lebih dari 30 tahun rekayasa, dimulai dari University of California, Berkeley, dan terus berlanjut dengan tahap perkembangan yang tak tertandingi. Fitur PostgreSQL  yang telah matang tidak hanya sesuai dengan pemilik yang memiliki sistem database terbaik, namun melebihi mereka dari segi fitur database canggih, kelayakan, keamanan dan stabilitas. Pelajari lebih lanjut tentang PostgreSQL dan berpartisipasi dalam komunitas kami di <a href="https://www.postgresql.org">PostgreSQL.org</a>.</p>
 
 <p>&quot;Kami telah banyak menggunakan PostgreSQL sejak 9.3 dan sangat senang dengan versi 10 karena membawa basis untuk tabel partisi yang telah lama ditunggu dan replikasi logis yang terpasang secara alami pada PostgreSQL. Ini akan memungkinkan kami untuk menggunakan PostgreSQL di lebih banyak layanan,&quot; kata Vladimir Borodin, DBA tim Lead di
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a> adalah perusahaan teknologi yang membangun produk dan layanan cerdas yang didukung oleh pembelajaran mesin. Tujuan Yandex adalah untuk membantu konsumen dan bisnis lebih baik menavigasi dunia online dan offline. Sejak 1997, Yandex telah menyampaikan layanan pencarian dan informasi kelas dunia yang relevan secara lokal. Selain itu, Yandex telah mengembangkan layanan transportasi on-demand terkemuka di pasar, produk navigasi, dan aplikasi mobile lainnya untuk jutaan konsumen di seluruh dunia. Untuk menghubungi
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a> adalah perusahaan teknologi yang membangun produk dan layanan cerdas yang didukung oleh pembelajaran mesin. Tujuan Yandex adalah untuk membantu konsumen dan bisnis lebih baik menavigasi dunia online dan offline. Sejak 1997, Yandex telah menyampaikan layanan pencarian dan informasi kelas dunia yang relevan secara lokal. Selain itu, Yandex telah mengembangkan layanan transportasi on-demand terkemuka di pasar, produk navigasi, dan aplikasi mobile lainnya untuk jutaan konsumen di seluruh dunia. Untuk menghubungi
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
 <p>&quot;Quorum Commit untuk melakukan replikasi sinkron di PostgreSQL 10 memberikan lebih banyak pilihan untuk memperluas kemampuan kita dalam mempromosikan infrastruktur database dengan hampir nol downtime dari perspektif aplikasi. Hal ini memungkinkan kita untuk terus menyebarkan dan memperbarui infrastruktur database kita tanpa menimbulkan waktu maintenance yang panjang&quot; kata Curt Micol, Staff Infrastructure Engineer at
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
-<p>didirkan pada tahun 2009, <a href="https://www.simple.com/" target="_blank">Simple</a>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
+<p>didirkan pada tahun 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
  adalah perusahaan teknologi yang mengubah cara orang bank dan memikirkan uang mereka. Produk sederhana memadukan penganggaran dan perbankan menjadi satu aplikasi indah, dengan alat yang membantu orang menabung untuk hal-hal yang mereka butuhkan dan membelanjakannya dengan bertanggung jawab atas hal-hal yang mereka inginkan. Hubungi
-  <a href="https://www.simple.com/" target="_blank">Simple</a> di
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> di
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index 2cc00c84441a8092866c0642c818f013709033dc..6605e72ec9577aba7e70b10bfee07dd99e30178b 100644 (file)
@@ -53,7 +53,7 @@
 
 <p dir="rtl">שכפול לוגי מרחיב את תכונות השכפול הנוכחיות של PostgreSQL עם היכולת לשלוח שינויים ברמת מסד נתונים או ברמה של הטבלה למסדי נתונים שונים של PostgreSQL. משתמשים יכולים עכשיו לכוונן את הנתונים משוכפלים לאשכולות מסד נתונים שונות ויהיו יכולים לבצע שדרוגים עם אפס זמן השבתה לגרסאות PostgreSQL עתידיים גדולים.</p>
 
-<p dir="rtl">&quot;אנו משתמשים כבדים של PostgreSQL מאז 9.3 ומתלהבים מאוד מהגרסה 10 מכיוון שהיא מביאה את הבסיס להפרדת הטבלאות ולשכפול לוגי מובני. והיא תאפשר לנו להשתמש ב- PostgreSQL בשירותים אחרים גם", אמר וולדימיר&quot;בורודין, ראש צוות DBA  ב <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+<p dir="rtl">&quot;אנו משתמשים כבדים של PostgreSQL מאז 9.3 ומתלהבים מאוד מהגרסה 10 מכיוון שהיא מביאה את הבסיס להפרדת הטבלאות ולשכפול לוגי מובני. והיא תאפשר לנו להשתמש ב- PostgreSQL בשירותים אחרים גם", אמר וולדימיר&quot;בורודין, ראש צוות DBA  ב <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <p dir="rtl"><b>חלוקה טבלאות הצהרתית - נוחות חלוקת הנתונים שלך</b></p>
 
 
 <p dir="rtl">PostgreSQL 10 מציגה מניין להתחייבות ביצוע עבור שכפול סינכרוני, אשר מאפשר גמישות כיצד מסד נתונים ראשי מקבל הודאה כי השינויים נכתבו בהצלחה בעותקים משוכפלים מרוחקים. מנהל מערכת יכול כעת לציין כי אם מספר כלשהו של עותקים משוכפלים הודיעו כי נעשה שינוי למסד הנתונים, אז הנתונים יכולים להיחשב כנכתב בבטחה.</p>
 
-<p dir="rtl">&quot;מניין להתחייבות ביצוע בשכפול נתונים סינכרוני ב- PostgreSQL 10 מעניק יותר אפשרויות להרחיב את יכולתנו לקדם את תשתיות מסד הנתונים עם זמן השבתה כמעט אפסי מנקודת מבט של היישום. זה מאפשר לנו ברציפות לפרוס &quot;לעדכן את תשתית מסד הנתונים שלנו מבלי לגרום לחלונות תחזוקה ארוכים", אמר קורט מיקול , מהנדס צוות תשתיות ב- <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+<p dir="rtl">&quot;מניין להתחייבות ביצוע בשכפול נתונים סינכרוני ב- PostgreSQL 10 מעניק יותר אפשרויות להרחיב את יכולתנו לקדם את תשתיות מסד הנתונים עם זמן השבתה כמעט אפסי מנקודת מבט של היישום. זה מאפשר לנו ברציפות לפרוס &quot;לעדכן את תשתית מסד הנתונים שלנו מבלי לגרום לחלונות תחזוקה ארוכים", אמר קורט מיקול , מהנדס צוות תשתיות ב- <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <p dir="rtl"><b>אימות SCRAM-SHA-256 - אבטחת גישה לנתונים שלך</b></p>
 
-<p dir="rtl">The Salted Challenge Response Authentication Mechanism (ר"ת SCRAM) המוגדר ב <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a> מגדיר פרוטוקול לשפר את האחסון המאובטח והעברת הסיסמאות על-ידי מתן תשתית למשא ומתן חזק עם סיסמאות . PostgreSQL 10 מציג אתה שיטת האימות SCRAM-SHA-256, המוגדרת ב <a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a> כדי לספק אבטחה טובה יותר מאשר שיטת אימות הסיסמאות הקיימת המבוססת על MD5.</p>
+<p dir="rtl">The Salted Challenge Response Authentication Mechanism (ר"ת SCRAM) המוגדר ב <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a> מגדיר פרוטוקול לשפר את האחסון המאובטח והעברת הסיסמאות על-ידי מתן תשתית למשא ומתן חזק עם סיסמאות . PostgreSQL 10 מציג אתה שיטת האימות SCRAM-SHA-256, המוגדרת ב <a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a> כדי לספק אבטחה טובה יותר מאשר שיטת אימות הסיסמאות הקיימת המבוססת על MD5.</p>
 
 <a name="features"></a><h2 dir="rtl">על התכונות בהרחבה</h2>
 <p dir="rtl">לקבלת הסברים על התכונות הנ"ל ואחרים, עיין במשאבים הבאים:</p>
@@ -141,15 +141,15 @@ Michael Goldberg<br />
 
 <p dir="rtl">הפרויקט PostgreSQL נבנה על מעל 30 שנות הנדסה, החל באוניברסיטת קליפורניה, ברקלי, והמשיך להתפתח עם קצב ללא תחרות. ערכת התכונות הבשלות של PostgreSQL לא רק תואמת מערכות נתונים קנייניות מובילות, אלא עולה עליהן במאפיינים של מסדי נתונים מתקדמים ,הרחבה, אבטחה ויציבות. למידע נוסף על PostgreSQL והשתתפות בקהילה שלנו ניתן ב <a href="https://www.postgresql.org">PostgreSQL.org</a>.</p>
 
-<p dir="rtl">&quot;אנו משתמשים כבדים של PostgreSQL מאז 9.3 ומתלהבים מאוד מהגרסה 10 מכיוון שהיא מביאה את הבסיס להפרדת הטבלאות ולשכפול לוגי מובני. והיא תאפשר לנו להשתמש ב- PostgreSQL בשירותים אחרים גם", אמר וולדימיר&quot;בורודין, ראש צוות DBA  ב <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+<p dir="rtl">&quot;אנו משתמשים כבדים של PostgreSQL מאז 9.3 ומתלהבים מאוד מהגרסה 10 מכיוון שהיא מביאה את הבסיס להפרדת הטבלאות ולשכפול לוגי מובני. והיא תאפשר לנו להשתמש ב- PostgreSQL בשירותים אחרים גם", אמר וולדימיר&quot;בורודין, ראש צוות DBA  ב <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <p dir="rtl">
-<a href="https://yandex.com/" target="_blank"> Yandex </a> הנה חברת טכנולוגית שבונה מוצרים ושירותים נבונים המופעלים על ידי למידת מכונה. המטרה של Yandex היא לעזור לצרכנים ולעסקים לנווט טוב יותר בעולם המקוון והלא מקוון. מאז 1997, Yandex סיפקה שירותי חיפוש ומידע הרלוונטיים לאזור ברמה עולמית. בנוסף, Yandex פיתחה שירותי תחבורה המובילים בשוק על פי דרישה, מוצרי ניווט, ויישומים ניידים אחרים עבור מיליוני צרכנים ברחבי העולם. כדי ליצור קשר עם Yandex, בקר בכתובת <a href="https://yandex.com/company/contacts/" target="_blank"> https://yandex.com/company/contacts/ </a>
+<a href="https://yandex.com/" target="_blank" rel="noopener"> Yandex </a> הנה חברת טכנולוגית שבונה מוצרים ושירותים נבונים המופעלים על ידי למידת מכונה. המטרה של Yandex היא לעזור לצרכנים ולעסקים לנווט טוב יותר בעולם המקוון והלא מקוון. מאז 1997, Yandex סיפקה שירותי חיפוש ומידע הרלוונטיים לאזור ברמה עולמית. בנוסף, Yandex פיתחה שירותי תחבורה המובילים בשוק על פי דרישה, מוצרי ניווט, ויישומים ניידים אחרים עבור מיליוני צרכנים ברחבי העולם. כדי ליצור קשר עם Yandex, בקר בכתובת <a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener"> https://yandex.com/company/contacts/ </a>
 </p>
 
-<p dir="rtl">&quot;מניין להתחייבות ביצוע בשכפול נתונים סינכרוני ב- PostgreSQL 10 מעניק יותר אפשרויות להרחיב את יכולתנו לקדם את תשתיות מסד הנתונים עם זמן השבתה כמעט אפסי מנקודת מבט של היישום. זה מאפשר לנו ברציפות לפרוס &quot;לעדכן את תשתית מסד הנתונים שלנו מבלי לגרום לחלונות תחזוקה ארוכים", אמר קורט מיקול , מהנדס צוות תשתיות ב- <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+<p dir="rtl">&quot;מניין להתחייבות ביצוע בשכפול נתונים סינכרוני ב- PostgreSQL 10 מעניק יותר אפשרויות להרחיב את יכולתנו לקדם את תשתיות מסד הנתונים עם זמן השבתה כמעט אפסי מנקודת מבט של היישום. זה מאפשר לנו ברציפות לפרוס &quot;לעדכן את תשתית מסד הנתונים שלנו מבלי לגרום לחלונות תחזוקה ארוכים", אמר קורט מיקול , מהנדס צוות תשתיות ב- <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
-<p dir="rtl">נוסדה בשנת 2009, <a href="https://www.simple.com/" target="_blank"> Simple</a> היא חברת טכנולוגיה אשר משנה את הדרך שבה אנשים חושבים על הבנק ועל הכסף שלהם. המוצר של Simple משלב תקציב ובנקאות בתוך באפליקציה אחת מהממת, עם כלים המסייעים לאנשים לחסוך עבור דברים שהם צריכים לשלם עם אחריות עבור דברים שהם רוצים. צור קשר עם <a href="https://www.simple.com/" target="_blank"> Simple</a> ב <a href="mailto:press@simple.com"> press@simple.com </ a></p>
+<p dir="rtl">נוסדה בשנת 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener"> Simple</a> היא חברת טכנולוגיה אשר משנה את הדרך שבה אנשים חושבים על הבנק ועל הכסף שלהם. המוצר של Simple משלב תקציב ובנקאות בתוך באפליקציה אחת מהממת, עם כלים המסייעים לאנשים לחסוך עבור דברים שהם צריכים לשלם עם אחריות עבור דברים שהם רוצים. צור קשר עם <a href="https://www.simple.com/" target="_blank" rel="noopener"> Simple</a> ב <a href="mailto:press@simple.com"> press@simple.com </ a></p>
 
 <a name="companies"></a><h2 dir="rtl">תמיכה תאגידית</h2>
 
index d9a1ec11cc0a0f9ca7d2ad61455613e25c49ab5d..4ae043845be6026a3bd154d8ff88b37ea087ec3b 100644 (file)
@@ -52,7 +52,7 @@
 
 <p>La replica logica estende le funzionalità di replica attualmente presenti in PostgreSQL con l'abilità di inviare modifiche a livello di singolo database o tabella ad altri database PostgreSQL. Gli utenti possono controllare i dati replicati su altri cluster di database, e avranno la possibilità di effettuare upgrade con downtime zero a future major release di PostgreSQL.</p>
 
-<p>&quot;Abbiamo usato estensivamente PostgreSQL fino dalla versione 9.3 e siamo molto eccitati per la versione 10, dato che incorpora il supporto per il tanto atteso partizionamento e per la replica logica. Ci permetterà di usare PostgreSQL in ancora più servizi,&quot; dice Vladimir Borodin, DBA Team Lead presso <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+<p>&quot;Abbiamo usato estensivamente PostgreSQL fino dalla versione 9.3 e siamo molto eccitati per la versione 10, dato che incorpora il supporto per il tanto atteso partizionamento e per la replica logica. Ci permetterà di usare PostgreSQL in ancora più servizi,&quot; dice Vladimir Borodin, DBA Team Lead presso <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <b>Partizionamento dichiarativo di tabella - Semplicità nel dividere i tuoi dati</b>
 
@@ -67,7 +67,7 @@
 <p>PostgreSQL 10 introduce il commit basato su quorum per la replica sincrona, che dà flessibilità al modo in cui il database primario riceve da parte delle repliche remote la conferma che i cambiamenti siano stati scritti con successo. Un amministratore è adesso in grado di specificare che, qualora qualsiasi numero dei server standby confermi l'accettazione delle modifiche al database, i dati siano considerati scritti in modo sicuro.
 </p>
 
-<p>&quot;Il Quorum Commit per la replica sincrona in PostgreSQL 10 aumenta la nostra possibilità di promuovere l'infrastruttura di database con downtime vicino a zero per quel che riguarda le applicazioni. Questo ci consente di mettere in servizio e di aggiornare la nostra infrastruttura di database in continuazione, senza incorrere in lunghi tempi di manutenzione,&quot; dice Curt Micol, Staff Infrastructure Engineer presso <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+<p>&quot;Il Quorum Commit per la replica sincrona in PostgreSQL 10 aumenta la nostra possibilità di promuovere l'infrastruttura di database con downtime vicino a zero per quel che riguarda le applicazioni. Questo ci consente di mettere in servizio e di aggiornare la nostra infrastruttura di database in continuazione, senza incorrere in lunghi tempi di manutenzione,&quot; dice Curt Micol, Staff Infrastructure Engineer presso <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <b>Autenticazione SCRAM-SHA-256 - Metti al sicuro l'accesso ai tuoi dati</b>
 
@@ -145,18 +145,18 @@ PostgreSQL è il principale sistema di gestione di database open source, con una
 </p>
 <p>PostgreSQL è il principale sistema di gestione di database open source, con una comunità internazionale costituita da migliaia di utenti e sviluppatori nonché decine di aziende ed enti provenienti da tutte le parti del mondo. Il progetto PostgreSQL si porta dietro oltre 25 anni di attività di ingegneria del software, a partire dal campus di Berkeley dell'Università di California, ed oggi può vantare un ritmo di sviluppo senza uguali. La gamma di funzionalità mature messe a disposizione da PostgreSQL non soltanto è in grado di competere con quelle offerte da sistemi di database proprietari, ma le migliora in termini  di funzionalità avanzate, estensibilità, sicurezza e stabilità. Scopri maggiori informazioni su PostgreSQL e partecipa attivamente alla nostra comunità sul sito <a href="https://www.postgresql.org">PostgreSQL.org</a> e, per l'Italia, <a href="http://www.itpug.org">ITPUG</a>.
 </p>
-<p>&quot;Abbiamo usato estensivamente PostgreSQL fino dalla versione 9.3 e siamo molto eccitati per la versione 10, dato che incorpora il supporto per il tanto atteso partizionamento e per la replica logica. Ci permetterà di usare PostgreSQL in ancora più servizi,&quot; dice Vladimir Borodin, DBA Team Lead presso <a href="https://www.yandex.com/" target="_blank">Yandex</a>.
+<p>&quot;Abbiamo usato estensivamente PostgreSQL fino dalla versione 9.3 e siamo molto eccitati per la versione 10, dato che incorpora il supporto per il tanto atteso partizionamento e per la replica logica. Ci permetterà di usare PostgreSQL in ancora più servizi,&quot; dice Vladimir Borodin, DBA Team Lead presso <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a> un'azienda tecnologica che sviluppa prodotti intelligenti e servizi alimentati dal machine learning. L'obiettivo di Yandex è di aiutare i clienti e le aziende a districarsi meglio nel mondo online e in quello offline. Yandex ha inoltre sviluppato prodotti su misura leader del mercato tra cui: dispositivi di trasporto, navigazione e applicazioni mobili per milioni di utenti in tutto il mondo. Per contattare, visita il sito
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a> un'azienda tecnologica che sviluppa prodotti intelligenti e servizi alimentati dal machine learning. L'obiettivo di Yandex è di aiutare i clienti e le aziende a districarsi meglio nel mondo online e in quello offline. Yandex ha inoltre sviluppato prodotti su misura leader del mercato tra cui: dispositivi di trasporto, navigazione e applicazioni mobili per milioni di utenti in tutto il mondo. Per contattare, visita il sito
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
-<p>&quot;Il Quorum Commit per la replica sincrona in PostgreSQL 10 aumenta la nostra possibilità di promuovere l'infrastruttura di database con downtime vicino a zero per quel che riguarda le applicazioni. Questo ci consente di mettere in servizio e di aggiornare la nostra infrastruttura di database in continuazione, senza incorrere in lunghi tempi di manutenzione,&quot; dice Curt Micol, Staff Infrastructure Engineer presso <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
-<p>Fondata nel 2009, <a href="https://www.simple.com/" target="_blank">Simple</a>
+<p>&quot;Il Quorum Commit per la replica sincrona in PostgreSQL 10 aumenta la nostra possibilità di promuovere l'infrastruttura di database con downtime vicino a zero per quel che riguarda le applicazioni. Questo ci consente di mettere in servizio e di aggiornare la nostra infrastruttura di database in continuazione, senza incorrere in lunghi tempi di manutenzione,&quot; dice Curt Micol, Staff Infrastructure Engineer presso <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
+<p>Fondata nel 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
   è un'azienda tecnologica che sta cambiando il modo in cui persone e banche pensano ai loro soldi. Il prodotto Simple unisce pianificazione del budget al fare banca all'interno di una singola applicazione, con strumenti che aiutano le persone a risparmiare e a spendere i loro soldi in modo responsabile. Contatta
-  <a href="https://www.simple.com/" target="_blank">Simple</a> via email a
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> via email a
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index 6d7ad47285a0a359f0a540e32132e594d46d5552..177cc2b6816351782f017e004a25bfd5cdfaad4d 100644 (file)
@@ -174,17 +174,17 @@ community at <a href="https://www.postgresql.org">PostgreSQL.org</a>.
   about version 10 since it brings basis for long-awaited partitioning and
   built-in logical replication. It will allow us to use PostgreSQL in even more
   services,&quot; said Vladimir Borodin, DBA Team Lead at
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a> is a technology company
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a> is a technology company
 that builds intelligent products and services powered by machine learning. Yandex's
 goal is to help consumers and businesses better navigate the online and offline
 world. Since 1997, Yandex has delivered world-class, locally relevant search and
 information services. Additionally, Yandex has developed market-leading on-demand
 transportation services, navigation products, and other mobile applications for
 millions of consumers across the globe.  To contact Yandex, please visit
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
@@ -193,13 +193,13 @@ millions of consumers across the globe.  To contact Yandex, please visit
   zero downtime from the application perspective. This allows us to continuously
   deploy and update our database infrastructure without incurring long
   maintenance windows,&quot; said Curt Micol, Staff Infrastructure Engineer at
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
-<p>Founded in 2009, <a href="https://www.simple.com/" target="_blank">Simple</a>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
+<p>Founded in 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
   is a technology company that’s changing the way people bank and think about
   their money. Simple's product blends budgeting and banking into a single
   beautiful app, with tools that help people save for the things they need and
   spend responsibly on the things they want.  Contact
-  <a href="https://www.simple.com/" target="_blank">Simple</a> at
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> at
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index 80e501c9f30ce6e7f09eefdda7e0f0e8eb21d62d..998c2e7a3f61d14b8844eb2eea4edac3ae26cc76 100644 (file)
@@ -71,7 +71,7 @@ Hagander၊ <a href="/developer/core/">core team</a> PostgreSQL ကမာၻ
 10 အတြက္ လြန္စြာ စိတ္လႈပ္ရွားေနျခင္းမွာ version 10 သည္ ျကာရွည္စြာေစာင့္ဆိုင္းခဲ့ရေသာ
 လုပ္ေဆာင္ခ်က္မ်ားျဖစ္သည့္ Partitioning ႏွင့္ Logical Replication တို ့ပါဝင္ေသာေျကာင့့္ျဖစ္သည္။ ဤလုပ္ေဆာင္ခ်က္မ်ား ပါဝင္ျခင္းသည္ ကြ်န္ေတာ္တို႕ အေနျဖင့္ PostgreSQL ၏ ေဆာင္ရြက္မႈမ်ားကို ပိုမို
 အသုံးျပဳလာႏုိင္ေစပါသည္။&quot; ဟု Vladimir Borodin (DBA အဖြဲ ့ေခါင္းေဆာင္) ကေျပာျကားခဲ့ပါသည္။
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <b> Declarative Table Partitioning - ေဒတာကို ခြဲျခားရာတြင္ အဆင္ေျပမႈ </b>
 
@@ -105,16 +105,16 @@ parallelized ျဖစ္ျပီးသား data scans အမ်ိဳးအ
 ျပဳႏုိင္စြမ္း ပိုမို ေကာင္းမြန္ေစသည္ ။ ဤလုပ္ေဆာင္ခ်က္သည္ windows မ်ားကို
 ၾကာရွည္ထိန္းသိမ္းျပဳျပင္ရန္မလိုအပ္ပဲ ကြ်န္ေတာ္တို ့၏ database infrastructure
 ကိုအဆက္မျပတ္သံုးစြဲ၊ျမွင့္တင္ျခင္းျပဳလုပ္ႏုိင္သည္&quot; ဟု Curt Micol,Staff Infrastructure Engineer at
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <b> SCRAM-SHA-256 authentication - ေဒတာကို လုံျခဳံစိတ္ခ်စြာ အသုံးျပဳမႈ </b>
 
 <p>Salted Challenge Response Authentication Mechanism (SCRAM) ရဲ ႔အဓိပၸာယ္ သည္
-  <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a>
+  <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a>
     တြင္ေဖာ္ျပထားပါသည္။ SCRAM သည္ data သိမ္းဆည္းမႈႏွင့္ passwords မ်ား ဖလွယ္ျခင္းတို႕
 လုပ္ရာတြင္ ပိုမိုတုိးတက္ေကာင္းမြန္ေသာ password လုံျခဳံေရး အေျခခံမ်ားကိုေပးပါသည္။ PostgreSQL
 10 သည္ SCRAM-SHA-256 authentication နည္းလမ္းကိုစတင္ မိတ္ဆက္ေပးပါသည္။ ဤနည္းလမ္း၏ အဓိပၸာယ္ကိ
-  <a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a>ွာေဖာ္ျပထားပါသည္။ ဤနည္းလမ္းသည္ လက္ရွိ MD5-based password authentication
+  <a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a>ွာေဖာ္ျပထားပါသည္။ ဤနည္းလမ္းသည္ လက္ရွိ MD5-based password authentication
 နည္းလမ္းထက္ ပိုမိုေကာင္းမြန္ေသာ လုံျခံဳေရးကိုလည္းေပးပါသည္။ </p>
 
 <a name="features"></a><h2> အခ်က္အလက္မ်ား </h2>
@@ -226,17 +226,17 @@ system ေတြနွင့္ယွဥ္ႏုိင္ရုံတင္သ
 10 အတြက္ လြန္စြာ စိတ္လႈပ္ရွားေနျခင္းမွာ version 10 သည္ ျကာရွည္စြာေစာင့္ဆိုင္းခဲ့ရေသာ
 လုပ္ေဆာင္ခ်က္မ်ားျဖစ္သည့္ Partitioning ႏွင့္ Logical Replication တို ့ပါဝင္ေသာေျကာင့့္ျဖစ္သည္။
 လုပ္ေဆာင္ခ်က္မ်ား ပါဝင္ျခင္းသည္ ကြ်န္ေတာ္တို႕ အေနျဖင့္ PostgreSQL ၏ ေဆာင္ရြက္မႈမ်ားကို ပိုမို အသုံးျပဳလာႏုိင္ေစပါသည္။&quot; ဟု Vladimir Borodin (DBA အဖြဲ ့ေခါင္းေဆာင္)
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a>  သည္ ျမင့္မားေသာထုတ္ကုန္
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a>  သည္ ျမင့္မားေသာထုတ္ကုန္
 ႏွင့္ဝန္ေဆာင္မႈမ်ားကို Machine Learning သံုး၍ တည္ေဆာက္ေသာကုမၸဏီျဖစ္သည္။
 Yandex၏ ရည္မွန္းခ်က္မွာ အသုံးျပဳသူႏွင့္စီးပြားေရးလုပ္ငန္းမ်ားျကား online ႏွင့္ offline
 က႑တြင္ ပိုမိုေကာင္းမြန္ေသာ ဆက္သြယ္ေရး ရရွိရန္ ရည္ရြယ္သည္။ ၁၉၉၇ခုႏွစ္မွစ၍ Yandex
 သည္ ကမာၻ ့အဆင့္မွီ၊ ျပည္တြင္းႏွင့္ဆက္စပ္ေသာ ရွာေဖြေရးႏွင့္ အခ်က္အလက္ စုေဆာင္းေရး
 ဝန္ေဆာင္မႈမ်ားကို လုပ္ေဆာင္ခဲ့ပါသည္။ ထို ့အျပင္ Yandex သည္ ေစ်းကြက္မ်ားတြင္
 ဦးေဆာင္မႈေပးေနေသာ ပို႕ေဆာင္ေရးႏွင့္ ဆက္သြယ္ေရး ဝန္ေဆာင္မႈမ်ားအျပင္ အျခား mobile applications မ်ားအား ကမာၻအဝွမ္းရွိ သန္းခ်ီေသာ အသုံးျပဳသူမ်ား အတြက္ လုပ္ေဆာင္ေပးထားပါသည္။  To contact Yandex, please visit
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
@@ -245,12 +245,12 @@ commit သည္ သံုးစြဲရာတြင္ ကြန္ပ်ဴ
 မ်ား၏ ျပဳႏုိင္စြမ္း ပိုမို ေကာင္းမြန္ေစသည္ ။ ဤလုပ္ေဆာင္ခ်က္သည္ windows မ်ားကို
 ၾကာရွည္ထိန္းသိမ္းျပဳျပင္ရန္မလိုအပ္ပဲ ကြ်န္ေတာ္တို ့၏ database infrastructure
 ကိုအဆက္မျပတ္သံုးစြဲ၊ျမွင့္တင္ျခင္းျပဳလုပ္ႏုိင္သည္&quot; ဟု Curt Micol,Staff Infrastructure
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
-<p>၂၀၀၉ ခုႏွစ္တြင္ 272စတင္တည္ေထာင္ခဲ့ျပီး  <a href="https://www.simple.com/" target="_blank">Simple</a>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
+<p>၂၀၀၉ ခုႏွစ္တြင္ 272စတင္တည္ေထာင္ခဲ့ျပီး  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
   လူအမ်ား၏ဘဏ္အျမင္ႏွင့္ ယင္းတို ့၏ေငြေျကးဆိုင္ရာ
 အေတြးအေခၚမ်ားကိုေျပာင္းလဲေပးေနေသာ နည္းပညာ ကုမၸဏီ တစ္ခုျဖစ္သည္။ Simple
 ၏ထုတ္ကုန္မ်ားသည္ ေငြေျကးႏွင့္ဘ႑ေရးဆိုင္ရာမ်ားကို app တစ္ခု အျဖစ္ ေပါင္းစပ္ျပီး အသုံးျပဳသူမ်ား လိုအပ္ေသာ အရာမ်ားကို ေငြေျကးစုေဆာင္း ေပးျပီး လိုခ်င္ေသာ အရာမ်ားအတြက္ သုံးစြဲမႈထိန္းသိမ္းႏိုင္ေအာင္ ကူညီလုပ္ေဆာင္ေပးေသာ ကိရိယာမ်ားပါဝင္သည္။ Contact
-  <a href="https://www.simple.com/" target="_blank">Simple</a> at
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> at
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index 43915b6ff9b9c6265f664fad1e0e92db6d3eb302..4da8a94f1d589407d3c0ff7d169ea993998050f9 100644 (file)
@@ -54,7 +54,7 @@
 A replicação lógica expande as funcionalidades de replicação atuais do PostgreSQL com a capacidade de enviar modificações a nível de banco de dados ou a nível de tabela para diferentes bancos de dados do PostgreSQL. Os usuários agora podem decidir os dados a serem replicados para vários clusters de banco de dados e terão a capacidade de executar atualizações sem interrupção para as futuras versões principais do PostgreSQL.
 </p>
 
-<p>&quot;Temos usado fortemente o PostgreSQL desde 9.3 e estamos muito entusiasmados com a versão 10, pois traz a base para os tão esperados particionamento e replicação lógica integrada. Ele nos permitirá usar o PostgreSQL em mais serviços&quot;, disse Vladimir Borodin, DBA Chefe de Equipe na <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+<p>&quot;Temos usado fortemente o PostgreSQL desde 9.3 e estamos muito entusiasmados com a versão 10, pois traz a base para os tão esperados particionamento e replicação lógica integrada. Ele nos permitirá usar o PostgreSQL em mais serviços&quot;, disse Vladimir Borodin, DBA Chefe de Equipe na <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <b>Particionamento Declarativo de Tabelas - Conveniência na divisão de seus dados</b>
 
@@ -68,11 +68,11 @@ A replicação lógica expande as funcionalidades de replicação atuais do Post
 
 <p>O PostgreSQL 10 introduz o commit por quórum para a replicação síncrona, o que permite flexibilidade na forma como um banco de dados primário recebe confirmação de que as alterações foram gravadas com sucesso nas réplicas remotas. Um administrador agora pode especificar que, se um certo número de réplicas tiver reconhecido que uma alteração no banco de dados foi feita, os dados podem ser considerados como seguramente escritos.</p>
 
-<p>&quot;O commit por quórum para a replicação síncrona no PostgreSQL 10 oferece mais opções para expandir nossa capacidade de promover infraestrutura de banco de dados, da perspectiva da aplicação, com tempo de interrupção praticamente zero. Isso nos permite implantar e atualizar continuamente nossa infraestrutura de banco de dados sem incorrer em longas janelas de manutenção&quot;, disse Curt Micol. , Engenheiro de infraestrutura pessoal na <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+<p>&quot;O commit por quórum para a replicação síncrona no PostgreSQL 10 oferece mais opções para expandir nossa capacidade de promover infraestrutura de banco de dados, da perspectiva da aplicação, com tempo de interrupção praticamente zero. Isso nos permite implantar e atualizar continuamente nossa infraestrutura de banco de dados sem incorrer em longas janelas de manutenção&quot;, disse Curt Micol. , Engenheiro de infraestrutura pessoal na <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <b>Autenticação SCRAM-SHA-256 - Proteja seu acesso a dados</b>
 
-<p>O &quot;Salted Challenge Response Authentication Mechanism&quot; (SCRAM) definido na <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a> define um protocolo para melhorar armazenamento e transmissão seguros das senhas, fornecendo uma estrutura para uma negociação forte de senhas. O PostgreSQL 10 inclui o método de autenticação SCRAM-SHA-256, definido na [RFC7677] (https://tools.ietf.org/html/rfc7677), para fornecer uma segurança melhor do que o atual método de autenticação de senhas baseado em MD5.</p>
+<p>O &quot;Salted Challenge Response Authentication Mechanism&quot; (SCRAM) definido na <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a> define um protocolo para melhorar armazenamento e transmissão seguros das senhas, fornecendo uma estrutura para uma negociação forte de senhas. O PostgreSQL 10 inclui o método de autenticação SCRAM-SHA-256, definido na [RFC7677] (https://tools.ietf.org/html/rfc7677), para fornecer uma segurança melhor do que o atual método de autenticação de senhas baseado em MD5.</p>
 
 <a name="features"></a><h2>Detalhes das Funcionalidades</h2>
 <p>
@@ -152,19 +152,19 @@ PostgreSQL é o banco de dados mais avançado do mundo, com uma comunidade globa
 PostgreSQL é o banco de dados mais avançado do mundo, com uma comunidade global de milhares de usuários, colaboradores, empresas e organizações. O Projeto PostgreSQL baseia-se em mais de 30 anos de engenharia, iniciando na Universidade da Califórnia, Berkeley, e continua em um ritmo inigualável de desenvolvimento. Conjunto de funcionalidades maduras do PostgreSQL não só se igualam aos principais sistemas de bancos de dados proprietários, mas os supera em funcionalidades avançadas, extensibilidade, segurança e estabilidade. Saiba mais sobre o PostgreSQL e participe da nossa comunidade em <a href="https://www.postgresql.org">PostgreSQL.org</a>.
 </p>
 <p>
-  &quot;Temos usado fortemente o PostgreSQL desde 9.3 e estamos muito entusiasmados com a versão 10, pois traz a base para os tão esperados particionamento e replicação lógica integrada. Ele nos permitirá usar o PostgreSQL em mais serviços&quot;, disse Vladimir Borodin, DBA Chefe de Equipe na <a href="https://www.yandex.com/" target="_blank">Yandex</a>.
+  &quot;Temos usado fortemente o PostgreSQL desde 9.3 e estamos muito entusiasmados com a versão 10, pois traz a base para os tão esperados particionamento e replicação lógica integrada. Ele nos permitirá usar o PostgreSQL em mais serviços&quot;, disse Vladimir Borodin, DBA Chefe de Equipe na <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a>  é uma empresa de tecnologia que cria produtos e serviços inteligentes alimentados por aprendizado de máquinas. O objetivo da Yandex é ajudar consumidores e empresas a navegar melhor nos sites online e offline. Desde 1997, Yandex oferece localmente serviços de pesquisa e informação relevantes. Além disso, Yandex desenvolveu serviços de transporte, produtos de navegação e aplicações móveis para milhões de consumidores ao redor do mundo. Para entrar em contato com Yandex, visite
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a>  é uma empresa de tecnologia que cria produtos e serviços inteligentes alimentados por aprendizado de máquinas. O objetivo da Yandex é ajudar consumidores e empresas a navegar melhor nos sites online e offline. Desde 1997, Yandex oferece localmente serviços de pesquisa e informação relevantes. Além disso, Yandex desenvolveu serviços de transporte, produtos de navegação e aplicações móveis para milhões de consumidores ao redor do mundo. Para entrar em contato com Yandex, visite
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
 <p>
-&quot;O commit por quórum para replicação síncrona no PostgreSQL 10 oferece mais opções para expandir nossa capacidade de promover infraestrutura de banco de dados, da perspectiva da aplicação, com tempo de interrupção praticamente zero. Isso nos permite implantar e atualizar continuamente nossa infraestrutura de banco de dados sem incorrer em longas janelas de manutenção&quot;, disse Curt Micol. , Engenheiro de infraestrutura pessoal na <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.
+&quot;O commit por quórum para replicação síncrona no PostgreSQL 10 oferece mais opções para expandir nossa capacidade de promover infraestrutura de banco de dados, da perspectiva da aplicação, com tempo de interrupção praticamente zero. Isso nos permite implantar e atualizar continuamente nossa infraestrutura de banco de dados sem incorrer em longas janelas de manutenção&quot;, disse Curt Micol. , Engenheiro de infraestrutura pessoal na <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.
 </p>
 <p>
-  Fundada em 2009, <a href="https://www.simple.com/" target="_blank">Simple</a> é uma empresa de tecnologia que está mudando a forma como as pessoas gerenciam suas finanças e pensam sobre dinheiro deles. O produto da Simple combina orçamentos com o banco em uma aplicação bonita, com ferramentas que ajudam as pessoas a economizarem para as coisas que eles precisam e gastar de forma responsável nas coisas que eles querem. Entre em contato com <a href="https://www.simple.com/" target="_blank">Simple</a> em <a href="mailto:press@simple.com">press@simple.com</a>
+  Fundada em 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> é uma empresa de tecnologia que está mudando a forma como as pessoas gerenciam suas finanças e pensam sobre dinheiro deles. O produto da Simple combina orçamentos com o banco em uma aplicação bonita, com ferramentas que ajudam as pessoas a economizarem para as coisas que eles precisam e gastar de forma responsável nas coisas que eles querem. Entre em contato com <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> em <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
 <a name="companies"></a><h2>Suporte Corporativo</h2>
index 24c0dcd05cd82c18be4da9324ede61af2d890fc6..d595feb9a8b3bb07bec85b29822fd2d8d35b8593 100644 (file)
@@ -81,7 +81,7 @@
   партиционирования и встроенной логической репликации. Это позволит нам
   использовать PostgreSQL в ещё большем количестве сервисов», — заявил Владимир
   Бородин, компания
-  <a href="https://www.yandex.ru/" target="_blank">«Яндекс»</a>.</p>
+  <a href="https://www.yandex.ru/" target="_blank" rel="noopener">«Яндекс»</a>.</p>
 
 <b>Декларативное партиционирование таблиц: разделяйте ваши данные с
   лёгкостью</b>
   изменения и обновлять нашу инфраструктуру без необходимости объявления
   длительных периодов обслуживания», — сказал Курт Микол (Curt Micol),
   инженер инфраструктуры в компании
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>.
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>.
 
 <b>Аутентификация SCRAM-SHA-256: обезопасьте доступ к вашим данным</b>
 
 <p>SCRAM (The Salted Challenge Response Authentication Mechanism), описанный в
-  <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a>,
+  <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a>,
   определяет протокол безопасного хранения и передачи паролей за счёт
   использования специального фреймворка для более строгого сопоставления
   паролей. В PostgreSQL 10 представлена поддержка метода SCRAM-SHA-256,
   описанного в
-  <a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a>.
+  <a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a>.
   Данный подход является намного более безопасным, чем существующий метод
   аутентификации с использованием MD5.</p>
 
   партиционирования и встроенной логической репликации. Это позволит нам
   использовать PostgreSQL в ещё большем количестве сервисов», — заявил Владимир
   Бородин, компания
-  <a href="https://www.yandex.ru/" target="_blank">«Яндекс»</a>.</p>
+  <a href="https://www.yandex.ru/" target="_blank" rel="noopener">«Яндекс»</a>.</p>
 
 <p>«Кворум-коммит для синхронной репликации в PostgreSQL 10 даёт нам больше
   вариантов расширять нашу инфраструктуру баз данных с временем простоя работы
   изменения и обновлять нашу инфраструктуру без необходимости объявления
   длительных периодов обслуживания», — сказал Курт Микол (Curt Micol),
   инженер инфраструктуры в компании
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
-<p>Основанная в 2009, <a href="https://www.simple.com/" target="_blank">Simple</a>
+<p>Основанная в 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
   является технологической компанией, которая меняет то, как люди используют
   банковские услуги и относятся к своим деньгам. Продукты компании Simple
   вписывают банковские услуги и бюджетирование в одно элегантное приложение —
   инструмент, помогающий людям копить деньги на свои нужды и тратить более
   разумно. Связаться с представителями
-  <a href="https://www.simple.com/" target="_blank">Simple</a> можно по email:
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> можно по email:
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index 4fb85ffa23b04795755695b1940422873ec2b9e7..2cbae342a2c498ec830dde0ceef327f7425b7be4 100644 (file)
@@ -75,7 +75,7 @@
   กับเวอร์ชั่น 10 เพราะเป็นจุดเริ่มต้นของแบ่งข้อมูลที่รอกันมานาน
   และการจำลองตรรกะที่ติดตั้งไว้ในตัว ยังทำให้เราสามารถใช้ PostgreSQL ในบริการอื่นๆ
   ได้มากขึ้นด้วย,&quot;  Vladimir Borodin หัวหน้าทีม DBA ที่
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>กล่าว</p>
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>กล่าว</p>
 
 <b>การแบ่งตารางที่เปิดเผย - ความสะดวกในการแบ่งข้อมูลของคุณ</b>
 
   เป็นไปได้อย่างต่อเนื่องแบบไม่มีสะดุด นี่ยังช่วยให้เราสามารถ
   ใช้งานและอัพเดทโครงสร้างฐานข้อมูลของเราโดยไม่ต้องเปิดวินโดว์บำรุงรักษา
   เป็นเวลานาน,&quot;  Curt Micol วิศวกรด้านโครงสร้างพนักงาน ที่
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>กล่าว</p>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>กล่าว</p>
 
 <b>การพิสูจน์ตัวตน SCRAM-SHA-256 - รักษาความปลอดภัยในการเข้าถึงข้อมูลของคุณ</b>
 
 <p>The Salted Challenge Response Authentication Mechanism (SCRAM) ที่ระบุอยู่ใน
-  <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a>
+  <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a>
   หมายถึงโปรโตคอลที่พัฒนา เพื่อการเก็บข้อมูลความปลอดภัยและการส่งผ่าน
   รหัสผ่าน ด้วยการใช้กรอบการต่อรองรหัสผ่านที่เข้มแข็ง
   PostgreSQL 10 ได้สร้างเครื่องมือพิสูจน์ตัวตน SCRAM-SHA-256 ที่ระบุใน
-  <a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a> เพื่อ
+  <a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a> เพื่อ
   สร้างความปลอดภัยที่มากกว่าเครื่องมือพิสูจน์ตัวตนรหัสผ่าน MD5
   ที่มีอยู่</p>
 
@@ -233,17 +233,17 @@ PostgreSQL คือฐานข้อมูลโอเพ่นซอร์
   กับเวอร์ชั่น 10 เพราะเป็นจุดเริ่มต้นของแบ่งข้อมูลที่รอกันมานาน
   และการจำลองตรรกะที่ติดตั้งไว้ในตัว ยังทำให้เราสามารถใช้ PostgreSQL  ในบริการอื่นๆ
   ได้มากขึ้นด้วย,&quot;  Vladimir Borodin หัวหน้าทีม DBA Team Lead ที่
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>กล่าว
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>กล่าว
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a> คือบริษัทเทคโนโลยี
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a> คือบริษัทเทคโนโลยี
 ซึ่งสร้างผลิตภัณฑ์และบริการอัจฉริยะซึ่งเกิดจากการศึกษาเรียนรู้เครื่องจักรกล เป้าหมายของ Yandex
 คือการนำทางให้ผู้บริโภคและธุรกิจก้าวไปในโลกออนไลน์และออฟไลน์
 นับตั้งแต่ปี 1997 Yandex ได้เปิดตัวการให้บริการข้อมูลและสืบค้นแบบเฉพาะในระดับเวิลด์คลาส
 นอกจากนี้ Yandex ยังได้พัฒนาบริการด้านการขนส่งตามความต้องการของตลาด
 ผลิตภัณฑ์ด้านการนำทาง และแอปพลิเคชั่นมือถือสำหรับ
 ผู้บริโภคหลายล้านคนทั่วโลก  ติดต่อ Yandex โปรดไปที่
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
@@ -252,13 +252,13 @@ PostgreSQL คือฐานข้อมูลโอเพ่นซอร์
   เป็นไปได้อย่างต่อเนื่องแบบไม่มีสะดุด นี่ยังช่วยให้เราสามารถ
   ใช้งานและอัพเดทโครงสร้างฐานข้อมูลของเราโดยไม่ต้องเปิดวินโดว์บำรุงรักษา
   เป็นเวลานาน,&quot;  Curt Micol วิศวกรด้านโครงสร้างพนักงาน ที่
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>กล่าว</p>
-<p>ก่อตั้งในปี 2009 <a href="https://www.simple.com/" target="_blank">Simple</a>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>กล่าว</p>
+<p>ก่อตั้งในปี 2009 <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
   คือบริษัทเทคโนโลยีที่กำลังเปลี่ยนวิธีคิดเกี่ยวกับเงินและธนาคาร
   ผลิตภัณฑ์ของ Simple หลอมรวมเรื่องของทุนและการธนาคารไว้ใน
   แอปพลิเคชั่นอันสุดยอดเพียงหนึ่งเดียว ด้วยเครื่องมือที่ช่วยให้ผู้คนสามารถเก็บออมเพื่อสิ่งที่ต้องการ
   และจ่ายเงินให้กับสิ่งที่ต้องการอย่างมีความรับผิดชอบ ติดต่อ
-  <a href="https://www.simple.com/" target="_blank">Simple</a> ที่
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> ที่
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index a8d5fd7a618d709e70daa7b5585a09439ddd7686..4db589e8cc7323da5c488dde0518a9bd23f3e4af 100644 (file)
@@ -55,7 +55,7 @@
 <p>Sao lưu logic mở rộng các tính năng sao lưu hiện tại của PostgreSQL với khả năng gửi các hiệu chỉnh trên mỗi cơ sở dữ liệu và mỗi cấp độ trên bảng thành các cơ sở dữ liệu PostgreSQL khác nhau.  Người sử dụng hiện nay có thể tinh chỉnh dữ liệu sao lưu sang nhiều nhóm cơ sở dữ liệu khác nhau và sẽ có khả năng để thực hiện nâng cấp sang các phiên bản PostgreSQL với thay đổi lớn mà không có thời gian dừng.</p>
 
 <p>&quot;Chúng tôi đang sử dụng rất nhiều PostgreSQL kể từ phiên bản 9.3 và rất háo hức với phiên bản 10 bởi vì phiên bản này mang đến cơ sở cho sự phân chia đã chờ đợi từ lâu và sự sao lưu logic cài sẵn. Nó sẽ cho phép chúng ta sử dụng PostgreSQL trong nhiều các dịch vụ hơn nữa,&quot; Vladimir Borodin cho biết, Người đứng đầu nhóm DBA tại
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.</p>
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.</p>
 
 <b>Phân chia bảng khai báo - Sự tiện lợi trong phân chia dữ liệu của quý vị</b>
 
 </p>
 
 <p>&quot;Cam kết số tối thiểu cần thiết cho Sao lưu đồng bộ ở PostgreSQL 10 mang lại nhiều lựa chọn để mở rộng khả năng của chúng ta để thúc đẩy cơ sở hạ tầng dữ liệu có thời gian dừng gần bằng không từ phối cảnh ứng dụng. Điều này cho phép chúng ta triển khai và cập nhập cơ sở hạ tầng dữ liệu mà không phải chịu tình trạng cửa sổ bảo dưỡng kéo dài,&quot; Curt Micol nói, Kỹ sư Cơ sở dữ liệu nhân viên tại
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
 
 <b>SCRAM-SHA-256 Sự xác thực - Bảo đảm sự tiếp cận dữ liệu của quý vị</b>
 
 <p>Cơ chế xác thực phản ứng thách thức có kinh nghiệm (SCRAM) được định nghĩa trong
-  <a href="https://tools.ietf.org/html/rfc5802" target="_blank">RFC5802</a>
+  <a href="https://tools.ietf.org/html/rfc5802" target="_blank" rel="noopener">RFC5802</a>
   định nghĩa là một giao thức để cải thiện lưu trữ bảo đảm và truyền dẫn mật khẩu bằng cách cung cấp một bộ khung để thương lượng mật khẩu mạnh. PostgreSQL 10 giới thiệu phương pháp xác thực SCRAM-SHA-256, định nghĩa trong
-  <a href="https://tools.ietf.org/html/rfc7677" target="_blank">RFC7677</a>, để cung cấp bảo mật tốt hơn phương pháp xác thực mật khẩu dựa trên MD5 hiện tại.</p>
+  <a href="https://tools.ietf.org/html/rfc7677" target="_blank" rel="noopener">RFC7677</a>, để cung cấp bảo mật tốt hơn phương pháp xác thực mật khẩu dựa trên MD5 hiện tại.</p>
 
 <a name="features"></a><h2>Các thông tin thêm về các tính năng</h2>
 <p>
@@ -160,19 +160,19 @@ PostgreSQL là một cơ sở dữ liệu nguồn mở tiên tiến nhất trên
 <p>PostgreSQL là một cơ sở dữ liệu nguồn mở tiên tiến nhất trên thế giới, với một cộng đồng toàn cầu gồm hàng nghìn người sử dụng, người đóng góp, các công ty và tổ chức.  Dự án PostgreSQL xây dựng trên 30 năm thiết kế, bắt đầu tại Trường Đại học California, Berkeley, và đã tiếp tục với một bước phát triển không gì có thể sánh kịp. Bộ tính năng hoàn thiện của PostgreSQL không chỉ phù hợp với các hệ thống cơ sở dữ liệu độc quyền, mà còn vượt xa về các tính năng cơ sở dữ liệu tiên tiến,  khả năng mở rộng, bảo mật và tính bền vững. Để biết thêm PostgreSQL và tham gia vào cộng đồng của chúng tôi hãy truy cập <a href="https://www.postgresql.org">PostgreSQL.org</a>.
 </p>
 <p>&quot;Chúng tôi đang sử dụng rất nhiều PostgreSQL kể từ phiên bản 9.3 và rất háo hức với phiên bản 10 bởi vì phiên bản này mang đến cơ sở cho sự phân chia đã chờ đợi từ lâu và sự sao lưu logic cài sẵn. Nó sẽ cho phép chúng ta sử dụng PostgreSQL trong nhiều các dịch vụ hơn nữa,&quot; Vladimir Borodin cho biết, Người đứng đầu nhóm DBA tại
-  <a href="https://www.yandex.com/" target="_blank">Yandex</a>.
+  <a href="https://www.yandex.com/" target="_blank" rel="noopener">Yandex</a>.
 </p>
 <p>
-<a href="https://yandex.com/" target="_blank">Yandex</a> là một công ty công nghệ xây dựng các sản phẩm và dịch vụ thông minh vận hành thông qua khả năng học hỏi của máy móc. Mục tiêu của Yandex là giúp đỡ người tiêu dùng và kinh doanh điều hướng thế giới trực tuyến và ngoại tuyến tốt hơn. Kể từ năm 1997, Yandex đã cung cấp các dịch vụ tìm kiếm và thông tin địa phương và trên thế giới. Thêm vào đó, Yandex đã phát triển các dịch vụ giao thông, các sản phẩm điều hướng và các ứng dụng di động theo yêu cầu dẫn đầu thị trường cho hàng triệu khách hàng trên toàn cầu. Để liên hệ với Yandex, vui lòng truy cập
-<a href="https://yandex.com/company/contacts/" target="_blank">
+<a href="https://yandex.com/" target="_blank" rel="noopener">Yandex</a> là một công ty công nghệ xây dựng các sản phẩm và dịch vụ thông minh vận hành thông qua khả năng học hỏi của máy móc. Mục tiêu của Yandex là giúp đỡ người tiêu dùng và kinh doanh điều hướng thế giới trực tuyến và ngoại tuyến tốt hơn. Kể từ năm 1997, Yandex đã cung cấp các dịch vụ tìm kiếm và thông tin địa phương và trên thế giới. Thêm vào đó, Yandex đã phát triển các dịch vụ giao thông, các sản phẩm điều hướng và các ứng dụng di động theo yêu cầu dẫn đầu thị trường cho hàng triệu khách hàng trên toàn cầu. Để liên hệ với Yandex, vui lòng truy cập
+<a href="https://yandex.com/company/contacts/" target="_blank" rel="noopener">
   https://yandex.com/company/contacts/
 </a>
 </p>
 <p>&quot;Cam kết số tối thiểu cần thiết cho Sao lưu đồng bộ ở PostgreSQL 10 mang lại nhiều lựa chọn để mở rộng khả năng của chúng ta để thúc đẩy cơ sở hạ tầng dữ liệu có thời gian dừng gần bằng không từ phối cảnh ứng dụng. Điều này cho phép chúng ta triển khai và cập nhập cơ sở hạ tầng dữ liệu mà không phải chịu tình trạng cửa sổ bảo dưỡng kéo dài,&quot; Curt Micol nói, Kỹ sư Cơ sở dữ liệu nhân viên tại
-  <a href="https://www.simple.com/" target="_blank">Simple Finance</a>.</p>
-<p>Được thành lập vào năm 2009, <a href="https://www.simple.com/" target="_blank">Simple</a>
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple Finance</a>.</p>
+<p>Được thành lập vào năm 2009, <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a>
   là một công ty công nghệ đang làm thay đổi cách thức mọi người gửi tiền vào ngân hàng và cách nghĩ về tiền của họ. Sản phẩm của Simple pha trộn việc lập ngân sách và hoạt động ngân hàng thành một ứng dụng đẹp đẽ duy nhất, với các công cụ giúp đỡ mọi người lưu trữ những thứ họ cần và chi tiêu một cách có trách nhiệm cho những thứ họ muốn. Liên hệ
-  <a href="https://www.simple.com/" target="_blank">Simple</a> theo địa chỉ
+  <a href="https://www.simple.com/" target="_blank" rel="noopener">Simple</a> theo địa chỉ
   <a href="mailto:press@simple.com">press@simple.com</a>
 </p>
 
index 752b260712603da9b1ef50cacb78abbc149fdfe1..a4a542b92af034a9e26b620ad9bc76716f24c5ec 100644 (file)
@@ -65,8 +65,8 @@ resources:
 <ul>
   <li><a href="/docs/12/release-12.html">Release Notes</a></li>
   <li><a href="/about/featurematrix/">Feature Matrix</a></li>
-  <li><a href="https://momjian.us/main/writings/pgsql/features.pdf" target="_blank">Major Features Slide Deck</a></li>
-  <li><a href="https://www.hagander.net/talks/PostgreSQL%2012.pdf" target="_blank">Major Features Slide Deck (2)</a></li>
+  <li><a href="https://momjian.us/main/writings/pgsql/features.pdf" target="_blank" rel="noopener">Major Features Slide Deck</a></li>
+  <li><a href="https://www.hagander.net/talks/PostgreSQL%2012.pdf" target="_blank" rel="noopener">Major Features Slide Deck (2)</a></li>
 </ul>
 
 <a name="download"></a><h2>Where to Download</h2>
index 04fd83e2933a8cf45f17b7234d5f3cdb55f15cec..db3dc1b6278338c0fe5d033c897a3964e06549f7 100644 (file)
@@ -39,9 +39,9 @@
   become the preferred open source relational database for organizations of all
   sizes. The project continues to receive recognition across the industry,
   including being featured for the second year in a row as the
-  <a href="https://db-engines.com/en/blog_post/79" target="_blank">"DBMS of the Year" in 2018</a>
+  <a href="https://db-engines.com/en/blog_post/79" target="_blank" rel="noopener">"DBMS of the Year" in 2018</a>
   by DB-Engines and receiving the
-  <a href="https://www.oreilly.com/radar/oreilly-open-source-and-frank-willison-awards-19/" target="_blank">"Lifetime Achievement" open source award</a>
+  <a href="https://www.oreilly.com/radar/oreilly-open-source-and-frank-willison-awards-19/" target="_blank" rel="noopener">"Lifetime Achievement" open source award</a>
   at OSCON 2019.
 </p>
 
index 839fb185d13ee578b860e784afad9737844c21fb..2a475a96874f7bb18e99d37f7a7877e28733ceba 100644 (file)
@@ -25,7 +25,7 @@
 <p>Recognised PostgreSQL Nonprofit Organisations (NPOs) will be listed on the <a href="/">PostgreSQL Website</a> as such. To become recognised as an NPO, the organisation must self-certify that they meet the criteria below, aimed at ensuring they meet the standards of openness expected in the PostgreSQL Community.
 </p>
 <p>
-  Use of the terms "MUST", "MUST NOT", "SHOULD" and "SHOULD NOT" in the criteria below should be interpreted per <a href="https://www.ietf.org/rfc/rfc2119.txt" target="_blank">RFC2119</a>.
+  Use of the terms "MUST", "MUST NOT", "SHOULD" and "SHOULD NOT" in the criteria below should be interpreted per <a href="https://www.ietf.org/rfc/rfc2119.txt" target="_blank" rel="noopener">RFC2119</a>.
 </p>
 
 <h3>General</h3>
@@ -67,9 +67,9 @@
 
 <p>The Community Conference Recognition programme is a voluntary scheme under which submitters of events to the <a href="/about/events/">PostgreSQL Website listings</a> may self-assess their entry against the criteria below, and if they comply may market their event as a PostgreSQL Community event.</p>
 
-<p>Events that do not meet the criteria will still be welcomed (where appropriate under the <a href="https://wiki.postgresql.org/wiki/NewsEventsApproval#Approving_Events_and_Event-Related_News_.28excluding_training.29" target="_blank">general listing policies</a>) - for example, events organised by a single company which may still be valuable for people to attend, but are not necessarily what we would consider fully "open."</p>
+<p>Events that do not meet the criteria will still be welcomed (where appropriate under the <a href="https://wiki.postgresql.org/wiki/NewsEventsApproval#Approving_Events_and_Event-Related_News_.28excluding_training.29" target="_blank" rel="noopener">general listing policies</a>) - for example, events organised by a single company which may still be valuable for people to attend, but are not necessarily what we would consider fully "open."</p>
 
-<p>Use of the terms "MUST", "MUST NOT", "SHOULD" and "SHOULD NOT" in the criteria below should be interpreted per <a href="https://www.ietf.org/rfc/rfc2119.txt" target="_blank">RFC2119</a>.</p>
+<p>Use of the terms "MUST", "MUST NOT", "SHOULD" and "SHOULD NOT" in the criteria below should be interpreted per <a href="https://www.ietf.org/rfc/rfc2119.txt" target="_blank" rel="noopener">RFC2119</a>.</p>
 
 <h3>General</h3>
 <ul>
index c97bd57d7c72a58229feedff0ff41fa5051a9a4e..4a9a3aa74a89caa07978318cdc19f1fae30ad7be 100644 (file)
@@ -52,7 +52,7 @@
     <a href="/docs/13/">PostgreSQL 13 Documentation</a>
   </li>
   <li>
-    <a href="https://wiki.postgresql.org/wiki/HowToBetaTest" target="_blank">A Guide to PostgreSQL Beta Testing</a>
+    <a href="https://wiki.postgresql.org/wiki/HowToBetaTest" target="_blank" rel="noopener">A Guide to PostgreSQL Beta Testing</a>
   </li>
 </ul>
 {%endblock%}
index 5dce73d2b349276f06c7bfe83e10c8a8d71b4d02..82f4f7c80c5c0fffa5cc8396ce0046b2c6ed0e6e 100644 (file)
@@ -46,8 +46,8 @@ releases is:
 are several places you can look to find out more information on upcoming
 features:</p>
 <ul>
-       <li>General <a href="https://wiki.postgresql.org/wiki/Development_information" target="_blank">development information</a> - A wiki page about various aspects of the PostgreSQL development process</li>
-       <li>Information about the current <a href="https://commitfest.postgresql.org/" target="_blank">commit fest</a> - An overview about the status on patches for the current commitfest</li>
+       <li>General <a href="https://wiki.postgresql.org/wiki/Development_information" target="_blank" rel="noopener">development information</a> - A wiki page about various aspects of the PostgreSQL development process</li>
+       <li>Information about the current <a href="https://commitfest.postgresql.org/" target="_blank" rel="noopener">commit fest</a> - An overview about the status on patches for the current commitfest</li>
 </ul>
 
 {%endblock%}
index 16333842f78b1cdf2c1f1278b47bdd499da9ea0e..04a43557d3e889f507166fb06b6892524c36f7c2 100644 (file)
@@ -5,7 +5,7 @@
 <h1>PostgreSQL and Google Summer of Code <i class="fa fa-code"></i></h1>
 
 <p>The PostgreSQL Project is participating in the Google <a
-href="https://summerofcode.withgoogle.com/" target="_blank">Summer of Code 2018</a>
+href="https://summerofcode.withgoogle.com/" target="_blank" rel="noopener">Summer of Code 2018</a>
 program! This program funds students to contribute to an open source project over
 their summer break.</p>
 
index 82c5808362c483b7cadd96e211ab1931b319460b..2bbd92b1bc738ac456cf0fb7a5d9a3be23090173 100644 (file)
 <p>
   We've received many questions about PostgreSQL through the years and have
   put together a helpful
-  <a href="https://wiki.postgresql.org/wiki/FAQ" target="_blank">FAQ</a> page
+  <a href="https://wiki.postgresql.org/wiki/FAQ" target="_blank" rel="noopener">FAQ</a> page
   to help you out. You can read our FAQ here:
 </p>
 
 <p>
-  <a href="https://wiki.postgresql.org/wiki/FAQ" target="_blank">PostgreSQL FAQ</a>
+  <a href="https://wiki.postgresql.org/wiki/FAQ" target="_blank" rel="noopener">PostgreSQL FAQ</a>
 </p>
 
 <h2>PostgreSQL Development FAQ</h2>
 <p>
   Interested in contributing code to PostgreSQL? Great! We've also put together
   a
-  <a href="https://wiki.postgresql.org/wiki/Developer_FAQ" target="_blank">FAQ</a>
+  <a href="https://wiki.postgresql.org/wiki/Developer_FAQ" target="_blank" rel="noopener">FAQ</a>
   to help you get started developing code for PostgreSQL! You can read the
   development code here:
 </p>
 
 <p>
-  <a href="https://wiki.postgresql.org/wiki/FAQ" target="_blank">PostgreSQL Development FAQ</a>
+  <a href="https://wiki.postgresql.org/wiki/FAQ" target="_blank" rel="noopener">PostgreSQL Development FAQ</a>
 </p>
 
 <h2>Other FAQs</h2>
index d277f617393b79661ef7cec544a9a6e848e8065c..e93ae812859d506e33e71561a8bf8aaafed394c2 100644 (file)
@@ -77,7 +77,7 @@ yourself.
 <p>
 The source code can be found in the main <a href="/ftp/source/">file browser</a>
 or you can access the source control repository directly
-at <a href="https://git.postgresql.org/gitweb/?p=postgresql.git;a=summary" target="_blank">git.postgresql.org</a>.
+at <a href="https://git.postgresql.org/gitweb/?p=postgresql.git;a=summary" target="_blank" rel="noopener">git.postgresql.org</a>.
 Instructions for building from source can be found in the
 <a href="/docs/current/installation.html">documentation</a>.
 </p>
index 3e2a93194d4c59194ff80fce1e2e53e1c1c59e73..a85f9ff4cba6d8339b6896412cadc7a4b27029a4 100644 (file)
@@ -6,11 +6,11 @@
 
 <h2>FreeBSD Ports</h2>
 
-<p>PostgreSQL packages are available for FreeBSD from the <a href="https://www.freebsd.org/ports" target="_blank">FreeBSD
+<p>PostgreSQL packages are available for FreeBSD from the <a href="https://www.freebsd.org/ports" target="_blank" rel="noopener">FreeBSD
        Ports and Packages Collection</a>. Please see the ports documentation for information on how
 to install ports.</p>
 
-<p>A list of <a href="https://www.freebsd.org/cgi/ports.cgi?query=postgresql&stype=name&sektion=databases" target="_blank">PostgreSQL
+<p>A list of <a href="https://www.freebsd.org/cgi/ports.cgi?query=postgresql&stype=name&sektion=databases" target="_blank" rel="noopener">PostgreSQL
        packages</a> can be found using the Ports Search tool on the FreeBSD website.</p>
 
 {%endblock%}
index 7c66a5697337cac69f6581bc07c369febfdcb9db..a2883423a8e6ea2a7d735336883bde73877dd8c3 100644 (file)
@@ -18,7 +18,7 @@ of PostgreSQL available.
 <h2>PostgreSQL Apt Repository</h2>
 <p>
 If the version included in your version of Debian is not the one you want,
-you can use the <a href="https://apt.postgresql.org" target="_blank">PostgreSQL Apt Repository</a>. This repository will integrate
+you can use the <a href="https://apt.postgresql.org" target="_blank" rel="noopener">PostgreSQL Apt Repository</a>. This repository will integrate
 with your normal systems and patch management, and provide automatic
 updates for all supported versions of PostgreSQL throughout the support
 <a href="/support/versioning/">lifetime</a> of PostgreSQL.
@@ -64,7 +64,7 @@ sudo apt-get -y install postgresql</pre>
 <p>
 For more information about the apt repository, including answers to frequent
 questions, please see the apt page on
-<a href="https://wiki.postgresql.org/wiki/Apt" target="_blank">the wiki</a>.
+<a href="https://wiki.postgresql.org/wiki/Apt" target="_blank" rel="noopener">the wiki</a>.
 </p>
 
 <h2>Included in distribution</h2>
index ca08a9c2cb1638d504ca00fd4370ed253ade3147..2800a897c2f177c8649b2c244f6a79346df4a659 100644 (file)
@@ -31,7 +31,7 @@ supported versions for the most common distributions.
 <a name="yum"></a>
 <h2>PostgreSQL Yum Repository</h2>
 <p>
-The <a href="https://yum.postgresql.org" target="_blank">PostgreSQL Yum Repository</a> will integrate
+The <a href="https://yum.postgresql.org" target="_blank" rel="noopener">PostgreSQL Yum Repository</a> will integrate
 with your normal systems and patch management, and provide automatic
 updates for all supported versions of PostgreSQL throughout the support
 <a href="/support/versioning/">lifetime</a> of PostgreSQL.
index 61fd91efa95685c436388902314953ef40dccc01..ede7be452213b40a74b636e9add3aeaf4ad7cb11 100644 (file)
@@ -24,11 +24,11 @@ To use the SUSE RPM repository, please follow these <a href="https://zypp.postgr
 <h2>Included in distribution</h2>
 <p>
 RPMs for SUSE Linux and openSUSE are available from the
-<a href="https://build.opensuse.org/" target="_blank">openSUSE Build Service</a>
+<a href="https://build.opensuse.org/" target="_blank" rel="noopener">openSUSE Build Service</a>
 in the project <em>server:database:postgresql</em>.
 Platform-specific RPM packages are available for PostgreSQL
 as well as a variety of related software.
-Use the <a href="https://software.opensuse.org/search" target="_blank">search facility</a>
+Use the <a href="https://software.opensuse.org/search" target="_blank" rel="noopener">search facility</a>
 to find suitable packages. Documentation is also available there.
 </p>
 {%endblock%}
index a80c35fea87107dba8c2c5da708b0286cb3f2dbd..2efd2ff199e23a6bdbfdbdc51d197634c2890ae0 100644 (file)
@@ -17,7 +17,7 @@ repository.
 <h2>PostgreSQL Apt Repository</h2>
 <p>
 If the version included in your version of Ubuntu is not the one you want,
-you can use the <a href="https://apt.postgresql.org" target="_blank">PostgreSQL Apt Repository</a>. This repository will integrate
+you can use the <a href="https://apt.postgresql.org" target="_blank" rel="noopener">PostgreSQL Apt Repository</a>. This repository will integrate
 with your normal systems and patch management, and provide automatic
 updates for all supported versions of PostgreSQL throughout the support
 <a href="/support/versioning/">lifetime</a> of PostgreSQL.
@@ -62,8 +62,8 @@ sudo apt-get -y install postgresql</pre>
 
 <p>
 For more information about the apt repository, including answers to frequent
-questions, please see the <a href="https://wiki.postgresql.org/wiki/Apt" target="_blank">PostgreSQL Apt Repository</a> page on
-<a href="https://wiki.postgresql.org/wiki/Apt" target="_blank">the wiki</a>.
+questions, please see the <a href="https://wiki.postgresql.org/wiki/Apt" target="_blank" rel="noopener">PostgreSQL Apt Repository</a> page on
+<a href="https://wiki.postgresql.org/wiki/Apt" target="_blank" rel="noopener">the wiki</a>.
 </p>
 
 <h2>Included in distribution</h2>
index ab6673199b4b51da54b2aef505d72fcfe77f2b33..3e8ddc1b3ca7a2576ae0642305970b0106583331 100644 (file)
@@ -6,7 +6,7 @@
 
 <h2>OpenBSD Ports</h2>
 
-<p>PostgreSQL packages are available for OpenBSD from the <a href="https://www.openbsd.org/faq/faq15.html" target="_blank">OpenBSD
+<p>PostgreSQL packages are available for OpenBSD from the <a href="https://www.openbsd.org/faq/faq15.html" target="_blank" rel="noopener">OpenBSD
     Ports and Packages Collection</a>. Please see the ports documentation for information on how
 to install ports.</p>
 
index 72a444afc13c709e4562758806d0eb4dd6c6d230..51b21b637f3c73e7266cc4f7a974df0f7ae3ee48 100644 (file)
@@ -10,7 +10,7 @@
     <li>The <a href="/community/">Community</a> section, which details the support options available to users from the PostgreSQL community</li>
     <li><a href="/list/">Mailing Lists</a></li>
     <li><a href="/community/irc/">IRC</a></li>
-    <li><a href="https://postgres-slack.herokuapp.com" target="_blank">Slack</a></li>
+    <li><a href="https://postgres-slack.herokuapp.com" target="_blank" rel="noopener">Slack</a></li>
   </ul>
 </p>
 
index aa7e70f9f560ad2260c6ae06eeb4194cb93c0cef..1b8a844f4f356d78856757d4a03e4351aa3092d5 100644 (file)
@@ -6,14 +6,14 @@
 
 {% for s in services %}
   <h2 class="news">
-    <a href="{{s.url}}" target="_blank">{{ s.org.name }}</a>
+    <a href="{{s.url}}" target="_blank" rel="noopener">{{ s.org.name }}</a>
   </h2>
   <table class="table table-striped profserv-table">
     <tbody>
       {% if s.url %}
          <tr>
           <th scope="row">Website</th>
-          <td><a href="{{s.url}}" target="_blank">{{s.url}}</a></td>
+          <td><a href="{{s.url}}" target="_blank" rel="noopener">{{s.url}}</a></td>
          </tr>
       {% endif %}
       <tr>
index db3608c659b9995e7fe7250af8b8d57b1e8f5f12..dbbc0df332135271c53020507cbe81a568a7e276 100644 (file)
     <li>
       <strong>{{ pug.locale }}</strong>:
       {% if pug.website_url %}
-        <a href="{{ pug.website_url }}" target="_blank">
+        <a href="{{ pug.website_url }}" target="_blank" rel="noopener">
       {% endif %}
       {{ pug.title }}
       {% if pug.website_url %}
         </a>
       {% endif %}
       {% if pug.website_url %}
-        (<a href="{{ pug.website_url }}" target="_blank">website</a>)
+        (<a href="{{ pug.website_url }}" target="_blank" rel="noopener">website</a>)
       {% endif %}
       {% if pug.mailing_list_url %}
-        (<a href="{{ pug.mailing_list_url }}" target="_blank">mailing list</a>)
+        (<a href="{{ pug.mailing_list_url }}" target="_blank" rel="noopener">mailing list</a>)
       {% endif %}
     </li>
   {% endfor %}
index 465b628337c6c886fc99fc09461d7289553b4eea..9cf187361c4799f3d7bee450a52979105c9081e5 100644 (file)
@@ -27,7 +27,7 @@ different companies and organisations around the world.
         <th scope="row">{{ server.name }}</th>
         <td>
           {% for sponsor in server.sponsors.all %}
-            <a href="{{ sponsor.url }}" target="_blank">{{ sponsor.name }}</a>{%if not forloop.last%}, {%endif%}
+            <a href="{{ sponsor.url }}" target="_blank" rel="noopener">{{ sponsor.name }}</a>{%if not forloop.last%}, {%endif%}
           {% endfor %}
         </td>
         <td>{{ server.dedicated|yesno:"Yes,No" }}</td>
index 0f68a7629cfa35ff508277f049cf0f3140cc3c98..ab68304dbe2f1d16a4bf86479c7827e589ef9b45 100644 (file)
@@ -20,12 +20,12 @@ for each company shown.</p>
         {% endifchanged%}
           <tr>
             <th scope="row">
-              <a href="{{ sponsor.url }}" target="_blank">
+              <a href="{{ sponsor.url }}" target="_blank" rel="noopener">
                 <img width="150" src="/media/img/about/sponsors/{{ sponsor.logoname }}" alt="{{ sponsor.name }}" />
               </a>
             </th>
             <td>
-              <a href="{{ sponsor.url }}" target="_blank">{{ sponsor.name }}</a>
+              <a href="{{ sponsor.url }}" target="_blank" rel="noopener">{{ sponsor.name }}</a>
             </td>
             <td>{{ sponsor.country }}</td>
           </tr>