[01:07:11] New patchset: Jeroen De Dauw; "Some cleanup of the property statistics code [DO NOT MERGE]" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/37656 [04:24:49] New review: Yaron Koren; "I re-assigned that bug to Stephan. There are a few other issues that have been discovered in this co..." [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/34974 [12:29:12] New patchset: Kghbln; "Remove obsolete configurations parameters" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/37673 [12:32:34] is there a way to store only time in Type:Date [12:32:48] it wont accept 00:00:50 [12:36:47] I want to show a timeline where only hours min etc matter. The actual day doesnt matter [12:58:55] Domerich: there currently isn't [12:59:21] ok thanks [12:59:44] You could define a custom data type "duration" and have it store seconds, but that still wouldn't respect the rollover from 59s to 1:00 [13:00:31] It also wouldn't plot on Timeline as that's geared towards dates [13:58:50] REGISTER S2ozpGEWlaCfRqd9fNc0zJ1 karsten@hoffmeyer.info [13:59:07] ouch [14:00:58] time for a new password methinks [14:04:11] nick [[kgh]] [14:05:35] this is fatigueing [14:12:32] Internet is like that... [14:30:30] New patchset: Mwjames; "(Bug 42830) Avoid getLink() strict standards warning" [mediawiki/extensions/SemanticMaps] (master) - https://gerrit.wikimedia.org/r/37675 [15:09:03] New patchset: Mwjames; "Remove obsolete configurations parameters" [mediawiki/extensions/SemanticMediaWiki] (1.8.x) - https://gerrit.wikimedia.org/r/37680 [15:10:05] New review: Mwjames; "For 1.8.x patch, see [1]" [mediawiki/extensions/SemanticMediaWiki] (master); V: 1 C: 1; - https://gerrit.wikimedia.org/r/37673 [16:00:00] GROUP kghbln|away [16:15:00] mh I want to include varibable but it doesnt work [16:15:33] starttime={{{date }}}00:00:00 where date is a named variable in that document [16:31:08] can I define a variable in a page so that it can be used by different templates at the same time? [16:40:43] can anybody tell me what I get these error msg for? [16:41:29] oh okay [16:51:36] why is SMW doing breaks after every sentense even though I didnt say so? http://domerich.funpic.de/wiki/index.php/Test1 [16:59:35] I don't think it's SMW giving the breaks, but your inserting a break in the Marktext template, between and {{{maintext|}}} [16:59:50] that's good advice [16:59:58] and you've a second one there beteeen {{{maintext|}}} and the {{#set: declaration [17:00:12] I was just checking the template but didnt see it myself ^^ [17:00:50] It's an oversight I've made many dozens of time myself :-) [17:01:54] :D great now it works. thanks [17:01:58] I was already panicing [17:20:59] is [17:21:32] there a symbol for empty? because I get trouble when I use {{{1|}}}, when {{{1|no entry}}} gets me out of trouble [17:27:47] Domerich: what kind of trouble? [17:28:01] it gives me yellow warnings [17:28:23] http://domerich.funpic.de/wiki/index.php/Test1 [17:29:45] Domerich - for some reason, I can't get rid of those popup ads on the site. [17:29:58] you need to intall adblocker in opera [17:30:07] I dont see any adversitement anymore [17:30:15] Actually, never mind, it went away. [17:30:19] :D [17:31:03] Domerich: there's a LocalSettings.php setting that dictates whether those error messages are displayed. [17:31:18] well isnt there something wrong? [17:31:24] You might even have it turned on, since I thought it was off by default... [17:31:39] I dont know thats what I did http://domerich.funpic.de/wiki/index.php?title=Vorlage:MarkText&action=edit [17:31:53] No, it's not a real error message - I don't think saving a blank property value is an error. [17:31:55] when I change {{{2|}}} to {{{2|no topic}}} they go away [17:32:15] That dates from the days when SMW properties were usually in free text, as opposed to in templates. [17:32:29] mh [17:33:27] Ah, here we go - you should set "$smwgInlineErrors = false;". [17:36:07] for some reason I cant find that line [17:37:38] ah I should add it :D [17:39:20] I think it's still showing them [17:50:45] :( [18:14:39] Domerich: I've cleared all your errors [18:15:11] thank you. what was wrong? [18:15:22] but you've lost the multiple-topic possibility until you've installed extension ParserFunctions and move the code from explanation to subobject [18:15:54] let me check [18:16:03] 2 things: your topic wasn't typed and thus was of type "page" or "seite" - it now is typed "string" [18:16:45] oh bad practise on my part. [18:16:48] next, {{#subobject: apparently allows for multiple values, but doesn't like || [18:17:32] so you need code that does or | or || as needed [18:17:32] so it always wants a value? [18:17:40] apparently so [18:17:53] after typing "topic" it complained about empty values [18:18:04] so if you install ParserFunctions you can do #if: logic [18:18:04] haha ok [18:18:13] nice I need to read up on that [18:18:18] the right expression is already in the explanation of Vorlage:MarkText [18:18:35] yeah I saw you added something :) [18:19:04] also there's a nifty trick involving template {{{!}}} [18:19:54] used many a time, when you want to do stuff like {{#if: |}} but itself needs a pipe symbol [18:20:24] if you put the {{!}} in there, the #if doesn't see it, but after evaluation of the #if expression, the pipe appears [18:21:12] its sort of a convention to use {{!}} for that pipe-that-isn't-a-pipe-on-first-parse [18:22:32] errr [18:23:18] one thing after another :) what does this do? {{#if:{{{1|}}}|{{!}}{{{1}}}}} [18:23:27] if 1 is empty... [18:23:52] if {{{1}}} is empty, it does nothing [18:24:07] if it isn't, the statement prints {{!}}{{{1}}} [18:24:20] but {{!}} gets substituted as | [18:24:24] thus: |{{{1}}} [18:24:38] haha good stuff [18:24:48] read http://www.mediawiki.org/wiki/Help:Extension:ParserFunctions#Escaping_pipe_characters_in_tables [18:24:53] same principle [18:25:00] ok gotta go, bass lesson [18:25:01] \o [18:25:07] you play bass too ? :) [18:25:33] ok thanks cu [19:50:59] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticMaps] (master) - https://gerrit.wikimedia.org/r/37675 [20:26:03] re [22:30:43] New patchset: Yaron Koren; "Added handling for the case of no top-level categories in the wiki" [mediawiki/extensions/SemanticDrilldown] (master) - https://gerrit.wikimedia.org/r/37772 [22:37:23] Change merged: Yaron Koren; [mediawiki/extensions/SemanticDrilldown] (master) - https://gerrit.wikimedia.org/r/37772 [23:28:31] New patchset: Yaron Koren; "Changed SIO index to pad to three digits (001 instead of 1)" [mediawiki/extensions/SemanticInternalObjects] (master) - https://gerrit.wikimedia.org/r/37773 [23:29:41] Change merged: Yaron Koren; [mediawiki/extensions/SemanticInternalObjects] (master) - https://gerrit.wikimedia.org/r/37773 [23:52:50] New patchset: Yaron Koren; "Added handling for SMW 1.9 - SMWSubobject class is now SMW\Subobject" [mediawiki/extensions/SemanticInternalObjects] (master) - https://gerrit.wikimedia.org/r/37774 [23:58:56] New patchset: Yaron Koren; "Fixed problem in copying" [mediawiki/extensions/SemanticInternalObjects] (master) - https://gerrit.wikimedia.org/r/37775