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?...
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.
...
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...
...
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...
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?
...
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...
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...
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?
...
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?
...
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...
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.
...
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
...
Are there any alternatives to 280Atlas (280atlas.com) (free/commercial)?
Which of those are mature?
...
Is learning objective-J worth considering the limited amount of Objective-J tutorials. Also what would be a good place to start
...
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.
...
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 ;)
...
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...
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!
...
What would the best practice be to redirect someone to another page in Objective-J (Cappuccino)?
...
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...