1 2015-04-06T00:37:02  *** ponyofdeath has quit IRC
   2 2015-04-06T00:39:39  *** ponyofdeath has joined #moin-dev
   3 2015-04-06T04:11:19  *** aviraldg has quit IRC
   4 2015-04-06T08:16:44  <daixtr> is it good practice to use virtualenv to setup moin-1.9.8? Asking here, coz i ended up inserting 'sys.insert(0,...' just to make my custom macros work with dependencies installed in the virtualenv.
   5 2015-04-06T09:15:25  *** greg_f has joined #moin-dev
   6 2015-04-06T09:39:11  <ThomasWaldmann> daixtr: the usual way with 1.9 was to tweak sys.path, as it had the most important requirements bundled in MoinMoin/support/ anyway
   7 2015-04-06T12:24:46  *** vipul20 has joined #moin-dev
   8 2015-04-06T12:45:20  *** dave_largo has joined #moin-dev
   9 2015-04-06T13:22:39  <daixtr> ThomasWaldmann: so there's no issue of mixing stuff this way... i was just worried that inserting virtualenv site-packages will break things, etc...
  10 2015-04-06T13:53:13  *** ThomasWaldmann has quit IRC
  11 2015-04-06T13:53:13  *** ronny has quit IRC
  12 2015-04-06T13:53:13  *** therauli has quit IRC
  13 2015-04-06T13:53:14  *** daixtr has quit IRC
  14 2015-04-06T13:53:14  *** SteveMcIntyre has quit IRC
  15 2015-04-06T13:55:15  *** daixtr has joined #moin-dev
  16 2015-04-06T13:55:15  *** SteveMcIntyre has joined #moin-dev
  17 2015-04-06T13:58:18  *** ThomasWaldmann has joined #moin-dev
  18 2015-04-06T13:58:18  *** therauli has joined #moin-dev
  19 2015-04-06T13:58:18  *** ronny has joined #moin-dev
  20 2015-04-06T14:56:10  *** aabs08 has joined #moin-dev
  21 2015-04-06T15:00:57  *** pigeonflight has joined #moin-dev
  22 2015-04-06T15:03:17  *** aabs08 has quit IRC
  23 2015-04-06T15:39:09  *** RogerHaase has joined #moin-dev
  24 2015-04-06T15:41:39  <RogerHaase> ronny: hi, I saw you wanted to discuss theming?
  25 2015-04-06T15:44:57  <ronny> RogerHaase: wb
  26 2015-04-06T15:45:46  <ronny> RogerHaase: as far as i know you deal with most of the frontend, because i wanted to kill theming as it is now, and later provide a minimal replacement for it based on template loader
  27 2015-04-06T15:45:59  <ronny> but i'd like to hear your oppinion on that idea as well (since its a bit radical)
  28 2015-04-06T15:47:03  <RogerHaase> I do not know anything about template loader
  29 2015-04-06T15:47:57  <RogerHaase> so if it is better than what we have it is OK by me
  30 2015-04-06T15:48:18  *** UnoPolak has quit IRC
  31 2015-04-06T15:49:46  <RogerHaase> seems biggest problem we have not is having to use both less and stylus. (I once thought I would like css precompilers, but I find they do not help and consume too much time and effort)
  32 2015-04-06T15:49:48  <ronny> RogerHaase: the basic idea would be that moin provides a basic default template, thats nicely overridable, and thems can override singular files or the whole layouy by just adding them in some way
  33 2015-04-06T15:50:39  *** UnoPolak has joined #moin-dev
  34 2015-04-06T15:51:43  <ronny> RogerHaase: hmm, static things are indeed more of a problem it seems
  35 2015-04-06T15:52:40  <ronny> RogerHaase: do you like the basic idea of overriding the base theme via single or multiple files in a theme?
  36 2015-04-06T15:55:11  <RogerHaase> I have been trying to kill off most of the contents of themes/basic/templates (except for layout and show) so themes would be about topbar and sidebar and moin-content DIV would be the same for all themes (although themes could override templates and CSS if there is a reason, but I see not reason for supported themes)
  37 2015-04-06T16:07:21  <ronny> RogerHaase: then it might be a good idea to kill theming alltogether and just provide a way to style top and sidebars
  38 2015-04-06T16:08:06  <ronny> i wonder if that could be made a cached wiki item thats overriable
  39 2015-04-06T16:27:41  <RogerHaase> ronny: content of top and sidebars differ per theme now. If we had a CMS-like theme, then content of topbar and sidebar would also be different.
  40 2015-04-06T16:28:23  <RogerHaase> ronny: your idea is to kill off Flask_Themes in favor of a theme loader?
  41 2015-04-06T17:35:09  <daixtr> hey, i just found out this 'tinymce' GUI editor.. maybe this is an easier to plug into moin-1.9.8.. dunno...
  42 2015-04-06T18:34:07  *** magu| has joined #moin-dev
  43 2015-04-06T18:40:44  <daixtr> hi, need some guide here for enabling email feature.. in the linux server i can already 'echo hello | mail -s "test" user@gmail.com', but what exactly should I put into wikiconfig.py?
  44 2015-04-06T18:44:06  *** greg_f has quit IRC
  45 2015-04-06T18:44:57  *** magu| is now known as magu
  46 2015-04-06T19:02:22  <RogerHaase> daixtr: I use a gmail account to send mail:
  47 2015-04-06T19:02:23  <RogerHaase>     mail_smarthost = 'smtp.gmail.com'
  48 2015-04-06T19:02:23  <RogerHaase>     mail_from = u'<id>@gmail.com'
  49 2015-04-06T19:02:23  <RogerHaase>     mail_login = '<id>@gmail.com <password>'
  50 2015-04-06T19:02:23  <RogerHaase>  where <id> and <password> are replaced with yours
  51 2015-04-06T19:50:00  <daixtr> RogerHaase: i subcribed to a page, did a change..but did not get an email.. is there a quick way to test if mail works?
  52 2015-04-06T19:52:46  <RogerHaase> daixtr: you do not get an email if you are logged in and subscribed (moin assumes you know your made a change). try logging out and making a change or log in with a different ID
  53 2015-04-06T19:58:56  *** aviraldg has joined #moin-dev
  54 2015-04-06T20:05:13  <daixtr> RogerHaase: let me test that..
  55 2015-04-06T20:25:54  *** aabs08 has joined #moin-dev
  56 2015-04-06T20:47:14  *** vipul20 has quit IRC
  57 2015-04-06T21:04:59  *** aabs08 has quit IRC
  58 2015-04-06T21:18:05  *** dave_largo has quit IRC
  59 2015-04-06T21:58:23  *** RogerHaase has left #moin-dev
  60 

MoinMoin: MoinMoinChat/Logs/moin-dev/2015-04-06 (last edited 2015-04-06 00:45:02 by IrcLogImporter)