Thursday, 2008-05-22

*** pmiller has quit IRC00:14
*** mecredis has quit IRC00:38
*** mecredis has joined #cc00:56
*** UncleCJ has quit IRC00:58
*** Danny_B has quit IRC00:58
*** skxpl has quit IRC00:58
*** Danny_B has joined #cc00:58
*** skxpl has joined #cc00:58
*** UncleCJ has joined #cc00:59
*** jgay has quit IRC01:10
*** mecredis has quit IRC01:38
*** yobageM has joined #cc01:43
*** yobageM has left #cc01:43
*** Billy has joined #cc01:44
*** Billy has left #cc01:45
*** mecredis has joined #cc01:45
*** rejon has joined #cc02:01
*** sama has joined #cc02:26
*** isforinsects has joined #cc03:33
*** BobChao has quit IRC05:02
*** kristallpirat has joined #cc05:09
*** tvol has joined #CC06:05
*** pmiller has joined #cc06:06
*** pmiller has quit IRC06:47
*** BobChao has joined #cc06:54
*** tvol has quit IRC07:15
*** tvol has joined #CC07:18
*** rohitj has joined #cc07:38
*** kristallpirat has quit IRC07:40
*** BobChao has left #cc08:41
*** greg-g has joined #cc09:57
*** nathany has joined #cc10:06
*** BjornW has joined #cc10:11
*** tvol has joined #CC10:22
*** stevel has joined #cc10:27
*** Guest86478 has joined #cc10:48
Guest86478i need a valid cc10:49
isforinsectsGreat.  We're forwarding along your IP right now...10:50
nathanyGuest86478: what sort of limit would you like?10:51
Guest86478i want to donate this server10:51
Guest86478for shell10:51
Guest86478i want to make PSYBNC10:52
paulproteusGuest86478, aapke haal kaise hai?10:53
Guest86478main thik hn10:53
Guest86478app sunyo10:53
paulproteustik tak10:54
Guest86478paulproteus10:54
Guest86478are you from?10:54
paulproteusme amrika me hai10:55
paulproteusaap ka hai?10:57
Guest86478okok10:57
Guest86478pakistan10:57
paulproteusvadiya10:58
*** greg-g has quit IRC10:58
*** Guest86478 has left #cc10:58
paulproteusAww.10:58
*** greg-g has joined #cc11:00
*** sama has quit IRC11:08
*** nkinkade has joined #cc11:09
paulproteusnathany, BTW, the #pylons folks insisted I stop using AuthKit.11:18
nathanyreally?11:19
paulproteusThey were pretty intent on it, and their lives had all been improved since ditching it.11:19
paulproteusAnd I could see how mine would be, so I went that way.11:19
nathanyok11:19
nathanygreat11:19
nathanywe'll have to talk about it briefly @ our standup, which should probably be this morning11:19
paulproteusDance Dance Standup.11:19
paulproteusYou call it, and I'll be tehre.11:24
nathanypaulproteus: nkinkade: standup @ 10A?11:29
paulproteusnathany, ACK11:29
*** bse has joined #cc11:31
*** Mihai` has joined #cc11:32
*** tvol_ has joined #CC11:37
*** tvol has quit IRC11:37
*** tvol_ has quit IRC11:38
*** tvol has joined #CC11:38
*** greg-g has quit IRC11:43
*** ajbrooks has joined #cc12:07
*** BjornW has quit IRC12:35
paulproteusMore on Mark Crispin and UW IMAP: http://groups.google.com/group/comp.mail.pine/browse_thread/thread/7187f4d1f4478184#12:43
bsenathany: oesearch is in tomcat/search or nutch-0.9?12:51
nathanybse: in SVN?12:51
bsenathany: updated.12:55
nathanythanks12:55
nathanyhttp://www.icommons.org/13:02
nathanybov, paulproteus, nkinkade ^^13:02
nathanybse^^13:02
*** bheekling has quit IRC13:24
*** tvol has quit IRC13:55
*** tvol has joined #CC13:55
*** tvol_ has joined #CC13:57
*** tvol has quit IRC13:57
*** rejon has quit IRC14:20
*** Mihai` has quit IRC14:54
*** rejon has joined #cc15:18
nathanyrejon: ping?15:27
rejonppppp15:30
rejonin conf rooooom on call...out in 515:30
nathanyrejon: np, didn't realize you were here15:31
hubhey rejon15:31
hubor you going to move to China?15:31
rejonhub: already live in china15:33
rejonhahaha15:33
rejonyou?15:33
huboh15:33
rejoni have a clone...live in sf and live in china15:38
rejonin china now15:38
rejonin sf now15:38
rejonok, the clone you know is in sf right now :)15:39
hub?15:42
* hub is list15:42
hubs/list/lost/15:42
* hub can't type15:42
paulproteusIt's okay, so is rejon.15:42
hubrejon: do you come to Guadec this year?15:42
*** nathany has quit IRC15:59
*** rejon has quit IRC15:59
paulproteusnkinkade, Lemme know if you want to learn the appropriate git-svn machinations for those plugins.16:00
nkinkadepaulproteus: Yeah, I'd like to.  Anytime you're free.16:00
*** tvol_ has quit IRC16:13
*** tvol has joined #CC16:14
*** pmiller has joined #cc17:05
nkinkadebse: I think staging and learn are looking okay with the new feed stuff.  Do you see any problems at a quick glance?  If not, I might just merge the changes to production.17:06
bsenkinkade: yep, looks good. my changes don't appear to be damaging either, either17:07
nkinkadeI was surprised to see that it didn't look all that bad.17:07
nkinkadebse: I suppose I could change the function to not abruptly cut off works, sort of round up to the nearest word.  Is it worth it?17:09
bsenkinkade: i added a regex to handle instances of a space and single letter at the end of the content string17:10
nkinkadeSorry, not "works" but "words"17:10
bsenearest word may be better for space and >1 letters17:10
nkinkadeWhat does the regex do?17:10
bses/\s[a-zA-Z//17:10
bsebasically17:10
bses/\s[a-zA-Z]$//17:10
bserather17:11
nkinkadeI was thinking mostly of avoiding this type of thing "ovement will help in spre... ", as in the first post, but it's not a huge deal.17:12
bseyeah, just noticed that17:12
nkinkadeBut I guess your regex could just read s/\s[a-zA-Z]+$// instead??17:12
bsei pondered fixing that too.. best idea was to compare the strings before and after, and check for cut words, and truncate again.17:13
bsebut, uh, yeah, your tweak would probably handle removing the half cut words entirely17:14
bsei was obviously overthinking it17:14
*** tvol has quit IRC17:14
nkinkadebse: Migth your str_replace() leave an open-ended <p> tag sometimes?17:15
bseno, because the content string is always inserted between <p> and </p>17:16
*** rejon has joined #cc17:17
*** Yaco has joined #cc17:19
nkinkadebse: This seems to do what we want: substr($item['content'], 0, strpos($item['content'], ' ', $charcount));17:28
bseah, strpos returns the first space after charcount?17:29
bsethat'll work17:30
nkinkadeI just tried it and it seems fine.17:30
nkinkadeSo I'll go ahead and get this stuff committed and merged to production.17:30
bsecool.17:30
*** rejon has quit IRC18:05
*** nkinkade has quit IRC18:11
*** UltraMagnus has quit IRC18:11
*** Yaco has quit IRC18:18
*** Yaco_ has joined #cc18:18
*** rejon has joined #cc18:34
*** ajbrooks has left #cc18:51
*** nkinkade has joined #cc18:54
nkinkadebse: The only problem I'm seeing with replaing \n with <p></p> is that it's making the formatting of the jurisdictions feeds look odd.19:01
bseonly a little odd19:16
bsewith the narrow width, i wouldn't say it's a major problem19:16
*** rejon has quit IRC19:18
*** bse has quit IRC19:38
*** stevel has quit IRC19:59
*** nkinkade has left #cc20:21
*** parkerhiggins has joined #cc20:53
*** rejon has joined #cc21:10
*** stevel has joined #cc21:14
*** stevel has quit IRC22:25
*** bheekling has joined #cc22:36

Generated by irclog2html.py 2.6 by Marius Gedminas - find it at mg.pov.lt!