Code.blogger.com is a subdomain of blogger.com, which was created on 1999-06-22,making it 25 years ago. It has several subdomains, such as draft.blogger.com accounts.blogger.com , among others.
Description:The latest updates on Blogger developer...
Discover code.blogger.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site
HomePage size: 129.541 KB |
Page Load Time: 0.202893 Seconds |
Website IP Address: 172.217.7.9 |
Blogger Local Chicago | Top Local Contractors, Companies & Products chicago.bloggerlocal.com |
The Snowplow Blogger info.bossplow.com |
OviPro for Developers - OviPro Developers developer.ovipro.fi |
Foodgressing - Vancouver BC Canada - Vancouver Foodie, Content Creator, Influencer, Blogger vancouver.foodgressing.com |
Developers @ LoanTek - com.LoanTek.Developers developers.loantek.com |
NeuroChain Developers – NeuroChain Developers developers.neurochaintech.io |
Welcome, developers! - TrackVia Developers developer.trackvia.com |
NVIDIA Developer Blog | Technical content: For developers, by developers devblogs.nvidia.com |
ASI Developers - ASI Developers developers.asicentral.com |
Developers - MIUIFlash - Developers Assemble dev.miuiflash.com |
Premium Blogger Templates 2023 – Quality Blogger Templates buy.bloggertheme9.com |
Prosper for Developers |Prosper for Developers developers.prosper.com |
Space India Builders and Developers - Mumbai Real Estate BuilderSpace India Builders and Developers spaceindia.propertywala.com |
Strict-Transport-Security: max-age=86400; includeSubDomains |
Content-Type: text/html; charset=UTF-8 |
Expires: Mon, 21 Dec 2020 08:34:07 GMT |
Date: Mon, 21 Dec 2020 08:34:07 GMT |
Cache-Control: private, max-age=0 |
Last-Modified: Fri, 29 May 2020 04:58:14 GMT |
ETag: W/"453202df9476d37aedf766bd913d569006b54190ab75bbb8104593740b92e8a4" |
Content-Encoding: gzip |
X-Content-Type-Options: nosniff |
X-XSS-Protection: 1; mode=block |
Server: GSE |
Alt-Svc: h3-29=":443"; ma=2592000,h3-T051=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43" |
Transfer-Encoding: chunked |
content="width=device-width, height=device-height, minimum-scale=1.0, initial-scale=1.0, user-scalable=0" name="viewport"/ |
content="IE=Edge" http-equiv="X-UA-Compatible"/ |
content="Blogger Developers" property="og:title"/ |
content="en_US" property="og:locale"/ |
content="https://blogger-developers.googleblog.com/" property="og:url"/ |
content="Blogger Developers" property="og:site_name"/ |
content="summary" name="twitter:card"/ |
content="@adwords" name="twitter:creator"/ |
content="text/html; charset=utf-8" http-equiv="Content-Type"/ |
content="blogger" name="generator"/ |
Ip Country: United States |
Latitude: 37.751 |
Longitude: -97.822 |
Developers The latest updates on Blogger developer tools Improvements to the Blogger template HTML editor Tuesday, April 09, 2013 Posted by: +Samantha Schaffer and +Renee Kwang , Software Engineer Interns. Whether you’re a web developer who builds blog templates for a living, or a web-savvy blog owner who prefers to make changes to your template using HTML, CSS or JavaScript, you may be interested in some enhancements that we made to Blogger’s Template HTML Editor . Your blog’s HTML template is the source code that controls the appearance of your blog. This template can be customized to appear however you’d like. The improved HTML template editor now supports line numbering, syntax highlighting, auto-indentation and code folding to make editing your template much easier. Suppose we wanted to move the date of a blog post underneath the post title, similar to the Blogger Buzz blog . To do this, follow these steps: Click the Template” tab on the Blogger dashboard, then the Edit HTML” button, to see the new template HTML editor: Locate the Blog1” widget quickly using the new Jump to widget” drop down: This widget controls how your blog posts are displayed. The code inside the widget is folded by default. Clicking the new fold markers ‘►’ next to the line numbers expands the widget and reveals a set of includable” tags: Inside the main” includable is the block of code that renders the post date: Cut the post date code section and move it to where we want it, in this case, under the post title in the post” includable: To check our changes, click the new Preview template” button to see the updates: The post date is exactly where we want it, so tab back to Edit template”, hit Save template” and we’re done! Finally, we’ve added a Format template” button that automatically cleans up the indentation of the template, and made it possible to search for text by pressing Ctrl+F” once you’ve clicked into the editor. To find and replace text occurrences one by one, use Ctrl+Shift+F” or to find and replace all occurrences at once, use Ctrl+Shift+R”. We worked on this project as part of Google Australia’s BOLD Diversity Internship Program . We hope you enjoy the changes we’ve made! Blogger API v3 Tuesday, June 19, 2012 One of the most requested features that developers have for the Blogger JSON API is the ability to create posts. So have a quick guess what the following HTTP request does? POST https://www.googleapis.com/blogger/v3/blogs/8070105920543249955/posts/ HTTP/1.0 Host: www.googleapis.com Authorization: Bearer OAuth2 key Content-Type: application/json { "kind": "blogger#post", "blog": { "id": "8070105920543249955" }, "title": "A new post", "content": "With bexciting/b content..." } That’s right, Blogger API v3 gives you the ability to create posts ! Oh, and edit , delete and search them as well! There is documentation that covers all this new functionality. Firstly we have a Getting Started document that gives you an overview of using the API. Then there is a more detailed Using Blogger API guide that shows how you would use the API. Finally the API Reference that covers the fine details, like argument and result specifications for all the calls. If you have any questions about how to use this new API, please join in the discussion on the Blogger Developer group . Blogger Documentation has moved to developers.google.com Friday, March 23, 2012 Blogger documentation has a new home: it has moved to developers.google.com/blogger ! I have re-arranged the documentation a little to make it easier to navigate, but it is largely the same documentation you will remember from code.google.com/apis/blogger . If you find anything is out of place or hard to find, please let us know on the Blogger Developer forum . Customising Threaded Comments Saturday, January 21, 2012 Recently we released an update to Blogger’s commenting system that enables people to directly respond to comments. This capability is known as Threaded Comments . We are pleased to see quite a few people diving in and writing tutorials, including a screencast . It’s wonderful to see the enthusiasm of our developers! In this post we will look at what are the changes required to modify a custom template to enable Threaded Comments, once you have fulfilled the requirements outlined in the Threaded Comments announcement post on Buzz.blogger.com. We will then look at how to customise the look and feel of the Threaded Comments using just CSS, and also have a quick peek at alternatives. Please note, these instructions may not work if your blog’s template is heavily customised. Your template may possibly missing some of the b:includable s that the instructions below depend on. Please try the following instructions on your template, but if they don’t work come to our Blogger Developer forum and get some help with patching your template. The first step is to Edit the HTML for your Template, which can be found inside Settings under the Template tab. You must make sure to expand the Widget Templates, as we need to modify the main Blog Widget Template. To find the main Blog Widget code, search for the following Blogger Layouts Template code: b:widget id=’Blog1’ locked=’true’ title=’Blog Posts’ type=’Blog’ Inside the b:widget are a series of b:includable blocks. These act a lot like functions in programming languages, in that they can be called from other b:includable blocks to insert chunks of HTML. The only special block is the includable called main , which is where the Layout Template engine starts when rendering the Widget’s content. If you don’t see content inside the b:widget , you need to click the Expand Widget Templates radio button above the edit area. The Layout Template should include the following code: b:if cond=’data:post.showThreadedComments’ b:include data=’post’ name=’threaded_comments’/ b:else/ b:include data=’post’ name=’comments’/ /b:if The interesting part is that we have a fork here, implemented as a b:if conditional block, that decides whether to render the comments as threaded or not. The need for this split can be seen on the Threaded Comments announcement on Buzz.blogger.com . As a quick aside, if you don’t have this code, but instead just have something like the following: b:include data=’post’ name=’comments’/ Then you can get threaded comments by replacing this b:include with the above logic block, assuming you fulfill the requirements laid out in the Threaded Comments announcement post on Buzz.blogger.com . Now you can look at the implementation of the threaded_comments includable by searching for the following line of code: b:includable id=’threaded_comments’ var=’post’ This code is responsible for rendering the actual threaded comments to screen. You can choose to override this code block to customise the look of your comments, but it is worth noting that if you do, you won’t get updates to this functionality as we change the implementation in the future. There are two new data members we have introduced with this feature release that you can use to render comment threads: data:post.commentSrc This is the source to the javascript library that handles actions data:post.commentHtml This is the rendered HTML for the comment thread If you want to change the look and feel of your comments, we strongly recommend you use the Template Designer to set custom CSS to style the Threaded Comments. We suggest you customise the comments by modifying the property "AdvancedAdd CSS". For example, you can add the following CSS code to change the look: .comments blockquote { border: 1px solid black; color: white; font: Helvetica; } // draws a border around comment bodies, sets the text font and colour .comments .inline-thread li { list-style-type: decimal; } // numbers replies Finally, you can implement your own version of Threaded Comments by walking the data:post.comments directly. This will...
Domain Name: BLOGGER.COM Registry Domain ID: 7417198_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.markmonitor.com Registrar URL: http://www.markmonitor.com Updated Date: 2023-05-21T09:59:15Z Creation Date: 1999-06-22T17:44:40Z Registry Expiry Date: 2024-06-22T17:43:51Z Registrar: MarkMonitor Inc. Registrar IANA ID: 292 Registrar Abuse Contact Email: abusecomplaints@markmonitor.com Registrar Abuse Contact Phone: +1.2086851750 Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited Domain Status: serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited Domain Status: serverTransferProhibited https://icann.org/epp#serverTransferProhibited Domain Status: serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited Name Server: NS1.GOOGLE.COM Name Server: NS2.GOOGLE.COM Name Server: NS3.GOOGLE.COM Name Server: NS4.GOOGLE.COM DNSSEC: unsigned >>> Last update of whois database: 2024-05-17T19:48:32Z <<<