-
Notifications
You must be signed in to change notification settings - Fork 20
/
profanity.yml
1076 lines (902 loc) · 118 KB
/
profanity.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
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
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
- moved some shit into ServiceStack.Redis
- Fixed shit yo.
- |-
How much fucking swearing do you want to bloody well have when the fuckin' shit is put in with the godamn commit messages
Also, added new models
- removal of shit skins
- added gui shit
- gui shit
- Removed some old shit that shouldn't exist, cleaned the files up and fixed the bindings to point to the new data model, the database should function now
- Fixing shit I broke
- Cache sped way the fuck up, caves implemented again, as well as LAVA SEAS
- |-
Quick commit before I lose power again.
* Block replacements moved to Edit > Replace...
* Replacement templates ready to go.
* More copyright shit
* Added some tweaks for the dial UI
* TileEntities dynamically loaded, also create new class files on unknown entities.
* (Tile)Entity stuff moved to folders underneath /bin/
* All entities support OnGround now.
* Better TileEntity detection
Signed-off-by: N3X15 <nexisentertainment@gmail.com>
- Complete UI rewrite for the fucking map dialog, since VS2010 crapped on it. New Dial control for time editing, and lots of shit is broken now.
- LOL REPLACEMENTS AND SHIT
- LOL REPLACEMENTS AND SHIT
- holy shit changes
- bunch of shit was deleted
- make this shit work!
- Added some functionality; naming shit and etc
- Hack changes that tries to make team shit to work
- Removed xml and shit from the repo
- Removed some shit
- okay, duh. the timeout shit didn't work at all.
- |-
- remove old test code stub. I have no idea how this ugly piece of shit managed to survive *that* long.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@874 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
- " * Fixing up the little docs there are, and created a viewer dock window for them. However it looks like this is going to require a fuck ton of libs to parse the compiled help. Will most likely just delay issue 98 and wait for qt 4.6 to fix this mess.\n\n\
git-svn-id: http://dwarftherapist.googlecode.com/svn/trunk@270 f34a0644-6cda-11de-9313-dd366511c2ff"
- " * fixed GameDataReader to return alpha-sorted skills and labors\n * more work on the unified view editing interface (mostly done now but still needs some work)\n * I FUCKING HATE THE CURRENT ViewManager->GridView->ViewColumnSet->ViewColumn HIERARCHY! It badly needs to be rewritten from scratch. Possibly using QAbstractItemModel as the basis? It is an absolute pain to deal with and is now about 1000 lines of total shit code.\n\n\
git-svn-id: http://dwarftherapist.googlecode.com/svn/trunk@255 f34a0644-6cda-11de-9313-dd366511c2ff"
- |-
stupid bug, I bet this cost me over 8 hours of stupid shit in the last week. read_str2 was still using read_int32() to read strings.
Meaning about half of my string reads would fail due to over-run integers. switched to read_uint()
git-svn-id: http://dwarftherapist.googlecode.com/svn/trunk@183 f34a0644-6cda-11de-9313-dd366511c2ff
- |-
git == shit
encore une fois erase by pull
re-envoie la lib image.
- Removing shit shortcut
- |-
Essentially got terrain working. The geometry generation is still wrong and I need to add in a mode that updates in one fell swoop, rather than as we go (for loading and generation), but the basics are there.
Fixed a few bugs where I was using the wrong variables for what I wanted to do (grid index v. chunk index v. world pos v. chunk grid location v. local chunk index, etc... shit got confusing).
Fixed some issues with my macros and matrix lookups.
Renamed some variables in an attempt to make things less confusing.
- ignoring common text editor tmp files and shit
- cleanup bundler shit
- |-
Start modifying the API and breaking the fuck out of everything
Signed-off-by: Dario Freddi <drf@kde.org>
- |-
Fuck that
Signed-off-by: Dario Freddi <drf@kde.org>
- |-
Fuck typos
Signed-off-by: Dario Freddi <drf54321@gmail.com>
- |-
Fuck me
Signed-off-by: Dario Freddi <drf54321@gmail.com>
- |-
What the fuck
Signed-off-by: Dario Freddi <drf54321@gmail.com>
- |-
What the shit pt 2
Signed-off-by: Dario Freddi <drf54321@gmail.com>
- |-
What the shit
Signed-off-by: Dario Freddi <drf54321@gmail.com>
- |-
Fuck activation, now it should work
Signed-off-by: Dario Freddi <drf54321@gmail.com>
- |-
Clearing up hacks & shit
Signed-off-by: Dario Freddi <drf54321@gmail.com>
- |-
Get the fuck out, authenticator
Signed-off-by: Dario Freddi <drf54321@gmail.com>
- |-
Tile-scope and Particle-scope now working. Proper VAO/Shader rendering in progress...
Also, the ARB can go fuck themselves... :)
- Some .mrc upgrades. Changing something this simple has already been a pain in the ass. Looking for someone who has been scripting mIRC for over 9000 years and would be able to pimp the shit out of this script.
- needs more constructors (btw, I don't actually know C++ so feel free to revert / change shit entirely
- add container_id and orphaned_item to cat_uuids so weird shit doesn't happen
- fixing preferences and shit
- add container_id and orphaned_item to cat_uuids so weird shit doesn't happen
- fixing preferences and shit
- Removed DataManager because it was shit anyway.
- gcc shit
- |-
Workaround v8 bugs with small stacks
v8 seems to have some issues when you try and use stack sizes smaller
than it's used to.
First is that if you attempt to set a stack limit that's smaller than
the snapshot size (if enabled) it will crash your shit in a very hard to
understand way. Unfortunately there's no way to actually know what that
magic size is in advance, so I'm just using a secret v8 internal
variable. This means that for most systems each coroutine will consume
~320kb of memory.
Second issue is there's a bug on 64 bit platforms when your Javascript
overflows the stack. It's probably pretty hard to hit this bug in
regular code but it's still quite bad. There's a workaround that I'm
using to get past that.
- ui = shit
- fixing sush shit
- fixing greg shit
- &id001 |-
Fix the dead man don't throw all his card bug
1. Don't ignore the answer of Pangde's Mengjin skill
2. Don't invoke Jianxiong skill when the card(s) contains shit
3. Add a confirmation when the judge card is shit on Tiandu skill
4. Fix the analeptic slash problem
- *id001
- |-
Add time limit for operations
1. Slash is settled by action order
2. Add segment of "A Short Song" to about dialog
3. Fix Dongzhuo can use Jiuchi more than one time in a turn
4. Add volume settings
5. Zhuge Liang who is kongcheng can not be slashed by Blade
6. SavageAssault is not available when only Jiaxu is the only target
7. Replace the pixmap of Shit
8. Add show card to log system
9. When the luanwu target is only one, just select it other than ask the player to choose
- |-
Add extension package selection for game server
1. Move Yitian sword & shit to YitianPackage
2. Update the pixmap of yitian sword
3. Remove the lord count of settings
4. Add user name length limitation
- |-
Complete the nullification system
1. Add Card::onMove callback, thus card Shit can be used
2. Simplify the (Room::/Client::)askForSkillInvoke function
3. Add (Room::/Client::)askForChoice function, (Yinghun, Benghuai)
4. Add "Kanpo", make it available in nullification dialog
5. Only English letters and number can be used as the identifier
6.
- |-
Implement Jianxiong skill and card Shit
1. Implement Client::hpDamage
2. Add function Room::obtainCard & Room::setPlayerProperty
3. Remove RoomScene::startViewAsSkill
4. Add struct SlashEffectStruct
- |-
Complete Wusheng skill
1. Replace the whitespace (of card parsing string) to colon thus avoid bugs
2. Field "subcards" is a QList of int instead of const Card *, as it should only contains non-virtual cards
3. "discarded_list" now is a public data member of class Client instead of a private member of class RoomScene
4. Emit card_selected signal for pending card
5. Dashboard::getSelected() now returns "const Card *" instead of "CardItem *"
6. Removed "event_type" field of class Engine as well as related member functions
7. Player::MoveCard now can handle either side is discard pile
8. Move class Slash, Jink, Peach and Shit to "standard.h", and add Q_OBJECT and Q_INVOKABLE macros, thus we can dynamically create card
- |-
Add class CardPattern, shit card and etc
1. Add a global instance of class Client : "ClientInstance", thus many client pointer parameter is no longer needed
2. Add equipped field for class CardItem
3. Removed field view_card_item for class CardItem
4. Removed availability for class Client
4. Removed toggleable boolean flag for class Skill
- |-
Crude fix for track asyncronous shit
git-svn-id: svn+ssh://svn.last.fm/svn/clientside/trunk/desktop@122768 ab8f4a45-97f9-0310-bbd1-854ce3dcee89
- |-
Menu item for XSPF resolution. Misc fixes. Prevent UI sticking in play mode ever again hopefully. But Phonon is so shit I can't guarentee much. startAgain() function ready to rumblr.
git-svn-id: svn+ssh://svn.last.fm/svn/clientside/trunk/desktop@121423 ab8f4a45-97f9-0310-bbd1-854ce3dcee89
- |-
GCC is different regarding visibility shit than windows is apparently
Also differs in handling between Mac and Ubuntu typically
- Added bridge shit for later dickings.
- LL can't even write a fucking installer, what the fuck
- |-
Missing shit
git-svn-id: file:///home/nexis/Documents/luna-mirror/trunk@228 97ece4ad-cae2-4924-842c-0ef94757c1ff
- |-
* Merged with latest Emerald release
* Added Missing shit
*** PROBABLY BROKEN ***
git-svn-id: file:///home/nexis/Documents/luna-mirror/trunk@212 97ece4ad-cae2-4924-842c-0ef94757c1ff
- |-
Missing shit
git-svn-id: file:///home/nexis/Documents/luna-mirror/trunk@135 97ece4ad-cae2-4924-842c-0ef94757c1ff
- |-
Switching to Swig, fuck tolua.
git-svn-id: file:///home/nexis/Documents/luna-mirror/trunk@62 97ece4ad-cae2-4924-842c-0ef94757c1ff
- |-
Core:
* Assemblage with boost versions "a shit of a mammoth" is corrected
- Our shit
- |-
This is stupid!. Fuck you GIT!
Signed-off-by: mrhooha <nonya@effing_beeezwax.gtfo>
- Finished Implementation but this shit still kinda breaks.
- Fixed and commentet out pauls shit untill he will fix that.
- fuck it. let's release
- Added some code to make outline fonts faster. While the rendering is faster, it's still not acceptable. On iOS, it's like Pushing shit up hill with some of these typefaces...
- moved some lines of shit
- |-
Use the Soup encode API for the users/show call
The email address used to perform the look up of the user must
be properly escape, or Twitter will shit itself and return a
404 page instead of a proper 4xx HTTP code.
- |-
Escape bare '&' in the statuses text
Some Twitter clients do not escape bare '&' with '&', so we need
to go as far as employing GRegex to replace them ourselves and not let
the Pango markup parser shit itself when it encounters a bare ampersand.
- |-
Changed textarea font default to Consolas
Under Windows, terminus.ttf doesn't include the prettiest low-res version of
Terminus (what the fuck are you doing people? It's ugly in the huge sizes! 10px
is where it's at!) so if a windows user has this font installed, it will look
ugly. So stick with the Consolas as a reasonable default instead.
- No need to scream the legal shit
- Clean up some old shit that was in place from Aaron's not-fast-enough-python app, it was commented out, but should have been removed, so is. By default now, datalog packets have new info in them, and the stream will only be continuous while the engine is running, probably at higher rpms, but unsure. To get a stream, substitute TRUE in place of the expression in main.c.
- Use BUG_ON for bogus shit
- |-
Use list_entry() since converting struct page to use list_head
Dunno how the fuck this was working before...
- |-
Pass entire trap/exception context to C code
printk more data for debugging purposes, since exception handling does fuck
all at the moment anyway
- |-
Merge branch 'master' of git://github.com/Bluerise/openiBoot
* 'master' of git://github.com/Bluerise/openiBoot:
Re-added DMA. This time it should be fixed completely.
I KNEW this would fuck us at some point. Use the *.bin now.
- I KNEW this would fuck us at some point. Use the *.bin now.
- "clcd: Hopefully malloc will never fuck up. Else fallback to standard framebuffer addresses"
- Commented resetting GPIO as it'd fuck our framebuffer hook.
- + shit to Makefile
- removed utf-mutilating shit
- |-
removed another depricated reference to old usb shit
removed HardwareUsb usb in example main, as that class hasnt been defined yet
also modded the makefile to actually compile main.cpp
- |-
Use the new git__joinpath to build paths in methods
The `git__joinpath` function has been changed to use a statically
allocated buffer; we assume the buffer to be 4096 bytes, because fuck
you.
The new method also supports an arbritrary number of paths to join,
which may come in handy in the future.
Some methods which were manually joining paths with `strcpy` now use the
new function, namely those in `index.c` and `refs.c`.
Based on Emeric Fermas' original patch, which was using the old
`git__joinpath` because I'm stupid. Thanks!
Signed-off-by: Vicent Marti <tanoku@gmail.com>
- |-
Update copyright notice.
fuck me sideways i've been working on this thing for a while
doesn't really feel like three years (more like two honestly) when
you're looking back at it
- |-
Remove waitUntilExit as it causes exceptions if a QCPlugin is stopped and quickly restarted. Since NO ONE waits, we can safely tell the background app to fuck off and not worry about it.
git-svn-id: https://openemu.svn.sourceforge.net/svnroot/openemu/branches/iosurface@802 a16923d9-94c8-4a39-ae78-11df2d60a2ba
- |-
Added DO protocol for delegate methods, added control/button release/pressing data. Added a shit psuedo controller UI to Debug App.
git-svn-id: https://openemu.svn.sourceforge.net/svnroot/openemu/branches/iosurface@686 a16923d9-94c8-4a39-ae78-11df2d60a2ba
- fuck autoconf
- fuck it, roll our own socketpairs
- change the way time accel auto-down-thingying works so red giants and other large radius objects don't fuck things up
- fix shader loading problem on win32... I hate stdlib's newline shit
- |-
fix more not closing files. what the fuck was i on when i wrote this code???
git-svn-id: https://pioneer.svn.sourceforge.net/svnroot/pioneer/trunk@692 e632f14b-6550-0410-b89e-a82653faca30
- Cleaned up all warnings. Normalized method names. General cleanup of model mapping API. Shit is getting slick and maintainable!
- |-
So... many... changes...
- Started fleshing out the readme a bit more. It's still a piece of shit though.
- Removed obsolete includes.
- Added vanity bytes.
- Cleaned up the unlikely macro.
- Made in_bounds into a macro to work with size_t as well as pointers.
- Started using in_bounds more liberally in check_invariants.
- Expanded the pipe_*_new function implementations.
- Littered the code with branch prediction.
- Added the pipe_ prefix to ALL exported symbols.
- |-
cleaned up a lot of shit with initializers, moved some code into Utils. fixed some inconsistencies with the ruby path. gave up on the ruby autowatch approach. started to write my own filewatch but I think I'm gonna ditch it because the built in max object works fine.
git-svn-id: svn://quagmire/repo/max/externals/java/src/ajm@153 99bd3f52-245c-3848-8005-63e5fbd5b414
- "Source update only: Modified the ConnectionSpec.RefImpl property setter methods to use method chaining pattern. Breaks the Bean contract but fuck it."
- Ok, shit from testing
- o now you may build with spring 3.x and 2.5.6 by setting 2 system props when building. next step is to profile da shit
- better transfers between SkTreeMaps, and take care of a shit load of corner cases :/
- Moved a bunch of shit into subdirectories
- well, that shit works
- some shit with structure scope captures
- fuck up paths a bit less
- weird shit
- skipping shit
- |-
what the fuck is coding?
minor fixes to the overlay selectors added
- fixing shit that broke
- Fuck it. The path planner is mostly a waste of time.
- |-
FUCK YES
rictic you bastard, PriorityQueue.poll() removes the first element, and
it removed the best one before we even started searching.
also, made a mathematically accurate heuristic, sorta. Uses the secant
method to solve for the number of timesteps taken to reach 7 tiles to
the right under a full run. this turns out to be a slight overestimate
for some unknown reason.
- can't throw exception, shit fails on windows
- |-
ads: add AdMob ads to top of threads list and comments list
Did not want to piss people off too much by putting at bottom
where the next 25/prev 25 buttons are
- |-
There is both success and failure here.
My intent was to move some of the basic sinatra logic to rspec, mostly
to demonstrate some of the cooler methods in the DSL, but then I
noticed that the 500 posts test was dog slow in rspec, mostly because
capybara does its remote testing in an actual browser. This will be
yet another thing to piss CI off. There doesn't seem to be a way to
specify :htmlunit as the browser for the selenium driver to use,
though if you could you'd do it in that new code in spec_helper.rb.
Another option would be to use selenium's :remote browser option,
after starting up say the HtmlUnitDriver driver in another process.
Or we could use the celerity driver, but that doesn't seem to work
well with 0.4.0. So we have a firefox window pop up during our rspec
tests for now.
- It might be hard to tell but I fixed plugins not loading on startup. And all this formatting - fuck sakes. All the javadocs too... ugh.
- fuck this again 2
- added submit button so enter key triggers submit event, but make the button completely opaque so it doesn't look like shit
- use bundler08 over bundler until they sort their shit out
- use bundler08 over bundler until they sort their shit out
- Updated colors to look less like a pile of shit on a white background
- fuck wtf
- big fuck around reorg
- permalinks now work; removed legacy urls / fuck it
- fix for spec fuck up
- eventSupported was being called but was undefined so I added that shit
- eventSupported was being called but was undefined so I added that shit
- fixed non binding xhr regexp so it wont fuck up when url has position defining like strings
- another shit hot rem merge
- |-
Compressed the shit out of the code (also enclosed in self invoking fn to help compression)
Removed .first() dependancies
Moved some private methods in to private closure to help compression
Changed XUI so that xui and x$ are the same thing, i.e. self creating object (by passing prototype to find)
- |-
Merge branch 'feature-attachments'
* feature-attachments:
return req from saveAttachment()
allows creating an attachment for a non-existant document
Saving attachments now updates the cache
Basic support for GETting attachments
add streaming support for putting attachments
save attachment should take a callback
argh fuck
more with the attachment support
basic PUT support, assuming we have all the attachment data present
- argh fuck
- argh fuck
- argh fuck people include your .gitmodules
- (dist) fuck I always forget to update this version number
- fuck the buffer
- |-
removed String.toElement - its shit
git-svn-id: http://svn.danwebb.net/external/lowpro/trunk@253 a686c101-5f17-0410-80e1-b267258107f6
- |-
more readme shit
git-svn-id: http://svn.danwebb.net/external/lowpro/trunk@110 a686c101-5f17-0410-80e1-b267258107f6
- Chris does not want to hear your shit
- more awesome shit
- Maybe I shouldn't shit talk IE quite so much in my publicly released code...
- Adding more code to the demo to get this shit up and running.
- fuck all the tests, you're going to have to live without them
- motherfucker
- Fixed shit
- more shit
- Fixed the shit
- ericflo fails at fixing my shit
- do a proper blur (why the fuck doesn't the jquery().blur() do it?
- added new tests for new shit
- "Made memoryReader/memoryWriter pointers to the actual memory arrays, unfortunately safari and google chrome still JIT this shit horribly. \xE0\xB2\xA0_\xE0\xB2\xA0"
- Made a secondary audio buffer for webkit audio so it works properly now, though it still sounds like shit because the webkit_audio build still is slow as crap.
- Make shit work
- shit
- even more awesome UI shit
- even more awesome UI shit
- more awesome UI shit
- added a bunch of ostatus shit
- removed console.logs to it doesn't fuck up other browsers
- |-
Stream and Buffer based read/write loop.
- We moved to sendfile before node.JS had binary buffers. A read write
loop is a lot faster now than back when node was converting everything
to UTF-8 strings. Sendfile isn't needed.
Sendfile(2) was causing all sorts of hassles
- Connections would timeout, then sendfile would try and send out a null
file descriptor
- Sendfile(2) has crap error messages for when the shit hits the fan.
'bad argument'
- Changed port number due to conflict with some PHP server shit
- Holy shit that was painful
- note this shit is way broken on current node.js
- Remove test shit that the test nukes (?)
- Delete that shit already
- Did I mention that I'm rubbish at naming things. I'll start caring about that when I start pulling this shit apart into components for the CPAN when it's past prototype stage. Add stuff to give me syntax to generate methods with a custom metaclass, so that when I introspect - I don't have to use a fucking regex to work out what methods to exclude. We could then sanely support role application, which would be nice - although doing modifiers right is hard. This is also waaay more involved than it should need to be.
- Fuck you pod coverage
- Start my reflector. Factor out the component generation from the other shit into a role
- Thats action registration sorted out. Now I just need to introspect all the models, and generate shim controllers, piece of piss :)
- |-
Start unfucking.
Appears we need to stash the return callback, I think that actually everything in this job worker returns to the same place
and we can entirely simplify a load of shit sh*t away...
- Latest DBD::SQLite really went to shit >:(
- why the fuck does the ar command not work?
- " - Fix META.yml\n - Add some POD to describe why NOT having a default context makes Clicker\n shit on itself.\n - Fix linear gradient in Area renderer.\n\n\n\
git-svn-id: http://our.coldhardcode.com/svn/Chart-Clicker/trunk@6913 1bc25575-cd0e-40ee-878a-d50c9ce4e587"
- |-
fix the concatenated get memory leak on the failure cases.
props to artur for $^P = 0x200 .... holy fucking shit that rules.
git-svn-id: http://code.sixapart.com/svn/perlbal/trunk@562 6caf28e9-730f-0410-b62b-a31386fe13fb
- trying to fix this shit
- |-
use PTYs for subprocess; eliminiate internal use of condvars
* makes Term::ReadLine, etc., work perfectly!
(example pserver.pl demonstrates this)
* eliminiates recursive blocking
(this was actually only a problem on single-core machines;
on my dual-core machine, the "recv" that caused the error
did not actually block :)
* also add small hack to ensure that exit code always serializes to
an Integer, not a String (this helps the Haskell client, which cares
about shit like this)
- |-
Stop pretending the created classes are anonymous
They closed over their own metaclass, so they weren't being cleaned up anyway.
Also debugging was shit as all the instances referenced the metaclass as well.
- FUCK
- I guess just sucking this shit up is the best bet.. And should probably be done in more places, <sigh>.. Better solutions welcome
- |-
Merge 'helper_refactor' into 'trunk'
r10260@t0mlaptop (orig r10259): dhoss | 2009-05-23 22:34:47 +0100
Created new helper refactor branch
r10261@t0mlaptop (orig r10260): dhoss | 2009-05-23 22:43:10 +0100
added temporary test app to diff current C::H generation with progressive api updates
r10262@t0mlaptop (orig r10261): dhoss | 2009-05-23 23:09:30 +0100
added gsoc todo stuff
r10263@t0mlaptop (orig r10262): t0m | 2009-05-24 12:09:45 +0100
Erm, the test app for comparison needs to be generated with the current code, or it doesn't compare the same
r10264@t0mlaptop (orig r10263): t0m | 2009-05-24 12:10:12 +0100
Add script to check that the testapp we generate compares the same
r10265@t0mlaptop (orig r10264): t0m | 2009-05-24 12:10:46 +0100
Adjust ignore props so we don't accidentally commit the wrong TestApp
r10266@t0mlaptop (orig r10265): t0m | 2009-05-24 12:21:15 +0100
Make sure changing the templates makes the test break
r10267@t0mlaptop (orig r10266): t0m | 2009-05-24 12:21:47 +0100
And back out so test passes again
r10311@t0mlaptop (orig r10310): dhoss | 2009-05-27 09:33:17 +0100
Fixed up test to check to see if user has a diff program installed
r10312@t0mlaptop (orig r10311): dhoss | 2009-05-27 10:33:13 +0100
added test file for new file dealings, as well as get_template_files, get_image, and get_version dir. Now using Moose, Path::Class and File::ShareDir
r10313@t0mlaptop (orig r10312): dhoss | 2009-05-27 10:35:17 +0100
changed get_images to get_files so get_file doesn't break (more)
r10314@t0mlaptop (orig r10313): dhoss | 2009-05-27 10:40:41 +0100
need to fix create_files.t to pass (no tests currently being run)
need to fix regex to look for .tt/.tt2 files
r10317@t0mlaptop (orig r10316): t0m | 2009-05-27 20:47:11 +0100
Sharedir in Makefile.PL
r10318@t0mlaptop (orig r10317): t0m | 2009-05-27 20:51:45 +0100
Fix not generating any files by: svn merge -r 10313:10310 .
r10319@t0mlaptop (orig r10318): t0m | 2009-05-27 21:07:17 +0100
Make the favicon be in the sharedir
r10333@t0mlaptop (orig r10332): dhoss | 2009-05-28 07:35:44 +0100
pulled all files out, i believe i got everything.
fixed code to use File::ShareDir instead of __DATA__
r10334@t0mlaptop (orig r10333): dhoss | 2009-05-28 07:36:45 +0100
added lingering files
r10335@t0mlaptop (orig r10334): dhoss | 2009-05-28 07:37:35 +0100
removed wrongly named tt files
r10336@t0mlaptop (orig r10335): dhoss | 2009-05-28 07:51:17 +0100
added missing test files
r10337@t0mlaptop (orig r10336): dhoss | 2009-05-28 09:26:39 +0100
unfucked get_file
r10338@t0mlaptop (orig r10337): dhoss | 2009-05-28 09:47:32 +0100
added # Do not touch this method, *EVER*, it is needed for back compat.
comment to respective methods
r10339@t0mlaptop (orig r10338): t0m | 2009-05-28 09:51:11 +0100
Fix image files
r10340@t0mlaptop (orig r10339): dhoss | 2009-05-28 10:09:20 +0100
added stuff to gsoc plan
r10341@t0mlaptop (orig r10340): dhoss | 2009-05-28 10:17:30 +0100
removed crap
r10355@t0mlaptop (orig r10354): dhoss | 2009-05-29 09:39:42 +0100
added a few fixes
r10356@t0mlaptop (orig r10355): t0m | 2009-05-29 09:40:05 +0100
Give a shit about blank lines, I do not
r10357@t0mlaptop (orig r10356): t0m | 2009-05-29 09:56:30 +0100
Should detect if we're in a checkout. I'm still not happy with this
r10384@t0mlaptop (orig r10383): dhoss | 2009-05-30 03:14:36 +0100
updated todo
r10387@t0mlaptop (orig r10386): dhoss | 2009-05-30 07:55:18 +0100
restructured dirs. need to write test to test how helper is invoked. also need to get helper to play with new dir struct well
r10398@t0mlaptop (orig r10397): dhoss | 2009-05-30 23:57:34 +0100
fixed invocation test
r10399@t0mlaptop (orig r10398): dhoss | 2009-05-31 00:02:23 +0100
updated todo, rfc time?
r10416@t0mlaptop (orig r10415): dhoss | 2009-06-02 05:32:11 +0100
updated todo
r10417@t0mlaptop (orig r10416): dhoss | 2009-06-02 06:43:38 +0100
updated todo again (kd: bug fixes)
r10428@t0mlaptop (orig r10427): dhoss | 2009-06-04 02:06:21 +0100
updated todo
r10429@t0mlaptop (orig r10428): dhoss | 2009-06-04 02:56:16 +0100
Added deprecated methods test.
Renamed .png files to .png.bin
split up render_file into a method to take in new template files
and a backwards compatible method to take in __DATA__.
2/3 tests pass for this, but the render_file test in back_compat.t is
still having issues.
r10430@t0mlaptop (orig r10429): dhoss | 2009-06-04 03:44:15 +0100
added list of done stuff to keep track of
r10481@t0mlaptop (orig r10480): dhoss | 2009-06-09 07:10:23 +0100
added static directory, removed .png files
r10482@t0mlaptop (orig r10481): dhoss | 2009-06-09 07:25:01 +0100
removed old invocation checking test
r10483@t0mlaptop (orig r10482): dhoss | 2009-06-09 08:20:45 +0100
fixed render_sharedir_file, we were passing $self twice
r10484@t0mlaptop (orig r10483): dhoss | 2009-06-09 09:00:37 +0100
tests now pass!
r10487@t0mlaptop (orig r10486): dhoss | 2009-06-09 10:25:09 +0100
updated list of things done
r10488@t0mlaptop (orig r10487): dhoss | 2009-06-09 10:26:45 +0100
updated TODO
r10508@t0mlaptop (orig r10507): t0m | 2009-06-12 01:29:43 +0100
Basic test for get_sharedir_file
r10509@t0mlaptop (orig r10508): t0m | 2009-06-12 01:42:35 +0100
Unfuck, tests pass again
r10510@t0mlaptop (orig r10509): t0m | 2009-06-12 01:42:45 +0100
Delete crap
r10511@t0mlaptop (orig r10510): t0m | 2009-06-12 01:44:41 +0100
Fix favicon to final location, delete more crap
r10512@t0mlaptop (orig r10511): t0m | 2009-06-12 01:46:25 +0100
Remove more crap
r10513@t0mlaptop (orig r10512): t0m | 2009-06-12 01:47:18 +0100
Stuff removal from root/ finished
r10514@t0mlaptop (orig r10513): t0m | 2009-06-12 01:49:51 +0100
Move images to correct place
r10515@t0mlaptop (orig r10514): dhoss | 2009-06-12 01:58:04 +0100
renamed!
r10517@t0mlaptop (orig r10516): t0m | 2009-06-12 10:00:11 +0100
Fix Helper.pm, additional rename
r10520@t0mlaptop (orig r10519): t0m | 2009-06-13 00:32:53 +0100
Be consistent with renaming
r10521@t0mlaptop (orig r10520): dhoss | 2009-06-13 00:56:46 +0100
updated todo
r10522@t0mlaptop (orig r10521): dhoss | 2009-06-13 01:07:51 +0100
removed TestAppForInvocation
r10523@t0mlaptop (orig r10522): t0m | 2009-06-13 01:08:07 +0100
Misspelled, useless test. dhoss - please rename and run with this crap?
r10524@t0mlaptop (orig r10523): dhoss | 2009-06-13 01:11:10 +0100
renamed per request of senor t0m
r10525@t0mlaptop (orig r10524): dhoss | 2009-06-13 01:30:28 +0100
Fixed podcoverage
r10537@t0mlaptop (orig r10536): t0m | 2009-06-14 20:14:09 +0100
remove warning.
r10544@t0mlaptop (orig r10543): dhoss | 2009-06-15 22:52:27 +0100
fixed apptest.tt per #PXVL (hiveminder)
removed stupid SKIP line in check_testapp_the_same (not needed)
r10545@t0mlaptop (orig r10544): dhoss | 2009-06-15 23:13:34 +0100
lolwut.
some fuckery with this test now. HALP ME t0m
r10546@t0mlaptop (orig r10545): t0m | 2009-06-15 23:18:35 +0100
Erm, the app wasn't there..
r10549@t0mlaptop (orig r10548): t0m | 2009-06-16 09:27:20 +0100
Nuke comparison testapp test. It has done it's job now well enough and can be replaced with more fine grained tests now
r10567@t0mlaptop (orig r10566): dhoss | 2009-06-17 10:16:05 +0100
renamed scripts
r10568@t0mlaptop (orig r10567): dhoss | 2009-06-17 10:21:13 +0100
renamed tests
r10569@t0mlaptop (orig r10568): dhoss | 2009-06-17 10:28:00 +0100
renamed these two files
r10570@t0mlaptop (orig r10569): dhoss | 2009-06-17 10:31:10 +0100
fixed paths to proper files
r10571@t0mlaptop (orig r10570): dhoss | 2009-06-17 10:55:28 +0100
added names to generated_app.t
reverted 01app.t to old version so that compatability remains (for now)
made changes to C::Helper.pm to reflect new and moar bettar names
r10572@t0mlaptop (orig r10571): dhoss | 2009-06-17 11:12:27 +0100
updated changelog
r10573@t0mlaptop (orig r10572): dhoss | 2009-06-17 12:09:18 +0100
added tests for new methods
r10574@t0mlaptop (orig r10573): dhoss | 2009-06-17 12:36:14 +0100
updated todo, and donelist
r10604@t0mlaptop (orig r10603): dhoss | 2009-06-20 16:22:00 +0100
udpated gsoc todo
r10621@t0mlaptop (orig r10620): dhoss | 2009-06-23 19:36:18 +0100
udpated done stuff
r10622@t0mlaptop (orig r10621): dhoss | 2009-06-23 19:58:13 +0100
updated todo
r10628@t0mlaptop (orig r10627): dhoss | 2009-06-23 21:11:08 +0100
added test to check to see if our generated app passes tests
need to fix so that prove -l t/ finds the correct stuff in @INC, or
correct stuff is *put* into @INC. Whatever.
r10629@t0mlaptop (orig r10628): dhoss | 2009-06-23 21:12:50 +0100
updated done list
r10630@t0mlaptop (orig r10629): dhoss | 2009-06-23 21:25:39 +0100
File::Spec->catfile'd everything
r10631@t0mlaptop (orig r10630): dhoss | 2009-06-23 21:26:47 +0100
updated done list
r10633@t0mlaptop (orig r10632): dhoss | 2009-06-23 22:50:11 +0100
updated generated app
fixed 01app.t.tt (had a hardcoded app name in BEGIN {...})
r10634@t0mlaptop (orig r10633): dhoss | 2009-06-23 23:35:53 +0100
moosified server template.
added test to make sure new server works. Can't seem to connect, so
test doesn't pass.
r10635@t0mlaptop (orig r10634): dhoss | 2009-06-23 23:49:55 +0100
added kmx's patch, still fails
r10636@t0mlaptop (orig r10635): dhoss | 2009-06-23 23:52:50 +0100
updated done list
r10637@t0mlaptop (orig r10636): dhoss | 2009-06-24 00:03:47 +0100
updated done
r10642@t0mlaptop (orig r10641): kmx | 2009-06-24 11:13:36 +0100
C::Devel (branche helper_refactor) generated_app.t fixed, now works well for me on Win32 and Linux
r10665@t0mlaptop (orig r10664): dhoss | 2009-06-25 11:44:03 +0100
updated script templates to reflect new -Runtime scripts
r10715@t0mlaptop (orig r10714): t0m | 2009-06-28 23:07:24 +0100
Clean up crap
r10716@t0mlaptop (orig r10715): t0m | 2009-06-28 23:26:50 +0100
Avoid .svn in your sharedir problem by adding an INSTALL.SKIP file
r10719@t0mlaptop (orig r10718): t0m | 2009-06-29 00:11:42 +0100
Somewhat fix the scripts and tests
r10767@t0mlaptop (orig r10766): t0m | 2009-07-01 00:53:59 +0100
This is even more horrible, but stops catalyst.pl from being bork in checkouts
r10864@t0mlaptop (orig r10863): dhoss | 2009-07-12 01:13:56 +0100
fixed path to comptest.tt
r10868@t0mlaptop (orig r10867): dhoss | 2009-07-12 03:20:33 +0100
fixed compclass
r10871@t0mlaptop (orig r10870): t0m | 2009-07-12 18:29:43 +0100
Strip trailing whitespace
r10872@t0mlaptop (orig r10871): t0m | 2009-07-12 18:31:24 +0100
Fix Makefile.PL
r10873@t0mlaptop (orig r10872): t0m | 2009-07-12 18:31:46 +0100
Clean up
r10874@t0mlaptop (orig r10873): dhoss | 2009-07-12 18:43:03 +0100
unfucked
r10875@t0mlaptop (orig r10874): t0m | 2009-07-12 18:44:06 +0100
Fix issues
r10895@t0mlaptop (orig r10894): dhoss | 2009-07-16 10:26:40 +0100
added myapp_deploy_schema prototype
r10914@t0mlaptop (orig r10913): dhoss | 2009-07-17 02:51:03 +0100
added DBIx::Class schema "migration" script + test in generated_app.t
r10979@t0mlaptop (orig r10978): dhoss | 2009-07-25 00:38:48 +0100
added frif's patch
r11223@t0mlaptop (orig r11222): dhoss | 2009-08-23 22:32:35 +0100
cleaned up File::Spec->cat(file|dir) stuff
r11224@t0mlaptop (orig r11223): dhoss | 2009-08-23 22:59:26 +0100
added some notes, and removed $self->_mk_dbic_deploy since it's not going to be default
r11225@t0mlaptop (orig r11224): dhoss | 2009-08-23 23:03:59 +0100
cleaned up steps to create an app/component
r11335@t0mlaptop (orig r11306): t0m | 2009-09-05 16:15:20 +0100
r11313@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:03:30 +0100
Clean up, no moose here.
r11336@t0mlaptop (orig r11307): t0m | 2009-09-05 16:15:25 +0100
r11314@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:04:58 +0100
Remove gsoc notes
r11337@t0mlaptop (orig r11308): t0m | 2009-09-05 16:15:31 +0100
r11315@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:08:47 +0100
Tidy up dependencies
r11338@t0mlaptop (orig r11309): t0m | 2009-09-05 16:15:37 +0100
r11316@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:11:59 +0100
Change generated application skeleton to use Moose
r11339@t0mlaptop (orig r11310): t0m | 2009-09-05 16:15:44 +0100
r11317@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:23:28 +0100
Fix syntax errors and warnings
r11340@t0mlaptop (orig r11311): t0m | 2009-09-05 16:15:48 +0100
r11318@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:30:42 +0100
Add Moose so we have a constructor and fix changes generation
r11341@t0mlaptop (orig r11312): t0m | 2009-09-05 16:15:50 +0100
r11319@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:32:51 +0100
Remove dbic deploy stub
r11371@t0mlaptop (orig r11341): dhoss | 2009-09-09 18:27:25 +0100
added example skeleton
r11372@t0mlaptop (orig r11342): dhoss | 2009-09-09 18:33:13 +0100
moved stuff around so that it sorta reflects a real Catalyst app
r11411@t0mlaptop (orig r11381): zts | 2009-09-17 23:20:48 +0100
Fixed get_sharedir_file.t checking for the wrong exception text.
r11490@t0mlaptop (orig r11460): t0m | 2009-10-05 23:11:21 +0100
Fix the restarter in devel branch hopefully
r11496@t0mlaptop (orig r11462): t0m | 2009-10-05 23:58:56 +0100
r11492@t0mlaptop: t0m | 2009-10-05 23:23:34 +0100
Remove spurios warning. Remove dead script. Still fails, CURSE YOU
r11497@t0mlaptop (orig r11463): t0m | 2009-10-05 23:59:03 +0100
r11493@t0mlaptop: t0m | 2009-10-05 23:52:34 +0100
Call config as a method rather than poking the hash directly. Less gross
r11498@t0mlaptop (orig r11464): t0m | 2009-10-05 23:59:11 +0100
r11494@t0mlaptop: t0m | 2009-10-05 23:59:22 +0100
More cleanups in the generated skeleton app
r11848@t0mlaptop (orig r11813): t0m | 2009-11-13 00:56:03 +0000
Fix docs, put SCRIPT_GEN back in the server scripts
r11849@t0mlaptop (orig r11814): t0m | 2009-11-13 00:56:37 +0000
Remove crap
r12048@t0mlaptop (orig r12013): t0m | 2009-11-25 21:04:38 +0000
Bigger than the current version
r12049@t0mlaptop (orig r12014): t0m | 2009-11-25 21:22:17 +0000
Fix issues, more tests
r12073@t0mlaptop (orig r12038): t0m | 2009-11-26 22:58:09 +0000
Remove dependency on parent.pm and remove from generated component classes
r12074@t0mlaptop (orig r12039): t0m | 2009-11-26 22:58:38 +0000
Add a short todo list
r12075@t0mlaptop (orig r12040): t0m | 2009-11-26 23:06:57 +0000
Update options
r12076@t0mlaptop (orig r12041): t0m | 2009-11-26 23:21:07 +0000
These have gone
r12077@t0mlaptop (orig r12042): t0m | 2009-11-26 23:22:25 +0000
Actually switch the create script to new script style. Testing I did yesterday obviously lies
r12078@t0mlaptop (orig r12043): t0m | 2009-11-26 23:25:07 +0000
No, it needs to be left so that other components outside devel still work
r12080@t0mlaptop (orig r12045): t0m | 2009-11-26 23:42:06 +0000
Remove the ability to generate short name apps. Refactor trivial stuff into attributes
r12081@t0mlaptop (orig r12046): t0m | 2009-11-26 23:42:31 +0000
We already need namespace::clean directly, so depend on it
r12082@t0mlaptop (orig r12047): t0m | 2009-11-27 00:38:51 +0000
More refactoring. Yes, there are too many attributes at the moment.
r12083@t0mlaptop (orig r12048): t0m | 2009-11-27 01:15:59 +0000
Fix bugs
r12084@t0mlaptop (orig r12049): t0m | 2009-11-27 01:16:43 +0000
Return true from the tests so that I can require them
r12085@t0mlaptop (orig r12050): t0m | 2009-11-27 01:17:35 +0000
Properly fix the generated app test. Run tests in the generated app using the new subtest stuff in Test::More
r12086@t0mlaptop (orig r12051): t0m | 2009-11-27 01:18:47 +0000
What was that for, die in fire
r12087@t0mlaptop (orig r12052): t0m | 2009-11-27 01:44:43 +0000
Fix up all test tests
r12088@t0mlaptop (orig r12053): t0m | 2009-11-27 02:07:28 +0000
More tests, bump required Cat version, update TODO
r12090@t0mlaptop (orig r12055): t0m | 2009-11-27 03:21:18 +0000
Add more tests, kill off the required attributes and start instead building a data structure which is waaay more sane. Component generation now works again and has tests, except it fails for controllers - guess I probably knackered the template
r12137@t0mlaptop (orig r12102): t0m | 2009-12-01 02:29:08 +0000
Rip out all the refactoring as it doesn't really go anywhere and things are still horrible. I think app generation can/should just be hit with a big stick instead. This breaks component generation, to be fixed
r12139@t0mlaptop (orig r12104): t0m | 2009-12-01 02:47:08 +0000
Fix bug with generated component classes and an issue with the test
r12140@t0mlaptop (orig r12105): t0m | 2009-12-01 02:58:26 +0000
All got tested
r12141@t0mlaptop (orig r12106): t0m | 2009-12-01 03:04:21 +0000
TT helper still works just fine
r12142@t0mlaptop (orig r12107): t0m | 2009-12-01 03:06:55 +0000
Less extra whitespace, use done_testing rather than have a test count
r12143@t0mlaptop (orig r12108): t0m | 2009-12-01 03:22:58 +0000
Depend on default plugin versions which won't spit warnings everywhere
r12144@t0mlaptop (orig r12109): t0m | 2009-12-01 03:24:12 +0000
Changelog the branch
r12145@t0mlaptop (orig r12110): t0m | 2009-12-01 03:28:48 +0000
Move the local ENV to the right place
- Give a shit about blank lines, I do not
- " r13096@spaceinvaders (orig r13060): rafl | 2010-03-22 10:30:30 +0000\n It's --help, not -help.\n r13098@spaceinvaders (orig r13062): miyagawa | 2010-03-22 11:07:22 +0000\n added cpanm :)\n r13099@spaceinvaders (orig r13063): ijw | 2010-03-22 11:30:38 +0000\n Disabled name lookup for server hostname in favour of returning IP address. Annoyingly, I can't find any actual use of the name in this module (it's passed as SERVER_NAME in the env), but we believe it ends up in the 'Host' header.\n r13100@spaceinvaders (orig r13064): rafl | 2010-03-22 12:32:25 +0000\n no tabs. kthx!\n r13118@spaceinvaders (orig r13082): rafl | 2010-03-26 16:00:54 +0000\n Make sure to construct Upload objects properly, even if there are multiple Content-Type headers.\n \n Closes RT#55976.\n r13119@spaceinvaders (orig r13083): t0m | 2010-03-28 17:43:37 +0100\n Back out 13063. This changes the CGI environment we construct to just be plain wrong, SERVER_NAME is meant to be a name after all. I have a feeling that all of this crap could be simplified, but I don't want to spend a lot of tuits changing it (and possibly breaking things for people with non-obvious behaviour changes like this one) - when those tuits could be spent on Plack stuff so that all this code dies anyway (and we do a major release so breakage can be more reasonable expected / extensively tested for). This is all possibly being _too_ paranoid here, but given the original commit didn't know what was happening / what changed _at all_, I think that's fair..\n r13120@spaceinvaders (orig r13084): t0m | 2010-03-28 17:54:36 +0100\n Cache the IP address => hostname lookups which could be performed multiple times to mitigate slow DNS servers. Poor man's replacement for 13063\n r13121@spaceinvaders (orig r13085): t0m | 2010-03-28 18:24:18 +0100\n Back out behaviour change in debug logging we don't want, keeping only the addition of 1 line of response info. More refactoring to give hooks to put the behaviour I just removed back from a plugin\n r13122@spaceinvaders (orig r13086): t0m | 2010-03-28 19:18:45 +0100\n More splitting up of the response logging methods\n r13123@spaceinvaders (orig r13087): t0m | 2010-03-28 19:25:41 +0100\n Make the tables from the log_headers method scale to term size nicely\n r13139@spaceinvaders (orig r13103): t0m | 2010-03-29 16:55:39 +0100\n Fail, commit version bump\n r13142@spaceinvaders (orig r13106): rafl | 2010-03-29 17:09:05 +0100\n Remove $VERSION hacks.\n \n For future dev releases we'll just use \"-TRIAL\" in the dist name.\n r13143@spaceinvaders (orig r13107): rafl | 2010-03-29 17:19:15 +0100\n We always have a metaclass after setup, right?\n r13152@spaceinvaders (orig r13116): t0m | 2010-03-31 21:09:17 +0100\n Adding ability to switch X-Catalyst on by config. For everyone who would like to let Netcraft know how awesome Catalyst is. (Sorry rafl...)\n r13157@spaceinvaders (orig r13121): rafl | 2010-04-02 00:30:06 +0100\n Import croak, which the test already uses in various places.\n r13160@spaceinvaders (orig r13124): t0m | 2010-04-02 19:27:33 +0100\n Require new CGI::Simple::Cookie, changelog\n r13187@spaceinvaders (orig r13151): t0m | 2010-04-12 20:16:39 +0100\n Fix dsadinoff's mod_rewrite bug I hope\n r13188@spaceinvaders (orig r13152): t0m | 2010-04-12 20:18:04 +0100\n Revert unintentional change in r13151\n r13191@spaceinvaders (orig r13155): t0m | 2010-04-13 22:03:58 +0100\n Fix spelling errors - RT#54335\n r13192@spaceinvaders (orig r13156): t0m | 2010-04-13 23:06:19 +0100\n Fix RT#41442 so that temporary files are always, always cleaned up.\n r13193@spaceinvaders (orig r13157): t0m | 2010-04-13 23:12:13 +0100\n Document return of C::T::get is bytes not characters, RT#53678\n r13194@spaceinvaders (orig r13158): t0m | 2010-04-13 23:18:19 +0100\n Fix RT#49267\n r13195@spaceinvaders (orig r13159): t0m | 2010-04-13 23:29:10 +0100\n Trivial test feature, fixes RT#53653\n r13202@spaceinvaders (orig r13166): t0m | 2010-04-19 00:03:56 +0100\n Fix unquoted regex as per RT#24951\n r13205@spaceinvaders (orig r13169): t0m | 2010-04-19 03:40:24 +0100\n Document the action config here, as people don't seem to find it and this may help..\n r13206@spaceinvaders (orig r13170): t0m | 2010-04-19 03:41:57 +0100\n Bah, accidentally removed..\n r13207@spaceinvaders (orig r13171): t0m | 2010-04-19 08:22:49 +0100\n Go away useless warning\n r13213@spaceinvaders (orig r13177): ajgb | 2010-04-21 12:10:51 +0100\n Fix not stripping backslashes in DispatchType::Regex::uri_for_action\n r15483@spaceinvaders (orig r13190): rafl | 2010-04-28 23:54:04 +0100\n Make sure path_to returns an instance of the right Path::Class class.\n r15484@spaceinvaders (orig r13191): edenc | 2010-04-29 00:29:02 +0100\n minor documentation fix for handle_request\n r15489@spaceinvaders (orig r13193): rafl | 2010-05-03 00:16:25 +0100\n Allow parameterized roles to be applied as plugins.\n r15490@spaceinvaders (orig r13194): t0m | 2010-05-03 00:27:43 +0100\n Back out crazy heuristics\n r15492@spaceinvaders (orig r13196): rafl | 2010-05-03 00:44:30 +0100\n Unbreak tests by actually adding the module they're supposed to test.\n r15494@spaceinvaders (orig r13198): rafl | 2010-05-03 01:51:43 +0100\n Remove useless conditional.\n r15515@spaceinvaders (orig r13219): wreis | 2010-05-06 13:34:10 +0100\n make uri_for a bit cleaner\n r15516@spaceinvaders (orig r13220): wreis | 2010-05-06 14:30:19 +0100\n minor fix for Changes file | add me as a contributor\n r15517@spaceinvaders (orig r13221): rafl | 2010-05-07 22:11:10 +0100\n Pass along options to load_class for plugins.\n r15518@spaceinvaders (orig r13222): rafl | 2010-05-07 22:48:51 +0100\n Changelogging.\n r15519@spaceinvaders (orig r13223): rafl | 2010-05-07 23:06:26 +0100\n Version 5.80023.\n r15535@spaceinvaders (orig r13239): ribasushi | 2010-05-12 12:48:40 +0100\n Better stats API explanation (SpiceMan)\n r15559@spaceinvaders (orig r13263): t0m | 2010-05-15 10:42:58 +0100\n r13208@spaceinvaders (orig r13172): t0m | 2010-04-19 09:54:56 +0200\n Branch to try and fix the request uri stuff.\n \n r13209@spaceinvaders (orig r13173): t0m | 2010-04-19 09:58:37 +0200\n Just add comments to tests, no functional changes\n r13210@spaceinvaders (orig r13174): t0m | 2010-04-19 09:59:14 +0200\n Get it mostly working, except uri_for is still buggered\n r15488@spaceinvaders (orig r13192): t0m | 2010-05-03 00:26:22 +0200\n Revert to old behaviour, allow config for new behaviour. Config option name is rubbish, needs fixing\n r15532@spaceinvaders (orig r13236): t0m | 2010-05-09 01:09:01 +0200\n I hate this name less. Others may feel differently\n r15556@spaceinvaders (orig r13260): t0m | 2010-05-15 10:52:16 +0200\n Simplify madness some more, back to how it looked in the original fix_path_info_decoding branch so that we aren't using dodgy heuristics to determine the path. Alter the prepare_path tests so that they're testing the appropriate config option so that we now have tests for both code paths\n r15557@spaceinvaders (orig r13261): t0m | 2010-05-15 11:20:16 +0200\n Add a pile of docs for the new use_request_uri_for_path setting\n r15558@spaceinvaders (orig r13262): t0m | 2010-05-15 11:38:06 +0200\n Add recommendation\n \n r15560@spaceinvaders (orig r13264): t0m | 2010-05-15 10:55:07 +0100\n Changelog, bump versions, add new contributor :)\n r15567@spaceinvaders (orig r13271): jhannah | 2010-05-19 23:36:21 +0100\n We appear to have a bug where if lazy => 1 isn't set an exception\n occurs.\n \n r15575@spaceinvaders (orig r13279): jhannah | 2010-05-20 20:46:31 +0100\n Oops. I should have TODO'd this one. rafl++\n \n r15577@spaceinvaders (orig r13281): t0m | 2010-05-20 21:31:39 +0100\n r13203@t0mlaptop (orig r13167): t0m | 2010-04-19 02:57:27 +0100\n Branch for doys upcoming metaclass compat fixes.\n \n r13204@t0mlaptop (orig r13168): t0m | 2010-04-19 03:02:36 +0100\n Remove the fugly hack to avoid metaclass compat issues now that Moose is fixed\n \n r15584@spaceinvaders (orig r13282): t0m | 2010-05-20 21:34:34 +0100\n Changelog and dep bump for more_metaclass_compat branch merge\n r15585@spaceinvaders (orig r13283): t0m | 2010-05-20 21:35:20 +0100\n Back out hunks I accidentally committed\n r15598@spaceinvaders (orig r13296): t0m | 2010-05-22 11:17:18 +0100\n Changelog, bump Moose dep\n r15599@spaceinvaders (orig r13297): t0m | 2010-05-22 11:18:14 +0100\n r15581@spaceinvaders: t0m | 2010-05-21 18:11:33 +0100\n Mech tests branch\n r15582@spaceinvaders: t0m | 2010-05-21 18:20:01 +0100\n Fix --mech as reportedon list as 'create controller 'option' -mechanize fails'\n r15583@spaceinvaders: t0m | 2010-05-21 18:21:18 +0100\n Fix missing - in option, options must be --\n \n r15645@spaceinvaders (orig r13336): t0m | 2010-06-10 10:54:11 +0100\n Fix $self vs $class, davewood++\n r15660@spaceinvaders (orig r13351): rainboxx | 2010-06-15 12:53:05 +0100\n Applied doc patches that might help to figure out how to receive component's config values.\n r15672@spaceinvaders (orig r13363): jester | 2010-06-22 21:47:45 +0100\n Fixed typo\n \n r15674@spaceinvaders (orig r13365): bricas | 2010-06-24 13:52:20 +0100\n add typo fix to Changes\n r15689@spaceinvaders (orig r13380): arcanez | 2010-07-03 01:04:07 +0100\n remove extra '\n r15716@spaceinvaders (orig r13407): hobbs | 2010-07-09 10:40:44 +0100\n Try harder to make finalize_error encoding-safe.\n \n r15750@spaceinvaders (orig r13441): t0m | 2010-07-28 22:39:41 +0100\n r15666@spaceinvaders (orig r13357): jnapiorkowski | 2010-06-16 20:12:46 +0100\n new branch\n r15667@spaceinvaders (orig r13358): jnapiorkowski | 2010-06-16 20:55:08 +0100\n broke out and documented action_class method\n r15749@spaceinvaders (orig r13440): t0m | 2010-07-28 22:39:32 +0100\n Changelog\n \n r15755@spaceinvaders (orig r13446): t0m | 2010-07-28 23:00:14 +0100\n r15662@spaceinvaders (orig r13353): t0m | 2010-06-15 22:15:31 +0100\n Branch for rt58057\n \n r15663@spaceinvaders (orig r13354): t0m | 2010-06-15 22:17:32 +0100\n Commit standalone test, test which makes the TestApp blow up and the nasty workaround\n r15726@spaceinvaders (orig r13417): t0m | 2010-07-23 13:29:21 +0100\n I know hobbs has a patch to add a load of these, but we should at least add (es)\n r15753@spaceinvaders (orig r13444): t0m | 2010-07-28 22:56:25 +0100\n Entirely the wrong branch, idiot. Remove r13417\n r15754@spaceinvaders (orig r13445): t0m | 2010-07-28 23:00:05 +0100\n Document the horrible, changelog. I'm going to merge this and fix a real issue as I don't have time to fuck around inside Moose right now and it's been waiting way too long already\n \n r15756@spaceinvaders (orig r13447): t0m | 2010-07-28 23:26:21 +0100\n Fix TODO tests.\n r15757@spaceinvaders (orig r13448): t0m | 2010-07-28 23:26:31 +0100\n Whitespace\n\n\n\
git-svn-id: http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/branches/fix_iis_cgi@13449 4ad37cd2-5fec-0310-835f-b3785c72a374"
- " r15662@spaceinvaders (orig r13353): t0m | 2010-06-15 22:15:31 +0100\n Branch for rt58057\n \n r15663@spaceinvaders (orig r13354): t0m | 2010-06-15 22:17:32 +0100\n Commit standalone test, test which makes the TestApp blow up and the nasty workaround\n r15726@spaceinvaders (orig r13417): t0m | 2010-07-23 13:29:21 +0100\n I know hobbs has a patch to add a load of these, but we should at least add (es)\n r15753@spaceinvaders (orig r13444): t0m | 2010-07-28 22:56:25 +0100\n Entirely the wrong branch, idiot. Remove r13417\n r15754@spaceinvaders (orig r13445): t0m | 2010-07-28 23:00:05 +0100\n Document the horrible, changelog. I'm going to merge this and fix a real issue as I don't have time to fuck around inside Moose right now and it's been waiting way too long already\n\n\n\
git-svn-id: http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk@13446 4ad37cd2-5fec-0310-835f-b3785c72a374"
- |-
Document the horrible, changelog. I'm going to merge this and fix a real issue as I don't have time to fuck around inside Moose right now and it's been waiting way too long already
git-svn-id: http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/branches/rt58057@13445 4ad37cd2-5fec-0310-835f-b3785c72a374
- " r10824@t0mlaptop (orig r10823): autarch | 2009-07-07 21:58:31 +0100\n Deleted the old Restarter and associated code.\n \n Also removed the dep on File::Modified\n r10831@t0mlaptop (orig r10830): t0m | 2009-07-08 21:11:57 +0100\n U R DOIN IT WRONG.\n r10836@t0mlaptop (orig r10835): t0m | 2009-07-08 23:12:29 +0100\n More ->config fixes + Changelog\n r10852@t0mlaptop (orig r10851): t0m | 2009-07-11 13:51:07 +0100\n Less lies in the deprecated block comment in Dispatcher.pm as it's throwing people off\n r10862@t0mlaptop (orig r10861): groditi | 2009-07-11 23:07:47 +0100\n private_path method for actions that returns a string suitable for use in forward and unit tests for the rest of catalyst::Action\n r10865@t0mlaptop (orig r10864): t0m | 2009-07-12 01:56:51 +0100\n Fix test\n r10866@t0mlaptop (orig r10865): t0m | 2009-07-12 01:57:19 +0100\n Refactor to remove warning\n r10885@t0mlaptop (orig r10884): t0m | 2009-07-14 21:25:03 +0100\n Fix Makefile.PL to actually do the right thing on Lepoard (alledgedly), and encourage someone to contribute to maintaining our protection against Apple :)\n r10892@t0mlaptop (orig r10891): dandv | 2009-07-16 02:12:59 +0100\n Fixed POD links to get and request\n r10893@t0mlaptop (orig r10892): dandv | 2009-07-16 06:24:10 +0100\n Could not have made a more insignificant patch\n r10898@t0mlaptop (orig r10897): t0m | 2009-07-16 22:05:25 +0100\n Special move for CX::Component::Traits. No tests, please don't look.\n r10899@t0mlaptop (orig r10898): t0m | 2009-07-16 22:12:49 +0100\n Remove 10897, this hack kinda works, but then leads to more issues. Gonna branch\n r10900@t0mlaptop (orig r10899): t0m | 2009-07-16 22:24:11 +0100\n Write that down\n r10915@t0mlaptop (orig r10914): dandv | 2009-07-17 06:18:22 +0100\n Hyperlinked POD entry for Catalysy::Request->args\n r10941@t0mlaptop (orig r10940): jester | 2009-07-22 13:46:29 +0100\n Changed link from C::Base to C::Controller; fixed my alias\n r10962@t0mlaptop (orig r10961): hobbs | 2009-07-23 05:46:43 +0100\n Depend on Module::Pluggable 3.9 to resolve a bug with inner packages in tests.\n \n r10963@t0mlaptop (orig r10962): hobbs | 2009-07-23 10:32:08 +0100\n Test and Changelog entry for r10961.\n \n r10981@t0mlaptop (orig r10980): t0m | 2009-07-25 22:05:19 +0100\n Remove dead and unused method\n r10985@t0mlaptop (orig r10984): autarch | 2009-07-26 03:14:23 +0100\n fix spelling of attributes in the test name\n r10986@t0mlaptop (orig r10985): dandv | 2009-07-26 08:13:19 +0100\n Fixed a bunch of POD hyperlinks in Catalyst.pm and minor punctuation in Catalyst::Action\n r10994@t0mlaptop (orig r10993): kmx | 2009-07-28 16:26:44 +0100\n C::Engine::FastCGI (_fix_env) - Microsoft IIS on Windows 2008 R2 has version string \"IIS/7.5\" that was not supported; this patch makes test condition more general, accepting versions from IIS/6.0 to IIS/9.9 (should be enough for a while)\n r10995@t0mlaptop (orig r10994): hobbs | 2009-07-29 01:33:25 +0100\n Rewrite the POD for $c->uri_for().\n \n Reintroduce some bits of information that were lost in 5.7->5.8, and remove\n a misleading statement about $c->action. Recommend the use of uri_for_action\n with a private action path.\n \n \n r10996@t0mlaptop (orig r10995): hobbs | 2009-07-29 01:59:19 +0100\n Update Changes and add me to Contributors\n r10997@t0mlaptop (orig r10996): hobbs | 2009-07-29 02:06:09 +0100\n Add konobi to contributors\n r10998@t0mlaptop (orig r10997): hobbs | 2009-07-29 02:35:11 +0100\n Changes entry for r10993\n r11009@t0mlaptop (orig r11008): t0m | 2009-07-30 15:31:26 +0100\n Add to TODO so I don't have to grep backlog later when I have tuits\n r11013@t0mlaptop (orig r11012): t0m | 2009-07-31 02:46:00 +0100\n Large TODO update\n r11019@t0mlaptop (orig r11018): t0m | 2009-08-01 01:39:39 +0100\n Merge branch pass_component_names:\n \n svn merge -r 10899:10927 http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/branches/pass_component_names\n r11021@t0mlaptop (orig r11020): t0m | 2009-08-01 03:00:23 +0100\n Aww, crap, fail. merge 10927:HEAD from pass_component_names\n r11024@t0mlaptop (orig r11023): caelum | 2009-08-01 20:04:08 +0100\n allow uri_for($controller_instance)\n r11035@t0mlaptop (orig r11034): t0m | 2009-08-05 20:39:01 +0100\n Require perl 5.8.6\n r11038@t0mlaptop (orig r11037): hobbs | 2009-08-06 10:57:02 +0100\n Add a method to the stats object to get the request start time.\n \n r11048@t0mlaptop (orig r11047): t0m | 2009-08-07 01:15:04 +0100\n Fix the perl version required there also\n r11049@t0mlaptop (orig r11048): t0m | 2009-08-07 01:24:17 +0100\n Blow up if we're in author mode and don't have the right M::I extensions\n r11050@t0mlaptop (orig r11049): t0m | 2009-08-07 01:57:21 +0100\n Bump MX::MA dep for anon class tests\n r11058@t0mlaptop (orig r11057): gbjk | 2009-08-07 17:45:03 +0100\n DispatchType::Chained fix for default args attribute to handle Args(0) vs Args() at depth.\n \n r11059@t0mlaptop (orig r11058): gbjk | 2009-08-07 18:17:15 +0100\n DispatchType::Chained fix failing test of Args(0) vs Args(0) on surface\n \n r11062@t0mlaptop (orig r11061): gbjk | 2009-08-07 22:17:22 +0100\n Engine::HTTP - Fix paths for HTTP requests with scheme and domain in URI.\n \n r11064@t0mlaptop (orig r11063): groditi | 2009-08-08 22:54:04 +0100\n make debug output prettier with large widths\n r11065@t0mlaptop (orig r11064): groditi | 2009-08-08 22:54:46 +0100\n oops debug output got leaked in\n r11069@t0mlaptop (orig r11068): t0m | 2009-08-09 13:36:20 +0100\n Fix RT#48555\n r11070@t0mlaptop (orig r11069): t0m | 2009-08-09 13:36:55 +0100\n Updates changelog\n r11071@t0mlaptop (orig r11070): t0m | 2009-08-09 15:22:21 +0100\n Rewrite fixes for RT#48555\n r11123@t0mlaptop (orig r11122): t0m | 2009-08-11 22:49:37 +0100\n Unfuck Catalyst::View::JSON\n r11125@t0mlaptop (orig r11124): t0m | 2009-08-11 23:32:47 +0100\n Apply patch from RT#48623 to fix headers in Engine::HTTP\n r11127@t0mlaptop (orig r11126): rjbs | 2009-08-12 00:33:18 +0100\n svn merge -r 11123:11125 branches/locate_components/ trunk/\n r11128@t0mlaptop (orig r11127): rjbs | 2009-08-12 00:34:12 +0100\n add changelog entry for merged locate_components branch\n r11130@t0mlaptop (orig r11129): t0m | 2009-08-12 01:15:51 +0100\n Tiny change to make the error make more sense\n r11132@t0mlaptop (orig r11131): t0m | 2009-08-12 02:09:09 +0100\n Split test out into a more proper app, so that the test no longer relies on the metaclass initialization hacking occurring in ->setup_component, as I want to move it\n r11133@t0mlaptop (orig r11132): t0m | 2009-08-12 02:11:07 +0100\n Blow up rather than failing to call ->can if everything is totally screwed\n r11134@t0mlaptop (orig r11133): rafl | 2009-08-12 03:54:52 +0100\n Fix POD refering to CGI::Cookie. We're using CGI::Simple::Cookie.\n \n Courtesy of Forrest Cahoon.\n r11135@t0mlaptop (orig r11134): t0m | 2009-08-12 12:03:06 +0100\n Make the code much clearer about what is going on, and remove the horrible map and grep which I hated.\n r11140@t0mlaptop (orig r11139): rafl | 2009-08-16 10:19:58 +0100\n Do at least one (possibly empty) write when reading the response body from a filehandle.\n r11145@t0mlaptop (orig r11144): jshirley | 2009-08-17 22:33:17 +0100\n Adding and documented X-Forwarded-Port\n r11146@t0mlaptop (orig r11145): t0m | 2009-08-17 23:08:19 +0100\n Capitalisation fixes in Changelog\n r11147@t0mlaptop (orig r11146): t0m | 2009-08-17 23:11:34 +0100\n Add _component_name stuff to Changes\n r11148@t0mlaptop (orig r11147): jshirley | 2009-08-17 23:13:05 +0100\n Conflict resolution\n r11149@t0mlaptop (orig r11148): hobbs | 2009-08-17 23:24:46 +0100\n Changelog for r11037\n \n r11150@t0mlaptop (orig r11149): t0m | 2009-08-18 00:14:38 +0100\n Switch to catalyst_component_name\n r11154@t0mlaptop (orig r11153): ferz | 2009-08-18 07:55:14 +0100\n Test case using Exception::Class\n \n r11155@t0mlaptop (orig r11154): ferz | 2009-08-18 12:19:40 +0100\n drop POD comments.\n \n r11166@t0mlaptop (orig r11165): t0m | 2009-08-19 20:03:01 +0100\n Move test to make more sense in my idea of the naming scheme - t/dead_ is for tests which check the app pukes, which this shouldn't\n r11167@t0mlaptop (orig r11166): t0m | 2009-08-19 20:04:59 +0100\n Fail commit was fail. Back out the part I didn't want\n r11168@t0mlaptop (orig r11167): t0m | 2009-08-19 20:10:06 +0100\n Remove r11058 - the commit message is lies, it does not fix the TODO test\n r11169@t0mlaptop (orig r11168): t0m | 2009-08-19 21:21:44 +0100\n Back out r11057 which breaks one of the chained tests, whilst not fixing the bug in question\n r11170@t0mlaptop (orig r11169): t0m | 2009-08-19 21:29:16 +0100\n Clean up test app for the exception test, as we don't want to depend on Test::Class thanks\n r11171@t0mlaptop (orig r11170): rafl | 2009-08-19 21:45:45 +0100\n Changelog Engine::finalize_body changes.\n r11181@t0mlaptop (orig r11180): gbjk | 2009-08-21 14:07:54 +0100\n Changelog update for previous Catalyst::Engine::HTTP fix.\n \n r11182@t0mlaptop (orig r11181): rafl | 2009-08-21 16:51:26 +0100\n Now we don't have the broken restarter engine anymore, we conflict with old Catalyst::Devel versions, that don't have the new restarter yet.\n r11183@t0mlaptop (orig r11182): rafl | 2009-08-21 17:12:57 +0100\n Conflict with the latest mason view, which blows up because of the new component_name constructor arg.\n r11184@t0mlaptop (orig r11183): rafl | 2009-08-21 17:13:05 +0100\n Version 5.80008.\n r11190@t0mlaptop (orig r11189): t0m | 2009-08-21 20:54:58 +0100\n Fix and tests for big issue in 5.80008\n r11191@t0mlaptop (orig r11190): rafl | 2009-08-21 21:28:30 +0100\n Version 5.80009.\n r11193@t0mlaptop (orig r11192): rafl | 2009-08-21 21:55:25 +0100\n DOH! do more than one read, if necessary.\n r11194@t0mlaptop (orig r11193): rafl | 2009-08-21 22:22:36 +0100\n Do what we want instead of exiting a sub via last.\n r11195@t0mlaptop (orig r11194): rafl | 2009-08-21 22:22:45 +0100\n Add test for sending the body from a filehandle with more data than the default chunksize of 64k.\n r11196@t0mlaptop (orig r11195): rafl | 2009-08-21 22:31:38 +0100\n Changelogging.\n r11197@t0mlaptop (orig r11196): rafl | 2009-08-21 22:41:05 +0100\n Version 5.80010.\n r11215@t0mlaptop (orig r11214): rafl | 2009-08-22 20:56:53 +0100\n Remove leftovers of the restarter engine.\n \n The removed code caused test failures, which weren't apparent due to installed\n copies still being available in everyone's @INC.\n r11218@t0mlaptop (orig r11217): rafl | 2009-08-23 12:46:42 +0100\n Changelogging.\n r11219@t0mlaptop (orig r11218): rafl | 2009-08-23 12:55:48 +0100\n Version 5.80011.\n r11221@t0mlaptop (orig r11220): rafl | 2009-08-23 19:42:17 +0100\n Failing test for component loading\n r11233@t0mlaptop (orig r11232): t0m | 2009-08-24 13:51:03 +0100\n Test fixes for if CATALYST_DEBUG is set to 1.\n r11239@t0mlaptop (orig r11238): t0m | 2009-08-25 12:25:54 +0100\n 0003-Remove-diag-message.patch (marcus)\n r11240@t0mlaptop (orig r11239): t0m | 2009-08-25 12:26:15 +0100\n Fix duplicate components\n r11252@t0mlaptop (orig r11251): frew | 2009-08-26 20:00:01 +0100\n Look! I'm famous! (See Catalyst-Devel)\n r11254@t0mlaptop (orig r11253): dandv | 2009-08-27 01:56:26 +0100\n POD addition: $c->req->body returns a string or a File::Temp object\n r11278@t0mlaptop (orig r11277): t0m | 2009-09-01 02:07:23 +0100\n Nuke skipped test which will never pass\n r11279@t0mlaptop (orig r11278): t0m | 2009-09-01 02:07:47 +0100\n Author tests\n r11280@t0mlaptop (orig r11279): t0m | 2009-09-01 02:09:29 +0100\n t/author in MANFEST\n r11281@t0mlaptop (orig r11280): t0m | 2009-09-01 02:10:46 +0100\n Stop remote tests breaking everything, and force authors to run some remote tests.\n r11282@t0mlaptop (orig r11281): t0m | 2009-09-01 02:11:33 +0100\n Stop calling class data methods on instances + commented out warning\n r11283@t0mlaptop (orig r11282): t0m | 2009-09-01 02:11:45 +0100\n Changelog\n r11300@t0mlaptop (orig r11292): t0m | 2009-09-01 15:11:05 +0100\n Bump versions back to 5.8.4\n r11301@t0mlaptop (orig r11293): t0m | 2009-09-01 15:32:46 +0100\n Changes tweaks\n r11307@t0mlaptop (orig r11299): t0m | 2009-09-02 03:03:58 +0100\n Changelogging\n r11361@t0mlaptop (orig r11331): t0m | 2009-09-07 15:45:01 +0100\n Fix hash key name back to what it used to be for compat, keeping renamed accessor where it was. Tests for this breakage to follow\n r11363@t0mlaptop (orig r11333): t0m | 2009-09-07 21:19:40 +0100\n Test for r11331 + fix to only report each action name once from get_action_methods\n r11364@t0mlaptop (orig r11334): t0m | 2009-09-07 21:21:52 +0100\n I'm an idiot, that totally doesn't work. remove.\n r11365@t0mlaptop (orig r11335): t0m | 2009-09-07 21:25:53 +0100\n AGH. Too tired to be doing this, fucked it up again\n r11366@t0mlaptop (orig r11336): t0m | 2009-09-07 21:33:31 +0100\n Fix duplicate results from get_action_methods. Q. Why didn't I just do that first time round? A: Am idiot.\n r11369@t0mlaptop (orig r11339): marcus | 2009-09-09 18:05:32 +0100\n un-TODO passing TODO tests\n r11370@t0mlaptop (orig r11340): marcus | 2009-09-09 18:08:03 +0100\n Prepare for release\n r11374@t0mlaptop (orig r11344): groditi | 2009-09-09 22:06:59 +0100\n add myself to contributors\n r11375@t0mlaptop (orig r11345): t0m | 2009-09-10 01:13:56 +0100\n Fix warnings in upcoming moose\n r11377@t0mlaptop (orig r11347): t0m | 2009-09-10 02:14:13 +0100\n r11046@t0mlaptop (orig r11045): yousef | 2009-08-07 00:07:07 +0100\n Moved action methods from t/lib/TestApp.pm to t/lib/Test/Controller/Root.pm. Uncommented the if statement in lib/Catalyst/Controller.pm that checks for actions in the appclass.\n \n \n r11378@t0mlaptop (orig r11348): t0m | 2009-09-10 02:20:55 +0100\n Eat the merge mark, svk hates me.\n r11379@t0mlaptop (orig r11349): t0m | 2009-09-10 03:13:04 +0100\n Blargh. Merge branch deprecate_appclass_actions manually, with svn merge http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/branches/deprecate_appclass_actions . after I forgot -l on svk push, but ctrl-C after the first rev meant svk had already committed a merge mark and re-merging did nothing, and removing it didn't do the right thing. Fail cake..\n r11380@t0mlaptop (orig r11350): hobbs | 2009-09-10 08:20:31 +0100\n Rework the C<< $c->go >> documentation a little, hopefully it's more clear.\n \n r11382@t0mlaptop (orig r11352): autarch | 2009-09-11 03:48:29 +0100\n Preserve immutable_options when temporarily making a class mutable\n \n r11383@t0mlaptop (orig r11353): t0m | 2009-09-11 09:18:09 +0100\n Work with old and new Moose\n r11393@t0mlaptop (orig r11363): autarch | 2009-09-14 19:37:25 +0100\n The warning about a class having mutable ancestors has been removed (and was never in a non-dev Moose release)\n \n r11396@t0mlaptop (orig r11366): t0m | 2009-09-15 21:48:19 +0100\n Remove what is now lies from Changes. Bump all the deps which need to be bumped to not crap warnings everywhere\n r11399@t0mlaptop (orig r11369): t0m | 2009-09-16 18:14:29 +0100\n Changelog\n r11400@t0mlaptop (orig r11370): t0m | 2009-09-16 18:15:52 +0100\n Now we depend on latest Moose we are certain to have immutable options\n r11401@t0mlaptop (orig r11371): t0m | 2009-09-17 09:52:34 +0100\n -short is dead, RT#49771\n r11402@t0mlaptop (orig r11372): t0m | 2009-09-17 09:52:52 +0100\n Add note about actions in appclass being deprecated\n r11403@t0mlaptop (orig r11373): t0m | 2009-09-17 09:54:45 +0100\n Add note about ::[MVC]:: warnings\n r11404@t0mlaptop (orig r11374): t0m | 2009-09-17 09:58:15 +0100\n Re-space current release changelog to align with the rest. Move -short changelog to the right place.\n r11405@t0mlaptop (orig r11375): rafl | 2009-09-17 10:33:28 +0100\n Version 5.80013.\n r11407@t0mlaptop (orig r11377): t0m | 2009-09-17 14:32:16 +0100\n Well, that got forgotten, oops\n r11426@t0mlaptop (orig r11396): rafl | 2009-09-20 15:01:45 +0100\n Fix a syntax error in the ContextClosure pod.\n r11427@t0mlaptop (orig r11397): rafl | 2009-09-20 15:01:51 +0100\n Use clean instead of autoclean in the ContextClosure synopsis until we've fixed the issues with that and MXMA.\n r11428@t0mlaptop (orig r11398): gbjk | 2009-09-21 15:05:17 +0100\n - Fix go / visit expecting captures and arguments in reverse order.\n \n r11429@t0mlaptop (orig r11399): mateu | 2009-09-21 19:57:14 +0100\n Update $c->forward and $c->state documentation to address scalar context.\n r11430@t0mlaptop (orig r11400): t0m | 2009-09-23 15:48:06 +0100\n Dep bump\n r11452@t0mlaptop (orig r11422): t0m | 2009-09-25 13:03:50 +0100\n Remove warnings for using Catalyst::Dispatcher->dispatch_types\n r11459@t0mlaptop (orig r11429): t0m | 2009-09-27 13:27:41 +0100\n Optional test not optional for authors\n r11460@t0mlaptop (orig r11430): t0m | 2009-09-27 13:33:05 +0100\n Make r11422 not break stuff - idiot :(\n r11487@t0mlaptop (orig r11457): t0m | 2009-10-05 22:59:47 +0100\n r11483@t0mlaptop (orig r11453): abraxxa | 2009-10-05 12:57:34 +0100\n Improved the suggested fix warning when component resolution uses regex fallback for fully qualified component names.\n Added disable_component_resolution_regex_fallback config option to switch off regex fallback for component resolution.\n \n \n r11488@t0mlaptop (orig r11458): t0m | 2009-10-05 22:59:52 +0100\n r11486@t0mlaptop (orig r11456): t0m | 2009-10-05 22:59:01 +0100\n Tidy up changelog/attribution\n \n r11503@t0mlaptop (orig r11468): ilmari | 2009-10-06 16:30:41 +0100\n Set ->request on the response object i Catalyst::Test::local_request--This line, and those below, will be ignored--\n \n M t/unit_load_catalyst_test.t\n M lib/Catalyst/Test.pm\n M Changes\n \n r11519@t0mlaptop (orig r11484): phaylon | 2009-10-07 18:21:47 +0100\n added stub config section (incl TODO) to Cat.pm for things like 'current_view'\n r11548@t0mlaptop (orig r11513): caelum | 2009-10-12 17:18:22 +0100\n fix uninitialized warning in ACL\n r11549@t0mlaptop (orig r11514): caelum | 2009-10-12 17:22:08 +0100\n better fix for uninitialized warning\n r11550@t0mlaptop (orig r11515): t0m | 2009-10-12 18:10:32 +0100\n Less cargo cult madness\n r11554@t0mlaptop (orig r11519): caelum | 2009-10-13 15:37:02 +0100\n more correct fix for uninitialized warning from ACL\n r11556@t0mlaptop (orig r11521): dhoss | 2009-10-14 01:14:42 +0100\n Snow Leopard uses COPYFILE_DISABLE\n r11557@t0mlaptop (orig r11522): dhoss | 2009-10-14 01:20:06 +0100\n fixed regex for next mac codename/version, will have to actually figure out what the 10.7 codename is when it arrives\n r11558@t0mlaptop (orig r11523): dhoss | 2009-10-14 01:23:45 +0100\n Attempted to make the error message more obvious\n r11561@t0mlaptop (orig r11526): dhoss | 2009-10-14 01:50:26 +0100\n fixed error message for mac osx 10.7\n r11568@t0mlaptop (orig r11533): hobbs | 2009-10-15 03:32:28 +0100\n Give people a pointer to chase if they're looking for info on $c->req->user\n \n r11574@t0mlaptop (orig r11539): t0m | 2009-10-15 22:19:26 +0100\n Add docs I promised for r11484\n r11622@t0mlaptop (orig r11587): jshirley | 2009-10-16 21:06:19 +0100\n The longawaited nginx patch to support non-root apps, and some pod\n r11623@t0mlaptop (orig r11588): jshirley | 2009-10-16 21:07:29 +0100\n Changes for nginx patches\n r11624@t0mlaptop (orig r11589): jshirley | 2009-10-16 21:08:55 +0100\n My favorite color is clear and I like to eat rocks\n r11670@t0mlaptop (orig r11635): t0m | 2009-10-19 18:02:59 +0100\n Remove warnings from duplicate action declerations\n r11675@t0mlaptop (orig r11640): poisonbit | 2009-10-20 21:12:46 +0100\n Example added to #Actions_in_your_application_class\n \n \n r11676@t0mlaptop (orig r11641): poisonbit | 2009-10-20 21:32:41 +0100\n Formating (a lost space and line break)\n \n \n r11677@t0mlaptop (orig r11642): poisonbit | 2009-10-20 21:34:45 +0100\n More regresion from 11640, correcting parentheses and endpoint.\n \n \n r11678@t0mlaptop (orig r11643): poisonbit | 2009-10-20 22:08:47 +0100\n Change in actions inside roles.\n http://bobtfish.livejournal.com/264317.html\n \n \n r11679@t0mlaptop (orig r11644): poisonbit | 2009-10-20 23:16:03 +0100\n Fixes to pass podchecker OK\n \n \n r11714@t0mlaptop (orig r11679): rafl | 2009-10-28 23:54:56 +0000\n Enable Catalyst::Utils::home() to find home within Dist::Zilla built dists.\n \n Courtesy of nperez.\n r11716@t0mlaptop (orig r11681): t0m | 2009-10-29 00:43:07 +0000\n Make URI a link to make it super obvious\n r11796@t0mlaptop (orig r11761): t0m | 2009-11-05 00:11:15 +0000\n Need newer LWP for tests to pass as suggested on list by Jose Luis Martinez\n r11811@t0mlaptop (orig r11776): altreus | 2009-11-06 17:09:51 +0000\n Add doc for no-args call to ->uri_for\n r11813@t0mlaptop (orig r11778): dhoss | 2009-11-06 17:13:27 +0000\n fixed options passed to devel server so that author tests pass\n r11814@t0mlaptop (orig r11779): altreus | 2009-11-06 17:14:49 +0000\n Amend doc to not mention using undef in ->uri_for\n r11816@t0mlaptop (orig r11781): t0m | 2009-11-07 16:50:59 +0000\n Back out change from -port to -l - svn merge -r 11778:11777\n r11823@t0mlaptop (orig r11788): rafl | 2009-11-09 22:21:19 +0000\n Make request->body fail when used as a writer.\n r11824@t0mlaptop (orig r11789): t0m | 2009-11-10 19:51:33 +0000\n Fix changelog, me--\n r11825@t0mlaptop (orig r11790): t0m | 2009-11-10 19:56:09 +0000\n Warn on case_sensitive being set, remove documentation\n r11827@t0mlaptop (orig r11792): t0m | 2009-11-10 21:36:06 +0000\n Return 1, only currently works by chance\n r11828@t0mlaptop (orig r11793): t0m | 2009-11-10 21:37:26 +0000\n Also retarded\n r11829@t0mlaptop (orig r11794): t0m | 2009-11-10 21:41:27 +0000\n And lets not change behaviour with the log flush change..\n r11836@t0mlaptop (orig r11801): t0m | 2009-11-12 01:12:05 +0000\n Bring the changelog up to date.\n r11839@t0mlaptop (orig r11804): t0m | 2009-11-12 01:44:46 +0000\n r11462@t0mlaptop (orig r11432): rafl | 2009-09-27 16:06:26 +0100\n More aggregated tests.\n r11463@t0mlaptop (orig r11433): rafl | 2009-09-27 16:06:36 +0100\n Fix a couple of aggregation warnings.\n r11464@t0mlaptop (orig r11434): rafl | 2009-09-27 16:06:51 +0100\n More aggregation.\n r11465@t0mlaptop (orig r11435): rafl | 2009-09-27 16:28:04 +0100\n Make things run again with aggregation disabled.\n r11838@t0mlaptop (orig r11803): t0m | 2009-11-12 01:39:56 +0000\n Patch up changes to tests into new location. This merges parts of the following commits which were missed by svk:\n \n -r11456:11457 http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk\n -r11467:11468 http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk\n \n \n r11841@t0mlaptop (orig r11806): bricas | 2009-11-12 17:58:02 +0000\n remove duplicate changelog entry\n r11847@t0mlaptop (orig r11812): t0m | 2009-11-12 23:57:15 +0000\n r11668@t0mlaptop (orig r11633): t0m | 2009-10-19 17:53:27 +0100\n Branch for uri encoding things in uri_for in some way that means you can round trip path parts like '24/7', but without totally breaking backward compatibility this time hopefully.\n \n r11669@t0mlaptop (orig r11634): t0m | 2009-10-19 17:54:08 +0100\n Well, this fixes my current issue, and doesn't seem to break any tests.. This likely means that the tests are still shit\n r11769@t0mlaptop (orig r11734): t0m | 2009-11-04 19:17:33 +0000\n Needed for authors to run optional http test\n r11833@t0mlaptop (orig r11798): t0m | 2009-11-12 00:22:06 +0000\n Tests, fix args as well as captureargs and be less violent - only encode /\n r11840@t0mlaptop (orig r11805): rafl | 2009-11-12 16:08:57 +0000\n trailing whitespace\n r11843@t0mlaptop (orig r11808): t0m | 2009-11-12 23:41:17 +0000\n Tidy up a bit\n r11845@t0mlaptop (orig r11810): t0m | 2009-11-12 23:46:28 +0000\n Changelog\n r11846@t0mlaptop (orig r11811): t0m | 2009-11-12 23:56:36 +0000\n Don't fail the live tests by only looking for http://localhost/etc..\n \n r11858@t0mlaptop (orig r11823): t0m | 2009-11-14 17:26:04 +0000\n Pod patch\n r11860@t0mlaptop (orig r11825): t0m | 2009-11-14 17:30:26 +0000\n Pod fixes re RT#51489\n r11914@t0mlaptop (orig r11879): rafl | 2009-11-17 23:00:32 +0000\n Merge branch 'exception_interface'\n \n * exception_interface:\n Use MooseX::Role::WithOverloading.\n Add Exception::Interface and Exception::Basic. Make ::Base, ::Go and ::Detach use them.\n Create branch exception_interface\n r11953@t0mlaptop (orig r11918): t0m | 2009-11-19 21:58:59 +0000\n Add Pod for all the new exception classes\n r11954@t0mlaptop (orig r11919): t0m | 2009-11-19 22:00:27 +0000\n Rename http server test as it is not optional for authors\n r11978@t0mlaptop (orig r11943): rafl | 2009-11-20 06:22:44 +0000\n Fix a doc typo.\n \n Also trim some trailing whitespace.\n r11979@t0mlaptop (orig r11944): rafl | 2009-11-20 06:22:51 +0000\n Remove some docs for Exception::Go and ::Detach.\n \n Users really shouldn't care.\n r11980@t0mlaptop (orig r11945): rafl | 2009-11-20 07:05:08 +0000\n Depend on MX::Role::WithOverloading 0.03 to make sure things work out on 5.8.8 and older.\n r11986@t0mlaptop (orig r11951): rafl | 2009-11-21 01:30:07 +0000\n Remove duplicate changelog entry.\n r11987@t0mlaptop (orig r11952): rafl | 2009-11-21 01:43:12 +0000\n Improve Exception::Interface docs.\n r11988@t0mlaptop (orig r11953): rafl | 2009-11-21 01:43:28 +0000\n More changelogging.\n r11989@t0mlaptop (orig r11954): rafl | 2009-11-21 01:43:57 +0000\n Refer to the right ticket in Changes.\n r11990@t0mlaptop (orig r11955): rafl | 2009-11-21 02:31:02 +0000\n Version 5.80014.\n r11996@t0mlaptop (orig r11961): zby | 2009-11-21 13:03:43 +0000\n warning for plugins inheriting from Catayst::Component\n r11998@t0mlaptop (orig r11963): t0m | 2009-11-22 12:57:30 +0000\n Chop out that crap, not needed\n r11999@t0mlaptop (orig r11964): t0m | 2009-11-22 13:01:09 +0000\n Do not be @ISA Controller, that's hideous dumb and now warns\n r12000@t0mlaptop (orig r11965): t0m | 2009-11-22 13:01:48 +0000\n Do not use NEXT, like it says in the comments\n r12001@t0mlaptop (orig r11966): t0m | 2009-11-22 13:04:50 +0000\n Fix unicode issues in CGI and FastCGI engines\n r12002@t0mlaptop (orig r11967): t0m | 2009-11-22 13:08:47 +0000\n Changelog, adjust warning text, bump versions for a dev release. The 'we do get Class::C3::Adopt::NEXT warnings test is now broken, no idea why, will look later.\n r12003@t0mlaptop (orig r11968): t0m | 2009-11-22 19:42:30 +0000\n Different phrasing for different versions\n r12004@t0mlaptop (orig r11969): t0m | 2009-11-22 19:53:00 +0000\n Whoops, fix typo\n r12005@t0mlaptop (orig r11970): t0m | 2009-11-22 19:58:31 +0000\n It actually wants 'true', make that more explicit\n r12006@t0mlaptop (orig r11971): t0m | 2009-11-22 19:59:04 +0000\n release 5.80014_01\n r12008@t0mlaptop (orig r11973): t0m | 2009-11-22 20:08:28 +0000\n Notabs is author only\n r12009@t0mlaptop (orig r11974): t0m | 2009-11-22 20:11:17 +0000\n Pod tests are also author only\n r12010@t0mlaptop (orig r11975): t0m | 2009-11-22 20:13:06 +0000\n Changelog\n r12013@t0mlaptop (orig r11978): t0m | 2009-11-23 21:25:19 +0000\n Don't do bytes::length, just use length, tests to demonstrate the issue\n r12014@t0mlaptop (orig r11979): t0m | 2009-11-23 21:45:55 +0000\n Nasty hack for fastcgi, fixes gitalist\n r12021@t0mlaptop (orig r11986): t0m | 2009-11-23 22:57:40 +0000\n Have a new conflict statement\n r12035@t0mlaptop (orig r12000): t0m | 2009-11-24 09:50:07 +0000\n Trivial Pod fixes\n r12055@t0mlaptop (orig r12020): t0m | 2009-11-26 01:07:08 +0000\n Remove test spraff\n r12057@t0mlaptop (orig r12022): t0m | 2009-11-26 01:21:22 +0000\n Back out 11979 until I work out why IPC::Run is getting hold of the FCGI file handle\n r12070@t0mlaptop (orig r12035): t0m | 2009-11-26 21:29:32 +0000\n Fix test on bleadperl RT#52100\n r12095@t0mlaptop (orig r12060): gshank | 2009-11-27 22:43:11 +0000\n testcase for Chained bug - dispatches to wrong action\n \n r12108@t0mlaptop (orig r12073): rafl | 2009-11-29 16:43:17 +0000\n Depend on a recent leakchecker to stop everything from crapping over itself if PadWalker is too old.\n r12110@t0mlaptop (orig r12075): t0m | 2009-11-29 17:16:40 +0000\n r11583@nc10 (orig r10642): dhoss | 2009-06-24 22:18:13 +0100\n created better scripts branch\n \n r11584@nc10 (orig r10643): dhoss | 2009-06-24 22:21:03 +0100\n initial script commit\n \n r11585@nc10 (orig r10644): dhoss | 2009-06-24 23:56:42 +0100\n initial ScriptRunner checkin\n \n r11588@nc10 (orig r10647): dhoss | 2009-06-25 01:54:12 +0100\n added a test application to get the new scripts working\n created Catalyst::ScriptRunner, Catalyst::Script::*\n got Catalyst::Script::FastCGI running\n wrote a test for Catalyst::Script::FastCGI, but it fails for some reason\n \n r11590@nc10 (orig r10649): dhoss | 2009-06-25 02:10:57 +0100\n added dev_server test, poked Catalyst::Script::Create\n \n r11591@nc10 (orig r10650): dhoss | 2009-06-25 02:21:18 +0100\n fixed test server, blech\n \n r11592@nc10 (orig r10651): dhoss | 2009-06-25 02:28:41 +0100\n pulled crap out of testapp_server\n \n r11593@nc10 (orig r10652): dhoss | 2009-06-25 02:41:39 +0100\n fixed server start\n \n r11594@nc10 (orig r10653): dhoss | 2009-06-25 03:03:00 +0100\n fixed Server and testapp_server.pl. Test still wonky\n \n r11595@nc10 (orig r10654): dhoss | 2009-06-25 03:15:18 +0100\n poked at t/start_dev_server.t\n corrected Server to start with HTTP not CGI\n \n r11597@nc10 (orig r10656): dhoss | 2009-06-25 03:30:41 +0100\n updated testapp_cgi.pl\n updated CGI\n \n r11598@nc10 (orig r10657): dhoss | 2009-06-25 04:11:14 +0100\n added more to Test, added testapp_test, and worked on start_fcgi\n \n r11604@nc10 (orig r10663): dhoss | 2009-06-25 11:37:12 +0100\n updated Makefil.PL\n \n r11624@nc10 (orig r10683): dhoss | 2009-06-26 20:46:17 +0100\n updated so that if their class doesn't load, we use ours.\n \n r11650@nc10 (orig r10709): dhoss | 2009-06-28 21:33:41 +0100\n added name to contributors list\n \n r11660@nc10 (orig r10719): t0m | 2009-06-29 00:12:11 +0100\n Kind of, sort of make the server work, except it doesn't\n r11685@nc10 (orig r10744): dhoss | 2009-06-30 19:28:47 +0100\n fixed Server\n \n r11726@nc10 (orig r10785): dhoss | 2009-07-04 01:41:40 +0100\n help option now has a short option\n \n r11727@nc10 (orig r10786): dhoss | 2009-07-04 01:44:15 +0100\n fork now has a short option\n \n r11728@nc10 (orig r10787): dhoss | 2009-07-04 01:45:19 +0100\n listen now has a short option\n \n r11729@nc10 (orig r10788): dhoss | 2009-07-04 01:49:39 +0100\n doez haz pidfile short opt\n \n r11730@nc10 (orig r10789): dhoss | 2009-07-04 01:51:12 +0100\n doez haz keepalive short opt\n \n r11731@nc10 (orig r10790): dhoss | 2009-07-04 01:51:35 +0100\n changed pf => pid\n \n r11732@nc10 (orig r10791): dhoss | 2009-07-04 01:53:16 +0100\n background now has a short opshun\n \n r11733@nc10 (orig r10792): dhoss | 2009-07-04 01:54:29 +0100\n restart has short option\n \n r11734@nc10 (orig r10793): dhoss | 2009-07-04 01:56:16 +0100\n restart_delay HAZ OPSHUN\n \n r11735@nc10 (orig r10794): dhoss | 2009-07-04 01:57:11 +0100\n restart regex has a short option\n \n r11736@nc10 (orig r10795): dhoss | 2009-07-04 01:58:02 +0100\n follow_symlinks has short option\n \n r11737@nc10 (orig r10796): dhoss | 2009-07-04 03:01:44 +0100\n Updated testapp_server\n broke Script::Server, why?!\n \n r11738@nc10 (orig r10797): dhoss | 2009-07-04 03:57:13 +0100\n added namespace::autoclean to all the helper classes\n removed a redundant use Catalyst::Engine::HTTP\n \n r11739@nc10 (orig r10798): dhoss | 2009-07-04 04:25:25 +0100\n added warn to setup. sigh. doesn't appear it's getting called, unless \n i'm way off.\n \n r11740@nc10 (orig r10799): dhoss | 2009-07-04 04:27:41 +0100\n untarded!\n \n r11741@nc10 (orig r10800): dhoss | 2009-07-04 04:28:15 +0100\n really untarded\n \n r11778@nc10 (orig r10837): dhoss | 2009-07-11 00:27:12 +0100\n removed except meta stuff since we're using autoclean\n \n r11779@nc10 (orig r10838): dhoss | 2009-07-11 01:06:53 +0100\n fixed Catalyst::Script::Server so app doesn't have to be a cmd line opt\n \n r11780@nc10 (orig r10839): dhoss | 2009-07-11 01:14:43 +0100\n removed all required => 0\n \n r11781@nc10 (orig r10840): dhoss | 2009-07-11 01:18:23 +0100\n removed \"broken\" commetn\n \n r11782@nc10 (orig r10841): dhoss | 2009-07-11 01:19:41 +0100\n removed debug warn\n \n r11783@nc10 (orig r10842): dhoss | 2009-07-11 01:31:58 +0100\n removed default => 0s\n \n r11784@nc10 (orig r10843): dhoss | 2009-07-11 01:34:54 +0100\n added debug option\n \n r11785@nc10 (orig r10844): dhoss | 2009-07-11 02:50:11 +0100\n fasterized\n \n r11786@nc10 (orig r10845): dhoss | 2009-07-11 03:21:41 +0100\n added restarter code\n \n r11787@nc10 (orig r10846): dhoss | 2009-07-11 03:24:02 +0100\n fixed follow_symlinks option in restarter code\n \n r11788@nc10 (orig r10847): dhoss | 2009-07-11 03:33:44 +0100\n cleaned up sub runner\n \n r11793@nc10 (orig r10852): t0m | 2009-07-11 19:10:02 +0100\n Strip trailing spaces\n r11801@nc10 (orig r10860): autarch | 2009-07-11 20:32:11 +0100\n Get the restarter running\n r11809@nc10 (orig r10868): t0m | 2009-07-12 18:15:09 +0100\n Too slow\n r11810@nc10 (orig r10869): t0m | 2009-07-12 18:27:36 +0100\n And unfuck so the app name is passed properly\n r11831@nc10 (orig r10890): dhoss | 2009-07-15 22:41:11 +0100\n -d and --debug work for me\n \n r11834@nc10 (orig r10893): dhoss | 2009-07-16 10:25:47 +0100\n added Deploy prototype\n \n r11843@nc10 (orig r10902): dhoss | 2009-07-17 01:52:56 +0100\n untarded and added documentation\n \n r11844@nc10 (orig r10903): dhoss | 2009-07-17 01:53:38 +0100\n don't need -except => [ qw(meta) ] with autoclean\n \n r11845@nc10 (orig r10904): dhoss | 2009-07-17 02:00:54 +0100\n added documentation, surely needs refining\n \n r11846@nc10 (orig r10905): dhoss | 2009-07-17 02:01:25 +0100\n removed -except => qw[meta]\n \n r11847@nc10 (orig r10906): dhoss | 2009-07-17 02:04:12 +0100\n cleaned up\n \n r11848@nc10 (orig r10907): dhoss | 2009-07-17 02:12:07 +0100\n added documentation\n \n r11849@nc10 (orig r10908): dhoss | 2009-07-17 02:13:28 +0100\n fasterized\n \n r11850@nc10 (orig r10909): dhoss | 2009-07-17 02:15:04 +0100\n added MX::Types::Moose\n \n r11851@nc10 (orig r10910): dhoss | 2009-07-17 02:24:44 +0100\n added MX::Types::Moose, cleaned up moar\n \n r11852@nc10 (orig r10911): dhoss | 2009-07-17 02:43:29 +0100\n created proof of working app\n \n r11853@nc10 (orig r10912): dhoss | 2009-07-17 02:44:07 +0100\n removed proof of working tests\n \n r11966@nc10 (orig r11025): dhoss | 2009-08-04 01:00:57 +0100\n removed MooseX::Command::* stuff for now\n \n r11967@nc10 (orig r11026): dhoss | 2009-08-04 01:01:43 +0100\n removed MooseX::App::CMD* stuff from ScriptRunner\n \n r11968@nc10 (orig r11027): dhoss | 2009-08-04 01:22:27 +0100\n split helper into app generation helper and component generation helper (initial split, at least)\n \n r11976@nc10 (orig r11035): dhoss | 2009-08-05 21:07:12 +0100\n had this stuff in the wrong branch, blech\n \n r12162@nc10 (orig r11221): dhoss | 2009-08-23 21:32:34 +0100\n added command directory structure for MooseX::App::Cmd\n \n r12236@nc10 (orig r11295): t0m | 2009-09-02 01:48:38 +0100\n r11288@t0mlaptop: t0m | 2009-09-02 00:26:10 +0100\n Remove unused TestApp\n \n r12237@nc10 (orig r11296): t0m | 2009-09-02 01:48:43 +0100\n r11289@t0mlaptop: t0m | 2009-09-02 00:33:55 +0100\n Remove DBIC deploy script, this should not be in core runtime\n \n r12238@nc10 (orig r11297): t0m | 2009-09-02 01:48:47 +0100\n r11290@t0mlaptop: t0m | 2009-09-02 01:09:31 +0100\n Remove empty directories\n \n r12239@nc10 (orig r11298): t0m | 2009-09-02 01:48:54 +0100\n r11291@t0mlaptop: t0m | 2009-09-02 01:14:00 +0100\n Factor stuff out into a script role, clean up all the script code\n \n r12254@nc10 (orig r11313): t0m | 2009-09-05 16:16:00 +0100\n r11320@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:38:54 +0100\n Fix passing correct key, re-add getopt trait as this is needed, my bad\n \n r12255@nc10 (orig r11314): t0m | 2009-09-05 16:16:04 +0100\n r11321@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:42:20 +0100\n Make ScriptRunner include the lib path.\n \n r12256@nc10 (orig r11315): t0m | 2009-09-05 16:16:08 +0100\n r11322@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:47:39 +0100\n Fix FastCGI script\n \n r12257@nc10 (orig r11316): t0m | 2009-09-05 16:16:13 +0100\n r11323@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:48:58 +0100\n Fix CGI script\n \n r12258@nc10 (orig r11317): t0m | 2009-09-05 16:16:15 +0100\n r11324@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:56:01 +0100\n Add a short TODO list to complete before this branch is merged\n \n r12259@nc10 (orig r11318): t0m | 2009-09-05 16:16:20 +0100\n r11325@tomas-dorans-macbook-pro: t0m | 2009-09-05 12:57:21 +0100\n Default run methods not required, can be provided by the role\n \n r12260@nc10 (orig r11319): t0m | 2009-09-05 16:16:25 +0100\n r11326@tomas-dorans-macbook-pro: t0m | 2009-09-05 13:00:17 +0100\n Documentation dinks\n \n r12261@nc10 (orig r11320): t0m | 2009-09-05 16:16:30 +0100\n r11327@tomas-dorans-macbook-pro: t0m | 2009-09-05 13:01:00 +0100\n Gawd, that is out of date\n \n r12262@nc10 (orig r11321): t0m | 2009-09-05 16:16:33 +0100\n r11328@tomas-dorans-macbook-pro: t0m | 2009-09-05 13:06:34 +0100\n More POD\n \n r12263@nc10 (orig r11322): t0m | 2009-09-05 16:16:37 +0100\n r11329@tomas-dorans-macbook-pro: t0m | 2009-09-05 13:08:41 +0100\n We need to depend on MX::Types, and ::StashChange not needed any more\n \n r12264@nc10 (orig r11323): t0m | 2009-09-05 16:16:41 +0100\n r11330@tomas-dorans-macbook-pro: t0m | 2009-09-05 13:09:11 +0100\n We also need autoclean\n \n r12265@nc10 (orig r11324): t0m | 2009-09-05 16:16:48 +0100\n r11331@tomas-dorans-macbook-pro: t0m | 2009-09-05 13:43:25 +0100\n Basic tests for ScriptRunner, more needed\n \n r12320@nc10 (orig r11379): t0m | 2009-09-17 22:47:22 +0100\n Skeleton testapp for testing the args thrown to the run method by scripts\n r12321@nc10 (orig r11380): t0m | 2009-09-17 23:10:46 +0100\n Meh, that shows what I mean. This can be done waaaay more elegantly by abstracting the testing logic..\n r12377@nc10 (orig r11436): zts | 2009-09-27 20:12:39 +0100\n Further tests for Server script option parsing.\n Also, first pass at abstracting the test logic. Currently very ugly.\n \n r12402@nc10 (orig r11461): t0m | 2009-10-05 23:17:11 +0100\n And start the app correctly(ish) under the restarter - really not sure args are perserved correctly?\n r12908@nc10 (orig r11777): dhoss | 2009-11-06 17:12:25 +0000\n fixed dev server options so that test now passes\n r12911@nc10 (orig r11780): dhoss | 2009-11-06 17:25:35 +0000\n unfucked test server options and made test pass f'real this time\n r13011@nc10 (orig r11880): t0m | 2009-11-18 00:51:29 +0000\n Beat somewhat into shape by comparing the old and new docs. Need to write basic tests for the other scripts.\n r13052@nc10 (orig r11921): t0m | 2009-11-19 22:23:58 +0000\n Move to aggregate\n r13053@nc10 (orig r11922): t0m | 2009-11-19 23:32:24 +0000\n Unified help display, at the cost of having lost the info about what you fucked up. Neither of these are particularly helpful, but this is at least uniform\n r13054@nc10 (orig r11923): t0m | 2009-11-19 23:48:42 +0000\n Cleanup and some moar tests\n r13055@nc10 (orig r11924): t0m | 2009-11-20 00:00:02 +0000\n More tests for help, proving it's still bork\n r13056@nc10 (orig r11925): t0m | 2009-11-20 00:13:53 +0000\n Basic tests for fcgi script\n r13057@nc10 (orig r11926): t0m | 2009-11-20 00:44:35 +0000\n Fix script_test.pl\n r13058@nc10 (orig r11927): t0m | 2009-11-20 00:45:13 +0000\n Pass Pod coverage\n r13059@nc10 (orig r11928): t0m | 2009-11-20 01:00:24 +0000\n Nested TAP and Test::Aggregate don't play nice together. It was cute, but screw it, sorry zts\n r13060@nc10 (orig r11929): t0m | 2009-11-20 01:01:47 +0000\n Fugly test for myapp_test.pl. If someone fancies rewriting the IO redirection to be less gross then I loveyoulongtime\n r13061@nc10 (orig r11930): t0m | 2009-11-20 01:07:04 +0000\n Update todo on this branch\n r13123@nc10 (orig r11992): t0m | 2009-11-23 23:40:57 +0000\n Fix duplicate short options issue\n r13124@nc10 (orig r11993): t0m | 2009-11-23 23:43:32 +0000\n Chomp trailing space\n r13125@nc10 (orig r11994): t0m | 2009-11-23 23:49:10 +0000\n And do that in a way which actually works\n r13126@nc10 (orig r11995): t0m | 2009-11-23 23:56:49 +0000\n Fix test\n r13127@nc10 (orig r11996): t0m | 2009-11-24 00:15:45 +0000\n Add tests for the create script and fix the bugs that this shows up\n r13146@nc10 (orig r12015): t0m | 2009-11-25 22:32:11 +0000\n Fix warnings from ScriptRunner\n r13147@nc10 (orig r12016): t0m | 2009-11-25 22:51:28 +0000\n Fix big bug in test\n r13148@nc10 (orig r12017): t0m | 2009-11-26 00:25:01 +0000\n Get useful help about which option you fucked up back\n r13149@nc10 (orig r12018): t0m | 2009-11-26 00:35:31 +0000\n Remove most of the horrible\n r13150@nc10 (orig r12019): t0m | 2009-11-26 01:02:52 +0000\n Tidy up help and TODO tests\n r13161@nc10 (orig r12030): t0m | 2009-11-26 01:53:20 +0000\n Fix up docs\n r13162@nc10 (orig r12031): t0m | 2009-11-26 02:23:00 +0000\n Factor restarter arg assembly out into it's own routine for ease of testing. Use $self->ARGV instead of $ARGV\n r13165@nc10 (orig r12034): t0m | 2009-11-26 21:02:57 +0000\n Fix typo, bricas++, add simple test for restarter arguments\n r13175@nc10 (orig r12044): t0m | 2009-11-26 23:40:27 +0000\n Pass app name into constructor\n r13185@nc10 (orig r12054): t0m | 2009-11-27 02:08:33 +0000\n Bump version in runtime branch\n r13192@nc10 (orig r12061): t0m | 2009-11-28 12:38:12 +0000\n Adding the files you need for the tests you've committed helps them pass, idiot :)\n r13194@nc10 (orig r12063): rafl | 2009-11-29 14:00:12 +0000\n Depend on a new CMOP because we rely on its new load_class error messages.\n r13195@nc10 (orig r12064): rafl | 2009-11-29 14:00:19 +0000\n Make follow_symlinks more consistent with the other restarter args.\n r13196@nc10 (orig r12065): rafl | 2009-11-29 14:00:25 +0000\n Properly validate restart regexen.\n r13197@nc10 (orig r12066): rafl | 2009-11-29 14:00:31 +0000\n Tidy up some attr definitions.\n r13198@nc10 (orig r12067): rafl | 2009-11-29 14:00:38 +0000\n Port numbers need to be > 0.\n r13199@nc10 (orig r12068): rafl | 2009-11-29 14:00:43 +0000\n Remove useless lexical.\n r13200@nc10 (orig r12069): rafl | 2009-11-29 14:00:51 +0000\n Less trailing whitespace.\n r13201@nc10 (orig r12070): rafl | 2009-11-29 15:33:48 +0000\n This is not a release.\n r13202@nc10 (orig r12071): rafl | 2009-11-29 15:33:55 +0000\n Tidy things up a little and fix pod usage.\n \n r12121@t0mlaptop (orig r12086): t0m | 2009-11-30 22:59:15 +0000\n Require new M::I\n r12126@t0mlaptop (orig r12091): t0m | 2009-12-01 00:09:19 +0000\n r12113@t0mlaptop (orig r12078): t0m | 2009-11-30 18:25:57 +0000\n Branch for path_info fixes. This may be short lived, but worth doing..\n \n r12114@t0mlaptop (orig r12079): t0m | 2009-11-30 18:26:34 +0000\n Commit miyagawa's fix for PATH_INFO decoding. I think that this also implies changes / fixes in the fcgi _fix_env stuff\n r12116@t0mlaptop (orig r12081): t0m | 2009-11-30 20:44:16 +0000\n And yea, these test cases now pass\n r12118@t0mlaptop (orig r12083): t0m | 2009-11-30 21:02:14 +0000\n I think the nginx hackery can just die with the new code in ::Engine::CGI\n r12119@t0mlaptop (orig r12084): t0m | 2009-11-30 22:05:41 +0000\n Back out r12083, also clarify the docs - like this works for me now, and the bottom para seems the wrong way round...?\n r12122@t0mlaptop (orig r12087): t0m | 2009-11-30 23:17:33 +0000\n Require new HTTP::Request::AsCGI\n r12124@t0mlaptop (orig r12089): t0m | 2009-11-30 23:23:38 +0000\n Rewrite changelog entry to be more complete\n \n r12127@t0mlaptop (orig r12092): t0m | 2009-12-01 00:52:57 +0000\n TODO out gshanks chained tests\n r12128@t0mlaptop (orig r12093): t0m | 2009-12-01 00:54:23 +0000\n Bump deps and changelog for another dev release with new scripts and scary path resolving changes so I can have another call to test.\n\n\n\
git-svn-id: http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/branches/param_filtering@12094 4ad37cd2-5fec-0310-835f-b3785c72a374"
- " r11361@tomas-dorans-macbook-pro (orig r11331): t0m | 2009-09-07 15:45:01 +0100\n Fix hash key name back to what it used to be for compat, keeping renamed accessor where it was. Tests for this breakage to follow\n r11363@tomas-dorans-macbook-pro (orig r11333): t0m | 2009-09-07 21:19:40 +0100\n Test for r11331 + fix to only report each action name once from get_action_methods\n r11364@tomas-dorans-macbook-pro (orig r11334): t0m | 2009-09-07 21:21:52 +0100\n I'm an idiot, that totally doesn't work. remove.\n r11365@tomas-dorans-macbook-pro (orig r11335): t0m | 2009-09-07 21:25:53 +0100\n AGH. Too tired to be doing this, fucked it up again\n r11366@tomas-dorans-macbook-pro (orig r11336): t0m | 2009-09-07 21:33:31 +0100\n Fix duplicate results from get_action_methods. Q. Why didn't I just do that first time round? A: Am idiot.\n r11369@tomas-dorans-macbook-pro (orig r11339): marcus | 2009-09-09 18:05:32 +0100\n un-TODO passing TODO tests\n r11370@tomas-dorans-macbook-pro (orig r11340): marcus | 2009-09-09 18:08:03 +0100\n Prepare for release\n r11374@tomas-dorans-macbook-pro (orig r11344): groditi | 2009-09-09 22:06:59 +0100\n add myself to contributors\n r11375@tomas-dorans-macbook-pro (orig r11345): t0m | 2009-09-10 01:13:56 +0100\n Fix warnings in upcoming moose\n r11377@tomas-dorans-macbook-pro (orig r11347): t0m | 2009-09-10 02:14:13 +0100\n r11046@t0mlaptop (orig r11045): yousef | 2009-08-07 00:07:07 +0100\n Moved action methods from t/lib/TestApp.pm to t/lib/Test/Controller/Root.pm. Uncommented the if statement in lib/Catalyst/Controller.pm that checks for actions in the appclass.\n \n \n r11378@tomas-dorans-macbook-pro (orig r11348): t0m | 2009-09-10 02:20:55 +0100\n Eat the merge mark, svk hates me.\n r11379@tomas-dorans-macbook-pro (orig r11349): t0m | 2009-09-10 03:13:04 +0100\n Blargh. Merge branch deprecate_appclass_actions manually, with svn merge http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/branches/deprecate_appclass_actions . after I forgot -l on svk push, but ctrl-C after the first rev meant svk had already committed a merge mark and re-merging did nothing, and removing it didn't do the right thing. Fail cake..\n r11380@tomas-dorans-macbook-pro (orig r11350): hobbs | 2009-09-10 08:20:31 +0100\n Rework the C<< $c->go >> documentation a little, hopefully it's more clear.\n \n r11382@tomas-dorans-macbook-pro (orig r11352): autarch | 2009-09-11 03:48:29 +0100\n Preserve immutable_options when temporarily making a class mutable\n \n r11383@tomas-dorans-macbook-pro (orig r11353): t0m | 2009-09-11 09:18:09 +0100\n Work with old and new Moose\n r11393@tomas-dorans-macbook-pro (orig r11363): autarch | 2009-09-14 19:37:25 +0100\n The warning about a class having mutable ancestors has been removed (and was never in a non-dev Moose release)\n \n r11396@tomas-dorans-macbook-pro (orig r11366): t0m | 2009-09-15 21:48:19 +0100\n Remove what is now lies from Changes. Bump all the deps which need to be bumped to not crap warnings everywhere\n r11399@tomas-dorans-macbook-pro (orig r11369): t0m | 2009-09-16 18:14:29 +0100\n Changelog\n r11400@tomas-dorans-macbook-pro (orig r11370): t0m | 2009-09-16 18:15:52 +0100\n Now we depend on latest Moose we are certain to have immutable options\n r11401@tomas-dorans-macbook-pro (orig r11371): t0m | 2009-09-17 09:52:34 +0100\n -short is dead, RT#49771\n r11402@tomas-dorans-macbook-pro (orig r11372): t0m | 2009-09-17 09:52:52 +0100\n Add note about actions in appclass being deprecated\n r11403@tomas-dorans-macbook-pro (orig r11373): t0m | 2009-09-17 09:54:45 +0100\n Add note about ::[MVC]:: warnings\n r11404@tomas-dorans-macbook-pro (orig r11374): t0m | 2009-09-17 09:58:15 +0100\n Re-space current release changelog to align with the rest. Move -short changelog to the right place.\n r11405@tomas-dorans-macbook-pro (orig r11375): rafl | 2009-09-17 10:33:28 +0100\n Version 5.80013.\n r11407@tomas-dorans-macbook-pro (orig r11377): t0m | 2009-09-17 14:32:16 +0100\n Well, that got forgotten, oops\n r11426@tomas-dorans-macbook-pro (orig r11396): rafl | 2009-09-20 15:01:45 +0100\n Fix a syntax error in the ContextClosure pod.\n r11427@tomas-dorans-macbook-pro (orig r11397): rafl | 2009-09-20 15:01:51 +0100\n Use clean instead of autoclean in the ContextClosure synopsis until we've fixed the issues with that and MXMA.\n r11428@tomas-dorans-macbook-pro (orig r11398): gbjk | 2009-09-21 15:05:17 +0100\n - Fix go / visit expecting captures and arguments in reverse order.\n \n r11429@tomas-dorans-macbook-pro (orig r11399): mateu | 2009-09-21 19:57:14 +0100\n Update $c->forward and $c->state documentation to address scalar context.\n r11430@tomas-dorans-macbook-pro (orig r11400): t0m | 2009-09-23 15:48:06 +0100\n Dep bump\n r11452@tomas-dorans-macbook-pro (orig r11422): t0m | 2009-09-25 13:03:50 +0100\n Remove warnings for using Catalyst::Dispatcher->dispatch_types\n r11459@tomas-dorans-macbook-pro (orig r11429): t0m | 2009-09-27 13:27:41 +0100\n Optional test not optional for authors\n r11460@tomas-dorans-macbook-pro (orig r11430): t0m | 2009-09-27 13:33:05 +0100\n Make r11422 not break stuff - idiot :(\n r11487@tomas-dorans-macbook-pro (orig r11457): t0m | 2009-10-05 22:59:47 +0100\n r11483@t0mlaptop (orig r11453): abraxxa | 2009-10-05 12:57:34 +0100\n Improved the suggested fix warning when component resolution uses regex fallback for fully qualified component names.\n Added disable_component_resolution_regex_fallback config option to switch off regex fallback for component resolution.\n \n \n r11488@tomas-dorans-macbook-pro (orig r11458): t0m | 2009-10-05 22:59:52 +0100\n r11486@t0mlaptop (orig r11456): t0m | 2009-10-05 22:59:01 +0100\n Tidy up changelog/attribution\n \n r11503@tomas-dorans-macbook-pro (orig r11468): ilmari | 2009-10-06 16:30:41 +0100\n Set ->request on the response object i Catalyst::Test::local_request--This line, and those below, will be ignored--\n \n M t/unit_load_catalyst_test.t\n M lib/Catalyst/Test.pm\n M Changes\n \n r11519@tomas-dorans-macbook-pro (orig r11484): phaylon | 2009-10-07 18:21:47 +0100\n added stub config section (incl TODO) to Cat.pm for things like 'current_view'\n r11548@tomas-dorans-macbook-pro (orig r11513): caelum | 2009-10-12 17:18:22 +0100\n fix uninitialized warning in ACL\n r11549@tomas-dorans-macbook-pro (orig r11514): caelum | 2009-10-12 17:22:08 +0100\n better fix for uninitialized warning\n r11550@tomas-dorans-macbook-pro (orig r11515): t0m | 2009-10-12 18:10:32 +0100\n Less cargo cult madness\n r11554@tomas-dorans-macbook-pro (orig r11519): caelum | 2009-10-13 15:37:02 +0100\n more correct fix for uninitialized warning from ACL\n r11556@tomas-dorans-macbook-pro (orig r11521): dhoss | 2009-10-14 01:14:42 +0100\n Snow Leopard uses COPYFILE_DISABLE\n r11557@tomas-dorans-macbook-pro (orig r11522): dhoss | 2009-10-14 01:20:06 +0100\n fixed regex for next mac codename/version, will have to actually figure out what the 10.7 codename is when it arrives\n r11558@tomas-dorans-macbook-pro (orig r11523): dhoss | 2009-10-14 01:23:45 +0100\n Attempted to make the error message more obvious\n r11561@tomas-dorans-macbook-pro (orig r11526): dhoss | 2009-10-14 01:50:26 +0100\n fixed error message for mac osx 10.7\n r11568@tomas-dorans-macbook-pro (orig r11533): hobbs | 2009-10-15 03:32:28 +0100\n Give people a pointer to chase if they're looking for info on $c->req->user\n \n r11574@tomas-dorans-macbook-pro (orig r11539): t0m | 2009-10-15 22:19:26 +0100\n Add docs I promised for r11484\n r11622@tomas-dorans-macbook-pro (orig r11587): jshirley | 2009-10-16 21:06:19 +0100\n The longawaited nginx patch to support non-root apps, and some pod\n r11623@tomas-dorans-macbook-pro (orig r11588): jshirley | 2009-10-16 21:07:29 +0100\n Changes for nginx patches\n r11624@tomas-dorans-macbook-pro (orig r11589): jshirley | 2009-10-16 21:08:55 +0100\n My favorite color is clear and I like to eat rocks\n r11670@tomas-dorans-macbook-pro (orig r11635): t0m | 2009-10-19 18:02:59 +0100\n Remove warnings from duplicate action declerations\n r11675@tomas-dorans-macbook-pro (orig r11640): poisonbit | 2009-10-20 21:12:46 +0100\n Example added to #Actions_in_your_application_class\n \n \n r11676@tomas-dorans-macbook-pro (orig r11641): poisonbit | 2009-10-20 21:32:41 +0100\n Formating (a lost space and line break)\n \n \n r11677@tomas-dorans-macbook-pro (orig r11642): poisonbit | 2009-10-20 21:34:45 +0100\n More regresion from 11640, correcting parentheses and endpoint.\n \n \n r11678@tomas-dorans-macbook-pro (orig r11643): poisonbit | 2009-10-20 22:08:47 +0100\n Change in actions inside roles.\n http://bobtfish.livejournal.com/264317.html\n \n \n r11679@tomas-dorans-macbook-pro (orig r11644): poisonbit | 2009-10-20 23:16:03 +0100\n Fixes to pass podchecker OK\n \n \n r11714@tomas-dorans-macbook-pro (orig r11679): rafl | 2009-10-28 23:54:56 +0000\n Enable Catalyst::Utils::home() to find home within Dist::Zilla built dists.\n \n Courtesy of nperez.\n r11716@tomas-dorans-macbook-pro (orig r11681): t0m | 2009-10-29 00:43:07 +0000\n Make URI a link to make it super obvious\n r11796@tomas-dorans-macbook-pro (orig r11761): t0m | 2009-11-05 00:11:15 +0000\n Need newer LWP for tests to pass as suggested on list by Jose Luis Martinez\n r11811@tomas-dorans-macbook-pro (orig r11776): altreus | 2009-11-06 17:09:51 +0000\n Add doc for no-args call to ->uri_for\n r11813@tomas-dorans-macbook-pro (orig r11778): dhoss | 2009-11-06 17:13:27 +0000\n fixed options passed to devel server so that author tests pass\n r11814@tomas-dorans-macbook-pro (orig r11779): altreus | 2009-11-06 17:14:49 +0000\n Amend doc to not mention using undef in ->uri_for\n r11816@tomas-dorans-macbook-pro (orig r11781): t0m | 2009-11-07 16:50:59 +0000\n Back out change from -port to -l - svn merge -r 11778:11777\n r11823@tomas-dorans-macbook-pro (orig r11788): rafl | 2009-11-09 22:21:19 +0000\n Make request->body fail when used as a writer.\n r11824@tomas-dorans-macbook-pro (orig r11789): t0m | 2009-11-10 19:51:33 +0000\n Fix changelog, me--\n r11825@tomas-dorans-macbook-pro (orig r11790): t0m | 2009-11-10 19:56:09 +0000\n Warn on case_sensitive being set, remove documentation\n r11827@tomas-dorans-macbook-pro (orig r11792): t0m | 2009-11-10 21:36:06 +0000\n Return 1, only currently works by chance\n r11828@tomas-dorans-macbook-pro (orig r11793): t0m | 2009-11-10 21:37:26 +0000\n Also retarded\n r11829@tomas-dorans-macbook-pro (orig r11794): t0m | 2009-11-10 21:41:27 +0000\n And lets not change behaviour with the log flush change..\n r11836@tomas-dorans-macbook-pro (orig r11801): t0m | 2009-11-12 01:12:05 +0000\n Bring the changelog up to date.\n r11839@tomas-dorans-macbook-pro (orig r11804): t0m | 2009-11-12 01:44:46 +0000\n r11462@t0mlaptop (orig r11432): rafl | 2009-09-27 16:06:26 +0100\n More aggregated tests.\n r11463@t0mlaptop (orig r11433): rafl | 2009-09-27 16:06:36 +0100\n Fix a couple of aggregation warnings.\n r11464@t0mlaptop (orig r11434): rafl | 2009-09-27 16:06:51 +0100\n More aggregation.\n r11465@t0mlaptop (orig r11435): rafl | 2009-09-27 16:28:04 +0100\n Make things run again with aggregation disabled.\n r11838@t0mlaptop (orig r11803): t0m | 2009-11-12 01:39:56 +0000\n Patch up changes to tests into new location. This merges parts of the following commits which were missed by svk:\n \n -r11456:11457 http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk\n -r11467:11468 http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk\n \n \n r11841@tomas-dorans-macbook-pro (orig r11806): bricas | 2009-11-12 17:58:02 +0000\n remove duplicate changelog entry\n r11847@tomas-dorans-macbook-pro (orig r11812): t0m | 2009-11-12 23:57:15 +0000\n r11668@t0mlaptop (orig r11633): t0m | 2009-10-19 17:53:27 +0100\n Branch for uri encoding things in uri_for in some way that means you can round trip path parts like '24/7', but without totally breaking backward compatibility this time hopefully.\n \n r11669@t0mlaptop (orig r11634): t0m | 2009-10-19 17:54:08 +0100\n Well, this fixes my current issue, and doesn't seem to break any tests.. This likely means that the tests are still shit\n r11769@t0mlaptop (orig r11734): t0m | 2009-11-04 19:17:33 +0000\n Needed for authors to run optional http test\n r11833@t0mlaptop (orig r11798): t0m | 2009-11-12 00:22:06 +0000\n Tests, fix args as well as captureargs and be less violent - only encode /\n r11840@t0mlaptop (orig r11805): rafl | 2009-11-12 16:08:57 +0000\n trailing whitespace\n r11843@t0mlaptop (orig r11808): t0m | 2009-11-12 23:41:17 +0000\n Tidy up a bit\n r11845@t0mlaptop (orig r11810): t0m | 2009-11-12 23:46:28 +0000\n Changelog\n r11846@t0mlaptop (orig r11811): t0m | 2009-11-12 23:56:36 +0000\n Don't fail the live tests by only looking for http://localhost/etc..\n \n r11858@tomas-dorans-macbook-pro (orig r11823): t0m | 2009-11-14 17:26:04 +0000\n Pod patch\n r11860@tomas-dorans-macbook-pro (orig r11825): t0m | 2009-11-14 17:30:26 +0000\n Pod fixes re RT#51489\n r11914@tomas-dorans-macbook-pro (orig r11879): rafl | 2009-11-17 23:00:32 +0000\n Merge branch 'exception_interface'\n \n * exception_interface:\n Use MooseX::Role::WithOverloading.\n Add Exception::Interface and Exception::Basic. Make ::Base, ::Go and ::Detach use them.\n Create branch exception_interface\n r11953@tomas-dorans-macbook-pro (orig r11918): t0m | 2009-11-19 21:58:59 +0000\n Add Pod for all the new exception classes\n r11954@tomas-dorans-macbook-pro (orig r11919): t0m | 2009-11-19 22:00:27 +0000\n Rename http server test as it is not optional for authors\n\n\n\
git-svn-id: http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/branches/better_scripts@11931 4ad37cd2-5fec-0310-835f-b3785c72a374"
- " r11668@t0mlaptop (orig r11633): t0m | 2009-10-19 17:53:27 +0100\n Branch for uri encoding things in uri_for in some way that means you can round trip path parts like '24/7', but without totally breaking backward compatibility this time hopefully.\n \n r11669@t0mlaptop (orig r11634): t0m | 2009-10-19 17:54:08 +0100\n Well, this fixes my current issue, and doesn't seem to break any tests.. This likely means that the tests are still shit\n r11769@t0mlaptop (orig r11734): t0m | 2009-11-04 19:17:33 +0000\n Needed for authors to run optional http test\n r11833@t0mlaptop (orig r11798): t0m | 2009-11-12 00:22:06 +0000\n Tests, fix args as well as captureargs and be less violent - only encode /\n r11840@t0mlaptop (orig r11805): rafl | 2009-11-12 16:08:57 +0000\n trailing whitespace\n r11843@t0mlaptop (orig r11808): t0m | 2009-11-12 23:41:17 +0000\n Tidy up a bit\n r11845@t0mlaptop (orig r11810): t0m | 2009-11-12 23:46:28 +0000\n Changelog\n r11846@t0mlaptop (orig r11811): t0m | 2009-11-12 23:56:36 +0000\n Don't fail the live tests by only looking for http://localhost/etc..\n\n\n\
git-svn-id: http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/5.80/trunk@11812 4ad37cd2-5fec-0310-835f-b3785c72a374"
- Upgrade shit
- again, fuck .db
- Tell bin/taeb about the new lib paths, quote some shit
- fuck the past, .. lets fix this thing right
- docs and shit
- Where I fuck up the loggging and go to bed...
- last commit breaks shit
- Cleaning the house ... shit was messy\!
- fixed bug with large integers and negative integers; FUCK OFF PHP!
- Changing format to sf_format template variable and putting back menuItem because I think it's going to piss too many people off (including me)
- removed all pycs during console examples running. why the fuck it happens?
- fuck git
- |-
Adding first bits of new tree-reordering.
Renamed page_toolbox.js to fein_tree.js, Dragging and dropping is actually working now, saves properly\!
Fuck Git. Now actually includes changed files.
- |-
Add a couple sorts, and switch to sorted hooks.
Fuck yes.
- |-
Make generators auto-sorted.
Fuck yeah.
- |-
inventory, protocol: Wire up workbenches.
Fuck yes!
- |-
inventory: Dynamically allocate storage.
Fuck yes.
- Removed old Build App shit
- get rid of this build shit
- some clever shit
- testing shit
- more info and methods, less bare shell shit
- alert users that they're already running rvm and shit gets weird
- minor shit to hopefully get some help debugging on irc
- chunk of shit i wrote over whiskey
- i really hate the behavior of this shit
- removing postgres for now since it seems to do weird shit on new systems
- move away from adding shit to people's ~/.profile and have the normal recipes append and source the cider env if needed
- "If multiple security groups were given, they'd piss on each others shoes: the full list of authorizes was used for each one, and revokes were always generated with the cloud's proper name, not the name of the security group to revoke"
- &id002 |-
Removing bundler stuff until I can figure out a better way to add it
Preferable one that doesnt fuck shit up!!
- *id002
- Rake sucks! Rake is piece of shit and it's broken again! Fuck you guys!
- Rake sucks! Rake is piece of shit and it's broken again! Fuck you guys!
- fuck raise and slowness
- Remove ridiculous newbie shit
- Ignore this folder where I put shit I don't want in source control but don't want to delete yet.
- fuck LOAD_PATH
- |-
fucking awesome svn full_url shit
git-svn-id: http://activereload.svn.engineyard.com/warehouse/trunk@2290 8456e5f2-bb15-0410-bd20-b44782a1fb1e
- |-
Fix sheet shit
git-svn-id: http://activereload.svn.engineyard.com/warehouse/trunk@1753 8456e5f2-bb15-0410-bd20-b44782a1fb1e
- We reset the session or some shit now, it's nil
- Clean some more tests. This one might break things but fuck you
- Clean up more specs by commenting out shit
- "Hotfix ( monkeypatch !! ) for rspec (from rspec-edge) : stupid fucking fuck shit fuck you anyway stub! doesn't work on controllers unless you have this"