tumblr

Trying to develop a Facebook/Tumblr style news feed CMS in asp.net

I like the simplicity of the facebook status/notes/news feed CMS. Obviously short posts and long notes are not hard but I'm running into difficulty trying to come up with a way to mimic their "Attach a Link" feature. Does anyone know of a way (or a library) to use asp.net to take/build/create a screen capture of a remote site? I've tr...

What template language does Tumblr use?

Tumblr uses a very simple template language for it's themes: {block:Text} <li class="post text"> {block:Title} <h3><a href="{Permalink}">{Title}</a></h3> {/block:Title} {Body} </li> {/block:Text} Start.io also uses the same format: <html> <head> <title>{Name} @ start.io</title> </h...

jQuery - parsing JSON data - Having trouble with variable name

My first delve into working with JSON data. I have a bit of experience using jQuery though. I'm posting to this URL (tumblr api): jyoseph.com/api/read/json What I'm trying to do is output the json that gets returned. What I have so far: $(document).ready(function(){ $.getJSON("http://jyoseph.com/api/read/json?callback=?", functio...

Tumblr theme... trying to find the type (text, picture, etc) of the first post.

So I want various aspects of my theme to change depending on the most recent post. Any idea how I could do it? I would prefer it to be by using on of the tumblr custom {html tag} things, rather than javascript or whatever. Don't know if that's even allowed on tumblr either. Theme Documents are here: http://www.tumblr.com/docs/custom_th...

Integrating tumblr blog with website

Hi, I would like to integrate my tumblr feed in to my website. It seems that tumblr has an API for this, but I'm not quite sure how to use it. From what I understand, I request the page, and tumblr returns an xml file with the contents of my blog. But how do I then make this xml into meaningful html? Must I parse it with php, turning the...

Running in to some issues with Tumblr's Theme Parser

Below part of a tumblr theme I'm working on and you will notice that I use the {block:PostType} syntax to declare the opening tag of each post, which is a <li> element in an Ordered List. This allows me to not only dynamicly set the li's class based on the type of post but cuts down on the number of times I'm calling the ShareThis JS whi...

Static text within text field?

How can i keep static text within a <input type="text" name="site"> text field, just like the tumblr account ***.tumblr.com here > http://www.tumblr.com/ ...

CSS/JS hosting with Tumblr

I'm setting up a custom themed Tumblr site for someone that doesn't want annual hosting fees. Are there any free places out there to host under 10mb of css/js/jpeg files? (Tried Google docs but they don't allow css/js.) If not, what are some cheaper options? Grazie. ...

tumblr as a backend-solution for a flex/actionscript app?

I love tumblr because it is so easy to use and you can generate xml's of all or parts of the content. Does anybody have experience in using tumblr or similar platforms as a backend for flex/actionscript projects ? Advantages/Disantvantages? Are there some minimalistic examples out there ? Thanks a lot ...

Random border colours

I'm in the middle of theming a tumblr site, and each image posted is contained within a ".photobox" class. Is there a piece of javascript or jQuery i can use to change the "border-color" attribute of ".photobox" in the CSS to a random color - preferably chosen from a list of pre-defined colours? I've found one or two scripts on here but ...

Endless Scrolling in Tumblr Tumblelogs?

I want to put endless scrolling (either the load more posts button or the scrolled to the bottom of the page type) onto my tumblelog. There's a theme that does this but I don't know how it does it. Any help is appreciated. ...

Embed Vimeo video in Tumblr (via feed)

Tumblr allows you to import up to 5 feeds. I would like to use this functionality to import my liked videos on Vimeo onto Tumblr. Right now if I take a sample likes feed from Vimeo, what I end up right now is a bunch of posts with static images. Example feed url http://vimeo.com/user1535794/likes/rss What I would like is to be able to...

Sending a POST request from Cocoa to Tumblr

This code snippet isn't working, I'm getting an "Authentication Failed." response from the server. Any ideas? NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: [NSURL URLWithString:@"http://www.tumblr.com/api/write"]]; [request setHTT...

How to get flash player to display under content on a PC?

Long story short, I'm developing a theme template for a blog that enables you to view the posts in blocks. The main part of the post is displayed at first, then the secondary content is displayed over that when you hover over the post block. Everything works fine on a Mac Versions of all major browsers, but start browsing on a PC, and a...

jQuery for Tumblr?

Hello I'm developing my first Tumblr-theme. Is it possible to just include jQuery from Google Code and then use it? Also, is there any good jQuery-script for showing latest tweet in Twitter? I've read Tumblrs own javascript-method, but if jQuery works, I'm gonna use that of course. Martti Laine ...

Detect, if reading a single post or browsing through the list in Tumblr-theme?

Hello Is it possible to have a bit different stuff on a single post. I'm having descriptions in post-listing, so I need to add some css to them, but not when user is reading the current post. Martti Laine ...

403 Error when Authenticating using tumblr gem for rails application

I have a ruby-on-rails application that wishes to utilise the tumblr gem for adding posts when an action is taken (eg: creating a blog post) I currently have the tumblr gem installed and can manage to fetch my posts using @tumblruser = Tumblr::User.new('myemail','mypassword') However when i go to add a post where it asks me to pass t...

Is there an easy way to generate RSS/Twitter/Facebook/Digg/Delicious/Reddit links/images for tumblr?

I'm looking to generate a bunch of links to add to my tumblr site Planning for Failure for people to share articles on Twitter, Facebook, Digg, Reddit, etc. I know there are wordpress plugins that do this for you. I've currently added Facebook and Twitter by hand, but I'm guessing there's an easier way to do this. Any ideas? Thanks. ...

How to make flash video show up under navigation element?

I know that the wmode needs to be either transparent or opaque for the video to show up under other elements on the page. I've added the wmode to the element and param in object, I still have no luck with it. <object width="400" height="225"><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><param na...

CakePHP, CodeIgniter or Rails for multi-user Tumblr clone?

I'm about to start building a tumblr clone that handles multiple users (so premade clones like Gelato won't cut it) and I'm not sure which framework I'd like to build this is. Right now, I'm only intending to build a prototype. Something I can get a dozen friends on to test the concept and grow to maybe a couple hundred users to prove ...