<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ml">
	<id>https://schoolwiki.in/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rojypala</id>
	<title>Schoolwiki - താങ്കളുടെ സംഭാവനകൾ [ml]</title>
	<link rel="self" type="application/atom+xml" href="https://schoolwiki.in/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rojypala"/>
	<link rel="alternate" type="text/html" href="https://schoolwiki.in/%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%A4%E0%B5%8D%E0%B4%AF%E0%B5%87%E0%B4%95%E0%B4%82:%E0%B4%B8%E0%B4%82%E0%B4%AD%E0%B4%BE%E0%B4%B5%E0%B4%A8%E0%B4%95%E0%B5%BE/Rojypala"/>
	<updated>2026-05-14T20:50:06Z</updated>
	<subtitle>താങ്കളുടെ സംഭാവനകൾ</subtitle>
	<generator>MediaWiki 1.43.4</generator>
	<entry>
		<id>https://schoolwiki.in/index.php?title=%E0%B4%98%E0%B4%9F%E0%B4%95%E0%B4%82:Namespace_detect&amp;diff=127137</id>
		<title>ഘടകം:Namespace detect</title>
		<link rel="alternate" type="text/html" href="https://schoolwiki.in/index.php?title=%E0%B4%98%E0%B4%9F%E0%B4%95%E0%B4%82:Namespace_detect&amp;diff=127137"/>
		<updated>2014-07-07T06:21:07Z</updated>

		<summary type="html">&lt;p&gt;Rojypala: :en:ഘടകം:Namespace detect എന്നതിൽ നിന്ന് ഒരു പതിപ്പ്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;--[[&lt;br /&gt;
--------------------------------------------------------------------------------&lt;br /&gt;
--                                                                            --&lt;br /&gt;
--                            NAMESPACE DETECT                                --&lt;br /&gt;
--                                                                            --&lt;br /&gt;
-- This module implements the {{namespace detect}} template in Lua, with a    --&lt;br /&gt;
-- few improvements: all namespaces and all namespace aliases are supported,  --&lt;br /&gt;
-- and namespace names are detected automatically for the local wiki. The     --&lt;br /&gt;
-- module can also use the corresponding subject namespace value if it is     --&lt;br /&gt;
-- used on a talk page. Parameter names can be configured for different wikis --&lt;br /&gt;
-- by altering the values in the &amp;quot;cfg&amp;quot; table in                               --&lt;br /&gt;
-- Module:Namespace detect/config.                                            --&lt;br /&gt;
--                                                                            --&lt;br /&gt;
--------------------------------------------------------------------------------&lt;br /&gt;
--]]&lt;br /&gt;
&lt;br /&gt;
local data = mw.loadData(&#039;Module:Namespace detect/data&#039;)&lt;br /&gt;
local argKeys = data.argKeys&lt;br /&gt;
local cfg = data.cfg&lt;br /&gt;
local mappings = data.mappings&lt;br /&gt;
&lt;br /&gt;
local yesno = require(&#039;Module:Yesno&#039;)&lt;br /&gt;
local mArguments -- Lazily initialise Module:Arguments&lt;br /&gt;
local mTableTools -- Lazily initilalise Module:TableTools&lt;br /&gt;
local ustringLower = mw.ustring.lower&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
local function fetchValue(t1, t2)&lt;br /&gt;
	-- Fetches a value from the table t1 for the first key in array t2 where&lt;br /&gt;
	-- a non-nil value of t1 exists.&lt;br /&gt;
	for i, key in ipairs(t2) do&lt;br /&gt;
		local value = t1[key]&lt;br /&gt;
		if value ~= nil then&lt;br /&gt;
			return value&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return nil&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function equalsArrayValue(t, value)&lt;br /&gt;
	-- Returns true if value equals a value in the array t. Otherwise&lt;br /&gt;
	-- returns false.&lt;br /&gt;
	for i, arrayValue in ipairs(t) do&lt;br /&gt;
		if value == arrayValue then&lt;br /&gt;
			return true&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return false&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.getPageObject(page)&lt;br /&gt;
	-- Get the page object, passing the function through pcall in case of&lt;br /&gt;
	-- errors, e.g. being over the expensive function count limit.&lt;br /&gt;
	if page then&lt;br /&gt;
		local success, pageObject = pcall(mw.title.new, page)&lt;br /&gt;
		if success then&lt;br /&gt;
			return pageObject&lt;br /&gt;
		else&lt;br /&gt;
			return nil&lt;br /&gt;
		end&lt;br /&gt;
	else&lt;br /&gt;
		return mw.title.getCurrentTitle()&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- Provided for backward compatibility with other modules&lt;br /&gt;
function p.getParamMappings()&lt;br /&gt;
	return mappings&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function getNamespace(args)&lt;br /&gt;
	-- This function gets the namespace name from the page object.&lt;br /&gt;
	local page = fetchValue(args, argKeys.demopage)&lt;br /&gt;
	if page == &#039;&#039; then&lt;br /&gt;
		page = nil&lt;br /&gt;
	end&lt;br /&gt;
	local demospace = fetchValue(args, argKeys.demospace)&lt;br /&gt;
	if demospace == &#039;&#039; then&lt;br /&gt;
		demospace = nil&lt;br /&gt;
	end&lt;br /&gt;
	local subjectns = fetchValue(args, argKeys.subjectns)&lt;br /&gt;
	local ret&lt;br /&gt;
	if demospace then&lt;br /&gt;
		-- Handle &amp;quot;demospace = main&amp;quot; properly.&lt;br /&gt;
		if equalsArrayValue(argKeys.main, ustringLower(demospace)) then&lt;br /&gt;
			ret = mw.site.namespaces[0].name&lt;br /&gt;
		else&lt;br /&gt;
			ret = demospace&lt;br /&gt;
		end&lt;br /&gt;
	else&lt;br /&gt;
		local pageObject = p.getPageObject(page)&lt;br /&gt;
		if pageObject then&lt;br /&gt;
			if pageObject.isTalkPage then&lt;br /&gt;
				-- Get the subject namespace if the option is set,&lt;br /&gt;
				-- otherwise use &amp;quot;talk&amp;quot;.&lt;br /&gt;
				if yesno(subjectns) then&lt;br /&gt;
					ret = mw.site.namespaces[pageObject.namespace].subject.name&lt;br /&gt;
				else&lt;br /&gt;
					ret = &#039;talk&#039;&lt;br /&gt;
				end&lt;br /&gt;
			else&lt;br /&gt;
				ret = pageObject.nsText&lt;br /&gt;
			end&lt;br /&gt;
		else&lt;br /&gt;
			return nil -- return nil if the page object doesn&#039;t exist.&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	ret = ret:gsub(&#039;_&#039;, &#039; &#039;)&lt;br /&gt;
	return ustringLower(ret)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p._main(args)&lt;br /&gt;
	-- Check the parameters stored in the mappings table for any matches.&lt;br /&gt;
	local namespace = getNamespace(args) or &#039;other&#039; -- &amp;quot;other&amp;quot; avoids nil table keys&lt;br /&gt;
	local params = mappings[namespace] or {}&lt;br /&gt;
	local ret = fetchValue(args, params)&lt;br /&gt;
	--[[&lt;br /&gt;
	-- If there were no matches, return parameters for other namespaces.&lt;br /&gt;
	-- This happens if there was no text specified for the namespace that&lt;br /&gt;
	-- was detected or if the demospace parameter is not a valid&lt;br /&gt;
	-- namespace. Note that the parameter for the detected namespace must be&lt;br /&gt;
	-- completely absent for this to happen, not merely blank.&lt;br /&gt;
	--]]&lt;br /&gt;
	if ret == nil then&lt;br /&gt;
		ret = fetchValue(args, argKeys.other)&lt;br /&gt;
	end&lt;br /&gt;
	return ret&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	mArguments = require(&#039;Module:Arguments&#039;)&lt;br /&gt;
	local args = mArguments.getArgs(frame, {removeBlanks = false})&lt;br /&gt;
	local ret = p._main(args)&lt;br /&gt;
	return ret or &#039;&#039;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.table(frame)&lt;br /&gt;
	--[[&lt;br /&gt;
	-- Create a wikitable of all subject namespace parameters, for&lt;br /&gt;
	-- documentation purposes. The talk parameter is optional, in case it&lt;br /&gt;
	-- needs to be excluded in the documentation.&lt;br /&gt;
	--]]&lt;br /&gt;
	&lt;br /&gt;
	-- Load modules and initialise variables.&lt;br /&gt;
	mTableTools = require(&#039;Module:TableTools&#039;)&lt;br /&gt;
	local namespaces = mw.site.namespaces&lt;br /&gt;
	local cfg = data.cfg&lt;br /&gt;
	local useTalk = type(frame) == &#039;table&#039; &lt;br /&gt;
		and type(frame.args) == &#039;table&#039; &lt;br /&gt;
		and yesno(frame.args.talk) -- Whether to use the talk parameter.&lt;br /&gt;
	&lt;br /&gt;
	-- Get the header names.&lt;br /&gt;
	local function checkValue(value, default)&lt;br /&gt;
		if type(value) == &#039;string&#039; then&lt;br /&gt;
			return value&lt;br /&gt;
		else&lt;br /&gt;
			return default&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	local nsHeader = checkValue(cfg.wikitableNamespaceHeader, &#039;Namespace&#039;)&lt;br /&gt;
	local aliasesHeader = checkValue(cfg.wikitableAliasesHeader, &#039;Aliases&#039;)&lt;br /&gt;
&lt;br /&gt;
	-- Put the namespaces in order.&lt;br /&gt;
	local mappingsOrdered = {}&lt;br /&gt;
	for nsname, params in pairs(mappings) do&lt;br /&gt;
		if useTalk or nsname ~= &#039;talk&#039; then&lt;br /&gt;
			local nsid = namespaces[nsname].id&lt;br /&gt;
			-- Add 1, as the array must start with 1; nsid 0 would be lost otherwise.&lt;br /&gt;
			nsid = nsid + 1 &lt;br /&gt;
			mappingsOrdered[nsid] = params&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	mappingsOrdered = mTableTools.compressSparseArray(mappingsOrdered)&lt;br /&gt;
&lt;br /&gt;
	-- Build the table.&lt;br /&gt;
	local ret = &#039;{| class=&amp;quot;wikitable&amp;quot;&#039;&lt;br /&gt;
		.. &#039;\n|-&#039;&lt;br /&gt;
		.. &#039;\n! &#039; .. nsHeader&lt;br /&gt;
		.. &#039;\n! &#039; .. aliasesHeader&lt;br /&gt;
	for i, params in ipairs(mappingsOrdered) do&lt;br /&gt;
		for j, param in ipairs(params) do&lt;br /&gt;
			if j == 1 then&lt;br /&gt;
				ret = ret .. &#039;\n|-&#039;&lt;br /&gt;
					.. &#039;\n| &amp;lt;code&amp;gt;&#039; .. param .. &#039;&amp;lt;/code&amp;gt;&#039;&lt;br /&gt;
					.. &#039;\n| &#039;&lt;br /&gt;
			elseif j == 2 then&lt;br /&gt;
				ret = ret .. &#039;&amp;lt;code&amp;gt;&#039; .. param .. &#039;&amp;lt;/code&amp;gt;&#039;&lt;br /&gt;
			else&lt;br /&gt;
				ret = ret .. &#039;, &amp;lt;code&amp;gt;&#039; .. param .. &#039;&amp;lt;/code&amp;gt;&#039;&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	ret = ret .. &#039;\n|-&#039;&lt;br /&gt;
		.. &#039;\n|}&#039;&lt;br /&gt;
	return ret&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Rojypala</name></author>
	</entry>
	<entry>
		<id>https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:Ombox&amp;diff=130140</id>
		<title>ഫലകം:Ombox</title>
		<link rel="alternate" type="text/html" href="https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:Ombox&amp;diff=130140"/>
		<updated>2013-11-20T14:57:41Z</updated>

		<summary type="html">&lt;p&gt;Rojypala: :en:ഫലകം:Ombox എന്നതിൽ നിന്ന് ഒരു പതിപ്പ്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#invoke:Message box|ombox}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rojypala</name></author>
	</entry>
	<entry>
		<id>https://schoolwiki.in/index.php?title=%E0%B4%98%E0%B4%9F%E0%B4%95%E0%B4%82:String&amp;diff=127026</id>
		<title>ഘടകം:String</title>
		<link rel="alternate" type="text/html" href="https://schoolwiki.in/index.php?title=%E0%B4%98%E0%B4%9F%E0%B4%95%E0%B4%82:String&amp;diff=127026"/>
		<updated>2013-05-08T02:43:48Z</updated>

		<summary type="html">&lt;p&gt;Rojypala: :en:Module:String എന്നതിൽ നിന്ന് ഒരു പതിപ്പ്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;--[[  &lt;br /&gt;
&lt;br /&gt;
This module is intended to provide access to basic string functions.&lt;br /&gt;
&lt;br /&gt;
Most of the functions provided here can be invoked with named parameters, &lt;br /&gt;
unnamed parameters, or a mixture.  If named parameters are used, Mediawiki will &lt;br /&gt;
automatically remove any leading or trailing whitespace from the parameter.  &lt;br /&gt;
Depending on the intended use, it may be advantageous to either preserve or&lt;br /&gt;
remove such whitespace.&lt;br /&gt;
&lt;br /&gt;
Global options&lt;br /&gt;
    ignore_errors: If set to &#039;true&#039; or 1, any error condition will result in &lt;br /&gt;
        an empty string being returned rather than an error message.  &lt;br /&gt;
        &lt;br /&gt;
    error_category: If an error occurs, specifies the name of a category to &lt;br /&gt;
        include with the error message.  The default category is  &lt;br /&gt;
        [Category:Errors reported by Module String].&lt;br /&gt;
        &lt;br /&gt;
    no_category: If set to &#039;true&#039; or 1, no category will be added if an error&lt;br /&gt;
        is generated.&lt;br /&gt;
        &lt;br /&gt;
Unit tests for this module are available at Module:String/tests.&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
local str = {}&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
len&lt;br /&gt;
&lt;br /&gt;
This function returns the length of the target string.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|len|target_string|}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|len|s=target_string}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
    s: The string whose length to report&lt;br /&gt;
&lt;br /&gt;
If invoked using named parameters, Mediawiki will automatically remove any leading or&lt;br /&gt;
trailing whitespace from the target string.  &lt;br /&gt;
]]&lt;br /&gt;
function str.len( frame )&lt;br /&gt;
    local new_args = str._getParameters( frame.args, {&#039;s&#039;} );&lt;br /&gt;
    local s = new_args[&#039;s&#039;] or &#039;&#039;;&lt;br /&gt;
    return mw.ustring.len( s )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
sub&lt;br /&gt;
&lt;br /&gt;
This function returns a substring of the target string at specified indices.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|sub|target_string|start_index|end_index}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|sub|s=target_string|i=start_index|j=end_index}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
    s: The string to return a subset of&lt;br /&gt;
    i: The fist index of the substring to return, defaults to 1.&lt;br /&gt;
    j: The last index of the string to return, defaults to the last character.&lt;br /&gt;
    &lt;br /&gt;
The first character of the string is assigned an index of 1.  If either i or j&lt;br /&gt;
is a negative value, it is interpreted the same as selecting a character by &lt;br /&gt;
counting from the end of the string.  Hence, a value of -1 is the same as &lt;br /&gt;
selecting the last character of the string.&lt;br /&gt;
&lt;br /&gt;
If the requested indices are out of range for the given string, an error is &lt;br /&gt;
reported.&lt;br /&gt;
]]&lt;br /&gt;
function str.sub( frame )&lt;br /&gt;
    local new_args = str._getParameters( frame.args, { &#039;s&#039;, &#039;i&#039;, &#039;j&#039; } );&lt;br /&gt;
    local s = new_args[&#039;s&#039;] or &#039;&#039;;&lt;br /&gt;
    local i = tonumber( new_args[&#039;i&#039;] ) or 1;&lt;br /&gt;
    local j = tonumber( new_args[&#039;j&#039;] ) or -1;&lt;br /&gt;
    &lt;br /&gt;
    local len = mw.ustring.len( s );&lt;br /&gt;
&lt;br /&gt;
    -- Convert negatives for range checking&lt;br /&gt;
    if i &amp;lt; 0 then&lt;br /&gt;
        i = len + i + 1;&lt;br /&gt;
    end&lt;br /&gt;
    if j &amp;lt; 0 then&lt;br /&gt;
        j = len + j + 1;&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    if i &amp;gt; len or j &amp;gt; len or i &amp;lt; 1 or j &amp;lt; 1 then&lt;br /&gt;
        return str._error( &#039;String subset index out of range&#039; );&lt;br /&gt;
    end&lt;br /&gt;
    if j &amp;lt; i then&lt;br /&gt;
        return str._error( &#039;String subset indices out of order&#039; );&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    return mw.ustring.sub( s, i, j )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
This function implements that features of {{str sub old}} and is kept in order&lt;br /&gt;
to maintain these older templates.&lt;br /&gt;
]]&lt;br /&gt;
function str.sublength( frame )&lt;br /&gt;
    local i = tonumber( frame.args.i ) or 0&lt;br /&gt;
    local len = tonumber( frame.args.len )&lt;br /&gt;
    return mw.ustring.sub( frame.args.s, i + 1, len and ( i + len ) )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
match&lt;br /&gt;
&lt;br /&gt;
This function returns a substring from the source string that matches a &lt;br /&gt;
specified pattern.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|match|source_string|pattern_string|start_index|match_number|plain_flag|nomatch_output}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|pos|s=source_string|pattern=pattern_string|start=start_index&lt;br /&gt;
    |match=match_number|plain=plain_flag|nomatch=nomatch_output}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
    s: The string to search&lt;br /&gt;
    pattern: The pattern or string to find within the string&lt;br /&gt;
    start: The index within the source string to start the search.  The first&lt;br /&gt;
        character of the string has index 1.  Defaults to 1.&lt;br /&gt;
    match: In some cases it may be possible to make multiple matches on a single &lt;br /&gt;
        string.  This specifies which match to return, where the first match is &lt;br /&gt;
        match= 1.  If a negative number is specified then a match is returned &lt;br /&gt;
        counting from the last match.  Hence match = -1 is the same as requesting&lt;br /&gt;
        the last match.  Defaults to 1.&lt;br /&gt;
    plain: A flag indicating that the pattern should be understood as plain&lt;br /&gt;
        text.  Defaults to false.&lt;br /&gt;
    nomatch: If no match is found, output the &amp;quot;nomatch&amp;quot; value rather than an error.&lt;br /&gt;
&lt;br /&gt;
If invoked using named parameters, Mediawiki will automatically remove any leading or&lt;br /&gt;
trailing whitespace from each string.  In some circumstances this is desirable, in &lt;br /&gt;
other cases one may want to preserve the whitespace.&lt;br /&gt;
&lt;br /&gt;
If the match_number or start_index are out of range for the string being queried, then&lt;br /&gt;
this function generates an error.  An error is also generated if no match is found.&lt;br /&gt;
If one adds the parameter ignore_errors=true, then the error will be suppressed and &lt;br /&gt;
an empty string will be returned on any failure.&lt;br /&gt;
&lt;br /&gt;
For information on constructing Lua patterns, a form of [regular expression], see:&lt;br /&gt;
&lt;br /&gt;
* http://www.lua.org/manual/5.1/manual.html#5.4.1&lt;br /&gt;
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Patterns&lt;br /&gt;
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Ustring_patterns&lt;br /&gt;
&lt;br /&gt;
]]&lt;br /&gt;
function str.match( frame )&lt;br /&gt;
    local new_args = str._getParameters( frame.args, {&#039;s&#039;, &#039;pattern&#039;, &#039;start&#039;, &#039;match&#039;, &#039;plain&#039;, &#039;nomatch&#039;} );&lt;br /&gt;
    local s = new_args[&#039;s&#039;] or &#039;&#039;;&lt;br /&gt;
    local start = tonumber( new_args[&#039;start&#039;] ) or 1;&lt;br /&gt;
    local plain_flag = str._getBoolean( new_args[&#039;plain&#039;] or false );&lt;br /&gt;
    local pattern = new_args[&#039;pattern&#039;] or &#039;&#039;;&lt;br /&gt;
    local match_index = math.floor( tonumber(new_args[&#039;match&#039;]) or 1 );&lt;br /&gt;
    local nomatch = new_args[&#039;nomatch&#039;];&lt;br /&gt;
    &lt;br /&gt;
    if s == &#039;&#039; then&lt;br /&gt;
        return str._error( &#039;Target string is empty&#039; );&lt;br /&gt;
    end&lt;br /&gt;
    if pattern == &#039;&#039; then&lt;br /&gt;
        return str._error( &#039;Pattern string is empty&#039; );&lt;br /&gt;
    end&lt;br /&gt;
    if math.abs(start) &amp;lt; 1 or math.abs(start) &amp;gt; mw.ustring.len( s ) then&lt;br /&gt;
        return str._error( &#039;Requested start is out of range&#039; );&lt;br /&gt;
    end&lt;br /&gt;
    if match_index == 0 then&lt;br /&gt;
        return str._error( &#039;Match index is out of range&#039; );&lt;br /&gt;
    end&lt;br /&gt;
    if plain_flag then&lt;br /&gt;
        pattern = str._escapePattern( pattern );&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    local result&lt;br /&gt;
    if match_index == 1 then&lt;br /&gt;
        -- Find first match is simple case&lt;br /&gt;
        result = mw.ustring.match( s, pattern, start )&lt;br /&gt;
    else&lt;br /&gt;
        if start &amp;gt; 1 then&lt;br /&gt;
            s = mw.ustring.sub( s, start );&lt;br /&gt;
        end&lt;br /&gt;
        &lt;br /&gt;
        local iterator = mw.ustring.gmatch(s, pattern);&lt;br /&gt;
        if match_index &amp;gt; 0 then&lt;br /&gt;
            -- Forward search&lt;br /&gt;
            for w in iterator do&lt;br /&gt;
                match_index = match_index - 1;&lt;br /&gt;
                if match_index == 0 then&lt;br /&gt;
                    result = w;&lt;br /&gt;
                    break;&lt;br /&gt;
                end&lt;br /&gt;
            end    &lt;br /&gt;
        else&lt;br /&gt;
            -- Reverse search&lt;br /&gt;
            local result_table = {};&lt;br /&gt;
            local count = 1;&lt;br /&gt;
            for w in iterator do&lt;br /&gt;
                result_table[count] = w;&lt;br /&gt;
                count = count + 1;&lt;br /&gt;
            end&lt;br /&gt;
            &lt;br /&gt;
            result = result_table[ count + match_index ];            &lt;br /&gt;
        end&lt;br /&gt;
    end        &lt;br /&gt;
    &lt;br /&gt;
    if result == nil then&lt;br /&gt;
        if nomatch == nil then&lt;br /&gt;
            return str._error( &#039;Match not found&#039; );&lt;br /&gt;
        else&lt;br /&gt;
            return nomatch;&lt;br /&gt;
        end&lt;br /&gt;
    else&lt;br /&gt;
        return result;&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
pos&lt;br /&gt;
&lt;br /&gt;
This function returns a single character from the target string at position pos.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|pos|target_string|index_value}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|pos|target=target_string|pos=index_value}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
    target: The string to search&lt;br /&gt;
    pos: The index for the character to return&lt;br /&gt;
&lt;br /&gt;
If invoked using named parameters, Mediawiki will automatically remove any leading or&lt;br /&gt;
trailing whitespace from the target string.  In some circumstances this is desirable, in &lt;br /&gt;
other cases one may want to preserve the whitespace.&lt;br /&gt;
&lt;br /&gt;
The first character has an index value of 1.&lt;br /&gt;
&lt;br /&gt;
If one requests a negative value, this function will select a character by counting backwards &lt;br /&gt;
from the end of the string.  In other words pos = -1 is the same as asking for the last character.&lt;br /&gt;
&lt;br /&gt;
A requested value of zero, or a value greater than the length of the string returns an error.&lt;br /&gt;
]]&lt;br /&gt;
function str.pos( frame )&lt;br /&gt;
    local new_args = str._getParameters( frame.args, {&#039;target&#039;, &#039;pos&#039;} );&lt;br /&gt;
    local target_str = new_args[&#039;target&#039;] or &#039;&#039;;&lt;br /&gt;
    local pos = tonumber( new_args[&#039;pos&#039;] ) or 0;&lt;br /&gt;
&lt;br /&gt;
    if pos == 0 or math.abs(pos) &amp;gt; mw.ustring.len( target_str ) then&lt;br /&gt;
        return str._error( &#039;String index out of range&#039; );&lt;br /&gt;
    end    &lt;br /&gt;
    &lt;br /&gt;
    return mw.ustring.sub( target_str, pos, pos );&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
str_find&lt;br /&gt;
&lt;br /&gt;
This function duplicates the behavior of {{str_find}}, including all of its quirks.&lt;br /&gt;
This is provided in order to support existing templates, but is NOT RECOMMENDED for &lt;br /&gt;
new code and templates.  New code is recommended to use the &amp;quot;find&amp;quot; function instead.&lt;br /&gt;
&lt;br /&gt;
Returns the first index in &amp;quot;source&amp;quot; that is a match to &amp;quot;target&amp;quot;.  Indexing is 1-based,&lt;br /&gt;
and the function returns -1 if the &amp;quot;target&amp;quot; string is not present in &amp;quot;source&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Important Note: If the &amp;quot;target&amp;quot; string is empty / missing, this function returns a&lt;br /&gt;
value of &amp;quot;1&amp;quot;, which is generally unexpected behavior, and must be accounted for&lt;br /&gt;
separatetly.&lt;br /&gt;
]]&lt;br /&gt;
function str.str_find( frame )&lt;br /&gt;
    local new_args = str._getParameters( frame.args, {&#039;source&#039;, &#039;target&#039;} );&lt;br /&gt;
    local source_str = new_args[&#039;source&#039;] or &#039;&#039;;&lt;br /&gt;
    local target_str = new_args[&#039;target&#039;] or &#039;&#039;;&lt;br /&gt;
&lt;br /&gt;
    if target_str == &#039;&#039; then&lt;br /&gt;
        return 1;&lt;br /&gt;
    end    &lt;br /&gt;
    &lt;br /&gt;
    local start = mw.ustring.find( source_str, target_str, 1, true )&lt;br /&gt;
    if start == nil then&lt;br /&gt;
        start = -1&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    return start&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
find&lt;br /&gt;
&lt;br /&gt;
This function allows one to search for a target string or pattern within another&lt;br /&gt;
string.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|find|source_str|target_string|start_index|plain_flag}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|find|source=source_str|target=target_str|start=start_index|plain=plain_flag}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
    source: The string to search&lt;br /&gt;
    target: The string or pattern to find within source&lt;br /&gt;
    start: The index within the source string to start the search, defaults to 1&lt;br /&gt;
    plain: Boolean flag indicating that target should be understood as plain&lt;br /&gt;
        text and not as a Lua style regular expression, defaults to true&lt;br /&gt;
&lt;br /&gt;
If invoked using named parameters, Mediawiki will automatically remove any leading or&lt;br /&gt;
trailing whitespace from the parameter.  In some circumstances this is desirable, in &lt;br /&gt;
other cases one may want to preserve the whitespace.&lt;br /&gt;
&lt;br /&gt;
This function returns the first index &amp;gt;= &amp;quot;start&amp;quot; where &amp;quot;target&amp;quot; can be found &lt;br /&gt;
within &amp;quot;source&amp;quot;.  Indices are 1-based.  If &amp;quot;target&amp;quot; is not found, then this &lt;br /&gt;
function returns 0.  If either &amp;quot;source&amp;quot; or &amp;quot;target&amp;quot; are missing / empty, this&lt;br /&gt;
function also returns 0.&lt;br /&gt;
&lt;br /&gt;
This function should be safe for UTF-8 strings.&lt;br /&gt;
]]&lt;br /&gt;
function str.find( frame )&lt;br /&gt;
    local new_args = str._getParameters( frame.args, {&#039;source&#039;, &#039;target&#039;, &#039;start&#039;, &#039;plain&#039; } ); &lt;br /&gt;
    local source_str = new_args[&#039;source&#039;] or &#039;&#039;;&lt;br /&gt;
    local pattern = new_args[&#039;target&#039;] or &#039;&#039;;&lt;br /&gt;
    local start_pos = tonumber(new_args[&#039;start&#039;]) or 1;&lt;br /&gt;
    local plain = new_args[&#039;plain&#039;] or true;&lt;br /&gt;
        &lt;br /&gt;
    if source_str == &#039;&#039; or pattern == &#039;&#039; then&lt;br /&gt;
        return 0;&lt;br /&gt;
    end    &lt;br /&gt;
    &lt;br /&gt;
    plain = str._getBoolean( plain );&lt;br /&gt;
&lt;br /&gt;
    local start = mw.ustring.find( source_str, pattern, start_pos, plain )&lt;br /&gt;
    if start == nil then&lt;br /&gt;
        start = 0&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    return start&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
replace&lt;br /&gt;
&lt;br /&gt;
This function allows one to replace a target string or pattern within another&lt;br /&gt;
string.&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
{{#invoke:String|replace|source_str|pattern_string|replace_string|replacement_count|plain_flag}}&lt;br /&gt;
OR&lt;br /&gt;
{{#invoke:String|replace|source=source_string|pattern=pattern_string|replace=replace_string|&lt;br /&gt;
   count=replacement_count|plain=plain_flag}}&lt;br /&gt;
&lt;br /&gt;
Parameters&lt;br /&gt;
    source: The string to search&lt;br /&gt;
    pattern: The string or pattern to find within source&lt;br /&gt;
    replace: The replacement text&lt;br /&gt;
    count: The number of occurences to replace, defaults to all.&lt;br /&gt;
    plain: Boolean flag indicating that pattern should be understood as plain&lt;br /&gt;
        text and not as a Lua style regular expression, defaults to true &lt;br /&gt;
]]&lt;br /&gt;
function str.replace( frame )&lt;br /&gt;
    local new_args = str._getParameters( frame.args, {&#039;source&#039;, &#039;pattern&#039;, &#039;replace&#039;, &#039;count&#039;, &#039;plain&#039; } ); &lt;br /&gt;
    local source_str = new_args[&#039;source&#039;] or &#039;&#039;;&lt;br /&gt;
    local pattern = new_args[&#039;pattern&#039;] or &#039;&#039;;&lt;br /&gt;
    local replace = new_args[&#039;replace&#039;] or &#039;&#039;;&lt;br /&gt;
    local count = tonumber( new_args[&#039;count&#039;] );&lt;br /&gt;
    local plain = new_args[&#039;plain&#039;] or true;&lt;br /&gt;
        &lt;br /&gt;
    if source_str == &#039;&#039; or pattern == &#039;&#039; then&lt;br /&gt;
        return source_str;&lt;br /&gt;
    end    &lt;br /&gt;
    plain = str._getBoolean( plain );&lt;br /&gt;
&lt;br /&gt;
    if plain then&lt;br /&gt;
        pattern = str._escapePattern( pattern );&lt;br /&gt;
        replace = mw.ustring.gsub( replace, &amp;quot;%%&amp;quot;, &amp;quot;%%%%&amp;quot; ); --Only need to escape replacement sequences.&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    local result;&lt;br /&gt;
&lt;br /&gt;
    if count ~= nil then&lt;br /&gt;
        result = mw.ustring.gsub( source_str, pattern, replace, count );&lt;br /&gt;
    else&lt;br /&gt;
        result = mw.ustring.gsub( source_str, pattern, replace );&lt;br /&gt;
    end        &lt;br /&gt;
&lt;br /&gt;
    return result;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[ &lt;br /&gt;
    simple function to pipe string.rep to templates.&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
function str.rep( frame )&lt;br /&gt;
    local repetitions = tonumber( frame.args[2] )&lt;br /&gt;
    if not repetitions then &lt;br /&gt;
        return str._error( &#039;function rep expects a number as second parameter, received &amp;quot;&#039; .. ( frame.args[2] or &#039;&#039; ) .. &#039;&amp;quot;&#039; )&lt;br /&gt;
    end&lt;br /&gt;
    return string.rep( frame.args[1] or &#039;&#039;, repetitions )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
Helper function that populates the argument list given that user may need to use a mix of&lt;br /&gt;
named and unnamed parameters.  This is relevant because named parameters are not&lt;br /&gt;
identical to unnamed parameters due to string trimming, and when dealing with strings&lt;br /&gt;
we sometimes want to either preserve or remove that whitespace depending on the application.&lt;br /&gt;
]]&lt;br /&gt;
function str._getParameters( frame_args, arg_list )&lt;br /&gt;
    local new_args = {};&lt;br /&gt;
    local index = 1;&lt;br /&gt;
    local value;&lt;br /&gt;
    &lt;br /&gt;
    for i,arg in ipairs( arg_list ) do&lt;br /&gt;
        value = frame_args[arg]&lt;br /&gt;
        if value == nil then&lt;br /&gt;
            value = frame_args[index];&lt;br /&gt;
            index = index + 1;&lt;br /&gt;
        end&lt;br /&gt;
        new_args[arg] = value;&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    return new_args;&lt;br /&gt;
end        &lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
Helper function to handle error messages.&lt;br /&gt;
]]&lt;br /&gt;
function str._error( error_str )&lt;br /&gt;
    local frame = mw.getCurrentFrame();&lt;br /&gt;
    local error_category = frame.args.error_category or &#039;Errors reported by Module String&#039;;&lt;br /&gt;
    local ignore_errors = frame.args.ignore_errors or false;&lt;br /&gt;
    local no_category = frame.args.no_category or false;&lt;br /&gt;
    &lt;br /&gt;
    if str._getBoolean(ignore_errors) then&lt;br /&gt;
        return &#039;&#039;;&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    local error_str = &#039;&amp;lt;strong class=&amp;quot;error&amp;quot;&amp;gt;String Module Error: &#039; .. error_str .. &#039;&amp;lt;/strong&amp;gt;&#039;;&lt;br /&gt;
    if error_category ~= &#039;&#039; and not str._getBoolean( no_category ) then&lt;br /&gt;
        error_str = &#039;[[Category:&#039; .. error_category .. &#039;]]&#039; .. error_str;&lt;br /&gt;
    end        &lt;br /&gt;
    &lt;br /&gt;
    return error_str;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
Helper Function to interpret boolean strings&lt;br /&gt;
]]&lt;br /&gt;
function str._getBoolean( boolean_str )&lt;br /&gt;
    local boolean_value;&lt;br /&gt;
    &lt;br /&gt;
    if type( boolean_str ) == &#039;string&#039; then&lt;br /&gt;
        boolean_str = boolean_str:lower();&lt;br /&gt;
        if boolean_str == &#039;false&#039; or boolean_str == &#039;no&#039; or boolean_str == &#039;0&#039; &lt;br /&gt;
                or boolean_str == &#039;&#039; then&lt;br /&gt;
            boolean_value = false;&lt;br /&gt;
        else&lt;br /&gt;
            boolean_value = true;&lt;br /&gt;
        end    &lt;br /&gt;
    elseif type( boolean_str ) == &#039;boolean&#039; then&lt;br /&gt;
        boolean_value = boolean_str;&lt;br /&gt;
    else&lt;br /&gt;
        error( &#039;No boolean value found&#039; );&lt;br /&gt;
    end    &lt;br /&gt;
    return boolean_value&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--[[&lt;br /&gt;
Helper function that escapes all pattern characters so that they will be treated &lt;br /&gt;
as plain text.&lt;br /&gt;
]]&lt;br /&gt;
function str._escapePattern( pattern_str )&lt;br /&gt;
    return mw.ustring.gsub( pattern_str, &amp;quot;([%(%)%.%%%+%-%*%?%[%^%$%]])&amp;quot;, &amp;quot;%%%1&amp;quot; );&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return str&lt;/div&gt;</summary>
		<author><name>Rojypala</name></author>
	</entry>
	<entry>
		<id>https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:Purgepage&amp;diff=127407</id>
		<title>ഫലകം:Purgepage</title>
		<link rel="alternate" type="text/html" href="https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:Purgepage&amp;diff=127407"/>
		<updated>2013-02-22T12:29:23Z</updated>

		<summary type="html">&lt;p&gt;Rojypala: :en:ഫലകം:Purgepage എന്നതിൽ നിന്ന് ഒരു പതിപ്പ്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:Purge page]]&lt;/div&gt;</summary>
		<author><name>Rojypala</name></author>
	</entry>
	<entry>
		<id>https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:Purge_page&amp;diff=127405</id>
		<title>ഫലകം:Purge page</title>
		<link rel="alternate" type="text/html" href="https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:Purge_page&amp;diff=127405"/>
		<updated>2013-02-22T12:29:22Z</updated>

		<summary type="html">&lt;p&gt;Rojypala: :en:ഫലകം:Purge page എന്നതിൽ നിന്ന് ഒരു പതിപ്പ്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;i class=&amp;quot;noprint plainlinks&amp;quot;&amp;gt;[{{fullurl:{{FULLPAGENAME}}|action=purge}} &amp;lt;small {{#if: {{{color|}}} |style=&amp;quot;color:{{{color}}}&amp;quot;}}&amp;gt;Purge server cache&amp;lt;/small&amp;gt;]&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{documentation}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rojypala</name></author>
	</entry>
	<entry>
		<id>https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:PD-US&amp;diff=126858</id>
		<title>ഫലകം:PD-US</title>
		<link rel="alternate" type="text/html" href="https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:PD-US&amp;diff=126858"/>
		<updated>2012-01-18T06:27:07Z</updated>

		<summary type="html">&lt;p&gt;Rojypala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{imbox&lt;br /&gt;
| type       = license&lt;br /&gt;
| image      = [[Image:PD-icon.svg|52px]]&lt;br /&gt;
| imageright = [[Image:Flag of the United States.svg|64px]]&lt;br /&gt;
| text       = ഈ പ്രമാണം &#039;&#039;&#039;[[അമേരിക്കൻ ഐക്യനാടുകൾ|അമേരിക്കൻ ഐക്യനാടുകളിൽ]]&#039;&#039;&#039; [[പൊതുസഞ്ചയം|പൊതുസഞ്ചയത്തിൽ]] വരുന്നവയാണ്. മിക്കവാറും 1923 ജനുവരി 1-നു മുൻപ് ആദ്യമായി പ്രസിദ്ധീകരിച്ചവയാണ് ഈ ഗണത്തിൽ വരുന്നത് (കൂടുതൽ വിവരങ്ങൾക്ക് [[ഫലകം:PD-US|ഫലകത്തിന്റെ വിവരണം]] കാണുക).  ഇതര നീതിന്യായവ്യവസ്ഥ പ്രകാരം വ്യത്യസ്ത നിയമങ്ങളായിരിക്കാം, &#039;&#039;&#039;ഒരു പക്ഷേ അമേരിക്കൻ ഐക്യനാടുകൾക്ക് പുറത്ത് ഇവ പൊതുസഞ്ചയത്തിൽ വരില്ല&#039;&#039;&#039;. കൂടുതൽ അറിവിന് [[വിക്കിപീഡിയ:പൊതുസഞ്ചയം]], [[വിക്കിപീഡിയ:പകർപ്പവകാശം]] എന്നീ താളുകൾ കാണുക.&lt;br /&gt;
}}{{image other&lt;br /&gt;
| [[Category:Images in the public domain in the United States|{{PAGENAME}}]]&lt;br /&gt;
}}{{free media}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{വിവരണം}}&lt;br /&gt;
&amp;lt;!-- Add categories and interwikis to the /doc subpage, not here! --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rojypala</name></author>
	</entry>
	<entry>
		<id>https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:Prettyurl/%E0%B4%B5%E0%B4%BF%E0%B4%B5%E0%B4%B0%E0%B4%A3%E0%B4%82&amp;diff=126770</id>
		<title>ഫലകം:Prettyurl/വിവരണം</title>
		<link rel="alternate" type="text/html" href="https://schoolwiki.in/index.php?title=%E0%B4%AB%E0%B4%B2%E0%B4%95%E0%B4%82:Prettyurl/%E0%B4%B5%E0%B4%BF%E0%B4%B5%E0%B4%B0%E0%B4%A3%E0%B4%82&amp;diff=126770"/>
		<updated>2011-10-14T16:51:54Z</updated>

		<summary type="html">&lt;p&gt;Rojypala: 218.248.84.25 (സംവാദം) നടത്തിയ തിരുത്തലുകൾ നീക്കം ചെയ്തിരിക്കുന്നു; നിലവിലുള്&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Documentation subpage}}&lt;br /&gt;
&amp;lt;!-- ദയവായി വിഭാഗങ്ങളും ഇന്റെർവിക്കി ലിങ്കുകളും ഈ താളിന്റെ താഴെ ചേർക്കുക&lt;br /&gt;
      PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;എന്താണ്‌ ഇംഗ്ലീഷ് വിലാസം:&#039;&#039;&#039; മലയാളം വിക്കിപീഡിയയിലെ ഒരു ലേഖനത്തിലേക്കുള്ള കണ്ണി, ബ്ലോഗിലോ, ഇ-മെയിലിലോ, മറ്റു സ്ഥലങ്ങളിലോ ഉപയോഗിക്കാൻ പാകത്തിൽ ചെറുതും സൗകര്യപ്രദവുമായ വിധത്തിൽ ഇംഗ്ലീഷ് യു.ആർ.എൽ ആയി ക്രമീകരിച്ചിരിക്കുന്നതാണ്‌ &#039;&#039;&#039;ഇംഗ്ലീഷ് വിലാസം&#039;&#039;&#039;. ഒരു ലേഖനത്തിന്റെ ഇംഗ്ലീഷ് വിലാസം കോപ്പി ചെയ്യാൻ, &#039;&#039;&#039;പ്രദർശിപ്പിക്കുക&#039;&#039;&#039; എന്ന കണ്ണിയിൽ ഞെക്കുമ്പോൾ ദൃശ്യമാകുന്ന URL -ൽ റൈറ്റ് ക്ലിക്ക് ചെയ്ത് &#039;&#039;Copy link location&#039;&#039; എന്നതിൽ ഞെക്കുക. പിന്നീട് നിങ്ങൾക്ക് ഇഷ്ടമുള്ളിടത്ത് കോപ്പി ചെയ്ത ഇംഗ്ലീഷ് വിലാസം പേസ്റ്റ് ചെയ്യാം.&lt;br /&gt;
&lt;br /&gt;
=== ഉപയോഗക്രമം===&lt;br /&gt;
{|cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;width:300;border:solid #999 1px;background:#F8F8F8;margin:0.5em auto;clear:both&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:10%;text-align:&amp;quot;center&amp;quot;|[[Image:Nuvola apps important.svg|50px]]&lt;br /&gt;
|style=&amp;quot;color:black&amp;quot;;text-align:&amp;quot;center&amp;quot;|&amp;lt;center&amp;gt;&lt;br /&gt;
&#039;&#039;&amp;quot;പരീക്ഷണങ്ങൾ നടത്താൻ [[ഫലകം:Prettyurl/പരീക്ഷണം]] എന്നതാൾ ഉപയോഗിക്കുക, പ്രസ്തുത പരീക്ഷണം [[വിക്കിപീഡിയ:എഴുത്തുകളരി|എഴുത്തുകളരിയിലോ]] മറ്റോ ഉപയോഗിച്ചു നോക്കാൻ &#039;&#039;&#039;&amp;lt;nowiki&amp;gt;{{Prettyurl/പരീക്ഷണം|EnglishAddress}}&amp;lt;/nowiki&amp;gt;&#039;&#039;&#039; എന്ന രീതിയിൽ കൊടുത്താൽ മതിയാവും &amp;quot;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===വിശദീകരണം===&lt;br /&gt;
====നിർവചനം====&lt;br /&gt;
വളരെ ലളിതമായി പറഞ്ഞാൽ നിങ്ങൾ വായിക്കുന്ന ലേഖനത്തിന്റെ ഇംഗ്ലീഷിലുള്ള URL ആണ് &#039;&#039;&#039;ഇംഗ്ലീഷ് വിലാസം&#039;&#039;&#039; .&lt;br /&gt;
&lt;br /&gt;
====എന്താണ് ഇംഗ്ലീഷ് വിലാസത്തിന്റെ ഉപയോഗം?====&lt;br /&gt;
നിലവിൽ ലേഖനത്തിന്റെ പ്രധാന URL ഇന്റർനെറ്റിലോ ഇ-മെയിലിലോ അയക്കുമ്പോൾ ചിലപ്പോൾ ആ URL തെറ്റായി പോകാറുണ്ട്. ആ പ്രതിസന്ധി ഒഴിവാക്കുന്നതിനാണ്  ഇംഗ്ലീഷ് വിലാസം.&lt;br /&gt;
&lt;br /&gt;
====ഇംഗ്ലീഷ് വിലാസം തിരഞ്ഞെടുക്കുമ്പോൾ എന്തൊക്കെ ശ്രദ്ധിക്കണം?====&lt;br /&gt;
&lt;br /&gt;
വെബ്ബിൽ കൂടെ ഇംഗ്ലീഷ് വിലാസം കൈമാറ്റം ചെയ്യുമ്പോൾ ഉണ്ടാകുന്ന പ്രശ്നങ്ങൾ ഒഴിവാക്കുകയും, ഇംഗ്ലീഷ് വിലാസം കാണുന്നവർക്കു് അത് എന്തിനെക്കുറിച്ചുള്ള ലേഖനമാണെന്ന് മനസ്സിലാകുകയും, അതുപയോഗിച്ച് മലയാളം വിക്കിപീഡിയ ലേഖനത്തിൽ എത്താൻ സാധിക്കുകയും ചെയ്യുക എന്നതാണ് ഇംഗ്ലീഷ് വിലാസത്തിന്റെ ലക്ഷ്യം. ലേഖനത്തിന്റെ കറസ്പോൻഡിങ്ങായ ഇംഗ്ലീഷു് വാക്കു് ഉപയോഗിക്കുക &#039;&#039;&#039;എന്നതല്ല&#039;&#039;&#039; ഇംഗ്ലീഷ് വിലാസത്തിന്റെ രീതി . &lt;br /&gt;
&lt;br /&gt;
അതിനാൽ തന്നെ  ഇംഗ്ലീഷ് വിലാസം  ആയി ഉപയോഗിക്കുന്ന റീഡയറക്ടിൽ, യാതൊരുവിധ സ്പെഷ്യൽ ക്യാരക്ടേർസും ഉപയോഗിക്കരുത്. ഇംഗ്ലീഷിലെ 26 അക്ഷരങ്ങളും, സംഖ്യകളും മാത്രമുപയോഗിക്കുക. ഒരു പ്രത്യേക ലേഖനത്തിന്റെ ഇംഗ്ലീഷ് പേരിൽ സ്പെഷ്യൽ ക്യാരക്ടേർസു് ഉണ്ടെങ്കിൽ അത് ലേഖനത്തിന് അകത്ത് ഉപയോഗിക്കുക. ഇംഗ്ലീഷ് വിലാസം ആയി കൊടുക്കുന്ന റീഡയറക്സ് താൾ എപ്പോഴും ഏറ്റവും കുറച്ച് വക്കുകൾ ഉപയോഗിക്കുന്നതും ലളിതവുമായിരിക്കണം. അതിനാൽ തന്നെ ചില സമയത്ത് സ്പെല്ലിങ്ങിൽ ചില മാറ്റങ്ങൾ വരുത്തിയ ഒരു റീഡയറക്ട് ആയിരിക്കും പ്രെറ്റി യൂആർഎല്ലായി കൂടുതൽ അനുയോജ്യം&lt;br /&gt;
&lt;br /&gt;
====ഒരു ഉദാഹരണം====&lt;br /&gt;
മലയാളം വിക്കിയിലെ “[[തിരുവനന്തപുരം]]“ എന്ന ലേഖനം നിങ്ങൾ വായിക്കുന്നു എന്നിരിക്കട്ടെ. ഈ ലേഖനം നിങ്ങൾക്ക് നിങ്ങളുടെ ഒരു ബ്ലോഗ്ഗിലോ ഏതെങ്കിലും വെബ്ബ് പേജിൽ ഇടുകയോ അതുമല്ലെങ്കിൽ നിങ്ങളുടെ ഒരു സുഹൃത്തിനു ഇ-മെയിൽ ആയി അയച്ചു കൊടുക്കണം എന്നോ ഇരിക്കട്ടെ. സാധാരണ നമ്മൾ ചെയ്യുന്നത് ബ്രൌസർ വിൻഡോയിൽ പോയി അവിടെ നിന്ന് ലിങ്ക് കോപ്പി ചെയ്യുകയാണ് ചെയ്യുന്നത്. പ്രസ്തുത ലേഖനത്തിൻറെ URL http://ml.wikipedia.org/wiki/%E0%B4%A4%E0%B4%BF%E0%B4%B0%E0%B5%81%E0%B4%B5%E0%B4%A8%E0%B4%A8%E0%B5%8D%E0%B4%A4%E0%B4%AA%E0%B5%81%E0%B4%B0%E0%B4%82&amp;quot; എന്നാണ്. ഇത് കാണുന്ന ആർക്കും ഇതു ഏതു ലേഖനത്തിന്റെ URL ആണെന്ന് മനസ്സിലാകില്ല. മാത്രമല്ല പകർത്തി ഉപയോഗിക്കുമ്പോൾ ഈ URL ചിലപ്പോൾ പ്രവർത്തിക്കാതിരിക്കാനും സാധ്യതയുണ്ട്. അതിനു പകരം http://ml.wikipedia.org/wiki/Trivandrum എന്ന URL ആകുമ്പോൾ എല്ലാവർക്കും പെട്ടെന്ന് ലേഖനം ഏതാണെന്ന് മനസ്സിലാക്കാനും പകർത്താനും സാധിക്കും. ഇതു തന്നെയാണ് ഈ കുറുക്കുവഴി URL.&lt;br /&gt;
&lt;br /&gt;
====ഇംഗ്ലീഷ് വിലാസം URL എങ്ങനെയാണ് പകർത്തുന്നത്?====&lt;br /&gt;
പ്രദർശിപ്പിക്കുക എന്ന ലിങ്കിൽ ഞെക്കുമ്പോൾ ഒരു വെബ് യു.ആർ.എൽ കാണാവുന്നതാണ്‌. ഇന്റെർനെറ്റ് എക്സ്പ്ലോററിൽ Right click ചെയ്ത് Copy this Short cut എന്നതു ഞെക്കിയാൽ ‍ നിങ്ങൾക്ക് ഇതു പകർത്താം. മോസില്ല ഫയർഫോക്സ്, നെറ്റ്സ്കേപ് നാവിഗേറ്റർ എന്നിവയിൽ ഇതിനു സമാനമായ Copy Link Location, ഓപറയിൽ Copy Link Address, സഫാരിയിൽ Copy Link എന്ന മെനു ഐറ്റവും ഞെക്കിയാൽ ലിങ്ക് പകർത്താവുന്നതാണ്&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;ഉപയോഗക്രമം:&#039;&#039;&#039;&amp;lt;nowiki&amp;gt; {{prettyurl|&amp;lt;/nowiki&amp;gt;  &#039;&#039;ഇംഗ്ലീഷ് അക്ഷരമാല ഉപയോഗിക്കുന്ന നാമം(റീഡിറക്റ്റ് ഉള്ളത്) കൊടുക്കുക&#039;&#039; &amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
*&#039;&#039;&#039;ഉദാഹരണം&#039;&#039;&#039;:[[ഇന്ത്യ|ഇന്ത്യയെന്ന]] ലേഖനത്തിൽ &amp;lt;nowiki&amp;gt; {{prettyurl|india}}&amp;lt;/nowiki&amp;gt; എന്നു കൊടുക്കുക.&lt;br /&gt;
&lt;br /&gt;
====In English====&lt;br /&gt;
*&#039;&#039;&#039;Objective:&#039;&#039;&#039; to provide a short and clean shortcut link to a page, which can be added to a blog or send via e-mail.&lt;br /&gt;
*&#039;&#039;&#039;Usage:&#039;&#039;&#039; &amp;lt;nowiki&amp;gt; {{prettyurl |&amp;lt;/nowiki&amp;gt;  &#039;&#039;a name using only English characters&#039;&#039; &amp;lt;nowiki&amp;gt;}}&amp;lt;/nowiki&amp;gt; &lt;br /&gt;
*&#039;&#039;&#039;Example:&#039;&#039;&#039; on [[ഇന്ത്യ]] insert &amp;lt;nowiki&amp;gt; {{prettyurl|india}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ഇതും കാണുക ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
&amp;lt;!-- ദയവായി വിഭാഗങ്ങളും ഇന്റെർവിക്കികളും ഈ വരികൾക്കു താഴെ ചേർക്കുക&lt;br /&gt;
      CATEGORIES AND INTERWIKIS BELOW THIS LINE PLEASE --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rojypala</name></author>
	</entry>
</feed>