public
Fork of Caged/gitnub
Description: A Gitk-like application written in RubyCocoa that looks like it belongs on a Mac. See the wiki for downloads and screenshots.
Homepage: http://alternateidea.com
Clone URL: git://github.com/eventualbuddha/gitnub.git
Search Repo:
Half of Lighthouse ticket support.  Still unstable and broken.
Caged (author)
Sun Apr 27 17:09:58 -0700 2008
commit  90ee3400a61f3339c7978b0d0ecf12bb705329a5
tree    deaed3e58e0e42513524849c072b86a77a7f152e
parent  8230ca3ae817a025a64a2aa2af1bf13cda4391a1
...
12
13
14
 
15
16
17
...
71
72
73
74
 
75
76
77
...
12
13
14
15
16
17
18
...
72
73
74
 
75
76
77
78
0
@@ -12,6 +12,7 @@ require 'osx/cocoa'
0
 require 'lib/mime-types/lib/mime/types'
0
 require 'lib/grit/lib/grit'
0
 require 'lib/time_extensions'
0
+require 'lib/nsxml_extensions'
0
 require 'InfoWindowController'
0
 
0
 OSX.ns_import 'CommitSummaryCell'
0
@@ -71,7 +72,7 @@ class ApplicationController < OSX::NSObject
0
   
0
   ib_action :swap_tab
0
   def swap_tab(segment)
0
- tag = %w(commits network)[segment.cell.tagForSegment(segment.selectedSegment)]
0
+ tag = %w(commits lighthouse network)[segment.cell.tagForSegment(segment.selectedSegment)]
0
     @tab_panel.selectTabViewItemWithIdentifier(tag)
0
   end
0
 end
...
8
9
10
11
12
 
 
13
14
15
...
250
251
252
253
 
254
255
256
...
404
405
406
407
408
409
410
...
431
432
433
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
435
 
436
437
438
439
440
441
 
442
443
444
...
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
 
954
955
956
...
962
963
964
 
 
 
965
966
967
...
1358
1359
1360
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1361
1362
1363
...
1847
1848
1849
 
1850
1851
1852
...
1964
1965
1966
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1967
1968
1969
...
2087
2088
2089
 
 
2090
2091
2092
...
2125
2126
2127
2128
 
2129
2130
 
2131
2132
2133
...
2168
2169
2170
2171
 
2172
2173
2174
...
2198
2199
2200
2201
 
2202
2203
2204
...
2249
2250
2251
 
 
2252
2253
2254
...
2279
2280
2281
2282
 
2283
2284
2285
...
2396
2397
2398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2399
2400
2401
...
8
9
10
 
 
11
12
13
14
15
...
250
251
252
 
253
254
255
256
...
404
405
406
 
407
408
409
...
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
 
497
498
499
500
501
502
 
503
504
505
506
...
983
984
985
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
986
987
988
989
...
995
996
997
998
999
1000
1001
1002
1003
...
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
...
1915
1916
1917
1918
1919
1920
1921
...
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
...
2185
2186
2187
2188
2189
2190
2191
2192
...
2225
2226
2227
 
2228
2229
 
2230
2231
2232
2233
...
2268
2269
2270
 
2271
2272
2273
2274
...
2298
2299
2300
 
2301
2302
2303
2304
...
2349
2350
2351
2352
2353
2354
2355
2356
...
2381
2382
2383
 
2384
2385
2386
2387
...
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
0
@@ -8,8 +8,8 @@
0
     <string key="IBDocument.HIToolboxVersion">352.00</string>
0
     <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
0
       <bool key="EncodedWithXMLCoder">YES</bool>
0
- <integer value="345"/>
0
- <integer value="2"/>
0
+ <integer value="344"/>
0
+ <integer value="508"/>
0
     </object>
0
     <object class="NSArray" key="IBDocument.PluginDependencies">
0
       <bool key="EncodedWithXMLCoder">YES</bool>
0
@@ -250,7 +250,7 @@
0
                 <object class="NSTabViewItem" id="22598373">
0
                   <string key="NSIdentifier">commits</string>
0
                   <object class="NSView" key="NSView" id="339403319">
0
- <reference key="NSNextResponder" ref="1049027428"/>
0
+ <nil key="NSNextResponder"/>
0
                     <int key="NSvFlags">256</int>
0
                     <object class="NSMutableArray" key="NSSubviews">
0
                       <bool key="EncodedWithXMLCoder">YES</bool>
0
@@ -404,7 +404,6 @@
0
                       </object>
0
                     </object>
0
                     <string key="NSFrameSize">{1045, 664}</string>
0
- <reference key="NSSuperview" ref="1049027428"/>
0
                   </object>
0
                   <string key="NSLabel">Commits</string>
0
                   <reference key="NSColor" ref="227031787"/>
0
@@ -431,14 +430,77 @@
0
                   <reference key="NSColor" ref="227031787"/>
0
                   <reference key="NSTabView" ref="1049027428"/>
0
                 </object>
0
+ <object class="NSTabViewItem" id="874674076">
0
+ <string key="NSIdentifier">lighthouse</string>
0
+ <object class="NSView" key="NSView" id="258092279">
0
+ <reference key="NSNextResponder" ref="1049027428"/>
0
+ <int key="NSvFlags">274</int>
0
+ <object class="NSMutableArray" key="NSSubviews">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <object class="WebView" id="572810394">
0
+ <reference key="NSNextResponder" ref="258092279"/>
0
+ <int key="NSvFlags">274</int>
0
+ <object class="NSMutableSet" key="NSDragTypes">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <object class="NSMutableArray" key="set.sortedObjects">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <string>Apple HTML pasteboard type</string>
0
+ <string>Apple PICT pasteboard type</string>
0
+ <string>Apple URL pasteboard type</string>
0
+ <string>Apple Web Archive pasteboard type</string>
0
+ <string>NSColor pasteboard type</string>
0
+ <string>NSFilenamesPboardType</string>
0
+ <string>NSStringPboardType</string>
0
+ <string>NeXT RTFD pasteboard type</string>
0
+ <string>NeXT Rich Text Format v1.0 pasteboard type</string>
0
+ <string>NeXT TIFF v4.0 pasteboard type</string>
0
+ <string>WebURLsWithTitlesPboardType</string>
0
+ <string>public.url</string>
0
+ <string>public.url-name</string>
0
+ </object>
0
+ </object>
0
+ <string key="NSFrameSize">{990, 638}</string>
0
+ <reference key="NSSuperview" ref="258092279"/>
0
+ <reference key="NSNextKeyView"/>
0
+ <string key="FrameName"/>
0
+ <string key="GroupName"/>
0
+ <object class="WebPreferences" key="Preferences" id="972667462">
0
+ <string key="Identifier"/>
0
+ <object class="NSMutableDictionary" key="Values">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <object class="NSMutableArray" key="dict.sortedKeys">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <string>WebKitDefaultFixedFontSize</string>
0
+ <string>WebKitDefaultFontSize</string>
0
+ <string>WebKitMinimumFontSize</string>
0
+ </object>
0
+ <object class="NSMutableArray" key="dict.values">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <integer value="12" id="629867304"/>
0
+ <reference ref="629867304"/>
0
+ <integer value="1" id="9"/>
0
+ </object>
0
+ </object>
0
+ </object>
0
+ <bool key="UseBackForwardList">YES</bool>
0
+ <bool key="AllowsUndo">YES</bool>
0
+ </object>
0
+ </object>
0
+ <string key="NSFrameSize">{1045, 664}</string>
0
+ <reference key="NSSuperview" ref="1049027428"/>
0
+ </object>
0
+ <string key="NSLabel">Lighthouse</string>
0
+ <reference key="NSColor" ref="227031787"/>
0
+ <reference key="NSTabView" ref="1049027428"/>
0
+ </object>
0
               </object>
0
- <reference key="NSSelectedTabViewItem" ref="22598373"/>
0
+ <reference key="NSSelectedTabViewItem" ref="874674076"/>
0
               <reference key="NSFont" ref="98627494"/>
0
               <int key="NSTvFlags">6</int>
0
               <bool key="NSAllowTruncatedLabels">YES</bool>
0
               <object class="NSMutableArray" key="NSSubviews">
0
                 <bool key="EncodedWithXMLCoder">YES</bool>
0
- <reference ref="339403319"/>
0
+ <reference ref="258092279"/>
0
               </object>
0
             </object>
0
             <object class="NSSegmentedControl" id="637722390">
0
@@ -921,36 +983,7 @@
0
             <reference key="NSNextKeyView"/>
0
             <string key="FrameName"/>
0
             <string key="GroupName"/>
0
- <object class="WebPreferences" key="Preferences">
0
- <string key="Identifier"/>
0
- <object class="NSMutableDictionary" key="Values">
0
- <bool key="EncodedWithXMLCoder">YES</bool>
0
- <object class="NSMutableArray" key="dict.sortedKeys">
0
- <bool key="EncodedWithXMLCoder">YES</bool>
0
- <string>WebKitAllowAnimatedImageLoopingPreferenceKey</string>
0
- <string>WebKitAllowAnimatedImagesPreferenceKey</string>
0
- <string>WebKitDefaultFixedFontSize</string>
0
- <string>WebKitDefaultFontSize</string>
0
- <string>WebKitJavaEnabled</string>
0
- <string>WebKitJavaScriptCanOpenWindowsAutomatically</string>
0
- <string>WebKitJavaScriptEnabled</string>
0
- <string>WebKitMinimumFontSize</string>
0
- <string>WebKitPluginsEnabled</string>
0
- </object>
0
- <object class="NSMutableArray" key="dict.values">
0
- <bool key="EncodedWithXMLCoder">YES</bool>
0
- <integer value="0" id="6"/>
0
- <reference ref="6"/>
0
- <integer value="12" id="629867304"/>
0
- <reference ref="629867304"/>
0
- <reference ref="6"/>
0
- <reference ref="6"/>
0
- <reference ref="6"/>
0
- <integer value="1" id="9"/>
0
- <reference ref="6"/>
0
- </object>
0
- </object>
0
- </object>
0
+ <reference key="Preferences" ref="972667462"/>
0
             <bool key="UseBackForwardList">YES</bool>
0
             <bool key="AllowsUndo">YES</bool>
0
           </object>
0
@@ -962,6 +995,9 @@
0
       <object class="NSCustomObject" id="498734212">
0
         <string key="NSClassName">SUUpdater</string>
0
       </object>
0
+ <object class="NSCustomObject" id="222261688">
0
+ <string key="NSClassName">LighthouseController</string>
0
+ </object>
0
     </object>
0
     <object class="IBObjectContainer" key="IBDocument.Objects">
0
       <object class="NSMutableArray" key="connectionRecords">
0
@@ -1358,6 +1394,38 @@
0
           </object>
0
           <int key="connectionID">506</int>
0
         </object>
0
+ <object class="IBConnectionRecord">
0
+ <object class="IBOutletConnection" key="connection">
0
+ <string key="label">frameLoadDelegate</string>
0
+ <reference key="source" ref="572810394"/>
0
+ <reference key="destination" ref="222261688"/>
0
+ </object>
0
+ <int key="connectionID">511</int>
0
+ </object>
0
+ <object class="IBConnectionRecord">
0
+ <object class="IBOutletConnection" key="connection">
0
+ <string key="label">UIDelegate</string>
0
+ <reference key="source" ref="572810394"/>
0
+ <reference key="destination" ref="222261688"/>
0
+ </object>
0
+ <int key="connectionID">512</int>
0
+ </object>
0
+ <object class="IBConnectionRecord">
0
+ <object class="IBOutletConnection" key="connection">
0
+ <string key="label">lighthouse_view</string>
0
+ <reference key="source" ref="222261688"/>
0
+ <reference key="destination" ref="572810394"/>
0
+ </object>
0
+ <int key="connectionID">513</int>
0
+ </object>
0
+ <object class="IBConnectionRecord">
0
+ <object class="IBOutletConnection" key="connection">
0
+ <string key="label">application_controller</string>
0
+ <reference key="source" ref="222261688"/>
0
+ <reference key="destination" ref="620275248"/>
0
+ </object>
0
+ <int key="connectionID">515</int>
0
+ </object>
0
       </object>
0
       <object class="IBMutableOrderedSet" key="objectRecords">
0
         <object class="NSArray" key="orderedObjects">
0
@@ -1847,6 +1915,7 @@
0
               <bool key="EncodedWithXMLCoder">YES</bool>
0
               <reference ref="22598373"/>
0
               <reference ref="210041055"/>
0
+ <reference ref="874674076"/>
0
             </object>
0
             <reference key="parent" ref="831824449"/>
0
           </object>
0
@@ -1964,6 +2033,35 @@
0
             <reference key="object" ref="48941844"/>
0
             <reference key="parent" ref="856932408"/>
0
           </object>
0
+ <object class="IBObjectRecord">
0
+ <int key="objectID">507</int>
0
+ <reference key="object" ref="874674076"/>
0
+ <object class="NSMutableArray" key="children">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <reference ref="258092279"/>
0
+ </object>
0
+ <reference key="parent" ref="1049027428"/>
0
+ </object>
0
+ <object class="IBObjectRecord">
0
+ <int key="objectID">508</int>
0
+ <reference key="object" ref="258092279"/>
0
+ <object class="NSMutableArray" key="children">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <reference ref="572810394"/>
0
+ </object>
0
+ <reference key="parent" ref="874674076"/>
0
+ </object>
0
+ <object class="IBObjectRecord">
0
+ <int key="objectID">509</int>
0
+ <reference key="object" ref="572810394"/>
0
+ <reference key="parent" ref="258092279"/>
0
+ </object>
0
+ <object class="IBObjectRecord">
0
+ <int key="objectID">510</int>
0
+ <reference key="object" ref="222261688"/>
0
+ <reference key="parent" ref="269908025"/>
0
+ <string key="objectName">LighthouseController</string>
0
+ </object>
0
         </object>
0
       </object>
0
       <object class="NSMutableDictionary" key="flattenedProperties">
0
@@ -2087,6 +2185,8 @@
0
           <string>496.IBPluginDependency</string>
0
           <string>497.IBPluginDependency</string>
0
           <string>505.IBPluginDependency</string>
0
+ <string>509.IBPluginDependency</string>
0
+ <string>510.IBPluginDependency</string>
0
           <string>56.IBPluginDependency</string>
0
           <string>56.ImportedFromIB2</string>
0
           <string>57.IBEditorWindowLastContentRect</string>
0
@@ -2125,9 +2225,9 @@
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <reference ref="9"/>
0
- <string>{{90, 125}, {990, 682}}</string>
0
+ <string>{{-57, 112}, {990, 682}}</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
- <string>{{90, 125}, {990, 682}}</string>
0
+ <string>{{-57, 112}, {990, 682}}</string>
0
           <reference ref="9"/>
0
           <reference ref="9"/>
0
           <string>{{146, 174}, {990, 682}}</string>
0
@@ -2168,7 +2268,7 @@
0
           <reference ref="9"/>
0
           <string>{{70, 809}, {142, 20}}</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
- <real value="0.000000e+00" id="310810138"/>
0
+ <integer value="0" id="8"/>
0
           <object class="NSColor">
0
             <int key="NSColorSpace">1</int>
0
             <bytes key="NSRGB">MC44MDAwMDAwMSAwLjgwMDAwMDAxIDAuODAwMDAwMDEAA</bytes>
0
@@ -2198,7 +2298,7 @@
0
           <string>com.apple.WebKitIBPlugin</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <reference ref="9"/>
0
- <reference ref="310810138"/>
0
+ <reference ref="8"/>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <string>{{600, 811}, {194, 23}}</string>
0
@@ -2249,6 +2349,8 @@
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
+ <string>com.apple.WebKitIBPlugin</string>
0
+ <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <reference ref="9"/>
0
           <string>{{488, 641}, {218, 193}}</string>
0
@@ -2279,7 +2381,7 @@
0
         </object>
0
       </object>
0
       <nil key="sourceID"/>
0
- <int key="maxID">506</int>
0
+ <int key="maxID">515</int>
0
     </object>
0
     <object class="IBClassDescriber" key="IBDocument.Classes">
0
       <object class="NSMutableArray" key="referencedPartialClassDescriptions">
0
@@ -2396,6 +2498,27 @@
0
           </object>
0
         </object>
0
         <object class="IBPartialClassDescription">
0
+ <string key="className">LighthouseController</string>
0
+ <string key="superclassName">NSObject</string>
0
+ <object class="NSMutableDictionary" key="outlets">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <object class="NSMutableArray" key="dict.sortedKeys">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <string>application_controller</string>
0
+ <string>lighthouse_view</string>
0
+ </object>
0
+ <object class="NSMutableArray" key="dict.values">
0
+ <bool key="EncodedWithXMLCoder">YES</bool>
0
+ <string>id</string>
0
+ <string>id</string>
0
+ </object>
0
+ </object>
0
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
0
+ <string key="majorKey">IBProjectSource</string>
0
+ <string key="minorKey">LighthouseController.rb</string>
0
+ </object>
0
+ </object>
0
+ <object class="IBPartialClassDescription">
0
           <string key="className">NSButton</string>
0
           <object class="IBClassDescriptionSource" key="sourceIdentifier">
0
             <string key="majorKey">IBUserSource</string>
...
9
10
11
 
 
12
13
14
...
55
56
57
 
 
58
59
60
...
159
160
161
 
 
162
163
164
...
269
270
271
 
 
272
273
274
...
9
10
11
12
13
14
15
16
...
57
58
59
60
61
62
63
64
...
163
164
165
166
167
168
169
170
...
275
276
277
278
279
280
281
282
0
@@ -9,6 +9,8 @@
0
 /* Begin PBXBuildFile section */
0
     0A4023590D949E0E00659E01 /* ImageLoadOperation.rb in Resources */ = {isa = PBXBuildFile; fileRef = 0A4023580D949E0E00659E01 /* ImageLoadOperation.rb */; };
0
     0ABA3B1B0D89E53E004B6667 /* nub in Resources */ = {isa = PBXBuildFile; fileRef = 0ABA3B1A0D89E53E004B6667 /* nub */; };
0
+ 281DD5CB0DC281CD006F106D /* LighthouseController.rb in Resources */ = {isa = PBXBuildFile; fileRef = 281DD5CA0DC281CD006F106D /* LighthouseController.rb */; };
0
+ 281DD5D70DC284DF006F106D /* lighthouse.html in Resources */ = {isa = PBXBuildFile; fileRef = 281DD5D60DC284DF006F106D /* lighthouse.html */; };
0
     283254680D8B792500D99366 /* lib in Resources */ = {isa = PBXBuildFile; fileRef = 283254650D8B792500D99366 /* lib */; };
0
     285BB5320D849C890027980C /* TexturedWindow.rb in Resources */ = {isa = PBXBuildFile; fileRef = 285BB52F0D849C890027980C /* TexturedWindow.rb */; };
0
     285BB53D0D849DD20027980C /* added.png in Resources */ = {isa = PBXBuildFile; fileRef = 285BB5380D849DD20027980C /* added.png */; };
0
@@ -55,6 +57,8 @@
0
     0A4023580D949E0E00659E01 /* ImageLoadOperation.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = ImageLoadOperation.rb; sourceTree = "<group>"; };
0
     0ABA3B1A0D89E53E004B6667 /* nub */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = nub; sourceTree = "<group>"; };
0
     1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
0
+ 281DD5CA0DC281CD006F106D /* LighthouseController.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = LighthouseController.rb; sourceTree = "<group>"; };
0
+ 281DD5D60DC284DF006F106D /* lighthouse.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = lighthouse.html; sourceTree = "<group>"; };
0
     283254650D8B792500D99366 /* lib */ = {isa = PBXFileReference; lastKnownFileType = folder; path = lib; sourceTree = "<group>"; };
0
     285BB52F0D849C890027980C /* TexturedWindow.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = TexturedWindow.rb; sourceTree = "<group>"; };
0
     285BB5380D849DD20027980C /* added.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = added.png; sourceTree = "<group>"; };
0
@@ -159,6 +163,8 @@
0
     29B97315FDCFA39411CA2CEA /* Other Sources */ = {
0
       isa = PBXGroup;
0
       children = (
0
+ 281DD5D60DC284DF006F106D /* lighthouse.html */,
0
+ 281DD5CA0DC281CD006F106D /* LighthouseController.rb */,
0
         28851B960DB147AA00FA9C7D /* VisualizationView.rb */,
0
         283254650D8B792500D99366 /* lib */,
0
         285BB52F0D849C890027980C /* TexturedWindow.rb */,
0
@@ -269,6 +275,8 @@
0
         283254680D8B792500D99366 /* lib in Resources */,
0
         0A4023590D949E0E00659E01 /* ImageLoadOperation.rb in Resources */,
0
         28851B970DB147AA00FA9C7D /* VisualizationView.rb in Resources */,
0
+ 281DD5CB0DC281CD006F106D /* LighthouseController.rb in Resources */,
0
+ 281DD5D70DC284DF006F106D /* lighthouse.html in Resources */,
0
       );
0
       runOnlyForDeploymentPostprocessing = 0;
0
     };

Comments

    No one has commented yet.