instiki 0.9.2 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/CHANGELOG +165 -0
  2. data/README +68 -172
  3. data/app/controllers/admin_controller.rb +94 -0
  4. data/app/controllers/application.rb +131 -0
  5. data/app/controllers/file_controller.rb +129 -0
  6. data/app/controllers/wiki_controller.rb +354 -0
  7. data/{libraries/view_helper.rb → app/helpers/application_helper.rb} +68 -33
  8. data/app/models/author.rb +3 -3
  9. data/app/models/chunks/category.rb +33 -31
  10. data/app/models/chunks/chunk.rb +86 -20
  11. data/app/models/chunks/engines.rb +54 -38
  12. data/app/models/chunks/include.rb +41 -29
  13. data/app/models/chunks/literal.rb +31 -19
  14. data/app/models/chunks/nowiki.rb +28 -31
  15. data/app/models/chunks/test.rb +18 -18
  16. data/app/models/chunks/uri.rb +182 -97
  17. data/app/models/chunks/wiki.rb +141 -82
  18. data/app/models/file_yard.rb +58 -0
  19. data/app/models/page.rb +112 -86
  20. data/app/models/page_lock.rb +22 -23
  21. data/app/models/page_set.rb +89 -64
  22. data/app/models/revision.rb +123 -90
  23. data/app/models/web.rb +176 -89
  24. data/app/models/wiki_content.rb +207 -105
  25. data/app/models/wiki_service.rb +233 -83
  26. data/app/models/wiki_words.rb +23 -25
  27. data/app/views/{wiki/new_system.rhtml → admin/create_system.rhtml} +83 -78
  28. data/app/views/{wiki/new_web.rhtml → admin/create_web.rhtml} +69 -64
  29. data/app/views/admin/edit_web.rhtml +136 -0
  30. data/app/views/file/file.rhtml +19 -0
  31. data/app/views/file/import.rhtml +23 -0
  32. data/app/views/layouts/default.rhtml +85 -0
  33. data/app/views/markdown_help.rhtml +12 -16
  34. data/app/views/mixed_help.rhtml +7 -0
  35. data/app/views/navigation.rhtml +30 -19
  36. data/app/views/rdoc_help.rhtml +12 -16
  37. data/app/views/textile_help.rhtml +24 -28
  38. data/app/views/wiki/authors.rhtml +11 -13
  39. data/app/views/wiki/edit.rhtml +39 -31
  40. data/app/views/wiki/export.rhtml +12 -14
  41. data/app/views/wiki/feeds.rhtml +14 -10
  42. data/app/views/wiki/list.rhtml +64 -57
  43. data/app/views/wiki/locked.rhtml +23 -14
  44. data/app/views/wiki/login.rhtml +14 -11
  45. data/app/views/wiki/new.rhtml +31 -27
  46. data/app/views/wiki/page.rhtml +115 -81
  47. data/app/views/wiki/print.rhtml +14 -16
  48. data/app/views/wiki/published.rhtml +9 -10
  49. data/app/views/wiki/recently_revised.rhtml +27 -30
  50. data/app/views/wiki/revision.rhtml +103 -81
  51. data/app/views/wiki/rollback.rhtml +14 -9
  52. data/app/views/wiki/rss_feed.rhtml +22 -22
  53. data/app/views/wiki/search.rhtml +38 -15
  54. data/app/views/wiki/tex.rhtml +22 -22
  55. data/app/views/wiki/tex_web.rhtml +34 -34
  56. data/app/views/wiki/web_list.rhtml +18 -13
  57. data/app/views/wiki_words_help.rhtml +9 -8
  58. data/config/environment.rb +82 -0
  59. data/config/environments/development.rb +5 -0
  60. data/config/environments/production.rb +4 -0
  61. data/config/environments/test.rb +17 -0
  62. data/config/routes.rb +18 -0
  63. data/instiki +6 -67
  64. data/instiki.rb +3 -0
  65. data/lib/active_record_stub.rb +31 -0
  66. data/{libraries/diff → lib}/diff.rb +444 -475
  67. data/lib/instiki_errors.rb +15 -0
  68. data/{libraries → lib}/rdocsupport.rb +151 -155
  69. data/lib/redcloth_for_tex.rb +736 -0
  70. data/natives/osx/desktop_launcher/AppDelegate.h +18 -0
  71. data/natives/osx/desktop_launcher/AppDelegate.mm +109 -0
  72. data/natives/osx/desktop_launcher/Credits.html +16 -0
  73. data/natives/osx/desktop_launcher/English.lproj/InfoPlist.strings +0 -0
  74. data/natives/osx/desktop_launcher/English.lproj/MainMenu.nib/classes.nib +13 -0
  75. data/natives/osx/desktop_launcher/English.lproj/MainMenu.nib/info.nib +24 -0
  76. data/natives/osx/desktop_launcher/English.lproj/MainMenu.nib/objects.nib +0 -0
  77. data/natives/osx/desktop_launcher/Info.plist +13 -0
  78. data/natives/osx/desktop_launcher/Instiki.xcode/project.pbxproj +592 -0
  79. data/natives/osx/desktop_launcher/Instiki_Prefix.pch +7 -0
  80. data/natives/osx/desktop_launcher/MakeDMG.sh +9 -0
  81. data/natives/osx/desktop_launcher/main.mm +14 -0
  82. data/natives/osx/desktop_launcher/version.plist +16 -0
  83. data/public/404.html +6 -0
  84. data/public/500.html +6 -0
  85. data/public/dispatch.rb +10 -0
  86. data/public/favicon.ico +0 -0
  87. data/public/javascripts/edit_web.js +52 -0
  88. data/public/javascripts/prototype.js +336 -0
  89. data/{app/views/static_style_sheet.rhtml → public/stylesheets/instiki.css} +221 -198
  90. data/script/breakpointer +4 -0
  91. data/script/server +93 -0
  92. metadata +59 -32
  93. data/app/controllers/wiki.rb +0 -389
  94. data/app/models/chunks/match.rb +0 -19
  95. data/app/views/bottom.rhtml +0 -4
  96. data/app/views/top.rhtml +0 -49
  97. data/app/views/wiki/edit_web.rhtml +0 -138
  98. data/libraries/action_controller_servlet.rb +0 -177
  99. data/libraries/erb.rb +0 -490
  100. data/libraries/madeleine_service.rb +0 -68
  101. data/libraries/redcloth_for_tex.rb +0 -869
  102. data/libraries/web_controller_server.rb +0 -81
@@ -0,0 +1,18 @@
1
+ /* AppDelegate */
2
+
3
+ #import <Cocoa/Cocoa.h>
4
+
5
+ @interface AppDelegate : NSObject
6
+ {
7
+ IBOutlet NSMenu* statusMenu;
8
+ NSTask* serverCommand;
9
+ int processID;
10
+ BOOL shouldOpenUntitled;
11
+
12
+ NSNetService* service;
13
+ }
14
+ - (IBAction)about:(id)sender;
15
+ - (IBAction)goToHomepage:(id)sender;
16
+ - (IBAction)goToInstikiOrg:(id)sender;
17
+ - (IBAction)quit:(id)sender;
18
+ @end
@@ -0,0 +1,109 @@
1
+ #include <unistd.h>
2
+ #include <sys/wait.h>
3
+ #import "AppDelegate.h"
4
+
5
+ int launch_ruby (char const* cmd)
6
+ {
7
+ int pId, parentID = getpid();
8
+ if((pId = fork()) == 0) // child
9
+ {
10
+ NSLog(@"set child (%d) to pgrp %d", getpid(), parentID);
11
+ setpgrp(0, parentID);
12
+ system(cmd);
13
+ return 0;
14
+ }
15
+ else // parent
16
+ {
17
+ NSLog(@"started child process: %d", pId);
18
+ return pId;
19
+ }
20
+ }
21
+
22
+ @implementation AppDelegate
23
+
24
+ - (NSString*)storageDirectory
25
+ {
26
+ NSString* dir = [NSHomeDirectory() stringByAppendingPathComponent:@"Library/Application Support/Instiki"];
27
+ [[NSFileManager defaultManager] createDirectoryAtPath:dir attributes:nil];
28
+ return dir;
29
+ }
30
+
31
+ - (void)awakeFromNib
32
+ {
33
+ setpgrp(0, getpid());
34
+
35
+ if([[[[NSBundle mainBundle] infoDictionary] objectForKey:@"LSUIElement"] isEqualToString:@"1"])
36
+ {
37
+ NSStatusBar* bar = [NSStatusBar systemStatusBar];
38
+ NSStatusItem* item = [[bar statusItemWithLength:NSVariableStatusItemLength] retain];
39
+ [item setTitle:@"Wiki"];
40
+ [item setHighlightMode:YES];
41
+ [item setMenu:statusMenu];
42
+ }
43
+
44
+ NSBundle* bundle = [NSBundle bundleForClass:[self class]];
45
+ NSString* ruby = [bundle pathForResource:@"ruby" ofType:nil];
46
+ NSString* script = [[bundle resourcePath] stringByAppendingPathComponent:@"rb_src/instiki.rb"];
47
+ if(ruby && script)
48
+ {
49
+ NSString* cmd = [NSString stringWithFormat:
50
+ @"%@ -I '%@' -I '%@' '%@' -s --storage='%@'",
51
+ ruby,
52
+ [[bundle resourcePath] stringByAppendingPathComponent:@"lib/ruby/1.8"],
53
+ [[bundle resourcePath] stringByAppendingPathComponent:@"lib/ruby/1.8/powerpc-darwin"],
54
+ script,
55
+ [self storageDirectory]
56
+ ];
57
+ NSLog(@"starting %@", cmd);
58
+ processID = launch_ruby([cmd UTF8String]);
59
+ }
60
+
61
+ /* public the service using rendezvous */
62
+ service = [[NSNetService alloc]
63
+ initWithDomain:@"" // default domain
64
+ type:@"_http._tcp."
65
+ name:[NSString stringWithFormat:@"%@'s Instiki", NSFullUserName()]
66
+ port:2500];
67
+ [service publish];
68
+ }
69
+
70
+ - (void)applicationWillTerminate:(NSNotification*)aNotification
71
+ {
72
+ [service stop];
73
+ [service release];
74
+
75
+ kill(0, SIGTERM);
76
+ }
77
+
78
+ - (IBAction)about:(id)sender
79
+ {
80
+ [NSApp activateIgnoringOtherApps:YES];
81
+ [NSApp orderFrontStandardAboutPanel:self];
82
+ }
83
+
84
+ - (IBAction)goToHomepage:(id)sender
85
+ {
86
+ [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://localhost:2500/"]];
87
+ }
88
+
89
+ - (IBAction)goToInstikiOrg:(id)sender
90
+ {
91
+ [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.instiki.org/"]];
92
+ }
93
+
94
+ - (BOOL)applicationShouldOpenUntitledFile:(NSApplication*)sender
95
+ {
96
+ return shouldOpenUntitled ?: (shouldOpenUntitled = YES, NO);
97
+ }
98
+
99
+ - (BOOL)applicationOpenUntitledFile:(NSApplication*)theApplication
100
+ {
101
+ return [self goToHomepage:self], YES;
102
+ }
103
+
104
+ - (IBAction)quit:(id)sender
105
+ {
106
+ [NSApp terminate:self];
107
+ }
108
+
109
+ @end
@@ -0,0 +1,16 @@
1
+ <dl>
2
+ <dt>Engineering:</dt>
3
+ <dd>Some people</dd>
4
+
5
+ <dt>Human Interface Design:</dt>
6
+ <dd>Some other people</dd>
7
+
8
+ <dt>Testing:</dt>
9
+ <dd>Hopefully not nobody</dd>
10
+
11
+ <dt>Documentation:</dt>
12
+ <dd>Whoever</dd>
13
+
14
+ <dt>With special thanks to:</dt>
15
+ <dd>Mom</dd>
16
+ </dl>
@@ -0,0 +1,13 @@
1
+ {
2
+ IBClasses = (
3
+ {
4
+ ACTIONS = {about = id; goToHomepage = id; goToInstikiOrg = id; quit = id; };
5
+ CLASS = AppDelegate;
6
+ LANGUAGE = ObjC;
7
+ OUTLETS = {statusMenu = NSMenu; };
8
+ SUPERCLASS = NSObject;
9
+ },
10
+ {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }
11
+ );
12
+ IBVersion = 1;
13
+ }
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>IBDocumentLocation</key>
6
+ <string>109 6 356 240 0 0 1440 878 </string>
7
+ <key>IBEditorPositions</key>
8
+ <dict>
9
+ <key>206</key>
10
+ <string>112 300 116 87 0 0 1440 878 </string>
11
+ <key>29</key>
12
+ <string>241 316 70 44 0 0 1440 878 </string>
13
+ </dict>
14
+ <key>IBFramework Version</key>
15
+ <string>349.0</string>
16
+ <key>IBOpenObjects</key>
17
+ <array>
18
+ <integer>206</integer>
19
+ <integer>29</integer>
20
+ </array>
21
+ <key>IBSystem Version</key>
22
+ <string>7H63</string>
23
+ </dict>
24
+ </plist>
@@ -0,0 +1,13 @@
1
+ {
2
+ CFBundleDevelopmentRegion = English;
3
+ CFBundleExecutable = Instiki;
4
+ CFBundleIconFile = "";
5
+ CFBundleIdentifier = "com.nextangle.instiki";
6
+ CFBundleInfoDictionaryVersion = "6.0";
7
+ CFBundlePackageType = APPL;
8
+ CFBundleSignature = WIKI;
9
+ CFBundleVersion = "0.9.0";
10
+ LSUIElement = 1;
11
+ NSMainNibFile = MainMenu;
12
+ NSPrincipalClass = NSApplication;
13
+ }
@@ -0,0 +1,592 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 39;
7
+ objects = {
8
+ 080E96DDFE201D6D7F000001 = {
9
+ children = (
10
+ 174B2765065CE31400ED6208,
11
+ 174B2766065CE31400ED6208,
12
+ );
13
+ isa = PBXGroup;
14
+ name = Classes;
15
+ refType = 4;
16
+ sourceTree = "<group>";
17
+ };
18
+ 089C165CFE840E0CC02AAC07 = {
19
+ children = (
20
+ 089C165DFE840E0CC02AAC07,
21
+ );
22
+ isa = PBXVariantGroup;
23
+ name = InfoPlist.strings;
24
+ refType = 4;
25
+ sourceTree = "<group>";
26
+ };
27
+ 089C165DFE840E0CC02AAC07 = {
28
+ fileEncoding = 10;
29
+ isa = PBXFileReference;
30
+ lastKnownFileType = text.plist.strings;
31
+ name = English;
32
+ path = English.lproj/InfoPlist.strings;
33
+ refType = 4;
34
+ sourceTree = "<group>";
35
+ };
36
+ //080
37
+ //081
38
+ //082
39
+ //083
40
+ //084
41
+ //100
42
+ //101
43
+ //102
44
+ //103
45
+ //104
46
+ 1058C7A0FEA54F0111CA2CBB = {
47
+ children = (
48
+ 1058C7A1FEA54F0111CA2CBB,
49
+ );
50
+ isa = PBXGroup;
51
+ name = "Linked Frameworks";
52
+ refType = 4;
53
+ sourceTree = "<group>";
54
+ };
55
+ 1058C7A1FEA54F0111CA2CBB = {
56
+ fallbackIsa = PBXFileReference;
57
+ isa = PBXFrameworkReference;
58
+ lastKnownFileType = wrapper.framework;
59
+ name = Cocoa.framework;
60
+ path = /System/Library/Frameworks/Cocoa.framework;
61
+ refType = 0;
62
+ sourceTree = "<absolute>";
63
+ };
64
+ 1058C7A2FEA54F0111CA2CBB = {
65
+ children = (
66
+ 29B97325FDCFA39411CA2CEA,
67
+ 29B97324FDCFA39411CA2CEA,
68
+ );
69
+ isa = PBXGroup;
70
+ name = "Other Frameworks";
71
+ refType = 4;
72
+ sourceTree = "<group>";
73
+ };
74
+ //100
75
+ //101
76
+ //102
77
+ //103
78
+ //104
79
+ //170
80
+ //171
81
+ //172
82
+ //173
83
+ //174
84
+ 174B2765065CE31400ED6208 = {
85
+ fileEncoding = 4;
86
+ isa = PBXFileReference;
87
+ lastKnownFileType = sourcecode.cpp.objcpp;
88
+ path = AppDelegate.mm;
89
+ refType = 4;
90
+ sourceTree = "<group>";
91
+ };
92
+ 174B2766065CE31400ED6208 = {
93
+ fileEncoding = 4;
94
+ isa = PBXFileReference;
95
+ lastKnownFileType = sourcecode.c.h;
96
+ path = AppDelegate.h;
97
+ refType = 4;
98
+ sourceTree = "<group>";
99
+ };
100
+ 174B2767065CE31400ED6208 = {
101
+ fileRef = 174B2765065CE31400ED6208;
102
+ isa = PBXBuildFile;
103
+ settings = {
104
+ };
105
+ };
106
+ 174B2768065CE31400ED6208 = {
107
+ fileRef = 174B2766065CE31400ED6208;
108
+ isa = PBXBuildFile;
109
+ settings = {
110
+ };
111
+ };
112
+ 17BF6FD9067536EB003F37D6 = {
113
+ children = (
114
+ 63B86D2F0673A5D300807E13,
115
+ 63B86D1A0673A5B200807E13,
116
+ 63B86D100673A58400807E13,
117
+ );
118
+ isa = PBXGroup;
119
+ name = "Instiki Source";
120
+ refType = 4;
121
+ sourceTree = "<group>";
122
+ };
123
+ 17C1C5CD065D3A3C003526E7 = {
124
+ fileEncoding = 4;
125
+ isa = PBXFileReference;
126
+ lastKnownFileType = text.html;
127
+ path = Credits.html;
128
+ refType = 4;
129
+ sourceTree = "<group>";
130
+ };
131
+ 17C1C5CE065D3A3C003526E7 = {
132
+ fileRef = 17C1C5CD065D3A3C003526E7;
133
+ isa = PBXBuildFile;
134
+ settings = {
135
+ };
136
+ };
137
+ 17C1C6E2065D458D003526E7 = {
138
+ fileEncoding = 4;
139
+ isa = PBXFileReference;
140
+ lastKnownFileType = text.script.sh;
141
+ path = MakeDMG.sh;
142
+ refType = 4;
143
+ sourceTree = "<group>";
144
+ };
145
+ 17F6C11106629574007E0BD0 = {
146
+ isa = PBXFileReference;
147
+ lastKnownFileType = "compiled.mach-o.executable";
148
+ name = ruby;
149
+ path = /usr/local/bin/ruby;
150
+ refType = 0;
151
+ sourceTree = "<absolute>";
152
+ };
153
+ 17F6C11206629574007E0BD0 = {
154
+ fileRef = 17F6C11106629574007E0BD0;
155
+ isa = PBXBuildFile;
156
+ settings = {
157
+ };
158
+ };
159
+ 17F6C113066295D0007E0BD0 = {
160
+ isa = PBXFileReference;
161
+ lastKnownFileType = folder;
162
+ name = ruby;
163
+ path = /usr/local/lib/ruby;
164
+ refType = 0;
165
+ sourceTree = "<absolute>";
166
+ };
167
+ 17F6C3A90662960F007E0BD0 = {
168
+ buildActionMask = 2147483647;
169
+ dstPath = lib;
170
+ dstSubfolderSpec = 7;
171
+ files = (
172
+ 17F6C3CF066296B5007E0BD0,
173
+ );
174
+ isa = PBXCopyFilesBuildPhase;
175
+ runOnlyForDeploymentPostprocessing = 0;
176
+ };
177
+ 17F6C3CF066296B5007E0BD0 = {
178
+ fileRef = 17F6C113066295D0007E0BD0;
179
+ isa = PBXBuildFile;
180
+ settings = {
181
+ };
182
+ };
183
+ 17F6C3D2066296E4007E0BD0 = {
184
+ children = (
185
+ 17F6C11106629574007E0BD0,
186
+ 17F6C113066295D0007E0BD0,
187
+ );
188
+ isa = PBXGroup;
189
+ name = "Ruby 1.8";
190
+ refType = 4;
191
+ sourceTree = "<group>";
192
+ };
193
+ //170
194
+ //171
195
+ //172
196
+ //173
197
+ //174
198
+ //190
199
+ //191
200
+ //192
201
+ //193
202
+ //194
203
+ 19C28FACFE9D520D11CA2CBB = {
204
+ children = (
205
+ 8D1107320486CEB800E47090,
206
+ );
207
+ isa = PBXGroup;
208
+ name = Products;
209
+ refType = 4;
210
+ sourceTree = "<group>";
211
+ };
212
+ //190
213
+ //191
214
+ //192
215
+ //193
216
+ //194
217
+ //290
218
+ //291
219
+ //292
220
+ //293
221
+ //294
222
+ 29B97313FDCFA39411CA2CEA = {
223
+ buildSettings = {
224
+ };
225
+ buildStyles = (
226
+ 4A9504CCFFE6A4B311CA0CBA,
227
+ 4A9504CDFFE6A4B311CA0CBA,
228
+ );
229
+ hasScannedForEncodings = 1;
230
+ isa = PBXProject;
231
+ mainGroup = 29B97314FDCFA39411CA2CEA;
232
+ projectDirPath = "";
233
+ targets = (
234
+ 8D1107260486CEB800E47090,
235
+ );
236
+ };
237
+ 29B97314FDCFA39411CA2CEA = {
238
+ children = (
239
+ 080E96DDFE201D6D7F000001,
240
+ 29B97315FDCFA39411CA2CEA,
241
+ 29B97317FDCFA39411CA2CEA,
242
+ 29B97323FDCFA39411CA2CEA,
243
+ 19C28FACFE9D520D11CA2CBB,
244
+ 17C1C6E2065D458D003526E7,
245
+ );
246
+ isa = PBXGroup;
247
+ name = Instiki;
248
+ path = "";
249
+ refType = 4;
250
+ sourceTree = "<group>";
251
+ };
252
+ 29B97315FDCFA39411CA2CEA = {
253
+ children = (
254
+ 32CA4F630368D1EE00C91783,
255
+ 29B97316FDCFA39411CA2CEA,
256
+ );
257
+ isa = PBXGroup;
258
+ name = "Other Sources";
259
+ path = "";
260
+ refType = 4;
261
+ sourceTree = "<group>";
262
+ };
263
+ 29B97316FDCFA39411CA2CEA = {
264
+ fileEncoding = 30;
265
+ isa = PBXFileReference;
266
+ lastKnownFileType = sourcecode.cpp.objcpp;
267
+ path = main.mm;
268
+ refType = 4;
269
+ sourceTree = "<group>";
270
+ };
271
+ 29B97317FDCFA39411CA2CEA = {
272
+ children = (
273
+ 17BF6FD9067536EB003F37D6,
274
+ 17F6C3D2066296E4007E0BD0,
275
+ 8D1107310486CEB800E47090,
276
+ 089C165CFE840E0CC02AAC07,
277
+ 29B97318FDCFA39411CA2CEA,
278
+ 17C1C5CD065D3A3C003526E7,
279
+ );
280
+ isa = PBXGroup;
281
+ name = Resources;
282
+ path = "";
283
+ refType = 4;
284
+ sourceTree = "<group>";
285
+ };
286
+ 29B97318FDCFA39411CA2CEA = {
287
+ children = (
288
+ 29B97319FDCFA39411CA2CEA,
289
+ );
290
+ isa = PBXVariantGroup;
291
+ name = MainMenu.nib;
292
+ path = "";
293
+ refType = 4;
294
+ sourceTree = "<group>";
295
+ };
296
+ 29B97319FDCFA39411CA2CEA = {
297
+ isa = PBXFileReference;
298
+ lastKnownFileType = wrapper.nib;
299
+ name = English;
300
+ path = English.lproj/MainMenu.nib;
301
+ refType = 4;
302
+ sourceTree = "<group>";
303
+ };
304
+ 29B97323FDCFA39411CA2CEA = {
305
+ children = (
306
+ 1058C7A0FEA54F0111CA2CBB,
307
+ 1058C7A2FEA54F0111CA2CBB,
308
+ );
309
+ isa = PBXGroup;
310
+ name = Frameworks;
311
+ path = "";
312
+ refType = 4;
313
+ sourceTree = "<group>";
314
+ };
315
+ 29B97324FDCFA39411CA2CEA = {
316
+ fallbackIsa = PBXFileReference;
317
+ isa = PBXFrameworkReference;
318
+ lastKnownFileType = wrapper.framework;
319
+ name = AppKit.framework;
320
+ path = /System/Library/Frameworks/AppKit.framework;
321
+ refType = 0;
322
+ sourceTree = "<absolute>";
323
+ };
324
+ 29B97325FDCFA39411CA2CEA = {
325
+ fallbackIsa = PBXFileReference;
326
+ isa = PBXFrameworkReference;
327
+ lastKnownFileType = wrapper.framework;
328
+ name = Foundation.framework;
329
+ path = /System/Library/Frameworks/Foundation.framework;
330
+ refType = 0;
331
+ sourceTree = "<absolute>";
332
+ };
333
+ //290
334
+ //291
335
+ //292
336
+ //293
337
+ //294
338
+ //320
339
+ //321
340
+ //322
341
+ //323
342
+ //324
343
+ 32CA4F630368D1EE00C91783 = {
344
+ fileEncoding = 4;
345
+ isa = PBXFileReference;
346
+ lastKnownFileType = sourcecode.c.h;
347
+ path = Instiki_Prefix.pch;
348
+ refType = 4;
349
+ sourceTree = "<group>";
350
+ };
351
+ //320
352
+ //321
353
+ //322
354
+ //323
355
+ //324
356
+ //4A0
357
+ //4A1
358
+ //4A2
359
+ //4A3
360
+ //4A4
361
+ 4A9504CCFFE6A4B311CA0CBA = {
362
+ buildRules = (
363
+ );
364
+ buildSettings = {
365
+ COPY_PHASE_STRIP = NO;
366
+ DEBUGGING_SYMBOLS = YES;
367
+ GCC_DYNAMIC_NO_PIC = NO;
368
+ GCC_ENABLE_FIX_AND_CONTINUE = YES;
369
+ GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
370
+ GCC_OPTIMIZATION_LEVEL = 0;
371
+ OPTIMIZATION_CFLAGS = "-O0";
372
+ ZERO_LINK = YES;
373
+ };
374
+ isa = PBXBuildStyle;
375
+ name = Development;
376
+ };
377
+ 4A9504CDFFE6A4B311CA0CBA = {
378
+ buildRules = (
379
+ );
380
+ buildSettings = {
381
+ COPY_PHASE_STRIP = YES;
382
+ GCC_ENABLE_FIX_AND_CONTINUE = NO;
383
+ ZERO_LINK = NO;
384
+ };
385
+ isa = PBXBuildStyle;
386
+ name = Deployment;
387
+ };
388
+ //4A0
389
+ //4A1
390
+ //4A2
391
+ //4A3
392
+ //4A4
393
+ //630
394
+ //631
395
+ //632
396
+ //633
397
+ //634
398
+ 63B86D0F0673A53100807E13 = {
399
+ buildActionMask = 2147483647;
400
+ dstPath = rb_src;
401
+ dstSubfolderSpec = 7;
402
+ files = (
403
+ 63B86D310673A5D600807E13,
404
+ 63B86D1C0673A5B600807E13,
405
+ 63B86D120673A59100807E13,
406
+ );
407
+ isa = PBXCopyFilesBuildPhase;
408
+ runOnlyForDeploymentPostprocessing = 0;
409
+ };
410
+ 63B86D100673A58400807E13 = {
411
+ explicitFileType = folder;
412
+ fileEncoding = 4;
413
+ isa = PBXFileReference;
414
+ name = app;
415
+ path = /Users/duff/Source/rb_src/instiki/app;
416
+ refType = 0;
417
+ sourceTree = "<absolute>";
418
+ };
419
+ 63B86D120673A59100807E13 = {
420
+ fileRef = 63B86D100673A58400807E13;
421
+ isa = PBXBuildFile;
422
+ settings = {
423
+ };
424
+ };
425
+ 63B86D1A0673A5B200807E13 = {
426
+ explicitFileType = folder;
427
+ fileEncoding = 4;
428
+ isa = PBXFileReference;
429
+ name = libraries;
430
+ path = /Users/duff/Source/rb_src/instiki/libraries;
431
+ refType = 0;
432
+ sourceTree = "<absolute>";
433
+ };
434
+ 63B86D1C0673A5B600807E13 = {
435
+ fileRef = 63B86D1A0673A5B200807E13;
436
+ isa = PBXBuildFile;
437
+ settings = {
438
+ };
439
+ };
440
+ 63B86D2F0673A5D300807E13 = {
441
+ fileEncoding = 4;
442
+ isa = PBXFileReference;
443
+ lastKnownFileType = text.script.ruby;
444
+ name = instiki.rb;
445
+ path = /Users/duff/Source/rb_src/instiki/instiki.rb;
446
+ refType = 0;
447
+ sourceTree = "<absolute>";
448
+ };
449
+ 63B86D310673A5D600807E13 = {
450
+ fileRef = 63B86D2F0673A5D300807E13;
451
+ isa = PBXBuildFile;
452
+ settings = {
453
+ };
454
+ };
455
+ //630
456
+ //631
457
+ //632
458
+ //633
459
+ //634
460
+ //8D0
461
+ //8D1
462
+ //8D2
463
+ //8D3
464
+ //8D4
465
+ 8D1107260486CEB800E47090 = {
466
+ buildPhases = (
467
+ 8D1107270486CEB800E47090,
468
+ 8D1107290486CEB800E47090,
469
+ 8D11072C0486CEB800E47090,
470
+ 8D11072E0486CEB800E47090,
471
+ 17F6C3A90662960F007E0BD0,
472
+ 63B86D0F0673A53100807E13,
473
+ );
474
+ buildRules = (
475
+ );
476
+ buildSettings = {
477
+ FRAMEWORK_SEARCH_PATHS = "";
478
+ GCC_ENABLE_TRIGRAPHS = NO;
479
+ GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
480
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
481
+ GCC_PREFIX_HEADER = Instiki_Prefix.pch;
482
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO;
483
+ GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
484
+ GCC_WARN_UNKNOWN_PRAGMAS = NO;
485
+ HEADER_SEARCH_PATHS = "";
486
+ INFOPLIST_FILE = Info.plist;
487
+ INSTALL_PATH = "$(HOME)/Applications";
488
+ LIBRARY_SEARCH_PATHS = "";
489
+ OTHER_CFLAGS = "";
490
+ OTHER_LDFLAGS = "";
491
+ PRODUCT_NAME = Instiki;
492
+ SECTORDER_FLAGS = "";
493
+ WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas";
494
+ WRAPPER_EXTENSION = app;
495
+ };
496
+ dependencies = (
497
+ );
498
+ isa = PBXNativeTarget;
499
+ name = Instiki;
500
+ productInstallPath = "$(HOME)/Applications";
501
+ productName = Instiki;
502
+ productReference = 8D1107320486CEB800E47090;
503
+ productType = "com.apple.product-type.application";
504
+ };
505
+ 8D1107270486CEB800E47090 = {
506
+ buildActionMask = 2147483647;
507
+ files = (
508
+ 8D1107280486CEB800E47090,
509
+ 174B2768065CE31400ED6208,
510
+ );
511
+ isa = PBXHeadersBuildPhase;
512
+ runOnlyForDeploymentPostprocessing = 0;
513
+ };
514
+ 8D1107280486CEB800E47090 = {
515
+ fileRef = 32CA4F630368D1EE00C91783;
516
+ isa = PBXBuildFile;
517
+ settings = {
518
+ };
519
+ };
520
+ 8D1107290486CEB800E47090 = {
521
+ buildActionMask = 2147483647;
522
+ files = (
523
+ 8D11072A0486CEB800E47090,
524
+ 8D11072B0486CEB800E47090,
525
+ 17C1C5CE065D3A3C003526E7,
526
+ 17F6C11206629574007E0BD0,
527
+ );
528
+ isa = PBXResourcesBuildPhase;
529
+ runOnlyForDeploymentPostprocessing = 0;
530
+ };
531
+ 8D11072A0486CEB800E47090 = {
532
+ fileRef = 29B97318FDCFA39411CA2CEA;
533
+ isa = PBXBuildFile;
534
+ settings = {
535
+ };
536
+ };
537
+ 8D11072B0486CEB800E47090 = {
538
+ fileRef = 089C165CFE840E0CC02AAC07;
539
+ isa = PBXBuildFile;
540
+ settings = {
541
+ };
542
+ };
543
+ 8D11072C0486CEB800E47090 = {
544
+ buildActionMask = 2147483647;
545
+ files = (
546
+ 8D11072D0486CEB800E47090,
547
+ 174B2767065CE31400ED6208,
548
+ );
549
+ isa = PBXSourcesBuildPhase;
550
+ runOnlyForDeploymentPostprocessing = 0;
551
+ };
552
+ 8D11072D0486CEB800E47090 = {
553
+ fileRef = 29B97316FDCFA39411CA2CEA;
554
+ isa = PBXBuildFile;
555
+ settings = {
556
+ ATTRIBUTES = (
557
+ );
558
+ };
559
+ };
560
+ 8D11072E0486CEB800E47090 = {
561
+ buildActionMask = 2147483647;
562
+ files = (
563
+ 8D11072F0486CEB800E47090,
564
+ );
565
+ isa = PBXFrameworksBuildPhase;
566
+ runOnlyForDeploymentPostprocessing = 0;
567
+ };
568
+ 8D11072F0486CEB800E47090 = {
569
+ fileRef = 1058C7A1FEA54F0111CA2CBB;
570
+ isa = PBXBuildFile;
571
+ settings = {
572
+ };
573
+ };
574
+ 8D1107310486CEB800E47090 = {
575
+ fileEncoding = 4;
576
+ isa = PBXFileReference;
577
+ lastKnownFileType = text.plist;
578
+ path = Info.plist;
579
+ refType = 4;
580
+ sourceTree = "<group>";
581
+ };
582
+ 8D1107320486CEB800E47090 = {
583
+ explicitFileType = wrapper.application;
584
+ includeInIndex = 0;
585
+ isa = PBXFileReference;
586
+ path = Instiki.app;
587
+ refType = 3;
588
+ sourceTree = BUILT_PRODUCTS_DIR;
589
+ };
590
+ };
591
+ rootObject = 29B97313FDCFA39411CA2CEA;
592
+ }