Skip to content

Commit

Permalink
Update some URLs to their new locations (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
luangong authored Mar 13, 2024
1 parent b097aad commit 5a00163
Show file tree
Hide file tree
Showing 96 changed files with 114 additions and 114 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ var message = proto.my.package.MyMessage();
```

If unfamiliar with Closure or its compiler, consider reviewing
[Closure documentation](https://developers.google.com/closure/library).
[Closure documentation](https://github.com/google/closure-library).

CommonJS imports
----------------
Expand Down
2 changes: 1 addition & 1 deletion binary/arith.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion binary/arith_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion binary/constants.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
18 changes: 9 additions & 9 deletions binary/decoder.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down Expand Up @@ -54,7 +54,7 @@ goog.require('jspb.utils');

/**
* BinaryDecoder implements the decoders for all the wire types specified in
* https://developers.google.com/protocol-buffers/docs/encoding.
* https://protobuf.dev/programming-guides/encoding/.
*
* @param {jspb.ByteSource=} opt_bytes The bytes we're reading from.
* @param {number=} opt_start The optional offset to start reading at.
Expand Down Expand Up @@ -301,7 +301,7 @@ jspb.BinaryDecoder.prototype.getError = function() {
*
* Decoding varints requires doing some funny base-128 math - for more
* details on the format, see
* https://developers.google.com/protocol-buffers/docs/encoding
* https://protobuf.dev/programming-guides/encoding/
*
* @param {function(number, number): T} convert Conversion function to produce
* the result value, takes parameters (lowBits, highBits).
Expand Down Expand Up @@ -358,7 +358,7 @@ jspb.BinaryDecoder.prototype.readSplitVarint64 = function(convert) {
*
* Zigzag encoding is a modification of varint encoding that reduces the
* storage overhead for small negative integers - for more details on the
* format, see https://developers.google.com/protocol-buffers/docs/encoding
* format, see https://protobuf.dev/programming-guides/encoding/
*
* @param {function(number, number): T} convert Conversion function to produce
* the result value, takes parameters (lowBits, highBits).
Expand Down Expand Up @@ -439,7 +439,7 @@ jspb.BinaryDecoder.prototype.unskipVarint = function(value) {
*
* Decoding varints requires doing some funny base-128 math - for more
* details on the format, see
* https://developers.google.com/protocol-buffers/docs/encoding
* https://protobuf.dev/programming-guides/encoding/
*
* @return {number} The decoded unsigned 32-bit varint.
* @export
Expand Down Expand Up @@ -554,7 +554,7 @@ jspb.BinaryDecoder.prototype.readSignedVarint32String = function() {
*
* Zigzag encoding is a modification of varint encoding that reduces the
* storage overhead for small negative integers - for more details on the
* format, see https://developers.google.com/protocol-buffers/docs/encoding
* format, see https://protobuf.dev/programming-guides/encoding/
*
* @return {number} The decoded signed, zigzag-encoded 32-bit varint.
* @export
Expand Down Expand Up @@ -625,7 +625,7 @@ jspb.BinaryDecoder.prototype.readSignedVarint64String = function() {
*
* Zigzag encoding is a modification of varint encoding that reduces the
* storage overhead for small negative integers - for more details on the
* format, see https://developers.google.com/protocol-buffers/docs/encoding
* format, see https://protobuf.dev/programming-guides/encoding/
*
* @return {number} The decoded zigzag varint. Precision will be lost if the
* integer exceeds 2^53.
Expand All @@ -643,7 +643,7 @@ jspb.BinaryDecoder.prototype.readZigzagVarint64 = function() {
*
* Zigzag encoding is a modification of varint encoding that reduces the
* storage overhead for small negative integers - for more details on the
* format, see https://developers.google.com/protocol-buffers/docs/encoding
* format, see https://protobuf.dev/programming-guides/encoding/
*
* @return {string} The decoded zigzag varint in hash64 format.
* @export
Expand All @@ -659,7 +659,7 @@ jspb.BinaryDecoder.prototype.readZigzagVarintHash64 = function() {
*
* Zigzag encoding is a modification of varint encoding that reduces the
* storage overhead for small negative integers - for more details on the
* format, see https://developers.google.com/protocol-buffers/docs/encoding
* format, see https://protobuf.dev/programming-guides/encoding/
*
* @return {string} The decoded signed, zigzag-encoded 64-bit varint as a
* string.
Expand Down
2 changes: 1 addition & 1 deletion binary/decoder_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
4 changes: 2 additions & 2 deletions binary/encoder.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down Expand Up @@ -45,7 +45,7 @@ goog.require('jspb.utils');

/**
* BinaryEncoder implements encoders for all the wire types specified in
* https://developers.google.com/protocol-buffers/docs/encoding.
* https://protobuf.dev/programming-guides/encoding/.
*
* @constructor
* @struct
Expand Down
2 changes: 1 addition & 1 deletion binary/message_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion binary/proto_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
4 changes: 2 additions & 2 deletions binary/reader.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down Expand Up @@ -56,7 +56,7 @@ goog.require('jspb.utils');

/**
* BinaryReader implements the decoders for all the wire types specified in
* https://developers.google.com/protocol-buffers/docs/encoding.
* https://protobuf.dev/programming-guides/encoding/.
*
* @param {jspb.ByteSource=} opt_bytes The bytes we're reading from.
* @param {number=} opt_start The optional offset to start reading at.
Expand Down
2 changes: 1 addition & 1 deletion binary/reader_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion binary/utils.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion binary/utils_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
4 changes: 2 additions & 2 deletions binary/writer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down Expand Up @@ -71,7 +71,7 @@ goog.require('jspb.utils');

/**
* BinaryWriter implements encoders for all the wire types specified in
* https://developers.google.com/protocol-buffers/docs/encoding.
* https://protobuf.dev/programming-guides/encoding/.
*
* @constructor
* @struct
Expand Down
2 changes: 1 addition & 1 deletion binary/writer_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion commonjs/import_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2016 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion commonjs/strict_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2016 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion commonjs/test6/test6.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2016 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion commonjs/test7/test7.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2016 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/binary/arith_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/binary/decoder_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/binary/proto_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/binary/reader_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/binary/utils_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/binary/writer_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/commonjs/import_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2016 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/commonjs/test6/test6.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2016 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/commonjs/test7/test7.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2016 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/data.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/debug_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/message_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/proto3_test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/proto3_test.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/test.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/test2.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/test3.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
2 changes: 1 addition & 1 deletion compatibility_tests/v3.0.0/test4.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
// https://protobuf.dev/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
Expand Down
Loading

0 comments on commit 5a00163

Please sign in to comment.