<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/objectivej</id>
  <title type="text">Cappuccino &amp; Objective-J Google Group</title>
  <subtitle type="text">
  Mailing list for the Cappuccino javascript web framework and the Objective-J programming language.
  </subtitle>
  <link href="/group/objectivej/feed/atom_v1_0_msgs.xml" rel="self" title="Cappuccino &amp; Objective-J feed"/>
  <updated>2010-01-06T04:54:01Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Justin</name>
  <email>justin.frei...@gmail.com</email>
  </author>
  <updated>2010-01-06T04:54:01Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/32499f187340c484/fbb381957e77f325?show_docid=fbb381957e77f325</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/32499f187340c484/fbb381957e77f325?show_docid=fbb381957e77f325"/>
  <title type="text">Re: more efficient way to update CPCollectionView content?</title>
  <summary type="html" xml:space="preserve">
  cheers Randy, that works well. I apologise for not digging into &lt;br&gt; CPCollectionView myself! &lt;br&gt; cheers, &lt;br&gt; Justin
  </summary>
  </entry>
  <entry>
  <author>
  <name>Randy Luecke</name>
  <email>rclconce...@gmail.com</email>
  </author>
  <updated>2010-01-06T01:59:28Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/32499f187340c484/c240c2b854ee53dd?show_docid=c240c2b854ee53dd</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/32499f187340c484/c240c2b854ee53dd?show_docid=c240c2b854ee53dd"/>
  <title type="text">Re: more efficient way to update CPCollectionView content?</title>
  <summary type="html" xml:space="preserve">
  reloadContent should work
  </summary>
  </entry>
  <entry>
  <author>
  <name>Justin</name>
  <email>justin.frei...@gmail.com</email>
  </author>
  <updated>2010-01-05T21:38:39Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/32499f187340c484/d870205362c691bd?show_docid=d870205362c691bd</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/32499f187340c484/d870205362c691bd?show_docid=d870205362c691bd"/>
  <title type="text">more efficient way to update CPCollectionView content?</title>
  <summary type="html" xml:space="preserve">
  Hi all, &lt;br&gt; Following the flickr demo I&#39;m calling view::setContent and passing it &lt;br&gt; a copy of a CPArray. Is there a more efficient way to do this? &lt;br&gt; cheers, &lt;br&gt; Justin
  </summary>
  </entry>
  <entry>
  <author>
  <name>dms-scott</name>
  <email>scra...@gmail.com</email>
  </author>
  <updated>2010-01-05T19:13:02Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/6620de8fef329fee/a10795cfd542dfd6?show_docid=a10795cfd542dfd6</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/6620de8fef329fee/a10795cfd542dfd6?show_docid=a10795cfd542dfd6"/>
  <title type="text">Re: Back-to-front sequencing of CPViews (or use CALayers)?</title>
  <summary type="html" xml:space="preserve">
  Hi Ross, &lt;br&gt; Thanks for the comments on FloorPlan. &lt;br&gt; I&#39;m interested in the latter option you suggest- capturing the &lt;br&gt; position and restoring it. Would that look something like this? &lt;br&gt; var savedIndex = [[[furnitureView superview] subviews] &lt;br&gt; indexOfObjectIdenticalTo:self] ; &lt;br&gt; ... &lt;br&gt; [[furnitureView superview] _insertSubview:self
  </summary>
  </entry>
  <entry>
  <author>
  <name>Ross Boucher</name>
  <email>rbouc...@gmail.com</email>
  </author>
  <updated>2010-01-05T14:56:41Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/6620de8fef329fee/048448beba853b6c?show_docid=048448beba853b6c</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/6620de8fef329fee/048448beba853b6c?show_docid=048448beba853b6c"/>
  <title type="text">Re: Back-to-front sequencing of CPViews (or use CALayers)?</title>
  <summary type="html" xml:space="preserve">
  Actually, this was a design choice in the FloorPlan demo. It specifically chooses to move the view to the front. &lt;br&gt; See these lines in EditorView.j: &lt;br&gt; [[furnitureView superview] addSubview:self]; &lt;br&gt; [[furnitureView superview] addSubview:furnitureView]; &lt;br&gt; The first is adding the circular rotater dongle. The second is moving the existing furniture element forward. If you wanted to change the way this works, you could insert the editor dongle behind the existing index of the furniture view like this:
  </summary>
  </entry>
  <entry>
  <author>
  <name>Ross Boucher</name>
  <email>rbouc...@gmail.com</email>
  </author>
  <updated>2010-01-05T14:52:37Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/d7cc246e0e2ae2f9/6052170ae01c83aa?show_docid=6052170ae01c83aa</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/d7cc246e0e2ae2f9/6052170ae01c83aa?show_docid=6052170ae01c83aa"/>
  <title type="text">Re: Example app that&#39;s also been implemented in SproutCore and RestfulX</title>
  <summary type="html" xml:space="preserve">
  Of course, the other thing you might consider is building the UI in nib2cib or in Atlas, which would help eliminate the need for a fair amount of code. &lt;br&gt; -Ross
  </summary>
  </entry>
  <entry>
  <author>
  <name>Bruz Marzolf</name>
  <email>bruz.marz...@gmail.com</email>
  </author>
  <updated>2010-01-05T14:50:59Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/d7cc246e0e2ae2f9/412f963f2c04bf10?show_docid=412f963f2c04bf10</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/d7cc246e0e2ae2f9/412f963f2c04bf10?show_docid=412f963f2c04bf10"/>
  <title type="text">Re: Example app that&#39;s also been implemented in SproutCore and RestfulX</title>
  <summary type="html" xml:space="preserve">
  Odd. A fresh checkout of the code on my development laptop works &lt;br&gt; great, but when I try it on my home computer and am getting &lt;br&gt; nondescript HTTP 500 errors on the back end. I&#39;ll have to investigate &lt;br&gt; this a bit further. &lt;br&gt; Thanks for the pointer toward LPKit, that looks like a great set of &lt;br&gt; add-ons for Cappuccino. I was being lazy in my first pass and skipped
  </summary>
  </entry>
  <entry>
  <author>
  <name>dms-scott</name>
  <email>scra...@gmail.com</email>
  </author>
  <updated>2010-01-05T06:55:49Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/6620de8fef329fee/c24dd7b1a81729a1?show_docid=c24dd7b1a81729a1</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/6620de8fef329fee/c24dd7b1a81729a1?show_docid=c24dd7b1a81729a1"/>
  <title type="text">Back-to-front sequencing of CPViews (or use CALayers)?</title>
  <summary type="html" xml:space="preserve">
  Hi all, &lt;br&gt; First post, apologies in advance if I&#39;m miss some delicate point of &lt;br&gt; cap/obj-j forum protocol :) &lt;br&gt; Playing around with the FloorPlan demo raised a curious behavior that &lt;br&gt; I&#39;m trying to defeat. &lt;br&gt; I have noticed that when one of the FurnitureView (: CPView) objects &lt;br&gt; is nominated to be the active EditorView (: CPView) element, it gets
  </summary>
  </entry>
  <entry>
  <author>
  <name>Ross Boucher</name>
  <email>rbouc...@gmail.com</email>
  </author>
  <updated>2010-01-05T14:50:32Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/b79eea1715b0ee7c/04a764ec84bf99ec?show_docid=04a764ec84bf99ec</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/b79eea1715b0ee7c/04a764ec84bf99ec?show_docid=04a764ec84bf99ec"/>
  <title type="text">Re: Possible Typo in CPDragServer</title>
  <summary type="html" xml:space="preserve">
  Thanks, I pushed an update.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Bruno Ronchetti</name>
  <email>bruno.ronche...@mac.com</email>
  </author>
  <updated>2010-01-05T09:32:34Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/b79eea1715b0ee7c/a2def037776d2847?show_docid=a2def037776d2847</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/b79eea1715b0ee7c/a2def037776d2847?show_docid=a2def037776d2847"/>
  <title type="text">Possible Typo in CPDragServer</title>
  <summary type="html" xml:space="preserve">
  Hi everyone, &lt;br&gt; I jave been banging my head for the best part of last week against the &lt;br&gt; drag and drop stuff in the jake branch. It is looking better and &lt;br&gt; better with the introduction of CPDragServer and the new CPTextField - &lt;br&gt; congratulations to everyone involved. &lt;br&gt; I have come across a possible typo in the CPDragServer source.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Calvin</name>
  <email>cstephe...@gmail.com</email>
  </author>
  <updated>2010-01-05T03:33:40Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/336ce9313a93ead9/30d2643ef1546af8?show_docid=30d2643ef1546af8</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/336ce9313a93ead9/30d2643ef1546af8?show_docid=30d2643ef1546af8"/>
  <title type="text">Re: Cappuccino and Ruby question</title>
  <summary type="html" xml:space="preserve">
  Thanks Tom! Have you seen any Cappuccino/Sinatra apps on Github that &lt;br&gt; are available to check out so I could get more of an idea on how to &lt;br&gt; get them to work well together? &lt;br&gt; It seems like you could do something like: &lt;br&gt; get &#39;/:input&#39; do &lt;br&gt; # some code here &lt;br&gt; end &lt;br&gt; in Sinatra and get something good going. &lt;br&gt; - Calvin
  </summary>
  </entry>
  <entry>
  <author>
  <name>samdev</name>
  <email>ksam...@gmail.com</email>
  </author>
  <updated>2010-01-05T02:27:16Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/4fa7657eb2d8a183/e820e42693da486a?show_docid=e820e42693da486a</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/4fa7657eb2d8a183/e820e42693da486a?show_docid=e820e42693da486a"/>
  <title type="text">Re: Documentation for CPTableView</title>
  <summary type="html" xml:space="preserve">
  Great resource. What branch was it generated for? Is it updated on a daily basis?
  </summary>
  </entry>
  <entry>
  <author>
  <name>Dunkie</name>
  <email>blairdun...@sympatico.ca</email>
  </author>
  <updated>2010-01-05T02:24:23Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/4fa7657eb2d8a183/3ad42564e1692d9a?show_docid=3ad42564e1692d9a</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/4fa7657eb2d8a183/3ad42564e1692d9a?show_docid=3ad42564e1692d9a"/>
  <title type="text">Re: Documentation for CPTableView</title>
  <summary type="html" xml:space="preserve">
  better docs here: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://cappdocs.worldofkrauss.com/&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>samdev</name>
  <email>ksam...@gmail.com</email>
  </author>
  <updated>2010-01-05T02:08:37Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/f480ad8177f63f89/ea712886508d5ab4?show_docid=ea712886508d5ab4</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/f480ad8177f63f89/ea712886508d5ab4?show_docid=ea712886508d5ab4"/>
  <title type="text">Re: Resizable CPCollectionViewItem?</title>
  <summary type="html" xml:space="preserve">
  Ok, I reviewed the Flickr demo code once again. Here is what happens: &lt;br&gt; Once slider gets new value some operation is called that resizes CollectionViewItems by setting new Min and Max size. Resize is done manually. &lt;br&gt; In overall, in my application (displaying a simple list inside the window of some text messages) I could track myself any superview resize action (say, with delegate) and adjust size of CollectionView by calling setMinItemSize and setMaxItemSize in exactly the same way it is done in Flickr demo above.
  </summary>
  </entry>
  <entry>
  <author>
  <name>David Hess</name>
  <email>dh...@fishsoftware.com</email>
  </author>
  <updated>2010-01-05T02:08:20Z</updated>
  <id>http://groups.google.com/group/objectivej/browse_frm/thread/8dee6913ac651c74/c9438f3d537408e2?show_docid=c9438f3d537408e2</id>
  <link href="http://groups.google.com/group/objectivej/browse_frm/thread/8dee6913ac651c74/c9438f3d537408e2?show_docid=c9438f3d537408e2"/>
  <title type="text">Re: Creation, Instantiation and Use of Controllers</title>
  <summary type="html" xml:space="preserve">
  A shorter link that shouldn&#39;t break this time: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://tinyurl.com/yhlegqr&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; Dave
  </summary>
  </entry>
</feed>
