objective-j

Anyone know of Objective-J syntax highlighting in vi?

I have been looking at the new Objective-J / Cappuccino javascript framework from 280North. They provide plug-ins for SubEthaEdit and TextMate to handle syntax highlighting, but I primarily use vi. Does anyone know of a way to get Objective-J syntax highlighting in vi, or a good way to convert whatever format the other two editors use?...

Are there any jEdit syntax highlighting modes for Objective-J

I have found some in the Cappuccino website (vim, textmate and SubEthaEdit), but not for jEdit, and unfortunately I'm just starting on Objective-J so can't make my own. If anyone has got one of them lying around it would be greatly appreciated. ...

I would like to develop an application with SproutCore. Other than the official documentation, is there anywhere else I can learn more?

The official documentation seems to be light on explanations of 'how to understand the sproutcore way' eg, why things are done the way they are, how to intuit what to do from where you're at... ...

Clear and Redraw with Cappuccino (Objective-J)

basically I have this @implementation MyView : CPView { CPArray MyPanelArray; } // Populate the MyPanelArray and position each panel - (void)initMyView { ... } MyPanels are pretty much wrappers for images. When everything is initialized it draws just fine. Then I have a slider to manipulate the position of the images and the o...

Does Objective-J support protocols like Objective-C?

I can't seem to find any documentation on the Objective-J language itself. Does it support @protocol like Objective-C? Is there a language spec somewhere I'm missing? ...

How many work hours for 280Slides?

Here's an interesting question for J-Objective coders out there. How many work hours would it take for you to code the clone of 280Slides.com with Sproutcore. Also estimates with Cappuccino are ok because they are pretty same kind of frameworks, at least to my eye. Not that I'm planning to do it but 280Slides has all the basic functions...

Managing inverse relationships without CoreData

This is a question for Objective-J/Cappuccino, but I added the cocoa tag since the frameworks are so similar. One of the downsides of Cappuccino is that CoreData hasn't been ported over yet, so you have to make all your model objects manually. In CoreData, your inverse relationships get managed automatically for you... if you add an ob...

What are some large, model-rich open source applications?

I need to identify a large model-rich open source ruby, c-sharp, objective-j or java applications so that I can target them for a series of projects. Are you guys aware of any that I could use? ...

Are there any other frameworks (besides Cappucino) for building a desktop-like app in browser?

I would like to build an app which would be very similar to http://gomockingbird.com (will draw the mockups). Are there any other frameworks, besides Cappucino, for that? I dislike Objective-J syntax and built-in Cappucino pseudo-mac interfaces. Any suggestions? ...

Is Objective-J essentially JavaScript?

I've been stumbling upon Objective-J. It should be a superset of JavaScript ... but how's that possible without a browser plugin or some addon? How can they drive around the syntax of JavaScript and make it look like Objective-C code? I mean... COOL... but I don't get it ;) Must I compile that Objective-J code before it goes to the brows...

How well is Objective-J documented? Is the documentation good enough to start using it seriously?

I consider going with Objective-J, instead writing plain JavaScript. But I wonder if the documentation of the language and the frameworks is good enough, since it seems like a very young development. ...

What is a Cib? (objective-j related? I'm not sure)

I was looking at some Cappuccino code (trying learn a little bit of it) and saw something called a Cib. http://github.com/Calvin4/simple-cappuccino-sinatra-app/blob/master/public/AppController.j Look at line 27. Any help? Thanks ...

Atlas280 IDE alternatives

Are there any alternatives to 280Atlas (280atlas.com) (free/commercial)? Which of those are mature? ...

Objective-J Tutorial

Is learning objective-J worth considering the limited amount of Objective-J tutorials. Also what would be a good place to start ...

Good book for learning language-design/implementation?

Hi, I would like to start contributing to Cappuccino -- mainly though, Objective-J. I have a good understanding of JavaScript, but not of language design/implementation. Is there a good book that covers this topic(s)? Thanks. ...

[Cappuccino/Objective-J] CPView tiled background?

Is there a way to tile an image in objective-j on a CPView? something along the lines of: [CPImage alloc] initWithPatternImage:@"Resources/grid.png" size:CGSizeMake(5.0, 5.0)] Thanks guys ;) ...

Problem creating gui from xml -> Strange CPButton behaviour

Hallo, I'm new to objective-j and cappuccino and just have tried to create a small application, that creates the gui dynamically from a xml file. Unfortunately it works only partially. It seems that the button regions are disorder. This means, that the buttons also response if I click besides the button.... Please help me. I dont ge...

Snap to Grid UI in Cappuccino

Does anyone know how to do snap-to-grid in Cappuccino? Basically, I have draggable objects which I can drag into a target area. The target view needs to be set up with snap-to-grid feature. I've seen it with Mockingbird, so it's definitely possible. Any info is appreciated. Thanks! ...

Cappuccino Redirect

What would the best practice be to redirect someone to another page in Objective-J (Cappuccino)? ...

sproutcore or cappucino for web app development?

I recently found out about the sproutcore and capuccino frameworks for web app development as proper MVC approach to creating Desktop-like applications. As far as I could understand, the main difference between the two frameworks is that Cappucino abstracts away the HTML+CSS+Javascript to Objective-J - a new programming language develo...