Is it possible to download the documentation?

2008-11-12 Thread Scott Stafford
Hi - My company works on an intranet that doesn't have an internet connection. For 3rd-party libraries, we typically download the documentation and host it locally. I plan to use protobuf, but I don't see anywhere to download the docs. Any chance they'll be added to the download package or

Re: Streaming

2008-11-23 Thread Scott Stafford
You may want to consider the techniques described in the protobuf doc under Techniques/Union Types here: http://code.google.com/apis/protocolbuffers/docs/techniques.html By using an enum/extensions, you can use protobuf for the header as well as the payload. The wrapper message would represent

Doxygen and protobuf

2008-12-08 Thread Scott Stafford
Hi - Has anyone attempted to use Doxygen with .proto files? We're considering the possibility of looking into extending Doxygen to support the .proto format, but haven't started the project. Thoughts? Scott --~--~-~--~~~---~--~~ You received this message

Swap() and RemoveLast() should be added to Reflection API

2009-03-09 Thread Scott Stafford
Hi - I noticed that the functionality for Swap() and RemoveLast() was not available to reflection. I needed them and tried to add them in a branch, and it seemed trivial enough (especially RemoveLast). Is there anything that I missed? Is there a reason that this is more complex than I can see

Re: Swap() and RemoveLast() should be added to Reflection API

2009-03-10 Thread Scott Stafford
want from it.  That said, I'd be OK with adding these.  Fortunately they don't need separate versions for every field type. On Mon, Mar 9, 2009 at 5:50 AM, Scott Stafford scott.staff...@gmail.comwrote: Hi - I noticed that the functionality for Swap() and RemoveLast

ctype implementation plans for messages?

2009-05-11 Thread Scott Stafford
Hi - Is there any plan to merge ctype into the open source protobuf library? If so, how would it work? Ideally I'd be able to supply any datatype for a field to pack/unpack directly rather than the standard double/int/RepeatedField/Message. For instance, on my project we still have a glaring

Re: 'Search this group' isn't very helpful

2009-08-07 Thread Scott Stafford
I'm having zero results too, searching for DescriptorPool for instance. On Aug 4, 7:54 pm, Kenton Varda ken...@google.com wrote: Interesting.  I'll file a bug against google groups. On Tue, Aug 4, 2009 at 3:25 PM, Adam yel...@gmail.com wrote: On Aug 4, 5:16 pm, Kenton Varda

[protobuf] Re: Compiling .proto files with scons

2009-12-09 Thread Scott Stafford
Check out the SCons wiki, I just put up a SCons Builder that should help you. http://www.scons.org/wiki/ProtocBuilder Scott On Nov 23, 10:07 pm, Thomas Johnson thomas.j.john...@gmail.com wrote: Sorry, I thought I had read in an interview somewhere that you guys were usingsconsinternally. And

[protobuf] Re: Built a simplified XPath-like syntax for Protocol Buffers

2009-12-18 Thread Scott Stafford
-0800, Scott Stafford wrote: Hi - We built a simplifiedXPath-like syntax (and implementation for C++) to control the Reflection interface via strings.  For instance, ... skip ... PBPath::GetInt32( myMessage, field2[id=50].field3[1] ); would search myMessage.field2() for a message