Tags : Browse Projects

Select a tag to browse associated projects and drill deeper into the tag cloud.

basecampjs

Compare

  Analyzed about 14 hours ago

This is a JavaScript wrapper for the Basecamp API. It covers everything in the API except file attachments for comments and messages. For the API to work it has to be used in an environment like AIR where cross-domain XMLHttpRequest calls are allowed. Here is an example of getting back an Array of ... [More] projects from Basecamp. var basecamp = new Basecamp("your.basecamp.url", "user_name", "password"); basecamp.projects({ success: function( projects_xml ) { var projects = Basecamp.Project.from_xml( projects_xml ); alert( projects.length ); } };Here is an example of how to create a new message assuming you've already used the API to retrieve the desired project_id, message_category_id and person_id. var message = new Basecamp.Message({ title: "Testing from API", body: "This is a test from the JavaScript API wrapper.", category_id: message_category_id }); basecamp.post_message( project_id, message, [person_id], { success: function( message_xml ) { var message = Basecamp.Message.from_xml( message_xml )[0]; alert( message.id ); } });Why?I finally found some time to explore Adobe AIR and thought ... "Hey, why don't I write an AIR app for Basecamp." The first step was to write this API wrapper/adapter so that I could easily communicate with Basecamp. RoadmapIf I continue to find time (and have a Basecamp account to play with) this API will surely evolve as I begin to use the different parts while building the AIR app. Beware that as it stands right now this API wrapper is mostly untested. I'm particularly anxious to add the file uploading for messages and comments. DocumentationFirst place to look is the actual Basecamp API documentation (http://developer.37signals.com/basecamp/index.shtml). Currently this API follows their Ruby wrapper (http://developer.37signals.com/basecamp/basecamp.rb) very closely. Other than that ... its all code for now. :) [Less]

1.14K lines of code

0 current contributors

almost 13 years since last commit

1 users on Open Hub

Inactive
0.0
 
I Use This

basecampcal

Compare

  Analyzed about 2 hours ago

This is Google App Engine web application. It displays calendar that visualize time reports of Basecamp account owner. Information about active web sites available here.

1.83K lines of code

0 current contributors

over 7 years since last commit

1 users on Open Hub

Inactive
0.0
 
I Use This

BB Classic

Compare

  Analyzed about 14 hours ago

Basecamp Classic on Backbone, Twitter Bootstrap, GAE

96.7K lines of code

0 current contributors

almost 6 years since last commit

1 users on Open Hub

Inactive
5.0
 
I Use This