Skip to content

Commit cf0db9b

Browse files
committed
deploy: 7375015
1 parent 09ae21c commit cf0db9b

File tree

35 files changed

+779
-12697
lines changed

35 files changed

+779
-12697
lines changed

categories/index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Protocol Buffers Documentation – Categories</title><link>https://protobuf.dev/categories/</link><description>Recent content in Categories on Protocol Buffers Documentation</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="https://protobuf.dev/categories/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Categories on Protocol Buffers Documentation</title><link>https://protobuf.dev/categories/</link><description>Recent content in Categories on Protocol Buffers Documentation</description><generator>Hugo</generator><language>en</language><atom:link href="https://protobuf.dev/categories/index.xml" rel="self" type="application/rss+xml"/></channel></rss>

editions/index.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Protocol Buffers Documentation – Protobuf Editions</title><link>https://protobuf.dev/editions/</link><description>Recent content in Protobuf Editions on Protocol Buffers Documentation</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="https://protobuf.dev/editions/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Protobuf Editions on Protocol Buffers Documentation</title><link>https://protobuf.dev/editions/</link><description>Recent content in Protobuf Editions on Protocol Buffers Documentation</description><generator>Hugo</generator><language>en</language><atom:link href="https://protobuf.dev/editions/index.xml" rel="self" type="application/rss+xml"/><item><title>Protobuf Editions Overview</title><link>https://protobuf.dev/editions/overview/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/editions/overview/</guid><description>Protobuf Editions replace the proto2 and proto3 designations that we have used for Protocol Buffers. Instead of adding syntax = &amp;quot;proto2&amp;quot; or syntax = &amp;quot;proto3&amp;quot; at the top of proto definition files, you use an edition number, such as edition = &amp;quot;2023&amp;quot;, to specify the default behaviors your file will have. Editions enable the language to evolve incrementally over time.
2+
Instead of the hardcoded behaviors that older versions have had, editions represent a collection of features with a default value (behavior) per feature.</description></item><item><title>Feature Settings for Editions</title><link>https://protobuf.dev/editions/features/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/editions/features/</guid><description>This topic provides an overview of the features that are included in Edition 2023. Each subsequent edition&amp;rsquo;s features will be added to this topic. We announce new editions in the News section.
3+
Prototiller Prototiller is a command-line tool that converts proto2 and proto3 definition files to Editions syntax. It hasn&amp;rsquo;t been released yet, but is referenced throughout this topic.
4+
Features The following sections include all of the behaviors that are configurable using features in Edition 2023.</description></item><item><title>Implementing Editions Support</title><link>https://protobuf.dev/editions/implementation/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/editions/implementation/</guid><description>This topic explains how to implement editions in new runtimes and generators.
5+
Overview Edition 2023 The first edition released is Edition 2023, which is designed to unify proto2 and proto3 syntax. The features we’ve added to cover the difference in behaviors are detailed in Feature Settings for Editions.
6+
Feature Definition In addition to supporting editions and the global features we&amp;rsquo;ve defined, you may want to define your own features to leverage the infrastructure.</description></item></channel></rss>

getting-started/index.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Protocol Buffers Documentation – Tutorials</title><link>https://protobuf.dev/getting-started/</link><description>Recent content in Tutorials on Protocol Buffers Documentation</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="https://protobuf.dev/getting-started/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tutorials on Protocol Buffers Documentation</title><link>https://protobuf.dev/getting-started/</link><description>Recent content in Tutorials on Protocol Buffers Documentation</description><generator>Hugo</generator><language>en</language><atom:link href="https://protobuf.dev/getting-started/index.xml" rel="self" type="application/rss+xml"/><item><title>Protocol Buffer Basics: C++</title><link>https://protobuf.dev/getting-started/cpptutorial/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/getting-started/cpptutorial/</guid><description>This tutorial provides a basic C++ programmers introduction to working with protocol buffers. By walking through creating a simple example application, it shows you how to
2+
Define message formats in a .proto file. Use the protocol buffer compiler. Use the C++ protocol buffer API to write and read messages. This isn&amp;rsquo;t a comprehensive guide to using protocol buffers in C++. For more detailed reference information, see the Protocol Buffer Language Guide (proto2), the Protocol Buffer Language Guide (proto3), the C++ API Reference, the C++ Generated Code Guide, and the Encoding Reference.</description></item><item><title>Protocol Buffer Basics: C#</title><link>https://protobuf.dev/getting-started/csharptutorial/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/getting-started/csharptutorial/</guid><description>This tutorial provides a basic C# programmer&amp;rsquo;s introduction to working with protocol buffers, using the proto3 version of the protocol buffers language. By walking through creating a simple example application, it shows you how to
3+
Define message formats in a .proto file. Use the protocol buffer compiler. Use the C# protocol buffer API to write and read messages. This isn&amp;rsquo;t a comprehensive guide to using protocol buffers in C#. For more detailed reference information, see the Protocol Buffer Language Guide, the C# API Reference, the C# Generated Code Guide, and the Encoding Reference.</description></item><item><title>Protocol Buffer Basics: Dart</title><link>https://protobuf.dev/getting-started/darttutorial/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/getting-started/darttutorial/</guid><description>This tutorial provides a basic Dart programmer&amp;rsquo;s introduction to working with protocol buffers, using the proto3 version of the protocol buffers language. By walking through creating a simple example application, it shows you how to
4+
Define message formats in a .proto file. Use the protocol buffer compiler. Use the Dart protocol buffer API to write and read messages. This isn&amp;rsquo;t a comprehensive guide to using protocol buffers in Dart . For more detailed reference information, see the Protocol Buffer Language Guide, the Dart Language Tour, the Dart API Reference, the Dart Generated Code Guide, and the Encoding Reference.</description></item><item><title>Protocol Buffer Basics: Go</title><link>https://protobuf.dev/getting-started/gotutorial/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/getting-started/gotutorial/</guid><description>This tutorial provides a basic Go programmer&amp;rsquo;s introduction to working with protocol buffers, using the proto3 version of the protocol buffers language. By walking through creating a simple example application, it shows you how to
5+
Define message formats in a .proto file. Use the protocol buffer compiler. Use the Go protocol buffer API to write and read messages. This isn&amp;rsquo;t a comprehensive guide to using protocol buffers in Go. For more detailed reference information, see the Protocol Buffer Language Guide, the Go API Reference, the Go Generated Code Guide, and the Encoding Reference.</description></item><item><title>Protocol Buffer Basics: Java</title><link>https://protobuf.dev/getting-started/javatutorial/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/getting-started/javatutorial/</guid><description>This tutorial provides a basic Java programmer&amp;rsquo;s introduction to working with protocol buffers. By walking through creating a simple example application, it shows you how to
6+
Define message formats in a .proto file. Use the protocol buffer compiler. Use the Java protocol buffer API to write and read messages. This isn&amp;rsquo;t a comprehensive guide to using protocol buffers in Java. For more detailed reference information, see the Protocol Buffer Language Guide (proto2), the Protocol Buffer Language Guide (proto3), the Java API Reference, the Java Generated Code Guide, and the Encoding Reference.</description></item><item><title>Protocol Buffer Basics: Kotlin</title><link>https://protobuf.dev/getting-started/kotlintutorial/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/getting-started/kotlintutorial/</guid><description>This tutorial provides a basic Kotlin programmer&amp;rsquo;s introduction to working with protocol buffers, using the proto3 version of the protocol buffers language. By walking through creating a simple example application, it shows you how to
7+
Define message formats in a .proto file. Use the protocol buffer compiler. Use the Kotlin protocol buffer API to write and read messages. This isn&amp;rsquo;t a comprehensive guide to using protocol buffers in Kotlin. For more detailed reference information, see the Protocol Buffer Language Guide, the Kotlin API Reference, the Kotlin Generated Code Guide, and the Encoding Reference.</description></item><item><title>Protocol Buffer Basics: Python</title><link>https://protobuf.dev/getting-started/pythontutorial/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://protobuf.dev/getting-started/pythontutorial/</guid><description>This tutorial provides a basic Python programmer&amp;rsquo;s introduction to working with protocol buffers. By walking through creating a simple example application, it shows you how to
8+
Define message formats in a .proto file. Use the protocol buffer compiler. Use the Python protocol buffer API to write and read messages. This isn&amp;rsquo;t a comprehensive guide to using protocol buffers in Python. For more detailed reference information, see the Protocol Buffer Language Guide (proto2), the Protocol Buffer Language Guide (proto3), the Python API Reference, the Python Generated Code Guide, and the Encoding Reference.</description></item></channel></rss>

0 commit comments

Comments
 (0)