1 2010-05-15T00:33:02  *** xorAxAx is now known as xorBxBx
   2 2010-05-15T00:33:37  *** xorRaxRax is now known as xorAxAx
   3 2010-05-15T00:34:27  *** xorAxAx has joined #moin-dev
   4 2010-05-15T06:22:49  *** ValentinJaniaut has joined #moin-dev
   5 2010-05-15T06:22:49  *** valeuf has quit IRC
   6 2010-05-15T06:22:49  *** ValentinJaniaut is now known as valeuf
   7 2010-05-15T06:32:16  *** ei-grad has quit IRC
   8 2010-05-15T06:42:07  *** valeuf has quit IRC
   9 2010-05-15T06:42:12  *** valeuf has joined #moin-dev
  10 2010-05-15T07:17:39  *** kursor has joined #moin-dev
  11 2010-05-15T07:38:48  *** ei-grad has joined #moin-dev
  12 2010-05-15T09:00:05  *** ritinardo_ has joined #moin-dev
  13 2010-05-15T09:16:39  *** ei-grad has quit IRC
  14 2010-05-15T09:44:38  *** ei-grad has joined #moin-dev
  15 2010-05-15T11:03:13  *** ei-grad has quit IRC
  16 2010-05-15T11:20:48  *** ei-grad has joined #moin-dev
  17 2010-05-15T11:40:39  *** ritinardo_ has quit IRC
  18 2010-05-15T11:58:02  *** kursor has quit IRC
  19 2010-05-15T12:20:46  <ThomasWaldmann>  re
  20 2010-05-15T13:25:19  *** ritinardo has joined #moin-dev
  21 2010-05-15T14:03:00  *** ritinardo has quit IRC
  22 2010-05-15T14:24:30  *** xorBxBx has quit IRC
  23 2010-05-15T15:02:07  *** ValentinJaniaut has joined #moin-dev
  24 2010-05-15T15:02:07  *** valeuf has quit IRC
  25 2010-05-15T15:02:08  *** ValentinJaniaut is now known as valeuf
  26 2010-05-15T17:26:34  *** eSyr has joined #moin-dev
  27 2010-05-15T17:27:58  <eSyr> ThomasWaldmann, have you any objections against complicating surge protection mechanism a little by adding ability to distinguish limits based also on action patrameters? If no, i'll try to write patch witch implements this feature after finishing updating translation.
  28 2010-05-15T17:33:41  <ThomasWaldmann> AttachFile?
  29 2010-05-15T17:39:27  <eSyr> AttachFile, edit.
  30 2010-05-15T17:45:03  <eSyr> (because giving ability to upload 300 files every 30 seconds isn't good idea to me)
  31 2010-05-15T17:50:09  <dreimark> moin
  32 2010-05-15T17:55:21  <ThomasWaldmann> eSyr: yeah, makes sense - try to make a simple patch
  33 2010-05-15T17:55:28  <eSyr> ok.
  34 2010-05-15T17:55:35  <eSyr> moin, dreimark
  35 2010-05-15T17:55:50  <ThomasWaldmann> maybe one could just mange action name
  36 2010-05-15T17:55:53  <ThomasWaldmann> mangle
  37 2010-05-15T17:57:00  <eSyr> i think about ('action', {'parameter' : 'value', 'parameter': 'value2'}). Hope this is flexible enough and not too complicated.
  38 2010-05-15T17:57:19  <eSyr> *'parameter2'
  39 2010-05-15T17:57:58  <ThomasWaldmann> it would require people to change their config
  40 2010-05-15T17:59:43  <ThomasWaldmann> how about action=AttachFile&do=get -> try to lookup 'AttachFile&do=get' key, if it fails, use 'AttachFile' key?
  41 2010-05-15T18:01:20  <eSyr> well, this is virtually the same :)
  42 2010-05-15T18:01:47  <eSyr> (i mean, string keys shouldn't be deprecated, just add new key format in addition to existing)
  43 2010-05-15T18:16:34  * dreimark looks at BeautifulSoup 
  44 2010-05-15T18:28:18  <eSyr> hehe, looks like it is dead.
  45 2010-05-15T18:28:34  <eSyr> but it was the only possibility to parse creepy html.
  46 2010-05-15T18:29:10  <eSyr> (for example witth hacks with commenting <script> tag and so on)
  47 2010-05-15T18:31:19  * dreimark is looking for code to get a complete list of urls and title from a given site
  48 2010-05-15T18:32:17  <dreimark> and the site was mostly done by frontpage - new fun
  49 2010-05-15T18:32:23  <dreimark> afterwards it is a wiki
  50 2010-05-15T19:27:38  <eSyr> hm, i've written something similiar, but using regex for <a> tag parsing.
  51 2010-05-15T19:28:37  <dreimark> http://paste.pocoo.org/show/214347/ for now just playing a bit
  52 2010-05-15T19:29:53  <dreimark> my standalone server "4406m 4.1g 2316 S  118 53.0   3405:47 python"
  53 2010-05-15T19:31:34  <dreimark> it would have been better to setup apache, but on wednesday i have not had much time
  54 2010-05-15T19:38:54  <dreimark> eSyr: why do you think it is dead? http://www.crummy.com/software/BeautifulSoup/
  55 2010-05-15T19:39:05  <dreimark> The most recent release in the 3.0 series is 3.0.8.1, released April 9, 2010.
  56 2010-05-15T19:39:31  <eSyr> dreimark, because it have been ported from sqmllib and now doesn't support all features 3.0 does.
  57 2010-05-15T19:40:29  <eSyr> I no longer enjoy working on Beautiful Soup, but too many people depend on it for me to let the project die just because it depends on code that's been removed from the Python standard library. So I wrote Beautiful Soup 3.1.0, which cleans up the Python 2.x code so that it can be automatically converted to Python 3.0. code. Part of this change was to switch the underlying parser from SGMLParser to HTMLParser. The errors you're seeing are
  58 2010-05-15T19:40:29  <eSyr> caused by HTML that SGMLParser could handle but HTMLParser can't.
  59 2010-05-15T19:41:25  <dreimark> ok, bad, so i will continue with tidylib
  60 2010-05-15T19:42:20  <eSyr> dreimark, also check out urlpatrse.urljoin
  61 2010-05-15T19:42:31  <eSyr> may be this will be useful for you.
  62 2010-05-15T19:42:45  <dreimark> yes, thx
  63 2010-05-15T19:44:46  <eSyr> dreimark, found my code: http://paste.pocoo.org/show/214351/ it's creepy and dirty but worked for me.
  64 2010-05-15T19:49:03  <dreimark> eSyr: :)
  65 2010-05-15T19:50:40  <dreimark> that saves some headache. my approach has currently relative links
  66 2010-05-15T20:00:16  <dreimark> eSyr: is it gpl v2 or similiar?
  67 2010-05-15T20:00:33  <eSyr> dreimark, gplv2, i think.
  68 2010-05-15T20:02:08  <dreimark> do you want to add that docstring i think i rather want to add it to utils of coconuts instead on writing a similar tool
  69 2010-05-15T20:03:03  <dreimark> currently i experiment with writing a generic convertor to moinmoin
  70 2010-05-15T20:03:07  <eSyr> hm, ok, i'll going to cleanup and document it a little.
  71 2010-05-15T20:03:09  <dreimark> and it only needs url lists
  72 2010-05-15T20:03:23  <eSyr> *i'm going
  73 2010-05-15T20:20:09  <eSyr> dreimark, http://paste.pocoo.org/show/214359/
  74 2010-05-15T20:29:00  <dreimark> eSyr: thx
  75 2010-05-15T20:33:32  <dreimark> eSyr: https://coconuts.icg.kfa-juelich.de/hg/coconuts-0.3/rev/c5b6e0d92c48 added
  76 2010-05-15T21:08:12  *** eSyr has quit IRC
  77 2010-05-15T21:20:54  *** eSyr has joined #moin-dev
  78 

MoinMoin: MoinMoinChat/Logs/moin-dev/2010-05-15 (last edited 2010-05-14 22:45:03 by IrcLogImporter)