[15:31:41] hi [15:32:27] Hello! [15:32:37] semantic forms would need a dragdrop file uploader [15:32:44] ;) [15:32:50] Okay, good to know. [15:33:16] Do you mean, as part of the "upload" functionality, or in general for textareas? [15:34:09] http://bierepedia.com check an example [15:34:22] the pays one [15:35:21] where you see the flag. I would have loved to add it via a drag and drop instead of clicking the link and have to edit it to make it show [15:35:36] So - for the "free text" area, then. [15:36:26] no I created an image data in my template [15:37:18] I don't understand - there's no form here. [15:37:57] when I set it to uploadable file in the form I would like to have the option to remove the text line to add a simple drag drop html5 square with a nice caption to tell drag drop and a button to say upload. [15:38:13] the form is in Ajout [15:38:47] You understand what the wiki is about right ? [15:38:54] Oui, je comprends. [15:39:00] Cool [15:39:11] c'est bon [15:39:52] So you want an editor that allows for drag-and-drop, that can apply to textareas. [15:40:26] that can replace the text area in the form when you make it [15:40:55] oh and a form editor. When you made a mistake it would be nice to visualy edit it. [15:41:40] The map system. Can it load from the database to populate markers or it has to be manually done? [15:41:41] Ah - for that, the Page Schemas extension is the way to go. [15:41:57] Yes - see the Semantic Maps extension. [15:42:14] page schemas is a semantic tool too? [15:42:39] It hooks in with SMW and the rest, so, yes, essentially. [15:42:42] Yaron you are awesome ! [15:43:04] Where you from? [15:44:13] Israel and New York City. [15:44:35] Where you at now ? NYC ? [15:44:53] Yes. [15:45:56] you like beer ? [15:46:25] I do, actually, yes. [15:46:46] Craft beer ? [15:48:12] Definitely. [15:48:16] http://www.goodbeernyc.com/ [15:48:27] this is a good craft beer store [15:48:36] there are many [15:48:45] Ooh, that looks nice. [15:48:52] this is my personal notes [15:48:59] not in the wiki yet [15:49:13] I'm going to add east coast US next year [15:49:32] Cool! [15:50:33] thanks to you I'll be able to make my first extension to make doubleclick work on my mediawiki [15:50:52] Well, I hope so; that'll be nice. [15:51:00] so I owe you a beer ;) [15:51:39] Hey, I'm always up for a beer chosen by an expert. [15:51:49] Where are you located? France? [15:51:51] Next time I'm in NYC [15:52:11] Alright, that sounds good. [15:52:13] Montréal, Québec I'm at 8 hours drive [15:52:19] hahaha [15:52:30] Ah! Chouette. [15:52:44] Not all frenchies are from europe ;P [15:52:51] Yes, I know. :) [15:53:18] We have the upcoming SMWCon in Montreal - I don't know if you knew that. [15:53:31] I might not be able to attend, unfortunately, but it should be a good time either way. [15:53:44] no. When is that [15:53:58] I can be the "beer guide" ;P [15:54:08] http://semantic-mediawiki.org/wiki/SMWCon_Spring_2014 [15:54:13] That sounds great! [15:54:15] $wgResourceModules += ?? [15:54:54] See the SF example. [15:55:17] yes but why the +=? to happend it ? [15:55:21] append [15:55:35] I don't understand the question. [15:56:36] in the file it is written += is that to append the code to the already existing variable ? [15:57:51] Yes. [15:59:27] ok [16:00:09] what would I need to add my js only. nothing more. [16:02:18] the 'script' section ? [16:07:04] You should definitely have "'dependencies' => array( 'jquery' )," in theree. [16:07:06] there. [16:16:39] ok [16:22:33] do I need a ext.abc.main declaration somewhere ? [16:28:35] Yaron what do you think of semantic signup? [16:35:14] I still have that non object error [16:39:34] bierepedia: you don't need to have one called "main", no. [16:39:39] What non-object error? [16:39:45] SS should work, as far as I know. [16:40:09] when I call the $output [16:48:08] That's not enough information. [16:49:43] for my google doubleclick ext. [16:50:21] $outputPage->addModules( array( '$IP/jsscripts/loadbanner.js', '$IP/jsscripts/initbanner.js' ) ); [16:50:37] I add that at the end of my php file and it send me the error [16:51:12] You need to pass in a module name to addModules(). [16:51:20] That's why you defined all those modules. :) [16:54:24] addModule( "ext.doubleclick"); ? [16:56:29] Sure - whatever you called the module. [16:56:30] how can I delete unused properties? [16:56:51] Go to the page for that property, and delete it. [16:57:43] many of them don't have a page [16:58:26] I added the property to a page, and later removed it, and never created the property page (which I usually do when giving the property a type), so now there's a red link to a nonexistent property page on Special:Properties [16:58:43] That sounds like an SMW bug, then. [16:58:46] ok [16:58:51] not important right now, just curious [16:59:41] so, in order to get my recipe ingredient quantity problem solved, I'm going to "promote" all of my recipes to their own pages, so that ingredients can be subobjects with a quantity property [17:00:28] before I do that, I'd like to understand how I'll *use* that structure. to display a recipe and its ingredients with quantities, is the correct approach to query the recipes with an output=template, and then in the template query the subobjects of that recipe to display the ingredients? [17:00:40] is that the *only* approach, even? [17:00:57] Do you mean "format=template"? [17:01:00] err, yes [17:01:01] sorry [17:01:19] You don't need to use the "template" format - you can use "table". [17:01:56] ...or "broadtable", but that's essentially the same thing. [17:03:27] oh? [17:03:32] I'll experiment to see how that works [17:03:55] I thought from previous trials that a subobject wouldn't appear on a table output [17:04:08] how do I specify in the query that I want to see subobjects? [17:04:24] You don't - they're stored just like regular properties. [17:05:05] The only real difference is that you probably don't want to display the subobject name in there, so you should have a "mainlabel=-". [17:19:22] ok, perhaps I'm confused [17:19:23] http://olywiki.asciiking.com/wiki/index.php/Sandbox [17:19:25] here's a test page [17:19:42] that page has two properties and two subobject, each with two properties [17:19:55] I could rename them something more exemplary if that would help [17:20:14] I'm trying to get information about the subobjects into the one-and-only row of that table [17:22:01] actually, went ahead and did that, to make it easier to read, I think [17:40:21] and I updated it to use a template to show the sort of thing I want [17:40:28] although it doesn't actually have to be nested tables like that [17:42:45] something using rowspan would be nice [17:42:52] or just with line breaks inside the cell [18:06:39] I can't see any way to get info about a page and its subobjects into the same query without using a template with another query [18:53:20] hello [18:54:17] Yaron if I want the page schema to be avalaible for the admin only I change user to sysop? [19:21:38] bierepedia: that sounds right... [19:27:25] Yaron both signup and schema are not working they endup on empty pages [19:56:34] (CR) Chad: [C: 2] Call Linker methods statically [extensions/SemanticPageMaker] - https://gerrit.wikimedia.org/r/106931 (owner: Siebrand) [19:56:38] (Merged) jenkins-bot: Call Linker methods statically [extensions/SemanticPageMaker] - https://gerrit.wikimedia.org/r/106931 (owner: Siebrand) [20:00:17] (CR) Chad: [C: 2 V: 2] Replace deprecated SpecialPage::getPage() [extensions/SemanticComments] - https://gerrit.wikimedia.org/r/104386 (owner: Siebrand) [20:01:14] (CR) Chad: [C: 2] Replace deprecated SpecialPage::getPage() [extensions/SemanticPageMaker] - https://gerrit.wikimedia.org/r/104388 (owner: Siebrand) [20:01:17] (Merged) jenkins-bot: Replace deprecated SpecialPage::getPage() [extensions/SemanticPageMaker] - https://gerrit.wikimedia.org/r/104388 (owner: Siebrand) [20:02:56] (CR) Chad: [C: 2] Remove backward compatibility for calls to OutputPage [extensions/SemanticForms] - https://gerrit.wikimedia.org/r/106939 (owner: Siebrand) [20:03:01] (Merged) jenkins-bot: Remove backward compatibility for calls to OutputPage [extensions/SemanticForms] - https://gerrit.wikimedia.org/r/106939 (owner: Siebrand) [20:15:31] (CR) Yaron Koren: "Chad - please don't merge in commits to Semantic Forms, unless it's something really straightforward or an obvious bug fix. In this case, " [extensions/SemanticForms] - https://gerrit.wikimedia.org/r/106939 (owner: Siebrand) [21:13:25] Now I'm torn... If I have to always use a template, that makes it a lot harder for editors to make new queries [23:34:53] Hello [23:37:07] Is it possible to store special characters like '=' or '|' in text/string property ? [23:39:03] I use semantic form to perform...