Difference between revisions of "Template:SetTextPropertyCompletionRate"

From Encyclopedia of Scientonomy
Jump to navigation Jump to search
Line 10: Line 10:
  
 
</noinclude><includeonly><!--
 
</noinclude><includeonly><!--
-->{{#ifexpr: ({{#len: {{{propertyvalue|}}} }} > {{{requiredwordcount|1}}})<!--
+
-->{{#ifexpr: {{#len: {{{propertyvalue|}}} }} > ({{{requiredwordcount|1}}} * 6)<!--
 
  -->|<!-- if: store the value as complete
 
  -->|<!-- if: store the value as complete
 
   -->{{#set: CR_{{{propertyname}}}=100}}<!--  
 
   -->{{#set: CR_{{{propertyname}}}=100}}<!--  
 
   --><!--  
 
   --><!--  
 
  -->|<!-- else: store the percentage
 
  -->|<!-- else: store the percentage
   -->{{#set: CR_{{{propertyname}}}={{#expr: (100/{{{requiredwordcount|1}}} * {{#len: {{{propertyvalue|}}} }}) round 0}} }}<!--  
+
   -->{{#set: CR_{{{propertyname}}}={{#expr: (100/({{{requiredwordcount|1}}} * 6) * {{#len: {{{propertyvalue|}}} }} ) round 0}} }}<!--  
 
   --><!--  
 
   --><!--  
 
-->}}<!-- if length is greater than required word count
 
-->}}<!-- if length is greater than required word count
 
--></includeonly>
 
--></includeonly>

Revision as of 16:59, 8 June 2017

This template is called from within other category templates (e.g. Author, Topic, Theory) to store the completion rate of a given textual property. The template checks whether the text has the required length and given in |requiredwordcount=. If the minimal word count is reached, then a completion rate of 100% is assigned to a property CR_{{{name}}}. Otherwise, the rate of completion is stored in that property.

NOTE: As any "set" template, it doesn't print anything on the page, but merely sets the appropriate values.

Parameters:

  • |propertyname= - the name of the property for which a completion rate is to be calculated.
  • |propertyvalue= - the string value of the property; this is to be passed as a parameter, since not all properties are stored and, thus, not all properties are fetchable.
  • |requiredwordcount= - the minimal number of words to qualify as 100% complete.