Search This Site

Custom Search

Thursday, December 30, 2010

Re: [bloggerDev] Gadget on "Edit Post" page?

I'm interested in what you would want the gadget to do? Something like Spelly from wave?

On Fri, Dec 31, 2010 at 2:25 AM, thelonecabbage <thelonecabbage@gmail.com> wrote:
Is it possible to embed a widget on the "Edit Post" page?

So that the widget can be active (and assist) during article editing?

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Is it possible to build Gadgets for the Post Editor Page?

Is it possible to build Gadgets for the Post Editor Page?

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Gadget on "Edit Post" page?

Is it possible to embed a widget on the "Edit Post" page?

So that the widget can be active (and assist) during article editing?

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Monday, December 27, 2010

[bloggerDev] Re: Changing HTML

I am not sure if I understood your complaint, but you are not limited in any way. See demo at http://c2srbmuz.appspot.com/ which showcases possibilities to changing anything you like..

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Changing HTML

Why did blogger decide to change it's HTML coding? It makes it really
hard for us blogger's to personalize our blogs the way we like. I hate
being stuck with the pre-set options and would like to make my blog
look exactly the way I want it to. I cant now because you have changed
the old HTML coding so all of the original options aren't there.
Several of my fellow blogging friends have expressed their
frustrations with this!

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Sunday, December 19, 2010

Re: [bloggerDev] Re: Mobile Version Documentation

Here's two screen shots of the header/Logo problem :




--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Re: Mobile Version Documentation

Ok thank you

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Problem with Gadget Skins - FONT_FACE identified

Hey all, 

I believe we have fixed these issues. Can you guys confirm that the issues you were seeing are now fixed, and if not, give me the use cases that are failing?

brett

On Wed, Nov 10, 2010 at 4:23 PM, Aratina Cage <aratina.cag3@gmail.com> wrote:
I was just alerted to a problem where my gadget was not displaying the
font correctly, and I traced the problem down to a small but crucial
error in how the skin style for FONT_FACE is created on blogs that
have their main font modified through the Template Designer. What
happens is that a semicolon somehow gets attached to the end of the
FONT_FACE string. Normally the semicolon is not there, and unmodified
blogs have a FONT_FACE skin style that looks like this (\x27 is a
single quotation mark):

"normal normal 13px \x27Trebuchet MS\x27, Trebuchet, sans-serif"

But blogs that have their font-family or font-size changed through the
Template Designer get a FONT_FACE skin style with a semicolon tacked
to the end, like this:

"normal normal 13px \x27Trebuchet MS\x27, Trebuchet, sans-serif;"

The semicolon at the end renders the FONT_FACE style string unusable
when it is used to set the font style of an HTML element in
JavaScript. For example (you can test this in an HTML/JavaScript
gadget on your blog):

<div id="elementX">Test 123 Test</div>
<script>
var elementX = document.getElementById("elementX");

elementX.style.font = "normal normal 13px 'Trebuchet MS', Trebuchet,
sans-serif;"; // works in IE, does not work in Chrome, FF, Safari, or
Opera

elementX.style.font = "normal normal 13px 'Trebuchet MS', Trebuchet,
sans-serif"; // works in all major browsers
</script>


The workaround is, of course, to test the last character in the
FONT_FACE style string for a semicolon and delete it if found.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Re: Mobile Version Documentation

Thanks for the detailed response.

I'll update this group once we have capabilities in these areas.

brett

On Sun, Dec 19, 2010 at 8:00 PM, LeBlogger.com <lamchaouri1987@gmail.com> wrote:
Thanks for the quick answer Brett Morgan :)

For example why on this Blog http://www.soBlogger.com/?m=1 Blogger
uses the original Logo image BUT not on this one http://www.LeBlogger.com/?m=1
?
??

They have the same Template and the same logo image ???



I want to do any possible customizations, examples :

 - Use my own favicon !

 - How should I build my LinkList in order to be displayed in the
Mobile Version ? (It's possible when using the Template Designer, but
I'm not using it).

 - I want to display ads on the Mobile Version, I understand that I
have just to add a Blogger Adsense to my Blog. I tried and it works.
But I don't want that Blogger adsense widget to be displayed on the
web Version.
So my question is : is there any b:if condition that'll allow us to
serve content only for mobile devices ? Does it really work ?
<b:if cond='data:blog.isMobile'> Doesn't seem to work !

 - I found many "Mobile Including" statements but even deleting them
doesn't seem to make any difference !
For example I don't want to display the post date so I removed this
<div class='mobile-index-date'>... from my blog code, but It doesn't
change any thing !

 - How to edit the Mobile Version CSS ???

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Re: Mobile Version Documentation

Thanks for the quick answer Brett Morgan :)

For example why on this Blog http://www.soBlogger.com/?m=1 Blogger
uses the original Logo image BUT not on this one http://www.LeBlogger.com/?m=1
?
??

They have the same Template and the same logo image ???

I want to do any possible customizations, examples :

- Use my own favicon !

- How should I build my LinkList in order to be displayed in the
Mobile Version ? (It's possible when using the Template Designer, but
I'm not using it).

- I want to display ads on the Mobile Version, I understand that I
have just to add a Blogger Adsense to my Blog. I tried and it works.
But I don't want that Blogger adsense widget to be displayed on the
web Version.
So my question is : is there any b:if condition that'll allow us to
serve content only for mobile devices ? Does it really work ?
<b:if cond='data:blog.isMobile'> Doesn't seem to work !

- I found many "Mobile Including" statements but even deleting them
doesn't seem to make any difference !
For example I don't want to display the post date so I removed this
<div class='mobile-index-date'>... from my blog code, but It doesn't
change any thing !

- How to edit the Mobile Version CSS ???

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Saturday, December 18, 2010

Re: [bloggerDev] Mobile Version Documentation

How would you like to be able to customise the mobile layout?

On Sun, Dec 19, 2010 at 9:26 AM, LeBlogger.com <lamchaouri1987@gmail.com> wrote:
I'm looking for documentation about the new Mobile Version feature
(I've read the Draft post, which contains no information on how to
customize the mobile layout).

@Brett Morgan

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Mobile Version Documentation

I'm looking for documentation about the new Mobile Version feature
(I've read the Draft post, which contains no information on how to
customize the mobile layout).

@Brett Morgan

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Friday, December 17, 2010

Re: [bloggerDev] Blogger tool bar can be like Wibiya tool bar

This looks a lot like what OneTrueFan have done, using Blogger's Add-Widget functionality.

Links:
OneTrueFan's homepage: http://onetruefan.com/
Example blogger site: http://blog.louisgray.com/

brett 

On Fri, Dec 17, 2010 at 4:56 PM, Krishna <ka.krishnakumar@gmail.com> wrote:
Can you make blogger tool bar like Wibiya tool bar for blogs and
websites? You can include facebook, twitter and chat in the tool bar.
And place the tool bar in the bottom of the webpage instead of top of
the page.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Thursday, December 16, 2010

[bloggerDev] Blogger tool bar can be like Wibiya tool bar

Can you make blogger tool bar like Wibiya tool bar for blogs and
websites? You can include facebook, twitter and chat in the tool bar.
And place the tool bar in the bottom of the webpage instead of top of
the page.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Wednesday, December 15, 2010

Re: [bloggerDev] Get comments (not only summary)

The appropriate place for these requests is Blogger's help forum: http://www.google.com/support/forum/p/blogger

2010/12/16 ΑΡΤΕΜΗΣ ΡΟΥΚΟΥΝΑΚΗΣ <mpalosgrkis@hotmail.com>

http://mpalosgrkis.blogspot.com/ the blog is off me and i can not get as administraror

Date: Tue, 14 Dec 2010 15:22:19 +1100

Subject: Re: [bloggerDev] Get comments (not only summary)
From: brettmorgan@google.com

To: bloggerdev@googlegroups.com

Anyone speak Portuguese? 

Sadly, I don't.

On Tue, Dec 14, 2010 at 2:36 PM, EVA LUTYGA <eva_pereira12@hotmail.com> wrote:
nao entendo nada falo so portugues

> Date: Mon, 13 Dec 2010 19:58:40 +0200
> From: gavenkoa@gmail.com
> To: bloggerdev@googlegroups.com
> Subject: Re: [bloggerDev] Get comments (not only summary)

>
> On 2010-12-13 11:25, Roger wrote:
> > Hi there,
> >
> > Does the Blogger API offer a method to fetch all comments? The feed
> > http://www.blogger.com/feeds/{blogID}/{postID}/comments/default
> > contains only a (sometimes truncated) summary. Searching the group I
> > found some posts referring to http://www.blogger.com/feeds/{blogID}/{postID}/comments/full,
> > but this does not work for me.
> >
> How about 'start-index' from:
>
> http://code.google.com/apis/gdata/docs/2.0/reference.html
>
> Also check:
>
> http://code.google.com/apis/blogger/docs/2.0/developers_guide_protocol.html#RetrievingComments
>
> --
> Best regards!
>
> --
> You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
> To post to this group, send email to bloggerdev@googlegroups.com.
> To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.
>

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.



--
Brett Morgan

Developer Programs Engineer, Blogger


--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.



--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

RE: [bloggerDev] Get comments (not only summary)


http://mpalosgrkis.blogspot.com/ the blog is off me and i can not get as administraror

Date: Tue, 14 Dec 2010 15:22:19 +1100
Subject: Re: [bloggerDev] Get comments (not only summary)
From: brettmorgan@google.com
To: bloggerdev@googlegroups.com

Anyone speak Portuguese? 

Sadly, I don't.

On Tue, Dec 14, 2010 at 2:36 PM, EVA LUTYGA <eva_pereira12@hotmail.com> wrote:
nao entendo nada falo so portugues

> Date: Mon, 13 Dec 2010 19:58:40 +0200
> From: gavenkoa@gmail.com
> To: bloggerdev@googlegroups.com
> Subject: Re: [bloggerDev] Get comments (not only summary)

>
> On 2010-12-13 11:25, Roger wrote:
> > Hi there,
> >
> > Does the Blogger API offer a method to fetch all comments? The feed
> > http://www.blogger.com/feeds/{blogID}/{postID}/comments/default
> > contains only a (sometimes truncated) summary. Searching the group I
> > found some posts referring to http://www.blogger.com/feeds/{blogID}/{postID}/comments/full,
> > but this does not work for me.
> >
> How about 'start-index' from:
>
> http://code.google.com/apis/gdata/docs/2.0/reference.html
>
> Also check:
>
> http://code.google.com/apis/blogger/docs/2.0/developers_guide_protocol.html#RetrievingComments
>
> --
> Best regards!
>
> --
> You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
> To post to this group, send email to bloggerdev@googlegroups.com.
> To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.
>

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.



--
Brett Morgan

Developer Programs Engineer, Blogger


--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Tuesday, December 14, 2010

[bloggerDev] Re: Get comments (not only summary)

Hi Brett,

We use the official Blogger API (PHP client library from
http://code.google.com/apis/blogger/) to include the blog in our page.

Now take a look at this blog post:
http://www.wuala.com/blog/2009/06/developer-zone-web-access-enhancements.html
Comment 4 by grahamperrin is truncated. There should be more text
after ".. that are" (click on "Post a comment" to see the entire
comment in the popup).

So I'm unsure if I am using the wrong feed (http://www.blogger.com/
feeds/6587248234840413692/5144690851501181814/comments/default
does
only contain the truncated comment) or if there is another problem.

btw, just for testing I tried to output all comments of this blog
entry with the official Java client library from
http://code.google.com/apis/blogger/docs/2.0/developers_guide_java.html#RetrievingComments.
But it did not work with our blog, entry.getContent() was always null.
This works with a test blog - there I was able to fetch all comments.
Maybe this helps?

--
Roger

On Dec 14, 5:23 am, Brett Morgan <brettmor...@google.com> wrote:
> Can you give me more details over this Roger? I'm wondering if the bug is on
> your side or mine...
>
>
>
>
>
>
>
>
>
> On Mon, Dec 13, 2010 at 8:25 PM, Roger <jaeg...@gmail.com> wrote:
> > Hi there,
>
> > Does the Blogger API offer a method to fetch all comments? The feed
> >http://www.blogger.com/feeds/{blogID}/{postID}/comments/default
> > contains only a (sometimes truncated) summary. Searching the group I
> > found some posts referring to
> >http://www.blogger.com/feeds/{blogID}/{postID}/comments/full,
> > but this does not work for me.
>
> > Thanks,
> > Roger
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
> Brett Morgan
>
> *Developer Programs Engineer, Blogger*

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] 3 Most Popular Dating Guide Review Online

Find your love online, in 3 ways
Black Belt Seduction, Guy Gets Girl
How to Become An Alpha Male
http://dating-guide-review.123probiz.com
Happy Dating :)
Thanks
Abdurrahman faris
Supervsor

http://www.gogonai.info/?id=faris96

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Monday, December 13, 2010

Re: [bloggerDev] Get comments (not only summary)

Can you give me more details over this Roger? I'm wondering if the bug is on your side or mine...

On Mon, Dec 13, 2010 at 8:25 PM, Roger <jaeggir@gmail.com> wrote:
Hi there,

Does the Blogger API offer a method to fetch all comments? The feed
http://www.blogger.com/feeds/{blogID}/{postID}/comments/default
contains only a (sometimes truncated) summary. Searching the group I
found some posts referring to http://www.blogger.com/feeds/{blogID}/{postID}/comments/full,
but this does not work for me.

Thanks,
Roger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Get comments (not only summary)

Anyone speak Portuguese? 

Sadly, I don't.

On Tue, Dec 14, 2010 at 2:36 PM, EVA LUTYGA <eva_pereira12@hotmail.com> wrote:
nao entendo nada falo so portugues

> Date: Mon, 13 Dec 2010 19:58:40 +0200
> From: gavenkoa@gmail.com
> To: bloggerdev@googlegroups.com
> Subject: Re: [bloggerDev] Get comments (not only summary)

>
> On 2010-12-13 11:25, Roger wrote:
> > Hi there,
> >
> > Does the Blogger API offer a method to fetch all comments? The feed
> > http://www.blogger.com/feeds/{blogID}/{postID}/comments/default
> > contains only a (sometimes truncated) summary. Searching the group I
> > found some posts referring to http://www.blogger.com/feeds/{blogID}/{postID}/comments/full,
> > but this does not work for me.
> >
> How about 'start-index' from:
>
> http://code.google.com/apis/gdata/docs/2.0/reference.html
>
> Also check:
>
> http://code.google.com/apis/blogger/docs/2.0/developers_guide_protocol.html#RetrievingComments
>
> --
> Best regards!
>
> --
> You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
> To post to this group, send email to bloggerdev@googlegroups.com.
> To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.
>

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.



--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

RE: [bloggerDev] Get comments (not only summary)

nao entendo nada falo so portugues

> Date: Mon, 13 Dec 2010 19:58:40 +0200
> From: gavenkoa@gmail.com
> To: bloggerdev@googlegroups.com
> Subject: Re: [bloggerDev] Get comments (not only summary)
>
> On 2010-12-13 11:25, Roger wrote:
> > Hi there,
> >
> > Does the Blogger API offer a method to fetch all comments? The feed
> > http://www.blogger.com/feeds/{blogID}/{postID}/comments/default
> > contains only a (sometimes truncated) summary. Searching the group I
> > found some posts referring to http://www.blogger.com/feeds/{blogID}/{postID}/comments/full,
> > but this does not work for me.
> >
> How about 'start-index' from:
>
> http://code.google.com/apis/gdata/docs/2.0/reference.html
>
> Also check:
>
> http://code.google.com/apis/blogger/docs/2.0/developers_guide_protocol.html#RetrievingComments
>
> --
> Best regards!
>
> --
> You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
> To post to this group, send email to bloggerdev@googlegroups.com.
> To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.
>

Re: [bloggerDev] Get comments (not only summary)

On 2010-12-13 11:25, Roger wrote:
> Hi there,
>
> Does the Blogger API offer a method to fetch all comments? The feed
> http://www.blogger.com/feeds/{blogID}/{postID}/comments/default
> contains only a (sometimes truncated) summary. Searching the group I
> found some posts referring to http://www.blogger.com/feeds/{blogID}/{postID}/comments/full,
> but this does not work for me.
>
How about 'start-index' from:

http://code.google.com/apis/gdata/docs/2.0/reference.html

Also check:

http://code.google.com/apis/blogger/docs/2.0/developers_guide_protocol.html#RetrievingComments

--
Best regards!

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Get comments (not only summary)

Hi there,

Does the Blogger API offer a method to fetch all comments? The feed
http://www.blogger.com/feeds/{blogID}/{postID}/comments/default
contains only a (sometimes truncated) summary. Searching the group I
found some posts referring to http://www.blogger.com/feeds/{blogID}/{postID}/comments/full,
but this does not work for me.

Thanks,
Roger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Saturday, December 11, 2010

Re: [bloggerDev] Re: HTTPRequest in Java - unexpected end of line


On Sun, Dec 12, 2010 at 1:01 AM, tim <timwebuk@gmail.com> wrote:
Hi Brett,

Thanks for the quick response.  I guess it has just been a lack of
research on my part as to why I haven't been using your existing
libraries!  I'll look into those links you've specified - but as
always, I'm still extremely curious as to why my existing method does
not work so if you could look at my source, that'd be great!

And maybe email me the Wireshark trace you come up with?

Wireshark is at http://www.wireshark.org/ 
 
Cheers,

Tim.

On Dec 10, 8:12 pm, Brett Morgan <brettmor...@google.com> wrote:
> Heya Tim,
>
> First up, i'm curious why you aren't using either of our java libraries, as
> they will save you time over implementing everything from scratch.
>
> http://code.google.com/p/gdata-java-client/- the older client library that
> the blogger api documentation covershttp://code.google.com/p/google-api-java-client/- the newer client library
> that works on AppEngine and Android
>
> Otherwise, can you supply your source code so that I can inspect what it is
> doing via wireshark?
>
> brett
>
>
>
>
>
>
>
>
>
> On Sat, Dec 11, 2010 at 4:17 AM, tim <timwe...@gmail.com> wrote:
> > Hi everyone,
>
> > I'm new to the group here, so sorry if this question has been asked
> > before - can't seem to find it anywhere online.
>
> > Using the class HTTPURLConnection I am able to authenticate with the
> > Blogger service and successfully obtain an authentication key -
> > however when I send a further request to insert a blog post, my
> > application times out and eventually I get the following exception:
>
> > java.net.SocketException: Unexpected end of file from server
> >        at sun.net.www.http.HttpClient.parseHTTPHeader(UnknownSource)
> >        at sun.net.www.http.HttpClient.parseHTTP(UnknownSource)
> >        at sun.net.www.http.HttpClient.parseHTTPHeader(UnknownSource)
> >        at sun.net.www.http.HttpClient.parseHTTP(UnknownSource)
> >        at
> > sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown
> > Source)
> >        at HTTPOperations.httpPOST(HTTPOperations.java:60)
> >        at TestClass.main(TestClass.java:56)
>
> > However, when I manually send a request using cURL, it adds the new
> > blog post completely fine!  So I guess my question is, what is the
> > Blogger service sending back, that HTTPURLConnection.getInputStream()
> > is failing on?
>
> > Cheers,
>
> > Tim.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
> Brett Morgan
>
> *Developer Programs Engineer, Blogger*

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Re: HTTPRequest in Java - unexpected end of line

Hi Brett,

Thanks for the quick response. I guess it has just been a lack of
research on my part as to why I haven't been using your existing
libraries! I'll look into those links you've specified - but as
always, I'm still extremely curious as to why my existing method does
not work so if you could look at my source, that'd be great!

And maybe email me the Wireshark trace you come up with?

Cheers,

Tim.

On Dec 10, 8:12 pm, Brett Morgan <brettmor...@google.com> wrote:
> Heya Tim,
>
> First up, i'm curious why you aren't using either of our java libraries, as
> they will save you time over implementing everything from scratch.
>
> http://code.google.com/p/gdata-java-client/- the older client library that
> the blogger api documentation covershttp://code.google.com/p/google-api-java-client/- the newer client library
> that works on AppEngine and Android
>
> Otherwise, can you supply your source code so that I can inspect what it is
> doing via wireshark?
>
> brett
>
>
>
>
>
>
>
>
>
> On Sat, Dec 11, 2010 at 4:17 AM, tim <timwe...@gmail.com> wrote:
> > Hi everyone,
>
> > I'm new to the group here, so sorry if this question has been asked
> > before - can't seem to find it anywhere online.
>
> > Using the class HTTPURLConnection I am able to authenticate with the
> > Blogger service and successfully obtain an authentication key -
> > however when I send a further request to insert a blog post, my
> > application times out and eventually I get the following exception:
>
> > java.net.SocketException: Unexpected end of file from server
> >        at sun.net.www.http.HttpClient.parseHTTPHeader(UnknownSource)
> >        at sun.net.www.http.HttpClient.parseHTTP(UnknownSource)
> >        at sun.net.www.http.HttpClient.parseHTTPHeader(UnknownSource)
> >        at sun.net.www.http.HttpClient.parseHTTP(UnknownSource)
> >        at
> > sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown
> > Source)
> >        at HTTPOperations.httpPOST(HTTPOperations.java:60)
> >        at TestClass.main(TestClass.java:56)
>
> > However, when I manually send a request using cURL, it adds the new
> > blog post completely fine!  So I guess my question is, what is the
> > Blogger service sending back, that HTTPURLConnection.getInputStream()
> > is failing on?
>
> > Cheers,
>
> > Tim.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
> Brett Morgan
>
> *Developer Programs Engineer, Blogger*

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Friday, December 10, 2010

Re: [bloggerDev] HTTPRequest in Java - unexpected end of line

Heya Tim,

First up, i'm curious why you aren't using either of our java libraries, as they will save you time over implementing everything from scratch.

http://code.google.com/p/gdata-java-client/ - the older client library that the blogger api documentation covers
http://code.google.com/p/google-api-java-client/ - the newer client library that works on AppEngine and Android

Otherwise, can you supply your source code so that I can inspect what it is doing via wireshark?

brett

On Sat, Dec 11, 2010 at 4:17 AM, tim <timwebuk@gmail.com> wrote:
Hi everyone,

I'm new to the group here, so sorry if this question has been asked
before - can't seem to find it anywhere online.

Using the class HTTPURLConnection I am able to authenticate with the
Blogger service and successfully obtain an authentication key -
however when I send a further request to insert a blog post, my
application times out and eventually I get the following exception:

java.net.SocketException: Unexpected end of file from server
       at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
       at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
       at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
       at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
       at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown
Source)
       at HTTPOperations.httpPOST(HTTPOperations.java:60)
       at TestClass.main(TestClass.java:56)

However, when I manually send a request using cURL, it adds the new
blog post completely fine!  So I guess my question is, what is the
Blogger service sending back, that HTTPURLConnection.getInputStream()
is failing on?

Cheers,

Tim.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] HTTPRequest in Java - unexpected end of line

Hi everyone,

I'm new to the group here, so sorry if this question has been asked
before - can't seem to find it anywhere online.

Using the class HTTPURLConnection I am able to authenticate with the
Blogger service and successfully obtain an authentication key -
however when I send a further request to insert a blog post, my
application times out and eventually I get the following exception:

java.net.SocketException: Unexpected end of file from server
at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown
Source)
at HTTPOperations.httpPOST(HTTPOperations.java:60)
at TestClass.main(TestClass.java:56)

However, when I manually send a request using cURL, it adds the new
blog post completely fine! So I guess my question is, what is the
Blogger service sending back, that HTTPURLConnection.getInputStream()
is failing on?

Cheers,

Tim.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Thursday, December 9, 2010

[bloggerDev] retrieve all blogs an authenticated user has read accees to as opposed to retrieving the users blogs

I'm using OAuth to authenticate a user and use the metafeed URL
http://www.blogger.com/feeds/default/blogs to retrieve the users blogs
as described in the API documentation.

However, this list is missing the blogs that are not owned by the
authenticated user but where there user still has read access. These
are otherwise private blogs owned by other users.

I do understand that I could replace the "default" with the ID of the
respective other users profile, but that is not necessarily known to
my application user.

Is there a way to either persuade the metafeed URL to give a full list
of blogs - the owned ones plus the accessible ones? Or is there an
alternative metafeed URL for the read-access blogs?

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Re: can't get user secured data using oauth

From your code it looks like you are posting to the https endpoint while using the http scope. Is this correct?

On Wed, Dec 8, 2010 at 7:10 PM, sherwin gaum <shergau@gmail.com> wrote:
Brett,

I'm using the latter, http://www.blogger.com/feeds/.

here's the fragment code :

   $issued=gmdate("Y-m-d\TH:i:s\Z", time());
   $post_endpoint = 'https://www.blogger.com/feeds/' .urlencode($this-
>_blogId) . '/posts/default';
   $content = "<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
\r\n"
      . "<entry>\r\n"
      . "<title mode='escaped' type='text'>".$title."</title>\r\n"
      . "<issued>".$issued."</issued>\r\n"
      . "<generator url='http://mysite.com'> MySite</generator>\r\n"
      . "<content type='application/xhtml+xml'>\r\n"
      . "<div xmlns='http://www.w3.org/1999/xhtml'>".$body."</div>\r
\n"
      . "</content>\r\n"
      . "</entry>\r\n";
   try {
     $oauth = new OAuth(
       $this->consumerKey ,
       $this->consumerSecretKey ,
       OAUTH_SIG_METHOD_HMACSHA1 ,
       OAUTH_AUTH_TYPE_URI
     );

     $oauth->setToken($this->accessToken , $this->accessTokenSecret);
     $oauth->fetch($post_endpoint, $content, OAUTH_HTTP_METHOD_POST,
array("Content-Type" => "application/atom+xml"));

   } catch(OAuthException $e) {
     return "Response: ". $e->lastResponse;
   }

   return true;
 }

I dunno what is wrong with this code.

Thanks for your reply

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Wednesday, December 8, 2010

[bloggerDev] Re: can't get user secured data using oauth

Brett,

I'm using the latter, http://www.blogger.com/feeds/.

here's the fragment code :

$issued=gmdate("Y-m-d\TH:i:s\Z", time());
$post_endpoint = 'https://www.blogger.com/feeds/' .urlencode($this-
>_blogId) . '/posts/default';
$content = "<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
\r\n"
. "<entry>\r\n"
. "<title mode='escaped' type='text'>".$title."</title>\r\n"
. "<issued>".$issued."</issued>\r\n"
. "<generator url='http://mysite.com'> MySite</generator>\r\n"
. "<content type='application/xhtml+xml'>\r\n"
. "<div xmlns='http://www.w3.org/1999/xhtml'>".$body."</div>\r
\n"
. "</content>\r\n"
. "</entry>\r\n";
try {
$oauth = new OAuth(
$this->consumerKey ,
$this->consumerSecretKey ,
OAUTH_SIG_METHOD_HMACSHA1 ,
OAUTH_AUTH_TYPE_URI
);

$oauth->setToken($this->accessToken , $this->accessTokenSecret);
$oauth->fetch($post_endpoint, $content, OAUTH_HTTP_METHOD_POST,
array("Content-Type" => "application/atom+xml"));

} catch(OAuthException $e) {
return "Response: ". $e->lastResponse;
}

return true;
}

I dunno what is wrong with this code.

Thanks for your reply

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Monday, December 6, 2010

Re: [bloggerDev] can't get user secured data using oauth

Sherwin,


Also, which API end points are you hitting? The blog url hosted one, or the ones under blogger.com/feeds/* ?

brett

On Tue, Dec 7, 2010 at 9:39 AM, sherwin gaum <shergau@gmail.com> wrote:
I'm creating a web application that is able to cross-post posted
photos from my site to blogger.
I'm not using Zend Library coz it is a huge library, 20+MB ,  so i
used alternative one.
Library : http://code.google.com/p/oauth-php/

I already have a valid access token
BUT,
always got this error

" Token invalid - AuthSub token has wrong scope Error 401 "

I have tried it on OAuth playground but it has the same result.

Please help me guys. thanks in advance :(

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] can't get user secured data using oauth

I'm creating a web application that is able to cross-post posted
photos from my site to blogger.
I'm not using Zend Library coz it is a huge library, 20+MB , so i
used alternative one.
Library : http://code.google.com/p/oauth-php/

I already have a valid access token
BUT,
always got this error

" Token invalid - AuthSub token has wrong scope Error 401 "

I have tried it on OAuth playground but it has the same result.

Please help me guys. thanks in advance :(

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Re: parsing date

Wanna send me the template?

On 6 Dec 2010 22:59, "trek" <trekcelt@gmail.com> wrote:
>
> Bret,
>
> Yes, I am customizing the template.
>
> On Dec 5, 8:56 pm, Brett Morgan <brettmor...@google.com> wrote:
> > Trek,
> >
> > Are you customising your templates? I'm trying to understand what it is that
> > you are doing here, and I'm not quite getting it.
> >
> > brett
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > On Mon, Dec 6, 2010 at 12:59 AM, trek <trekc...@gmail.com> wrote:
> > > I have a blog which I'm using to track some near-daily statistics.
> > > The blog posts' titles are in dd-Month format.  I'd like to be able to
> > > parse the dateHeader element in the template so that only the year
> > > shows.
> >
> > > Currently I can have either:
> >
> > > 05 December             <-- title
> > > blog post here
> >
> > > OR
> >
> > > December 5, 2010    <--  header
> > > 05 December             <-- title
> > > blog post here
> >
> > > What I would like is
> >
> > > 2010                          <-- header
> > > 05 December             <-- title
> > > blog post here
> >
> > > Suggestions??
> >
> > > --
> > > You received this message because you are subscribed to the Google Groups
> > > "Blogger Developer Group" group.
> > > To post to this group, send email to bloggerdev@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > > .
> > > For more options, visit this group at
> > >http://groups.google.com/group/bloggerdev?hl=en.
> >
> > --
> > Brett Morgan
> >
> > *Developer Programs Engineer, Blogger*
>
> --
> You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
> To post to this group, send email to bloggerdev@googlegroups.com.
> To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.
>

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Re: parsing date

Bret,

Yes, I am customizing the template.

On Dec 5, 8:56 pm, Brett Morgan <brettmor...@google.com> wrote:
> Trek,
>
> Are you customising your templates? I'm trying to understand what it is that
> you are doing here, and I'm not quite getting it.
>
> brett
>
>
>
>
>
>
>
>
>
> On Mon, Dec 6, 2010 at 12:59 AM, trek <trekc...@gmail.com> wrote:
> > I have a blog which I'm using to track some near-daily statistics.
> > The blog posts' titles are in dd-Month format.  I'd like to be able to
> > parse the dateHeader element in the template so that only the year
> > shows.
>
> > Currently I can have either:
>
> > 05 December             <-- title
> > blog post here
>
> > OR
>
> > December 5, 2010    <--  header
> > 05 December             <-- title
> > blog post here
>
> > What I would like is
>
> > 2010                          <-- header
> > 05 December             <-- title
> > blog post here
>
> > Suggestions??
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
> Brett Morgan
>
> *Developer Programs Engineer, Blogger*

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Sunday, December 5, 2010

Re: [bloggerDev] parsing date

Trek,

Are you customising your templates? I'm trying to understand what it is that you are doing here, and I'm not quite getting it.

brett

On Mon, Dec 6, 2010 at 12:59 AM, trek <trekcelt@gmail.com> wrote:
I have a blog which I'm using to track some near-daily statistics.
The blog posts' titles are in dd-Month format.  I'd like to be able to
parse the dateHeader element in the template so that only the year
shows.

Currently I can have either:

05 December             <-- title
blog post here


OR

December 5, 2010    <--  header
05 December             <-- title
blog post here

What I would like is

2010                          <-- header
05 December             <-- title
blog post here

Suggestions??

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--
Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] parsing date

I have a blog which I'm using to track some near-daily statistics.
The blog posts' titles are in dd-Month format. I'd like to be able to
parse the dateHeader element in the template so that only the year
shows.

Currently I can have either:

05 December <-- title
blog post here


OR

December 5, 2010 <-- header
05 December <-- title
blog post here

What I would like is

2010 <-- header
05 December <-- title
blog post here

Suggestions??

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Saturday, December 4, 2010

[bloggerDev] bloggerdev+unsubscribe@googlegroups.com

 
----- Original Message -----
Sent: Saturday, December 04, 2010 10:54 AM
Subject: [bloggerDev] Digest for bloggerdev@googlegroups.com - 1 Message in 1 Topic

Group: http://groups.google.com/group/bloggerdev/topics

    gavenkoa <gavenkoa@gmail.com> Dec 03 01:18PM -0800 ^
     
    > Gavenoka,
     
    > Does the "source=gavenkoa-brainbreak-1" need to be pulled out to
    > Makefile.config?
     
    I make posible to change 'source' value from 'Makefile.config'
    by setting:
     
    CLIENT_ID = myhome-makefile-1 # in form companyName-applicationName-
    versionID
     
    I try login and work with Blogger service without passing this
    parameter with success!
     
    According to http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html#Request
    I think this parameter need for gathering statistics about clients app
    or for Firewalls to distinguish good client apps from bad.
     
    Also I work on removing dependency on tidy (make it optional).
     
    Recall that Makefile from
     
    http://code.google.com/p/brain-break-blog/source/browse/Makefile
     
    can be useful to automatically update your blogger templates without
    using in some way inconvenient browser interface (especially if you
    have a lot of blogs).
     
    Also I recommend store templates under VCS (Google code offer free
    Mercurial code hosting,
    check how I done this - http://code.google.com/p/brain-break-blog).

     

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Friday, December 3, 2010

[bloggerDev] Re: Finally I successful upload template from command line to Blogger.

On Dec 2, 2:43 am, Brett Morgan <brettmor...@google.com> wrote:
> Gavenoka,
>
> Does the "source=gavenkoa-brainbreak-1" need to be pulled out to
> Makefile.config?
>
I make posible to change 'source' value from 'Makefile.config'
by setting:

CLIENT_ID = myhome-makefile-1 # in form companyName-applicationName-
versionID

I try login and work with Blogger service without passing this
parameter with success!

According to http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html#Request
I think this parameter need for gathering statistics about clients app
or for Firewalls to distinguish good client apps from bad.

Also I work on removing dependency on tidy (make it optional).

Recall that Makefile from

http://code.google.com/p/brain-break-blog/source/browse/Makefile

can be useful to automatically update your blogger templates without
using in some way inconvenient browser interface (especially if you
have a lot of blogs).

Also I recommend store templates under VCS (Google code offer free
Mercurial code hosting,
check how I done this - http://code.google.com/p/brain-break-blog).

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Wednesday, December 1, 2010

[bloggerDev] Re: Finally I successful upload template from command line to Blogger.

Gavenoka,

Does the "source=gavenkoa-brainbreak-1" need to be pulled out to
Makefile.config?

brett

On Dec 2, 10:26 am, gavenkoa <gaven...@gmail.com> wrote:
> Example can be found in:
>
> http://code.google.com/p/brain-break-blog/source/browse/Makefile
>
> Instruction how use can be found in:
>
> http://code.google.com/p/brain-break-blog/source/browse/README
>
> My trubles go away after reading Atom Publishing Protocol (http://www.ietf.org/rfc/rfc5023.txt) which follow Blogger service.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Finally I successful upload template from command line to Blogger.

Example can be found in:

http://code.google.com/p/brain-break-blog/source/browse/Makefile

Instruction how use can be found in:

http://code.google.com/p/brain-break-blog/source/browse/README

My trubles go away after reading Atom Publishing Protocol (http://
www.ietf.org/rfc/rfc5023.txt) which follow Blogger service.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Re: How upload blogger template to blog?

On Oct 26, 11:25 pm, gavenkoa <gaven...@gmail.com> wrote:
> I can download tamplate by:
>
>  $ curl $(CURL_FLAGS) \
>         --header "Authorization: GoogleLogin auth="`cat login-auth.txt` \
>         --header "GData-Version: 2" \
>        http://www.blogger.com/feeds/2689659750631752910/template
>
> >template.atom
>
> Then I make XPath query:
>
>   $ xpath template.atom '/feed/entry/content/text()'
> Found 1 nodes:
> -- NODE --
> &lt;?xml version="1.0" encoding="UTF-8" ?>
> &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
> &lt;html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml'xmlns:b='http://www.google.com/2005/gml/b'
> xmlns:data='http://www.google.com/2005/gml/data'xmlns:expr='http://www.google.com/2005/gml/expr'>
> ....  .... ....
>
> Then I unescape output:
>
>   $ xpath $(WEB_DIR)/template.atom  '/feed/entry/content/text()' \
>     | sed -e 's=&lt;=<=g' -e 's=&gt;=>=g' -e 's=&amp;=\&=g'
>
> >template.xml
>
> Finally I get same as by clicking "Download Full Template" on Blogger
> Design==>Edit HTML page.
>
> But I have trouble when try upload template in this way.
>
Finaly I got it work!

Check http://code.google.com/p/brain-break-blog project.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Tuesday, November 30, 2010

[bloggerDev] Re: java-client library ( attribute and value parsing )

thanks Brett.

regards,
ravinder chouhan

On Dec 1, 8:24 am, Brett Morgan <brettmor...@google.com> wrote:
> I should note here for future readers, the answer is using
> @Key("text()") to pull the text content of a node.
>
> brett
>
> On Nov 29, 5:20 pm, Ravinder <ravinder.chou...@gmail.com> wrote:
>
> > Brett,
>
> > thanks for your effort. I appreciate it.
>
> > regards,
> > ravinder chouhan
>
> > On Nov 29, 11:04 am, Brett Morgan <brettmor...@google.com> wrote:
>
> > > I should figure out how that library works.
>
> > > I guess that's tonight taken care of.
>
> > > On Mon, Nov 29, 2010 at 4:59 PM, Ravinder <ravinder.chou...@gmail.com>wrote:
>
> > > > yes, thats correct.
>
> > > > regards,
> > > > ravinder chouhan
>
> > > > On Nov 29, 10:56 am, Brett Morgan <brettmor...@google.com> wrote:
> > > > > Ahh, so you are using
>
> > > > >http://code.google.com/p/google-api-java-client/
>
> > > > > <http://code.google.com/p/google-api-java-client/>not
>
> > > > >http://code.google.com/p/gdata-java-client/
>
> > > > > Is this correct?
>
> > > > > brett
>
> > > > > On Mon, Nov 29, 2010 at 4:52 PM, Ravinder Chouhan <
>
> > > > > ravinder.chou...@gmail.com> wrote:
> > > > > > Hi Brett,
>
> > > > > > i am using this library.
>
> > > > > >http://code.google.com/p/gdata-java-client/wiki/MigratingToGoogleApiJ.
> > > > ..
>
> > > > > > regards,
> > > > > > ravinder chouhan
>
> > > > > > On Mon, Nov 29, 2010 at 11:21 AM, Ravinder Chouhan
> > > > > > <ravinder.chou...@gmail.com> wrote:
> > > > > > > Hi Brett,
>
> > > > > > > I am using the standard mechanism to parse, which is internal to the
> > > > > > > java-client-api. I just prepare the classes with proper (Key)
> > > > > > > information.
>
> > > > > > > Like.
>
> > > > > > > ////////////////////////
>
> > > > > > >  static Feed executeGet(HttpTransport transport, BloggerUrl url,
> > > > > > >      Class<? extends Feed> feedClass) throws IOException {
> > > > > > >    url.fields = GData.getFieldsFor(feedClass);
> > > > > > >    HttpRequest request = transport.buildGetRequest();
> > > > > > >    request.url = url;
> > > > > > >    return request.execute().parseAs(feedClass);
> > > > > > >  }
>
> > > > > > > ///////////////////
>
> > > > > > > Above is the sample GET request i make to retrieve all the post.
> > > > > > > Parsing is internal.  I am just not sure how to give it a Content
> > > > > > > class. with proper keys so that is parses both "type" and  actual
> > > > > > > content text for tag <content>.
>
> > > > > > > regards,
> > > > > > > ravinder chouhan
>
> > > > > > > On Mon, Nov 29, 2010 at 11:00 AM, Brett Morgan <
> > > > brettmor...@google.com>
> > > > > > wrote:
> > > > > > >> Ravinder,
> > > > > > >> I can see what you are doing, what I am trying to understand is why.
> > > > > > >> Our gdata-java-client has APIs for getting the posts and comments
> > > > > > without
> > > > > > >> having to worry about the underlying atom feed, as demonstrated in
> > > > the
> > > > > > >> example BloggerClient sample application.
>
> > > > > >http://code.google.com/p/gdata-java-client/source/browse/trunk/java/s.
> > > > ..
> > > > > > >> Can you please explain why you need to parse the XML directly?
> > > > > > >> brett
>
> > > > > > >> On Mon, Nov 29, 2010 at 3:43 PM, Ravinder Chouhan
> > > > > > >> <ravinder.chou...@gmail.com> wrote:
>
> > > > > > >>> Hi Brett,
>
> > > > > > >>> i dont think the problem is specific to android. I would like to
> > > > > > >>> illustrate in detail.
>
> > > > > > >>> Say My <Entry> atom feed looks like the following.
>
> > > > > > >>> //////////////////////////
>
> > > > > > >>> <entry>
>
> > > > > > >>>  <id>tag:blogger.com
> > > > > > ,1999:blog-3814729847066959676.post-1760873893709316893
> > > > > > >>>                </id>
> > > > > > >>>                <published>2010-11-23T22:17:06.607-08:00</published>
> > > > > > >>>                <updated>2010-11-23T22:17:06.607-08:00</updated>
> > > > > > >>>                <title type='text'>this is test comment</title>
> > > > > > >>>                <content type='html'>this is test comment</content>
> > > > > > >>>                <link rel='edit' type='application/atom+xml'
>
> > > > > > >>>  href='
> > > > > >http://www.blogger.com/feeds/3814729847066959676/3796980236739359453/.
> > > > ..
> > > > > > '
> > > > > > >>> />
> > > > > > >>>                <link rel='self' type='application/atom+xml'
>
> > > > > > >>>  href='
> > > > > >http://www.blogger.com/feeds/3814729847066959676/3796980236739359453/.
> > > > ..
> > > > > > '
> > > > > > >>> />
> > > > > > >>>                <link rel='alternate' type='text/html'
>
> > > > > > >>>  href='
> > > > > >http://testblogsforandroid.blogspot.com/2010/11/test-with-image.html?.
> > > > ..
> > > > > > '
> > > > > > >>>                        title='' />
> > > > > > >>>                <author>
> > > > > > >>>                        <name>ravinder</name>
>
> > > > > > >>>  <uri>http://www.blogger.com/profile/13923851672985758751</uri>
> > > > > > >>>                        <email>nore...@blogger.com</email>
> > > > > > >>>                        <gd:extendedProperty
> > > > > > >>> xmlns:gd='http://schemas.google.com/g/2005'
> > > > > > >>>                                name='OpenSocialUserId'
> > > > > > >>> value='13656165085543261495' />
> > > > > > >>>                </author>
> > > > > > >>>                <thr:in-reply-to
> > > > > > >>> xmlns:thr='http://purl.org/syndication/thread/1.0'
>
> > > > > > >>>  href='
> > > > > >http://testblogsforandroid.blogspot.com/2010/11/test-with-image.html'
>
> > > > > > >>>  ref='tag:blogger.com
> > > > > > ,1999:blog-3814729847066959676.post-3796980236739359453'
>
> > > > > > >>>  source='
> > > > > >http://www.blogger.com/feeds/3814729847066959676/posts/default/379698.
> > > > ..
> > > > > > '
> > > > > > >>>                        type='text/html' />
> > > > > > >>> </entry>
>
> > > > > > >>> ////////////////////
>
> > > > > > >>> here as you can see the <content> tag has a type attribute with
> > > > value
> > > > > > >>> "html"  and "this is test comment"  as the value of the content
> > > > within
> > > > > > >>> the entry tag.
>
> > > > > > >>> I just want to be able to parse the "type" attribute and "this is
> > > > test
> > > > > > >>> comment"  as value. I am parsing the type in a String with Key
> > > > > > >>> ("@type").
>
> > > > > > >>> There are privacy issues with posting the source code ,as i need
> > > > > > >>> permission from the company which could take some time.
>
> > > > > > >>> regards,
> > > > > > >>> ravinder chouhan
>
> > > > > > >>> On Mon, Nov 29, 2010 at 8:55 AM, Brett Morgan <
> > > > brettmor...@google.com>
> > > > > > >>> wrote:
> > > > > > >>> > hey ravinder,
> > > > > > >>> > I haven't spent any time on android yet, so can you help me out
> > > > by
> > > > > > >>> > supplying
> > > > > > >>> > a complete project that I can bootstrap from?
> > > > > > >>> > brett
>
> > > > > > >>> > On Mon, Nov 29, 2010 at 2:15 PM, Ravinder <
> > > > > > ravinder.chou...@gmail.com>
> > > > > > >>> > wrote:
>
> > > > > > >>> >> Brett,
>
> > > > > > >>> >> i am using this library.
>
> > > > > > >>> >>http://code.google.com/p/gdata-java-client/downloads/list
>
> > > > > > >>> >> on android.
>
> > > > > > >>> >> regards,
> > > > > > >>> >> ravinder chouhan
>
> > > > > > >>> >> On Nov 29, 12:51 am, Brett Morgan <brettmor...@google.com>
> > > > wrote:
> > > > > > >>> >> > Ravinder,
>
> > > > > > >>> >> > Which client library are you using, if any?
>
> > > > > > >>> >> > On Sun, Nov 28, 2010 at 10:45 PM, Ravinder
> > > > > > >>> >> > <ravinder.chou...@gmail.com>wrote:
>
> > > > > > >>> >> > > My content class looks like this.
>
> > > > > > >>> >> > > public class Content {
> > > > > > >>> >> > > @Key("@type")
> > > > > > >>> >> > > public String type;
> > > > > > >>> >> > > // get the src value here.
> > > > > > >>> >> > > @Key("@src")
> > > > > > >>> >> > > public String src;
> > > > > > >>> >> > > // I WANT THE CONTENT VALUE HERE NOT SURE HOW TO GET IT ?
> > > > > > >>> >> > > public String contentvalue;
> > > > > > >>> >> > > }
>
> > > > > > >>> >> > > After making a GET request i would like to parse it like.
>
> > > > > > >>> >> > > // works.
> > > > > > >>> >> > > String lBlogId = EntryValues.id;
>
> > > > > > >>> >> > > // works
> > > > > > >>> >> > > String ltitleString =EntryValues.title;
>
> > > > > > >>> >> > > // @todo THIS IS NOT CLEAR.
> > > > > > >>> >> > > String content = EntryValues.content.contentvalue;
>
> > > > > > >>> >> > > // works
> > > > > > >>> >> > > String lAuthorName = EntryValues.author.name;
>
> > > > > > >>> >> > > //works.
> > > > > > >>> >> > > String type=EntryValues.content.type;
>
> > > > > > >>> >> > > Entry class looks like this.
>
> > > > > > >>> >> > > public class BloggerEntry extends Entry {
>
> > > > > > >>> >> > >          @Key("published")
> > > > > > >>> >> > >          public String published;
>
> > > > > > >>> >> > >          @Key("summary")
> > > > > > >>> >> > >          public String summary;
>
> > > > > > >>> >> > >          @Key("id")
> > > > > > >>> >> > >          public String id;
>
> > > > > > >>> >> > >          // this will store the content description here.
> > > > > > >>> >> > >          // this needs to be checked out. using it as only
> > > > > > strings
> > > > > > >>> >> > > works.
> > > > > > >>> >> > >          @Key("content")
> > > > > > >>> >> > >          public Content content;
>
> > > > > > >>> >> > >          @Key("updated")
> > > > > > >>> >> > >          public String updated;
> > > > > > >>> >> > > }
>
> > > > > > >>> >> > > public class Entry implements Cloneable {
>
> > > > > > >>> >> > >  @Key("@gd:etag")
> > > > > > >>> >> > >  public String etag;
>
> > > > > > >>> >> > >  @Key("link")
> > > > > > >>> >> > >  public List<Link> links;
>
> > > > > > >>> >> > >  @Key("title")
> > > > > > >>> >> > >  public String title;
>
> > > > > > >>> >> > >  @Key("author")
>
> ...
>
> read more »

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.