[Movecommons-commits] r148 - in trunk: src wp-theme

Mario Gallegos mgallegos at ourproject.org
Wed Mar 7 15:41:33 CET 2012


Author: mgallegos
Date: 2012-03-07 15:41:33 +0100 (Wed, 07 Mar 2012)
New Revision: 148

Added:
   trunk/src/jquery.tagsinput.css
   trunk/src/jquery.tagsinput.min.js
Removed:
   trunk/wp-theme/ mc2-form.php
Log:
Librer?\195?\173as javascript para nuevo formulario.

Added: trunk/src/jquery.tagsinput.css
===================================================================
--- trunk/src/jquery.tagsinput.css	                        (rev 0)
+++ trunk/src/jquery.tagsinput.css	2012-03-07 14:41:33 UTC (rev 148)
@@ -0,0 +1,7 @@
+div.tagsinput { border:1px solid #CCC; background: #FFF; padding:5px; width:300px; height:100px; overflow-y: auto;}
+div.tagsinput span.tag { border: 1px solid #a5d24a; -moz-border-radius:2px; -webkit-border-radius:2px; display: block; float: left; padding: 5px; text-decoration:none; background: #cde69c; color: #638421; margin-right: 5px; margin-bottom:5px;font-family: helvetica;  font-size:13px;}
+div.tagsinput span.tag a { font-weight: bold; color: #82ad2b; text-decoration:none; font-size: 11px;  } 
+div.tagsinput input { width:80px; margin:0px; font-family: helvetica; font-size: 13px; border:1px solid transparent; padding:5px; background: transparent; color: #000; outline:0px;  margin-right:5px; margin-bottom:5px; }
+div.tagsinput div { display:block; float: left; } 
+.tags_clear { clear: both; width: 100%; height: 0px; }
+.not_valid {background: #FBD8DB !important; color: #90111A !important;}


Property changes on: trunk/src/jquery.tagsinput.css
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: trunk/src/jquery.tagsinput.min.js
===================================================================
--- trunk/src/jquery.tagsinput.min.js	                        (rev 0)
+++ trunk/src/jquery.tagsinput.min.js	2012-03-07 14:41:33 UTC (rev 148)
@@ -0,0 +1 @@
+(function(a){var b=new Array;var c=new Array;a.fn.doAutosize=function(b){var c=a(this).data("minwidth"),d=a(this).data("maxwidth"),e="",f=a(this),g=a("#"+a(this).data("tester_id"));if(e===(e=f.val())){return}var h=e.replace(/&/g,"&").replace(/\s/g," ").replace(/</g,"<").replace(/>/g,">");g.html(h);var i=g.width(),j=i+b.comfortZone>=c?i+b.comfortZone:c,k=f.width(),l=j<k&&j>=c||j>c&&j<d;if(l){f.width(j)}};a.fn.resetAutosize=function(b){var c=a(this).data("minwidth")||b.minInputWidth||a(this).width(),d=a(this).data("maxwidth")||b.maxInputWidth||a(this).closest(".tagsinput").width()-b.inputPadding,e="",f=a(this),g=a("<tester/>").css({position:"absolute",top:-9999,left:-9999,width:"auto",fontSize:f.css("fontSize"),fontFamily:f.css("fontFamily"),fontWeight:f.css("fontWeight"),letterSpacing:f.css("letterSpacing"),whiteSpace:"nowrap"}),h=a(this).attr("id")+"_autosize_tester";if(!a("#"+h).length>0){g.attr("id",h);g.appendTo("body")}f.data("minwidth",c);f.data("maxwidth",d);f.data("tester_id",h);f.css("width",c)};a.fn.addTag=function(d,e){e=jQuery.extend({focus:false,callback:true},e);this.each(function(){var f=a(this).attr("id");var g=a(this).val().split(b[f]);if(g[0]==""){g=new Array}d=jQuery.trim(d);if(e.unique){var h=a(g).tagExist(d);if(h==true){a("#"+f+"_tag").addClass("not_valid")}}else{var h=false}if(d!=""&&h!=true){a("<span>").addClass("tag").append(a("<span>").text(d).append("  "),a("<a>",{href:"#",title:"Removing tag",text:"x"}).click(function(){return a("#"+f).removeTag(escape(d))})).insertBefore("#"+f+"_addTag");g.push(d);a("#"+f+"_tag").val("");if(e.focus){a("#"+f+"_tag").focus()}else{a("#"+f+"_tag").blur()}a.fn.tagsInput.updateTagsField(this,g);if(e.callback&&c[f]&&c[f]["onAddTag"]){var i=c[f]["onAddTag"];i.call(this,d)}if(c[f]&&c[f]["onChange"]){var j=g.length;var i=c[f]["onChange"];i.call(this,a(this),g[j-1])}}});return false};a.fn.removeTag=function(d){d=unescape(d);this.each(function(){var e=a(this).attr("id");var f=a(this).val().split(b[e]);a("#"+e+"_tagsinput .tag").remove();str="";for(i=0;i<f.length;i++){if(f[i]!=d){str=str+b[e]+f[i]}}a.fn.tagsInput.importTags(this,str);if(c[e]&&c[e]["onRemoveTag"]){var g=c[e]["onRemoveTag"];g.call(this,d)}});return false};a.fn.tagExist=function(b){return jQuery.inArray(b,a(this))>=0};a.fn.importTags=function(b){id=a(this).attr("id");a("#"+id+"_tagsinput .tag").remove();a.fn.tagsInput.importTags(this,b)};a.fn.tagsInput=function(d){var e=jQuery.extend({interactive:true,defaultText:"add a tag",minChars:0,width:"300px",height:"100px",autocomplete:{selectFirst:false},hide:true,delimiter:",",unique:true,removeWithBackspace:true,placeholderColor:"#666666",autosize:true,comfortZone:20,inputPadding:6*2},d);this.each(function(){if(e.hide){a(this).hide()}var d=a(this).attr("id");var f=jQuery.extend({pid:d,real_input:"#"+d,holder:"#"+d+"_tagsinput",input_wrapper:"#"+d+"_addTag",fake_input:"#"+d+"_tag"},e);b[d]=f.delimiter;if(e.onAddTag||e.onRemoveTag||e.onChange){c[d]=new Array;c[d]["onAddTag"]=e.onAddTag;c[d]["onRemoveTag"]=e.onRemoveTag;c[d]["onChange"]=e.onChange}var g='<div id="'+d+'_tagsinput" class="tagsinput"><div id="'+d+'_addTag">';if(e.interactive){g=g+'<input id="'+d+'_tag" value="" data-default="'+e.defaultText+'" />'}g=g+'</div><div class="tags_clear"></div></div>';a(g).insertAfter(this);a(f.holder).css("width",e.width);a(f.holder).css("height",e.height);if(a(f.real_input).val()!=""){a.fn.tagsInput.importTags(a(f.real_input),a(f.real_input).val())}if(e.interactive){a(f.fake_input).val(a(f.fake_input).attr("data-default"));a(f.fake_input).css("color",e.placeholderColor);a(f.fake_input).resetAutosize(e);a(f.holder).bind("click",f,function(b){a(b.data.fake_input).focus()});a(f.fake_input).bind("focus",f,function(b){if(a(b.data.fake_input).val()==a(b.data.fake_input).attr("data-default")){a(b.data.fake_input).val("")}a(b.data.fake_input).css("color","#000000")});if(e.autocomplete_url!=undefined){autocomplete_options={source:e.autocomplete_url};for(attrname in e.autocomplete){autocomplete_options[attrname]=e.autocomplete[attrname]}if(jQuery.Autocompleter!==undefined){a(f.fake_input).autocomplete(e.autocomplete_url,e.autocomplete);a(f.fake_input).bind("result",f,function(b,c,f){if(c){a("#"+d).addTag(c[0]+"",{focus:true,unique:e.unique})}})}else if(jQuery.ui.autocomplete!==undefined){a(f.fake_input).autocomplete(autocomplete_options);a(f.fake_input).bind("autocompleteselect",f,function(b,c){a(b.data.real_input).addTag(c.item.value,{focus:true,unique:e.unique});return false})}}else{a(f.fake_input).bind("blur",f,function(b){var c=a(this).attr("data-default");if(a(b.data.fake_input).val()!=""&&a(b.data.fake_input).val()!=c){if(b.data.minChars<=a(b.data.fake_input).val().length&&(!b.data.maxChars||b.data.maxChars>=a(b.data.fake_input).val().length))a(b.data.real_input).addTag(a(b.data.fake_input).val(),{focus:true,unique:e.unique})}else{a(b.data.fake_input).val(a(b.data.fake_input).attr("data-default"));a(b.data.fake_input).css("color",e.placeholderColor)}return false})}a(f.fake_input).bind("keypress",f,function(b){if(b.which==b.data.delimiter.charCodeAt(0)||b.which==13){b.preventDefault();if(b.data.minChars<=a(b.data.fake_input).val().length&&(!b.data.maxChars||b.data.maxChars>=a(b.data.fake_input).val().length))a(b.data.real_input).addTag(a(b.data.fake_input).val(),{focus:true,unique:e.unique});a(b.data.fake_input).resetAutosize(e);return false}else if(b.data.autosize){a(b.data.fake_input).doAutosize(e)}});f.removeWithBackspace&&a(f.fake_input).bind("keydown",function(b){if(b.keyCode==8&&a(this).val()==""){b.preventDefault();var c=a(this).closest(".tagsinput").find(".tag:last").text();var d=a(this).attr("id").replace(/_tag$/,"");c=c.replace(/[\s]+x$/,"");a("#"+d).removeTag(escape(c));a(this).trigger("focus")}});a(f.fake_input).blur();if(f.unique){a(f.fake_input).keydown(function(b){if(b.keyCode==8||String.fromCharCode(b.which).match(/\w+|[áéíóúÁÉÍÓÚñÑ,/]+/)){a(this).removeClass("not_valid")}})}}return false});return this};a.fn.tagsInput.updateTagsField=function(c,d){var e=a(c).attr("id");a(c).val(d.join(b[e]))};a.fn.tagsInput.importTags=function(d,e){a(d).val("");var f=a(d).attr("id");var g=e.split(b[f]);for(i=0;i<g.length;i++){a(d).addTag(g[i],{focus:false,callback:false})}if(c[f]&&c[f]["onChange"]){var h=c[f]["onChange"];h.call(d,d,g[i])}}})(jQuery);
\ No newline at end of file


Property changes on: trunk/src/jquery.tagsinput.min.js
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Deleted: trunk/wp-theme/ mc2-form.php
===================================================================
--- trunk/wp-theme/ mc2-form.php	2012-03-07 13:24:30 UTC (rev 147)
+++ trunk/wp-theme/ mc2-form.php	2012-03-07 14:41:33 UTC (rev 148)
@@ -1,159 +0,0 @@
-<div class="mc-form-header">
-<div class="mc-form-intro"><h2>
-<?php _e("Frame your initiative or collective:", "mc"); ?></h2><?php echo qtrans_generateLanguageSelectCode("text"); ?><img src="/mc/0.1/images/" alt="" class="mc-form-icon-result" id="mc-form-icon-result" style="display: block; margin: 40px 60px;" /></div>
-<div class="mc-form-info">
-<?php _e("Move Commons allows your collective/initiative: <ul> <li>To help others to understand your work and approach </li> <li>To find your work easier</li> <li>To find other collectives with common interests</li> <li>To attract volunteers to your collective</li> </ul> Choose your MC logo here, clicking in the appropriate boxes:", "mc"); ?></div>
-</div>
-<div class="mc-clean"></div>
-  <div class="mc-form-required-info" id="mc-form-required-name">
-  <div class="label">
-    <label id="mc-required-title-name"><?php _e("Name of your initiative", "mc"); ?><span class="required-field">*</span></label>
-    <label class="pre" for="ininame"></label>
-    <input type="text" name="ininame" value="" id="ininame" />
-  </div>
-  </div>
-  <div class="mc-form-required-info" id="mc-form-required-url">
-  <div class="label">
-    <label id="mc-required-title-url"><?php _e("Web address", "mc"); ?><span class="required-field">*</span></label>
-    <label class="pre" for="url"><?php _e("something like http://example.com", "mc"); ?></label>
-    <input type="text" name="url" value="" id="url" />
-  </div>
-  </div>
-  <div class="mc-form-optional-info" id="mc-form-optional-keywords">
-  <div class="label">
-    <label id="mc-optional-title"><?php _e("Keywords comma-separated", "mc"); ?></label>
-    <label class="pre" for="keywords"><?php _e("for ex: health, education, etc", "mc"); ?></label>
-    <input type="text" name="keywords" value="" id="keywords" />
-  </div>
-  </div>
-  <div class="mc-clean"></div>
-  <div class="mc-cat-group-a" id="mc-cat-group-a">
-  <div class="mc-form-rounded mc-form-category-group mc-form-category-group-a float-left mc-form-category-group-aa" id="mc-form-category-group-aa">
-    <img src="/mc/0.1/images/step1.png" alt="step1" class="mc-steps-number" />
-  <img src="/mc/0.1/images/cat-selected.png" alt="selected" class="mc-cat-selected mc-cat-selected-a" id="mc-cat-selected-np" />
-  <div id="mc-form-np" class="mc-form-rounded mc-form-descbox mc-form-descbox-a" title="<?php _e("Click to select", "mc"); ?>">
-    <div id="mc-form-more-link-np" class="mc-form-link"><?php _e("What is this?", "mc"); ?></div>
-    <div id="mc-form-less-link-np" class="mc-form-link"><?php _e("less info", "mc"); ?></div>
-    <div class="mc-form-descbox-header"><?php _e("Non-Profit", "mc"); ?></div>
-    <div class="mc-form-descbox-intro"><?php _e("Your initiative does not seek economic benefit", "mc"); ?></div>
-    <div id="mc-form-more-text-np" class="mc-form-more-text">
-<?php _e("<ul> <li>The initiative does not seek economic benefit</li> <li>Any surplus funds of the initiative are used to help pursue its goals instead of distributing them to owners or shareholders.</li> </ul>", "mc"); ?></div>
-  </div>
-  <div class="mc-form-icon mc-form-icon-a">
-    <img id="mc-form-icon-np" alt="np" src="/mc/0.1/images/np60.png" />
-  </div>
-  <div class="mc-form-or">
-or</div>
-  <img src="/mc/0.1/images/cat-selected.png" alt="selected" class="mc-cat-selected mc-cat-selected-b" id="mc-cat-selected-nnp" />
-  <div id="mc-form-nnp" class="mc-form-rounded mc-form-descbox mc-form-descbox-b" title="<?php _e("Click to select", "mc"); ?>">
-    <div id="mc-form-more-link-nnp" class="mc-form-link"><?php _e("What is this?", "mc"); ?></div>
-    <div id="mc-form-less-link-nnp" class="mc-form-link"><?php _e("less info", "mc"); ?></div>
-    <div class="mc-form-descbox-header"><?php _e("For-Profit", "mc"); ?></div>
-    <div class="mc-form-descbox-intro"><?php _e("Your initiative seeks economic benefit", "mc"); ?></div>
-    <div id="mc-form-more-text-nnp" class="mc-form-more-text">
-<?php _e("<ul> <li>The initiative seeks both economic benefit and reaching their aims</li> <li>The initiative uses its surplus funds to reward its employees and/or shareholders </li> </ul>", "mc"); ?></div>
-  </div>
-  <div class="mc-form-icon mc-form-icon-b">
-    <img id="mc-form-icon-nnp" alt="nnp" src="/mc/0.1/images/nnp60.png" />
-  </div>
-  </div>
-  <div class="mc-form-rounded mc-form-category-group mc-form-category-group-b float-left mc-form-category-group-ab" id="mc-form-category-group-ab">
-    <img src="/mc/0.1/images/step2.png" alt="step2" class="mc-steps-number" />
-  <img src="/mc/0.1/images/cat-selected.png" alt="selected" class="mc-cat-selected mc-cat-selected-a" id="mc-cat-selected-nrp" />
-  <div id="mc-form-nrp" class="mc-form-rounded mc-form-descbox mc-form-descbox-a" title="<?php _e("Click to select", "mc"); ?>">
-    <div id="mc-form-more-link-nrp" class="mc-form-link"><?php _e("What is this?", "mc"); ?></div>
-    <div id="mc-form-less-link-nrp" class="mc-form-link"><?php _e("less info", "mc"); ?></div>
-    <div class="mc-form-descbox-header"><?php _e("Exclusive", "mc"); ?></div>
-    <div class="mc-form-descbox-intro"><?php _e("Your initiative prefers to protect their work and not disclose it to others", "mc"); ?></div>
-    <div id="mc-form-more-text-nrp" class="mc-form-more-text">
-<?php _e("<ul> <li>The initiative protects its work, for instance with full copyright, not allowing others to copy it without permission</li> <li>The initiative's internal methods and mechanics are discrete and not disclosed to the public</li> </ul>", "mc"); ?></div>
-  </div>
-  <div class="mc-form-icon mc-form-icon-a">
-    <img id="mc-form-icon-nrp" alt="nrp" src="/mc/0.1/images/nrp60.png" />
-  </div>
-  <div class="mc-form-or"><?php _e("or", "mc"); ?></div>
-  <img src="/mc/0.1/images/cat-selected.png" alt="selected" class="mc-cat-selected mc-cat-selected-b" id="mc-cat-selected-rp" />
-  <div id="mc-form-rp" class="mc-form-rounded mc-form-descbox mc-form-descbox-b" title="<?php _e("Click to select", "mc"); ?>">
-    <div id="mc-form-more-link-rp" class="mc-form-link"><?php _e("What is this?", "mc"); ?></div>
-    <div id="mc-form-less-link-rp" class="mc-form-link"><?php _e("less info", "mc"); ?></div>
-    <div class="mc-form-descbox-header"><?php _e("Reproducible", "mc"); ?></div>
-    <div class="mc-form-descbox-intro"><?php _e("Your initiative is visible, open and transparent, which allows it to be adapted by others", "mc"); ?></div>
-    <div id="mc-form-more-text-rp" class="mc-form-more-text">
-<?php _e("<ul> <li>The initiative is easily visible to anyone, providing the necessary online material</li> <li>The initiative has transparent procedures and results</li> <li>The initiative allows others to copy and adapt their procedures and materials, probably using <a href=\"http://creativecommons.org/\">Creative Commons</a> licenses for them</li> </ul>", "mc"); ?></div>
-  </div>
-  <div class="mc-form-icon mc-form-icon-b">
-    <img id="mc-form-icon-rp" alt="rp" src="/mc/0.1/images/rp60.png" />
-  </div>
-  </div>
-  </div>
-  <div class="mc-clean"></div>
-  <div class="mc-cat-group-b" id="mc-cat-group-b">
-  <div class="mc-form-rounded mc-form-category-group mc-form-category-group-b float-left mc-form-category-group-bb" id="mc-form-category-group-bb">
-    <img src="/mc/0.1/images/step3.png" alt="step3" class="mc-steps-number" />
-  <img src="/mc/0.1/images/cat-selected.png" alt="selected" class="mc-cat-selected mc-cat-selected-a" id="mc-cat-selected-rc" />
-  <div id="mc-form-rc" class="mc-form-rounded mc-form-descbox mc-form-descbox-a" title="<?php _e("Click to select", "mc"); ?>">
-    <div id="mc-form-more-link-rc" class="mc-form-link"><?php _e("What is this?", "mc"); ?></div>
-    <div id="mc-form-less-link-rc" class="mc-form-link"><?php _e("less info", "mc"); ?></div>
-    <div class="mc-form-descbox-header"><?php _e("Reinforcing the Commons", "mc"); ?></div>
-    <div class="mc-form-descbox-intro"><?php _e("Your initiative protectes/expands The Commons, resources that are collectively owned", "mc"); ?></div>
-    <div id="mc-form-more-text-rc" class="mc-form-more-text"><?php _e("The Commons are those resources that are collectively owned or shared among populations. Thus, your initiative is promoting The Commons by focusing its work in protecting/expanding any of them in any particular area of action", "mc"); ?></div>
-   <div class="mc-cat-rc-options" id="mc-cat-rc-options">    <div class="mc-cat-rc-options-intro" id="mc-cat-rc-options-intro"><?php _e("Which area is the main focus of your initiative?", "mc"); ?></div><div class="mc-cat-rc-option-box" id="mc-cat-rc-option-box-ec"> <div class="mc-cat-rc-option-text"><?php _e("Nature Commons", "mc"); ?></div><div class="mc-cat-rc-option-desc">
-<?php _e("the natural environment: forests, seeds, the Moon", "mc"); ?></div></div><div class="mc-cat-rc-option-icon" id="mc-cat-rc-option-icon-ec"><img src="/mc/0.1/images/rcec25.png" alt="ec" /></div><div class="mc-cat-rc-option-box" id="mc-cat-rc-option-box-bo"> <div class="mc-cat-rc-option-text">
-<?php _e("Body/Health Commons", "mc"); ?></div><div class="mc-cat-rc-option-desc">
-<?php _e("the human bodies: blood donation, smiles, non-alienation", "mc"); ?></div></div><div class="mc-cat-rc-option-icon" id="mc-cat-rc-option-icon-bo"><img src="/mc/0.1/images/rcbo25.png" alt="bo" /></div><div class="mc-cat-rc-option-box" id="mc-cat-rc-option-box-to"> <div class="mc-cat-rc-option-text">
-<?php _e("Town/Community/Society Commons", "mc"); ?></div><div class="mc-cat-rc-option-desc">
-<?php _e("the socio-cultural spaces: language, music, streets, science", "mc"); ?></div></div><div class="mc-cat-rc-option-icon" id="mc-cat-rc-option-icon-to"><img src="/mc/0.1/images/rcto25.png" alt="to" /></div><div class="mc-cat-rc-option-box" id="mc-cat-rc-option-box-di"> <div class="mc-cat-rc-option-text">
-<?php _e("Digital Commons", "mc"); ?></div><div class="mc-cat-rc-option-desc">
-<?php _e("the cyberspace: internet, cyber-rights, Wikipedia", "mc"); ?></div></div><div class="mc-cat-rc-option-icon" id="mc-cat-rc-option-icon-di"><img src="/mc/0.1/images/rcdi25.png" alt="di" /></div></div>
-  </div>
-  <div class="mc-form-icon mc-form-icon-a">
-    <img id="mc-form-icon-rc" alt="rc" src="/mc/0.1/images/rc60.png" />
-  </div>
-  <div class="mc-form-or">
-or</div>
-  <img src="/mc/0.1/images/cat-selected.png" alt="selected" class="mc-cat-selected mc-cat-selected-b" id="mc-cat-selected-nrc" />
-  <div id="mc-form-nrc" class="mc-form-rounded mc-form-descbox mc-form-descbox-b" title="<?php _e("Click to select", "mc"); ?>">
-    <div id="mc-form-more-link-nrc" class="mc-form-link"><?php _e("What is this?", "mc"); ?></div>
-    <div id="mc-form-less-link-nrc" class="mc-form-link"><?php _e("less info", "mc"); ?></div>
-    <div class="mc-form-descbox-header"><?php _e("Reinforcing Other Aims", "mc"); ?></div>
-    <div class="mc-form-descbox-intro"><?php _e("Your initiative focuses on other areas different than The Commons", "mc"); ?></div>
-    <div id="mc-form-more-text-nrc" class="mc-form-more-text"><?php _e("Your initiative prefers to tackle other issues not directly related to the protection/expansion of the Commons", "mc"); ?></div>
-  </div>
-  <div class="mc-form-icon mc-form-icon-b">
-    <img id="mc-form-icon-nrc" alt="nrc" src="/mc/0.1/images/nrc60.png" />
-  </div>
-  </div>
-  <div class="mc-form-rounded mc-form-category-group mc-form-category-group-a float-left mc-form-category-group-ba" id="mc-form-category-group-ba">
-    <img src="/mc/0.1/images/step4.png" alt="step4" class="mc-steps-number" />
-  <img src="/mc/0.1/images/cat-selected.png" alt="selected" class="mc-cat-selected mc-cat-selected-a" id="mc-cat-selected-ngr" />
-  <div id="mc-form-ngr" class="mc-form-rounded mc-form-descbox mc-form-descbox-a" title="<?php _e("Click to select", "mc"); ?>">
-    <div id="mc-form-more-link-ngr" class="mc-form-link"><?php _e("What is this?", "mc"); ?></div>
-    <div id="mc-form-less-link-ngr" class="mc-form-link"><?php _e("less info", "mc"); ?></div>
-    <div class="mc-form-descbox-header"><?php _e("Representative", "mc"); ?></div>
-    <div class="mc-form-descbox-intro"><?php _e("Your initiative is driven by representatives", "mc"); ?></div>
-    <div id="mc-form-more-text-ngr" class="mc-form-more-text">
-<?php _e("<ul> <li>The initiative believes in their representatives for tackling most issues</li> <li>The division of tasks is structured with defined roles in different hierarchical levels</li> </ul>", "mc"); ?></div>
-  </div>
-  <div class="mc-form-icon mc-form-icon-a">
-    <img id="mc-form-icon-ngr" alt="ngr" src="/mc/0.1/images/ngr60.png" />
-  </div>
-  <div class="mc-form-or">
-or</div>
-  <img src="/mc/0.1/images/cat-selected.png" alt="selected" class="mc-cat-selected mc-cat-selected-b" id="mc-cat-selected-gr" />
-  <div id="mc-form-gr" class="mc-form-rounded mc-form-descbox mc-form-descbox-b" title="
-Click to select">
-    <div id="mc-form-more-link-gr" class="mc-form-link"><?php _e("What is this?", "mc"); ?></div>
-    <div id="mc-form-less-link-gr" class="mc-form-link"><?php _e("less info", "mc"); ?></div>
-    <div class="mc-form-descbox-header"><?php _e("Grassroots", "mc"); ?></div>
-    <div class="mc-form-descbox-intro"><?php _e("Your initiative is driven by horizontal collective decisions", "mc"); ?></div>
-    <div id="mc-form-more-text-gr" class="mc-form-more-text">
-<?php _e("<ul> <li>The initiative follows collective decision-making procedures for tackling most issues</li> <li>The hierarchical structure is minimal or inexistent. That is, horizontal grassroots discussions of the members have a major weight when compared with vertical instructions from the board</li> </ul>", "mc"); ?></div>
-  </div>
-  <div class="mc-form-icon mc-form-icon-b">
-    <img id="mc-form-icon-gr" alt="gr" src="/mc/0.1/images/gr60.png" />
-  </div>
-  </div>
-  </div>
-  <div class="mc-clean"></div>
-<div class="mc-dia-continue-btn" id="mc-dia-continue-btn"><?php _e("Continue", "mc"); ?></div>
-<script type="text/javascript" src="/mc/0.1/mc-dia-form.js"></script>




More information about the Movecommons-commits mailing list