Article html

From Redazione
Jump to navigation Jump to search
(Removed redirect to Form:Article previous html)
Tag: Removed redirect
 
(16 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
This form is intended to create articles of a given organization or to characterize as article whatever page of it (not containing already a form).
 +
 +
Once the key-data are created, insert the content itself of the article editing the page using the buttons "Edit" or "Edit source" in the top panel.
 +
 +
 +
{{Form header|form=Article}}
 +
 +
 
<html>
 
<html>
 +
 
<div class="ci_form_container">
 
<div class="ci_form_container">
  
Line 11: Line 20:
 
<!--
 
<!--
  
Article_Type
 
 
Article_Title
 
Article_Title
 
Article_Authors
 
Article_Authors
Line 19: Line 27:
 
Article_Year
 
Article_Year
  
 
<!--------------------------Type-------------------------->
 
 
<div class="ci_form_section">
 
<span class="ci_form_section_label">
 
Type
 
</span>
 
 
<!--
 
<option>Scientific</option>
 
<option>Philosophical-Humanistic</option>
 
<option>Historical</option>
 
<option>Literary</option>
 
<option>Guide</option>
 
<option>Other</option>
 
 
-->
 
-->
 
<select class="ci_form_input" name="Form article[Type]">
 
<option value="article">article</option>
 
<option value="post">post</option>
 
<option value="news">news</option>
 
</select>
 
 
<span class="ci_form_section_help">
 
Different kind of articles might be published in different categories.
 
</span>
 
 
</div>
 
  
 
<!--------------------------TITLE-------------------------->
 
<!--------------------------TITLE-------------------------->
Line 72: Line 53:
  
 
<span class="ci_form_section_help">
 
<span class="ci_form_section_help">
Please enter first and last name of authors separated by comma.
+
First and last name of authors and editors separated by comma
 
</span>
 
</span>
  
Line 78: Line 59:
  
  
<!--------------------------Day, month, year of pubblication-------------------------->
+
<!--------------------------Day, month, year of publication-------------------------->
  
 
<div class="ci_form_section">
 
<div class="ci_form_section">
Line 219: Line 200:
  
 
<span class="ci_form_section_help">
 
<span class="ci_form_section_help">
The day is optional, and specifically for kind of &lsquo;post&rdquo; and &lsquo;article&rdquo;
+
The day is optional
might be omitted.
 
 
</span>
 
</span>
  
Line 265: Line 245:
  
 
<div class="ci_form_section_submit">
 
<div class="ci_form_section_submit">
<input type="hidden" name="Form article[Page name]" value="">
 
 
<input type="hidden" name="wpSave" value="Save page">
 
<input type="hidden" name="wpSave" value="Save page">
 
<input type="hidden" name="pf_free_text" value="!free_text!">
 
<input type="hidden" name="pf_free_text" value="!free_text!">
Line 285: Line 264:
 
$ci('form').submit(function() {
 
$ci('form').submit(function() {
  
var type = $ci(this).find('[name="Form article[Type]"]').val();
 
 
  var title = $ci(this).find('[name="Form article[Title]"]').val();
 
  var title = $ci(this).find('[name="Form article[Title]"]').val();
 
  var authors = $ci(this).find('[name="Form article[Authors]"]').val();
 
  var authors = $ci(this).find('[name="Form article[Authors]"]').val();
Line 292: Line 270:
 
  var day = $ci(this).find('[name="Form article[day]"]').val();
 
  var day = $ci(this).find('[name="Form article[day]"]').val();
  
  var required = {
+
  var required = ['Title','Authors']
  article: ['Title','Authors'],
 
  post: ['Title','month','year'],
 
  news: ['Title','day', 'month','year']
 
}
 
  
if(required.hasOwnProperty(type)) {
+
   for(var value of required) {
   for(var i in required[type]) {
+
   if(!$ci(this).find('[name="Form article[' + value + ']"]').val()) {
   if(!$ci(this).find('[name="Form article[' + required[type][i] + ']"]').val()) {
+
     alert('Please enter ' + value);
     alert('Please enter ' + type + ' ' + required[type][i]);
 
 
     return false;
 
     return false;
 
   }
 
   }
 
   }
 
   }
}
 
 
var obj_months = {
 
"1": "January",
 
"2": "February",
 
"3": "March",
 
"4": "April",
 
"5": "May",
 
"6": "June",
 
"7": "July",
 
"8": "August",
 
"9": "September",
 
"10": "October",
 
"11": "November",
 
"12": "December"
 
};
 
 
var pagename;
 
switch(type) {
 
  case 'article' :
 
  pagename = 'Articles/' + authors + ' - ' + title;
 
  break;
 
 
  case 'post' :
 
  pagename = 'Posts/';
 
// ***attention!!
 
// see here  https://phabricator.wikimedia.org/T12407
 
// && will not work correctly !
 
//  if(month && year)
 
 
  var month_year = false;
 
  if(month) {
 
    if(year) {
 
    month_year = true;
 
    }
 
  }
 
 
  if(month_year) {
 
    pagename += obj_months[month] + ' ' + year + ' - ' + title;
 
  } else if(year) {
 
    pagename += title + ' (' + year + ')';
 
  } else {
 
  pagename += title;
 
  }
 
  break;
 
 
  case 'news' :
 
  pagename = 'News/' + title;
 
  break;
 
 
  default :
 
  pagename = type + '/' + title;
 
  break;
 
}
 
 
pagename = '</html>{{#ci_userAffiliatedTo:}}<html>/' + pagename;
 
 
$ci(this).find('[name="Form article[Page name]"]').val(pagename)
 
 
/*
 
{{{info|page name={{#switch: <Article[Type]> | news = news/<Article[Title]> | post = posts/<Article[Title] | article = articles/<Article[Authors]> - <Article[Title]> | <Article[Type]>/<Article[Authors]> - <Article[Title]> }} }}}
 
*/
 
  
  

Latest revision as of 20:53, 21 August 2020

This form is intended to create articles of a given organization or to characterize as article whatever page of it (not containing already a form).

Once the key-data are created, insert the content itself of the article editing the page using the buttons "Edit" or "Edit source" in the top panel.


The form will be created in the current page (). If you want to create the form in a new page, go here.


First and last name of authors and editors separated by comma
The day is optional
(Optionally), insert one significant thread representing the article. It might be used as a preview of it.
(Optionally), enter or more tags relevant to this article: they might be used to insert it under one or more corresponding categories.