Difference between pages "Module:Message box" and "August 31 2013"

From Kailasapedia
(Difference between pages)
Jump to navigation Jump to search
m (1 revision imported)
 
m (The LinkTitles extension automatically added links to existing pages (<a rel="nofollow" class="external free" href="https://github.com/bovender/LinkTitles">https://github.com/bovender/LinkTitles</a>).)
 
Line 1: Line 1:
-- This is a meta-module for producing message box templates, including
+
==Link to Video: ==
-- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}.
 
  
-- Load necessary modules.
+
{{#evu:  
require('Module:No globals')
 
local getArgs
 
local yesno = require('Module:Yesno')
 
  
-- Get a language object for formatDate and ucfirst.
+
https://www.youtube.com/watch?v=YnRqK9mAUj8
local lang = mw.language.getContentLanguage()
 
  
-- Define constants
+
|alignment=center }}
local CONFIG_MODULE = 'Module:Message box/configuration'
 
  
--------------------------------------------------------------------------------
+
== Description: ==
-- Helper functions
 
--------------------------------------------------------------------------------
 
  
local function getTitleObject(...)
+
Ganesha Brahmotsavam Starts today with flag hoisting 10:30-11:00am and continuing for the next 10 days. Ganesha Puja is for the completion of all negativities and incompletions that form obstacles in our lives.Now and for the next 10 days complete with all the obstacles in your life. One more Sacred Secret of completion: you think you can only complete with things that you can find the root of. This is a wrong cognition. We can even complete with self-failing, self –rejecting patterns. Even if we can’t find the source we can complete. We can complete with desires from too many incompletions. One inadequate cognition that we all have is the strong belief that our bad space will always overpower our good space…the bad space is the default program. This idea that the Negative space is the default and the positive space is not strong enough is faulty cognition. Both can be completed .the true default program of our Inner Space is Unclutched. Unclutched is our default program. Completing with the belief that Wrong cognition is strong Cognition is Ganesha Puja. Create a space of Ganesha. Complete with all ideas of impossibility for the next 10 days. Do completion on all obstacles and layers of Negativity. Layer- by- Layer Complete.  
-- Get the title object, passing the function through pcall
 
-- in case we are over the expensive function count limit.
 
local success, title = pcall(mw.title.new, ...)
 
if success then
 
return title
 
end
 
end
 
  
local function union(t1, t2)
+
== Tags: ==  
-- Returns the union of two arrays.
 
local vals = {}
 
for i, v in ipairs(t1) do
 
vals[v] = true
 
end
 
for i, v in ipairs(t2) do
 
vals[v] = true
 
end
 
local ret = {}
 
for k in pairs(vals) do
 
table.insert(ret, k)
 
end
 
table.sort(ret)
 
return ret
 
end
 
  
local function getArgNums(args, prefix)
+
Paramahamsa Nithyananda, complete, cognition, self-rejecting, patterns, negativity, ganesha
local nums = {}
 
for k, v in pairs(args) do
 
local num = mw.ustring.match(tostring(k), '^' .. prefix .. '([1-9]%d*)$')
 
if num then
 
table.insert(nums, tonumber(num))
 
end
 
end
 
table.sort(nums)
 
return nums
 
end
 
  
--------------------------------------------------------------------------------
+
==Transcript: ==
-- Box class definition
 
--------------------------------------------------------------------------------
 
  
local MessageBox = {}
+
Nithyanandeshwara Samaarambhaam Nithyanandeshwari Madhyamaam |
MessageBox.__index = MessageBox
+
Asmath Aachaarya Paryanthaam Vandhey Guru Paramparaam ||
  
function MessageBox.new(boxType, args, cfg)
+
I welcome all of you with my love and blessings.
args = args or {}
 
local obj = {}
 
  
-- Set the title object and the namespace.
+
And, today, Independence Day of Malaysia!  My blessings to all the people in Malaysia and our devotees in Malaysia!  Blessings to all of you!  Selamat Hari Merdeka!  And let the whole Malaysia have peace, blessings, bliss and all the auspiciousness and growth!  My blessings!
obj.title = getTitleObject(args.page) or mw.title.getCurrentTitle()
 
  
-- Set the config for our box type.
+
And, today, I have one more beautiful announcement.
obj.cfg = cfg[boxType]
 
if not obj.cfg then
 
local ns = obj.title.namespace
 
-- boxType is "mbox" or invalid input
 
if ns == 0 then
 
obj.cfg = cfg.ambox -- main namespace
 
elseif ns == 6 then
 
obj.cfg = cfg.imbox -- file namespace
 
elseif ns == 14 then
 
obj.cfg = cfg.cmbox -- category namespace
 
else
 
local nsTable = mw.site.namespaces[ns]
 
if nsTable and nsTable.isTalk then
 
obj.cfg = cfg.tmbox -- any talk namespace
 
else
 
obj.cfg = cfg.ombox -- other namespaces or invalid input
 
end
 
end
 
end
 
  
-- Set the arguments, and remove all blank arguments except for the ones
+
As you all know, Dhyanapeetam is Nityotsava, always filled with festivities!  Today, we are starting our Ganesha Brahmotsava.  So, Vinayaka Chaturthi Brahmotsava is starting.  10:30 am to 11:00 am (Indian Standard Time), in that twenty-one minutes – I can say half-an-hour – in that twenty-one minutes, we will be doing the Dwajarohana – “Raising the Flag” and Ganesha’s Brahmotsava.  Actually, from today, tenth day will be Ganesh Chaturthi, the day Vinayaka happened, Ganesha happened. All the Nithyananda TV viewers can join live on Nithyananda TV.  And all the other TV viewers can also join Nithyananda TV. It is free. It is web TV. You can join to have the darshan of Ganesha and Ganesha’s Dwajarohana – flag hoisting of Ganesha Brahmotsava.
-- listed in cfg.allowBlankParams.
 
do
 
local newArgs = {}
 
for k, v in pairs(args) do
 
if v ~= '' then
 
newArgs[k] = v
 
end
 
end
 
for i, param in ipairs(obj.cfg.allowBlankParams or {}) do
 
newArgs[param] = args[param]
 
end
 
obj.args = newArgs
 
end
 
  
-- Define internal data structure.
+
And tomorrow morning 8:00 am to 9:00 am (Indian Standard Time), during satsang time, we have Meenakshi’s marriage, Meenakshi’s wedding, Meenakshi’s wedding which will be conducted and enacted by our gurukul kids, first time!
obj.categories = {}
 
obj.classes = {}
 
-- For lazy loading of [[Module:Category handler]].
 
obj.hasCategories = false
 
  
return setmetatable(obj, MessageBox)
+
So, today, Ugra Pandya – Subramanya – is gracing us with the Leela: “Meruvai Chendaldit Rangam Gun Aditha Padalam”.
end
 
  
function MessageBox:addCat(ns, cat, sort)
+
Once, the Pandya Kingdom was caught with the famine and poverty. All the astrologers said it was because of an unfavorable planetary position.
if not cat then
 
return nil
 
end
 
if sort then
 
cat = string.format('[[Category:%s|%s]]', cat, sort)
 
else
 
cat = string.format('[[Category:%s]]', cat)
 
end
 
self.hasCategories = true
 
self.categories[ns] = self.categories[ns] or {}
 
table.insert(self.categories[ns], cat)
 
end
 
  
function MessageBox:addClass(class)
+
So, Sundareshwara appeared in front of Ugra Pandya (Subramanya) and said, “Attack the Mount Meru with the weapon he gave, Sundareshwara gave, “Chendu” and get the gold from Mount Meru; that will take care of bringing the economy of Madurai kingdom back.
if not class then
 
return nil
 
end
 
table.insert(self.classes, class)
 
end
 
  
function MessageBox:setParameters()
+
So Ugra Pandya does the same thing. He goes and hits Mount Meru. Mount Meru says, “Yes, I have stop performing shiv pooja for a quite a long time, that is why I had to get hit by your Chendu. So he offers gold to Ugra Pandya, and Ugra Pandya brings that gold and the Madurai kingdom’s economy was rejuvenated.
local args = self.args
 
local cfg = self.cfg
 
  
-- Get type data.
+
So, this is the way Lord Sundareshwara protected the Pandya Kingdom.  
self.type = args.type
 
local typeData = cfg.types[self.type]
 
self.invalidTypeError = cfg.showInvalidTypeError
 
and self.type
 
and not typeData
 
typeData = typeData or cfg.types[cfg.default]
 
self.typeClass = typeData.class
 
self.typeImage = typeData.image
 
  
-- Find if the box has been wrongly substituted.
+
Today, you can see Subramanya – Ugra Pandya – gracing us in that position.
self.isSubstituted = cfg.substCheck and args.subst == 'SUBST'
 
  
-- Find whether we are using a small message box.
+
I will move to Satsang, Nithya Satsang.
self.isSmall = cfg.allowSmall and (
 
cfg.smallParam and args.small == cfg.smallParam
 
or not cfg.smallParam and yesno(args.small)
 
)
 
  
-- Add attributes, classes and styles.
+
Today, I have some of the beautiful things to share with you all as part of Nithya Satsang. Some of my recent discoveries.
self.id = args.id
 
self.name = args.name
 
if self.name then
 
self:addClass('box-' .. string.gsub(self.name,' ','_'))
 
end
 
if yesno(args.plainlinks) ~= false then
 
self:addClass('plainlinks')
 
end
 
for _, class in ipairs(cfg.classes or {}) do
 
self:addClass(class)
 
end
 
if self.isSmall then
 
self:addClass(cfg.smallClass or 'mbox-small')
 
end
 
self:addClass(self.typeClass)
 
self:addClass(args.class)
 
self.style = args.style
 
self.attrs = args.attrs
 
  
-- Set text style.
+
“Hindi Transalation”
self.textstyle = args.textstyle
 
  
-- Find if we are on the template page or not. This functionality is only
+
Actually, Todays Brahmotsava, Ganesha Brahmotsava is beginning and 10 days it will happen. But tomorrow, the Meenakshi Thirukalynam is part of the Inner Awakening program. So understand, Meenakshi Thirukalyanam does not happen in Ganesh Brahmotsava. These two are two different things.
-- used if useCollapsibleTextFields is set, or if both cfg.templateCategory
 
-- and cfg.templateCategoryRequireName are set.
 
self.useCollapsibleTextFields = cfg.useCollapsibleTextFields
 
if self.useCollapsibleTextFields
 
or cfg.templateCategory
 
and cfg.templateCategoryRequireName
 
then
 
if self.name then
 
local templateName = mw.ustring.match(
 
self.name,
 
'^[tT][eE][mM][pP][lL][aA][tT][eE][%s_]*:[%s_]*(.*)$'
 
) or self.name
 
templateName = 'Template:' .. templateName
 
self.templateTitle = getTitleObject(templateName)
 
end
 
self.isTemplatePage = self.templateTitle
 
and mw.title.equals(self.title, self.templateTitle)
 
end
 
 
-- Process data for collapsible text fields. At the moment these are only
 
-- used in {{ambox}}.
 
if self.useCollapsibleTextFields then
 
-- Get the self.issue value.
 
if self.isSmall and args.smalltext then
 
self.issue = args.smalltext
 
else
 
local sect
 
if args.sect == '' then
 
sect = 'This ' .. (cfg.sectionDefault or 'page')
 
elseif type(args.sect) == 'string' then
 
sect = 'This ' .. args.sect
 
end
 
local issue = args.issue
 
issue = type(issue) == 'string' and issue ~= '' and issue or nil
 
local text = args.text
 
text = type(text) == 'string' and text or nil
 
local issues = {}
 
table.insert(issues, sect)
 
table.insert(issues, issue)
 
table.insert(issues, text)
 
self.issue = table.concat(issues, ' ')
 
end
 
  
-- Get the self.talk value.
+
“Hindi Translation”
local talk = args.talk
 
-- Show talk links on the template page or template subpages if the talk
 
-- parameter is blank.
 
if talk == ''
 
and self.templateTitle
 
and (
 
mw.title.equals(self.templateTitle, self.title)
 
or self.title:isSubpageOf(self.templateTitle)
 
)
 
then
 
talk = '#'
 
elseif talk == '' then
 
talk = nil
 
end
 
if talk then
 
-- If the talk value is a talk page, make a link to that page. Else
 
-- assume that it's a section heading, and make a link to the talk
 
-- page of the current page with that section heading.
 
local talkTitle = getTitleObject(talk)
 
local talkArgIsTalkPage = true
 
if not talkTitle or not talkTitle.isTalkPage then
 
talkArgIsTalkPage = false
 
talkTitle = getTitleObject(
 
self.title.text,
 
mw.site.namespaces[self.title.namespace].talk.id
 
)
 
end
 
if talkTitle and talkTitle.exists then
 
local talkText = 'Relevant discussion may be found on'
 
if talkArgIsTalkPage then
 
talkText = string.format(
 
'%s [[%s|%s]].',
 
talkText,
 
talk,
 
talkTitle.prefixedText
 
)
 
else
 
talkText = string.format(
 
'%s the [[%s#%s|talk page]].',
 
talkText,
 
talkTitle.prefixedText,
 
talk
 
)
 
end
 
self.talk = talkText
 
end
 
end
 
  
-- Get other values.
+
Alright! Let’s move to today’s Nithya Satsang.
self.fix = args.fix ~= '' and args.fix or nil
+
local date
+
Please understand, listen, I am throwing one more sacred secret about Completion. I am throwing more light on the science of Completion.  
if args.date and args.date ~= '' then
 
date = args.date
 
elseif args.date == '' and self.isTemplatePage then
 
date = lang:formatDate('F Y')
 
end
 
if date then
 
self.date = string.format(" <small class='date-container'>''(<span class='date'>%s</span>)''</small>", date)
 
end
 
self.info = args.info
 
if yesno(args.removalnotice) then
 
self.removalNotice = cfg.removalNotice
 
end
 
end
 
  
-- Set the non-collapsible text field. At the moment this is used by all box
+
Listen! If you are constantly struggling with your life, anything you touch never becomes successful, brings suffering, even with those un-understandable, even with those failures which you can’t grasp logically, you can complete!
-- types other than ambox, and also by ambox when small=yes.
 
if self.isSmall then
 
self.text = args.smalltext or args.text
 
else
 
self.text = args.text
 
end
 
  
-- Set the below row.
+
Please listen, you always think you can complete only with the things of which you are able to find the root.  For example, your agitation pattern, the part of you fighting with people.  You all believe it started at some time, you go back to the root-pattern and complete with it; it is possible.  But, I am telling you one more thing, there are many things which you logically don’t know why, how, when.  For example, many of us carry, what many, almost all of us carry this pattern: ‘Whatever I want never happens.  Whatever I touch always becomes a failure.  May be, one percent if God fulfills, ninety-nine percent he fails me!’  How many of you have this kind of pattern, idea?  Raise your hand.  If others are not raising, they don’t even know or want to raise!  Anyhow…! Even with these kind of patterns you can complete. You can declare, ‘These self-failing patterns, self-rejecting patterns, I am completing with it.
self.below = cfg.below and args.below
 
  
-- General image settings.
+
And always, all of us feel too much is in our plate. ‘Oh, God!  You don’t know!  So much is there!  So much is there!  So much is there!’  Too much is in our plate, we always think. Understand, even if you are not able to find when you started believing that, even if you are not able to find when that pattern started, even if you are not able to find how that pattern started, even if you are not able to find the source of that pattern, I tell you, you can straightaway complete with those concepts, ideas you carry in your brain, in your system. If you think life has lot of suffering, if you think life has lot of desires which cannot be fulfilled, if you think your consciousness is putting too much of load of desires on you due to your incompletions which you may not be able to complete with your whole life, please understand, even with all that you can complete!  Even with all that you can complete!
self.imageCellDiv = not self.isSmall and cfg.imageCellDiv
 
self.imageEmptyCell = cfg.imageEmptyCell
 
if cfg.imageEmptyCellStyle then
 
self.imageEmptyCellStyle = 'border:none;padding:0px;width:1px'
 
end
 
  
-- Left image settings.
+
And the good news you have is, your inner space by its nature cannot be influenced by any incompletion. Unfortunately, you strongly believe you cannot hold the good space you are having. If you cannot hold your good space and you will fall from it, it means that your good space cannot become permanent in your inner space. If your good space cannot become permanent, then logically, you should know, your bad space also cannot be permanent!  But you don’t believe that. You always believe your good space will be slipped, that ‘I will just get imbalanced in a moment, It will tumble down.’  But your bad space you think is a default program.  The good news is, your inner space has no default program. Its default program is “unclutched”.  Being unclutched is the default program of your inner space.  Your strong belief that your bad space, means, negative, impossible, attracting more and more incompletion, that negative space you think is the default program and permanent. That is wrong.  You can complete with that belief. You can complete with that belief. Even that belief is an inadequate cognition. Even that belief is an inadequacy of your being. So, understand, you can complete even with that belief. When you complete with that belief, the inadequate cognition of your life, suddenly you will see you are in your default cognition. Your default cognition is “unclutched”.  “Unclutched” is your default cognition.  
local imageLeft = self.isSmall and args.smallimage or args.image
 
if cfg.imageCheckBlank and imageLeft ~= 'blank' and imageLeft ~= 'none'
 
or not cfg.imageCheckBlank and imageLeft ~= 'none'
 
then
 
self.imageLeft = imageLeft
 
if not imageLeft then
 
local imageSize = self.isSmall
 
and (cfg.imageSmallSize or '30x30px')
 
or '40x40px'
 
self.imageLeft = string.format('[[File:%s|%s|link=|alt=]]', self.typeImage
 
or 'Imbox notice.png', imageSize)
 
end
 
end
 
  
-- Right image settings.
+
I think our whole [[Sangha]] is stuck collectively in this mode only  now. When I introduced all the four spiritual tattvas, four principles and the power of Completion, experience of Completion, everyone was very excited.  ‘Yes, let me try!  Let me try!’  And they all jumped!  And they saw some beautiful results!  But you have a strong belief that life cannot be a beautiful “Vasantha” (Spring), or life cannot be beautiful Completion forever. ‘Yes, yes, I experienced Completion and the space of Possibility and all that. But that cannot be default. I have done only this much sadhana na!  So, I will fall back!’  So, because of the faith that our default cognition is negative, this positive space we created is we created by tapas, you fall back. You fall back.
local imageRight = self.isSmall and args.smallimageright or args.imageright
 
if not (cfg.imageRightNone and imageRight == 'none') then
 
self.imageRight = imageRight
 
end
 
end
 
  
function MessageBox:setMainspaceCategories()
+
It is like that day we had Krishna’s play, celebrating Krishna’s pastimes, how we had a play.  You tie a mud pot in a rope and take it up and down.  See, when I raised it (the mud pot), naturally it has to come down to go again up. See, whenever you asked how can I hold on to the positive cognition? That is where, already you created the problem. Because, you believe now holding on to positive cognition is difficult. Now no technique will help you. No sadhana can help you. Nothing can help you. No technique can help you. No sadhana can help you. Understand, today whole Sangha should decide they complete this inadequate and wrong cognition. Negativity is your default cognition, is the wrong cognition, inadequate cognition with which you have to complete.  You should know the truth that Unclutching is your default cognition. Unclutching is your default cognition.
local args = self.args
 
local cfg = self.cfg
 
  
if not cfg.allowMainspaceCategories then
+
“Hindi Translation”
return nil
 
end
 
  
local nums = {}
+
Understand, completing with the wrong pattern, inadequate cognition that “anything you do will have lot of obstacles, impossible”, is Ganesha Puja. Understand, complete with that wrong cognition which you think as a strong cognition which is not!  You always think wrong cognitions are all strong cognitions, which is not true.  Wrong cognitions are not strong cognitions as you visualize.  Inadequate cognitions, inadequate cognitions are not strong cognitions.  Complete with it.  Wrong cognition is never a strong cognition.  Understand, we have a strong belief: ‘Anything I am going to take it up is going to be very difficult. Anything I am going to take it up is going to be very difficult and impossible. When you have that strong cognition of “it is going to be difficult and impossible”, naturally you already felt the tiredness in your muscle-memory, you already created tiredness in your bio-memory; please understand, already tiredness and boredom have become your default cognition.  That’s the most difficult problem!  That is the most difficult problem!  We have to complete with that.
for _, prefix in ipairs{'cat', 'category', 'all'} do
 
args[prefix .. '1'] = args[prefix]
 
nums = union(nums, getArgNums(args, prefix))
 
end
 
  
-- The following is roughly equivalent to the old {{Ambox/category}}.
+
Completing with the pattern of “impossible”, “most difficult”, is Ganesha Puja. That is what is worship of Lord Vigneshwara. Vigneshwara, Ganapathi, Ganesha stands for “Possible”, “No Obstruction”. Lord of Obstructions!  Means, when he stands, all obstructions disappear. He stands for the “Possible”, removes obstacles. I tell you, please understand, create the space of Ganesha in all of you and remove. Complete with the pattern that “impossible”, “difficult”, “lot of obstacles are there”, for the next ten days. This is the Ganesha Brahmotsava for the Sangha. For the next ten days, we are going to work on only this one thing: Completing with all our “impossible” cognitions, completing with all our ideas of impossibility, completing with all our ideas of “lot of obstacles”, completing with all our ideas of “this is not good”, “this is not possible”, “that is not possible”, “this will not happen”, “that will not happen”. Complete with all that wrong cognitions. Complete with all that wrong beliefs. Complete with all that inadequate cognition.  This is the Ganesha Puja for all of us this time.  This is the message for Ganesha Brahmotsava.  This is the message for Ganesha Chaturthi this time, these ten days, doing completion.  Anything which you think is obstacle for your declaration is “Vigna”.  Completing with that is Vigneshwara Puja.
local date = args.date
 
date = type(date) == 'string' and date
 
local preposition = 'from'
 
for _, num in ipairs(nums) do
 
local mainCat = args['cat' .. tostring(num)]
 
or args['category' .. tostring(num)]
 
local allCat = args['all' .. tostring(num)]
 
mainCat = type(mainCat) == 'string' and mainCat
 
allCat = type(allCat) == 'string' and allCat
 
if mainCat and date and date ~= '' then
 
local catTitle = string.format('%s %s %s', mainCat, preposition, date)
 
self:addCat(0, catTitle)
 
catTitle = getTitleObject('Category:' .. catTitle)
 
if not catTitle or not catTitle.exists then
 
self:addCat(0, 'Articles with invalid date parameter in template')
 
end
 
elseif mainCat and (not date or date == '') then
 
self:addCat(0, mainCat)
 
end
 
if allCat then
 
self:addCat(0, allCat)
 
end
 
end
 
end
 
  
function MessageBox:setTemplateCategories()
+
Unfortunately, you even give up on yourself. Even this idea does not excite you. You think, ‘No, no, I will try, but it will not work out.  I will try, it will not work out.  I will try, I will try, I will try, it will not work out.’  Means what?  You are already finished!  You can even complete with the strong layers and layers of negativity.  The layers and layers of negativity, you can complete even with that.  You can complete all the negative beliefs of your subordinates.  Please understand, for whoever you take responsibility, you can complete even for their negative beliefs.  So, keeping Ganesha as witness, with my Integrity, Authenticity, Responsibility and Enriching, I am completing for all your negative beliefs.  I take the responsibility for the whole Sangha and all the devotees and disciples.  I am completing with all the wrong cognitions – the cognition of “impossible”, the cognition of giving up, the cognition of “lot of obstacles are there”.  I am completing.  And you will all experience the power of my completion!
local args = self.args
 
local cfg = self.cfg
 
  
-- Add template categories.
+
For whomever you are taking responsibility in your life, you can complete for their incompletion. It is possible, because the space of Completion which you carry, the power of that will naturally impact them and create completion in them, make completion happen in them. Completing with that wrong pattern, understand, whatever you declare in your life, anything you feel as obstacle to make your declaration into reality, is wrong cognition, inadequate cognition. You can complete with it. Completing with that is Ganesha Puja.  
if cfg.templateCategory then
 
if cfg.templateCategoryRequireName then
 
if self.isTemplatePage then
 
self:addCat(10, cfg.templateCategory)
 
end
 
elseif not self.title.isSubpage then
 
self:addCat(10, cfg.templateCategory)
 
end
 
end
 
  
-- Add template error categories.
+
This time, this Ganesha Chaturthi, my message for all of you is, completing, completing with whatever you carry as impossible, whatever you carry as obstacle, complete with all of that. Each one of your declarations should become reality. Anything you think is stopping your declaration becoming reality, is wrong cognition, inadequate cognition.  Complete with all of that.  Complete with all of that.
if cfg.templateErrorCategory then
 
local templateErrorCategory = cfg.templateErrorCategory
 
local templateCat, templateSort
 
if not self.name and not self.title.isSubpage then
 
templateCat = templateErrorCategory
 
elseif self.isTemplatePage then
 
local paramsToCheck = cfg.templateErrorParamsToCheck or {}
 
local count = 0
 
for i, param in ipairs(paramsToCheck) do
 
if not args[param] then
 
count = count + 1
 
end
 
end
 
if count > 0 then
 
templateCat = templateErrorCategory
 
templateSort = tostring(count)
 
end
 
if self.categoryNums and #self.categoryNums > 0 then
 
templateCat = templateErrorCategory
 
templateSort = 'C'
 
end
 
end
 
self:addCat(10, templateCat, templateSort)
 
end
 
end
 
  
function MessageBox:setAllNamespaceCategories()
+
Today, with the inauguration of the Ganesha Brahmotsava, I give this message: Complete with all your inadequate cognitions. Complete with your self-doubting patterns whether you can complete with your inadequate cognitions or not. Even your self-doubting patterns “whether I can complete with my incompletions or not, whether I can complete with my inadequate cognitions or not” is one more inadequate cognition. Complete with that also. So, layer by layer by layer, all the cognitions which smells with impossible – “No, no, not for me”, “Later on”, “I have back pain”, “I am tired”, “Life is boring”, “No, no, these all after ten years”, “I need more resources”, “Too many obstacles”, “I tried my best”, “My logic is stuck there”, “This is much only I can do”, “This is what I am” – all these are layers and layers and layers of inadequate cognition, wrong cognition; complete, complete with all of them. That is why Ganesha is sitting in Muladhara. Ganesha is Lord of Muladhara. Once you complete, complete, complete, complete with all these inadequate cognitions only, he will come out. ‘Yes, I am here!’
-- Set categories for all namespaces.
 
if self.invalidTypeError then
 
local allSort = (self.title.namespace == 0 and 'Main:' or '') .. self.title.prefixedText
 
self:addCat('all', 'Wikipedia message box parameter needs fixing', allSort)
 
end
 
if self.isSubstituted then
 
self:addCat('all', 'Pages with incorrectly substituted templates')
 
end
 
end
 
  
function MessageBox:setCategories()
+
Wrong cognitions are not strong cognitions. You strongly believe wrong cognitions are strong cognitions and they are default cognitions and that is the way of life, which is not true.  
if self.title.namespace == 0 then
 
self:setMainspaceCategories()
 
elseif self.title.namespace == 10 then
 
self:setTemplateCategories()
 
end
 
self:setAllNamespaceCategories()
 
end
 
  
function MessageBox:renderCategories()
+
Understand, today inaugurating Ganesha Brahmotsava, I give this as a message to all of you. Next ten days, all of us will complete all the inadequate cognitions, wrong cognitions, the cognition of impossibility, “I can not”, “I don’t”, “I won’t”, the cognition of obstacles; we will complete with all that. We will complete with all that. And completion with all these inadequate and wrong cognitions is the real Ganesha Chaturthi Brahmotsava this time for all of us. That is Ganesha Puja for our whole Sangha. Let us start Ganesha Brahmotsava from today.  
if not self.hasCategories then
 
-- No categories added, no need to pass them to Category handler so,
 
-- if it was invoked, it would return the empty string.
 
-- So we shortcut and return the empty string.
 
return ""
 
end
 
-- Convert category tables to strings and pass them through
 
-- [[Module:Category handler]].
 
return require('Module:Category handler')._main{
 
main = table.concat(self.categories[0] or {}),
 
template = table.concat(self.categories[10] or {}),
 
all = table.concat(self.categories.all or {}),
 
nocat = self.args.nocat,
 
page = self.args.page
 
}
 
end
 
  
function MessageBox:export()
+
And with my Integrity, Authenticity, Responsibility and Enriching, keeping Maha Ganapathy as witness, I complete for all of your inadequate cognitions, all your “impossible” cognitions, all your cognitions of “it is not possible” or “impossible” or “obstacles”, I complete for all of you. I bless you all with Integrity, Authenticity, Responsibility and Enriching, let you all experience the power of Completion, completion with all the obstacles, and completion with all the “impossible” cognitions, and create possibility and fulfill your declarations.  
local root = mw.html.create()
 
  
-- Add the subst check error.
+
With this, I will move to the next segment of the morning satsangh – Nirahara Samyama.
if self.isSubstituted and self.name then
 
root:tag('b')
 
:addClass('error')
 
:wikitext(string.format(
 
'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.',
 
mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}')
 
))
 
end
 
  
-- Create the box table.
+
Lets move to Nirahara Samyama . Before that, I have an announcement.
local boxTable = root:tag('table')
 
boxTable:attr('id', self.id or nil)
 
for i, class in ipairs(self.classes or {}) do
 
boxTable:addClass(class or nil)
 
end
 
boxTable
 
:cssText(self.style or nil)
 
:attr('role', 'presentation')
 
  
if self.attrs then
+
Tomorrow, 18th batch, next batch of Nirahara Samyama Level-1 is starting. If you want to enroll – it is a free program – you can register by visiting www.nithyananda.org/events, or call +91 (80) 2727 9999.
boxTable:attr(self.attrs)
 
end
 
  
-- Add the left-hand image.
+
“Hindi Translation”
local row = boxTable:tag('tr')
 
if self.imageLeft then
 
local imageLeftCell = row:tag('td'):addClass('mbox-image')
 
if self.imageCellDiv then
 
-- If we are using a div, redefine imageLeftCell so that the image
 
-- is inside it. Divs use style="width: 52px;", which limits the
 
-- image width to 52px. If any images in a div are wider than that,
 
-- they may overlap with the text or cause other display problems.
 
imageLeftCell = imageLeftCell:tag('div'):css('width', '52px')
 
end
 
imageLeftCell:wikitext(self.imageLeft or nil)
 
elseif self.imageEmptyCell then
 
-- Some message boxes define an empty cell if no image is specified, and
 
-- some don't. The old template code in templates where empty cells are
 
-- specified gives the following hint: "No image. Cell with some width
 
-- or padding necessary for text cell to have 100% width."
 
row:tag('td')
 
:addClass('mbox-empty-cell')
 
:cssText(self.imageEmptyCellStyle or nil)
 
end
 
  
-- Add the text.
+
With this I will move to the Nirahara Samyama.  
local textCell = row:tag('td'):addClass('mbox-text')
 
if self.useCollapsibleTextFields then
 
-- The message box uses advanced text parameters that allow things to be
 
-- collapsible. At the moment, only ambox uses this.
 
textCell:cssText(self.textstyle or nil)
 
local textCellDiv = textCell:tag('div')
 
textCellDiv
 
:addClass('mbox-text-span')
 
:wikitext(self.issue or nil)
 
if (self.talk or self.fix) and not self.isSmall then
 
textCellDiv:tag('span')
 
:addClass('hide-when-compact')
 
:wikitext(self.talk and (' ' .. self.talk) or nil)
 
:wikitext(self.fix and (' ' .. self.fix) or nil)
 
end
 
textCellDiv:wikitext(self.date and (' ' .. self.date) or nil)
 
if self.info and not self.isSmall then
 
textCellDiv
 
:tag('span')
 
:addClass('hide-when-compact')
 
:wikitext(self.info and (' ' .. self.info) or nil)
 
end
 
if self.removalNotice then
 
textCellDiv:tag('small')
 
:addClass('hide-when-compact')
 
:tag('i')
 
:wikitext(string.format(" (%s)", self.removalNotice))
 
end
 
else
 
-- Default text formatting - anything goes.
 
textCell
 
:cssText(self.textstyle or nil)
 
:wikitext(self.text or nil)
 
end
 
  
-- Add the right-hand image.
+
I request all the participants to sit straight.  Close your eyes. Cognize you have become Bidadi Kalpavriksha, living, alive!  Inhale through both the nostrils and the mouth. Hold as long as you can and exhale through both nostrils. Do this Kriya continuously for the next twenty-one minutes as comfortably as possible.  
if self.imageRight then
 
local imageRightCell = row:tag('td'):addClass('mbox-imageright')
 
if self.imageCellDiv then
 
-- If we are using a div, redefine imageRightCell so that the image
 
-- is inside it.
 
imageRightCell = imageRightCell:tag('div'):css('width', '52px')
 
end
 
imageRightCell
 
:wikitext(self.imageRight or nil)
 
end
 
  
-- Add the below row.
+
With this, I bless you all!  Let you all experience intense Completion!  Let you all experience intense Kundalini awakening and produce energy directly from space!  Let you all live health, bliss and enlightenment!  Namah Shivaya!
if self.below then
 
boxTable:tag('tr')
 
:tag('td')
 
:attr('colspan', self.imageRight and '3' or '2')
 
:addClass('mbox-text')
 
:cssText(self.textstyle or nil)
 
:wikitext(self.below or nil)
 
end
 
  
-- Add error message for invalid type parameters.
+
Let you all achieve, experience, live, express, radiate, share and explore in eternal bliss, Nithyananda! 
if self.invalidTypeError then
 
root:tag('div')
 
:css('text-align', 'center')
 
:wikitext(string.format(
 
'This message box is using an invalid "type=%s" parameter and needs fixing.',
 
self.type or ''
 
))
 
end
 
  
-- Add categories.
+
[[Category: 2013]]
root:wikitext(self:renderCategories() or nil)
 
 
 
return tostring(root)
 
end
 
 
 
--------------------------------------------------------------------------------
 
-- Exports
 
--------------------------------------------------------------------------------
 
 
 
local p, mt = {}, {}
 
 
 
function p._exportClasses()
 
-- For testing.
 
return {
 
MessageBox = MessageBox
 
}
 
end
 
 
 
function p.main(boxType, args, cfgTables)
 
local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(CONFIG_MODULE))
 
box:setParameters()
 
box:setCategories()
 
return box:export()
 
end
 
 
 
function mt.__index(t, k)
 
return function (frame)
 
if not getArgs then
 
getArgs = require('Module:Arguments').getArgs
 
end
 
return t.main(k, getArgs(frame, {trim = false, removeBlanks = false}))
 
end
 
end
 
 
 
return setmetatable(p, mt)
 

Revision as of 15:51, 7 February 2019

Link to Video:

Description:

Ganesha Brahmotsavam Starts today with flag hoisting 10:30-11:00am and continuing for the next 10 days. Ganesha Puja is for the completion of all negativities and incompletions that form obstacles in our lives.Now and for the next 10 days complete with all the obstacles in your life. One more Sacred Secret of completion: you think you can only complete with things that you can find the root of. This is a wrong cognition. We can even complete with self-failing, self –rejecting patterns. Even if we can’t find the source we can complete. We can complete with desires from too many incompletions. One inadequate cognition that we all have is the strong belief that our bad space will always overpower our good space…the bad space is the default program. This idea that the Negative space is the default and the positive space is not strong enough is faulty cognition. Both can be completed .the true default program of our Inner Space is Unclutched. Unclutched is our default program. Completing with the belief that Wrong cognition is strong Cognition is Ganesha Puja. Create a space of Ganesha. Complete with all ideas of impossibility for the next 10 days. Do completion on all obstacles and layers of Negativity. Layer- by- Layer Complete.

Tags:

Paramahamsa Nithyananda, complete, cognition, self-rejecting, patterns, negativity, ganesha

Transcript:

Nithyanandeshwara Samaarambhaam Nithyanandeshwari Madhyamaam |
Asmath Aachaarya Paryanthaam Vandhey Guru Paramparaam ||

I welcome all of you with my love and blessings.

And, today, Independence Day of Malaysia! My blessings to all the people in Malaysia and our devotees in Malaysia! Blessings to all of you! Selamat Hari Merdeka! And let the whole Malaysia have peace, blessings, bliss and all the auspiciousness and growth! My blessings!

And, today, I have one more beautiful announcement.

As you all know, Dhyanapeetam is Nityotsava, always filled with festivities! Today, we are starting our Ganesha Brahmotsava. So, Vinayaka Chaturthi Brahmotsava is starting. 10:30 am to 11:00 am (Indian Standard Time), in that twenty-one minutes – I can say half-an-hour – in that twenty-one minutes, we will be doing the Dwajarohana – “Raising the Flag” and Ganesha’s Brahmotsava. Actually, from today, tenth day will be Ganesh Chaturthi, the day Vinayaka happened, Ganesha happened. All the Nithyananda TV viewers can join live on Nithyananda TV. And all the other TV viewers can also join Nithyananda TV. It is free. It is web TV. You can join to have the darshan of Ganesha and Ganesha’s Dwajarohana – flag hoisting of Ganesha Brahmotsava.

And tomorrow morning 8:00 am to 9:00 am (Indian Standard Time), during satsang time, we have Meenakshi’s marriage, Meenakshi’s wedding, Meenakshi’s wedding which will be conducted and enacted by our gurukul kids, first time!

So, today, Ugra Pandya – Subramanya – is gracing us with the Leela: “Meruvai Chendaldit Rangam Gun Aditha Padalam”.

Once, the Pandya Kingdom was caught with the famine and poverty. All the astrologers said it was because of an unfavorable planetary position.

So, Sundareshwara appeared in front of Ugra Pandya (Subramanya) and said, “Attack the Mount Meru with the weapon he gave, Sundareshwara gave, “Chendu” and get the gold from Mount Meru; that will take care of bringing the economy of Madurai kingdom back.

So Ugra Pandya does the same thing. He goes and hits Mount Meru. Mount Meru says, “Yes, I have stop performing shiv pooja for a quite a long time, that is why I had to get hit by your Chendu. So he offers gold to Ugra Pandya, and Ugra Pandya brings that gold and the Madurai kingdom’s economy was rejuvenated.

So, this is the way Lord Sundareshwara protected the Pandya Kingdom.

Today, you can see Subramanya – Ugra Pandya – gracing us in that position.

I will move to Satsang, Nithya Satsang.

Today, I have some of the beautiful things to share with you all as part of Nithya Satsang. Some of my recent discoveries.

“Hindi Transalation”

Actually, Todays Brahmotsava, Ganesha Brahmotsava is beginning and 10 days it will happen. But tomorrow, the Meenakshi Thirukalynam is part of the Inner Awakening program. So understand, Meenakshi Thirukalyanam does not happen in Ganesh Brahmotsava. These two are two different things.

“Hindi Translation”

Alright! Let’s move to today’s Nithya Satsang.

Please understand, listen, I am throwing one more sacred secret about Completion. I am throwing more light on the science of Completion.

Listen! If you are constantly struggling with your life, anything you touch never becomes successful, brings suffering, even with those un-understandable, even with those failures which you can’t grasp logically, you can complete!

Please listen, you always think you can complete only with the things of which you are able to find the root. For example, your agitation pattern, the part of you fighting with people. You all believe it started at some time, you go back to the root-pattern and complete with it; it is possible. But, I am telling you one more thing, there are many things which you logically don’t know why, how, when. For example, many of us carry, what many, almost all of us carry this pattern: ‘Whatever I want never happens. Whatever I touch always becomes a failure. May be, one percent if God fulfills, ninety-nine percent he fails me!’ How many of you have this kind of pattern, idea? Raise your hand. If others are not raising, they don’t even know or want to raise! Anyhow…! Even with these kind of patterns you can complete. You can declare, ‘These self-failing patterns, self-rejecting patterns, I am completing with it.’

And always, all of us feel too much is in our plate. ‘Oh, God! You don’t know! So much is there! So much is there! So much is there!’ Too much is in our plate, we always think. Understand, even if you are not able to find when you started believing that, even if you are not able to find when that pattern started, even if you are not able to find how that pattern started, even if you are not able to find the source of that pattern, I tell you, you can straightaway complete with those concepts, ideas you carry in your brain, in your system. If you think life has lot of suffering, if you think life has lot of desires which cannot be fulfilled, if you think your consciousness is putting too much of load of desires on you due to your incompletions which you may not be able to complete with your whole life, please understand, even with all that you can complete! Even with all that you can complete!

And the good news you have is, your inner space by its nature cannot be influenced by any incompletion. Unfortunately, you strongly believe you cannot hold the good space you are having. If you cannot hold your good space and you will fall from it, it means that your good space cannot become permanent in your inner space. If your good space cannot become permanent, then logically, you should know, your bad space also cannot be permanent! But you don’t believe that. You always believe your good space will be slipped, that ‘I will just get imbalanced in a moment, It will tumble down.’ But your bad space you think is a default program. The good news is, your inner space has no default program. Its default program is “unclutched”. Being unclutched is the default program of your inner space. Your strong belief that your bad space, means, negative, impossible, attracting more and more incompletion, that negative space you think is the default program and permanent. That is wrong. You can complete with that belief. You can complete with that belief. Even that belief is an inadequate cognition. Even that belief is an inadequacy of your being. So, understand, you can complete even with that belief. When you complete with that belief, the inadequate cognition of your life, suddenly you will see you are in your default cognition. Your default cognition is “unclutched”. “Unclutched” is your default cognition.

I think our whole Sangha is stuck collectively in this mode only now. When I introduced all the four spiritual tattvas, four principles and the power of Completion, experience of Completion, everyone was very excited. ‘Yes, let me try! Let me try!’ And they all jumped! And they saw some beautiful results! But you have a strong belief that life cannot be a beautiful “Vasantha” (Spring), or life cannot be beautiful Completion forever. ‘Yes, yes, I experienced Completion and the space of Possibility and all that. But that cannot be default. I have done only this much sadhana na! So, I will fall back!’ So, because of the faith that our default cognition is negative, this positive space we created is we created by tapas, you fall back. You fall back.

It is like that day we had Krishna’s play, celebrating Krishna’s pastimes, how we had a play. You tie a mud pot in a rope and take it up and down. See, when I raised it (the mud pot), naturally it has to come down to go again up. See, whenever you asked how can I hold on to the positive cognition? That is where, already you created the problem. Because, you believe now holding on to positive cognition is difficult. Now no technique will help you. No sadhana can help you. Nothing can help you. No technique can help you. No sadhana can help you. Understand, today whole Sangha should decide they complete this inadequate and wrong cognition. Negativity is your default cognition, is the wrong cognition, inadequate cognition with which you have to complete. You should know the truth that Unclutching is your default cognition. Unclutching is your default cognition.

“Hindi Translation”

Understand, completing with the wrong pattern, inadequate cognition that “anything you do will have lot of obstacles, impossible”, is Ganesha Puja. Understand, complete with that wrong cognition which you think as a strong cognition which is not! You always think wrong cognitions are all strong cognitions, which is not true. Wrong cognitions are not strong cognitions as you visualize. Inadequate cognitions, inadequate cognitions are not strong cognitions. Complete with it. Wrong cognition is never a strong cognition. Understand, we have a strong belief: ‘Anything I am going to take it up is going to be very difficult. Anything I am going to take it up is going to be very difficult and impossible. When you have that strong cognition of “it is going to be difficult and impossible”, naturally you already felt the tiredness in your muscle-memory, you already created tiredness in your bio-memory; please understand, already tiredness and boredom have become your default cognition. That’s the most difficult problem! That is the most difficult problem! We have to complete with that.

Completing with the pattern of “impossible”, “most difficult”, is Ganesha Puja. That is what is worship of Lord Vigneshwara. Vigneshwara, Ganapathi, Ganesha stands for “Possible”, “No Obstruction”. Lord of Obstructions! Means, when he stands, all obstructions disappear. He stands for the “Possible”, removes obstacles. I tell you, please understand, create the space of Ganesha in all of you and remove. Complete with the pattern that “impossible”, “difficult”, “lot of obstacles are there”, for the next ten days. This is the Ganesha Brahmotsava for the Sangha. For the next ten days, we are going to work on only this one thing: Completing with all our “impossible” cognitions, completing with all our ideas of impossibility, completing with all our ideas of “lot of obstacles”, completing with all our ideas of “this is not good”, “this is not possible”, “that is not possible”, “this will not happen”, “that will not happen”. Complete with all that wrong cognitions. Complete with all that wrong beliefs. Complete with all that inadequate cognition. This is the Ganesha Puja for all of us this time. This is the message for Ganesha Brahmotsava. This is the message for Ganesha Chaturthi this time, these ten days, doing completion. Anything which you think is obstacle for your declaration is “Vigna”. Completing with that is Vigneshwara Puja.

Unfortunately, you even give up on yourself. Even this idea does not excite you. You think, ‘No, no, I will try, but it will not work out. I will try, it will not work out. I will try, I will try, I will try, it will not work out.’ Means what? You are already finished! You can even complete with the strong layers and layers of negativity. The layers and layers of negativity, you can complete even with that. You can complete all the negative beliefs of your subordinates. Please understand, for whoever you take responsibility, you can complete even for their negative beliefs. So, keeping Ganesha as witness, with my Integrity, Authenticity, Responsibility and Enriching, I am completing for all your negative beliefs. I take the responsibility for the whole Sangha and all the devotees and disciples. I am completing with all the wrong cognitions – the cognition of “impossible”, the cognition of giving up, the cognition of “lot of obstacles are there”. I am completing. And you will all experience the power of my completion!

For whomever you are taking responsibility in your life, you can complete for their incompletion. It is possible, because the space of Completion which you carry, the power of that will naturally impact them and create completion in them, make completion happen in them. Completing with that wrong pattern, understand, whatever you declare in your life, anything you feel as obstacle to make your declaration into reality, is wrong cognition, inadequate cognition. You can complete with it. Completing with that is Ganesha Puja.

This time, this Ganesha Chaturthi, my message for all of you is, completing, completing with whatever you carry as impossible, whatever you carry as obstacle, complete with all of that. Each one of your declarations should become reality. Anything you think is stopping your declaration becoming reality, is wrong cognition, inadequate cognition. Complete with all of that. Complete with all of that.

Today, with the inauguration of the Ganesha Brahmotsava, I give this message: Complete with all your inadequate cognitions. Complete with your self-doubting patterns whether you can complete with your inadequate cognitions or not. Even your self-doubting patterns “whether I can complete with my incompletions or not, whether I can complete with my inadequate cognitions or not” is one more inadequate cognition. Complete with that also. So, layer by layer by layer, all the cognitions which smells with impossible – “No, no, not for me”, “Later on”, “I have back pain”, “I am tired”, “Life is boring”, “No, no, these all after ten years”, “I need more resources”, “Too many obstacles”, “I tried my best”, “My logic is stuck there”, “This is much only I can do”, “This is what I am” – all these are layers and layers and layers of inadequate cognition, wrong cognition; complete, complete with all of them. That is why Ganesha is sitting in Muladhara. Ganesha is Lord of Muladhara. Once you complete, complete, complete, complete with all these inadequate cognitions only, he will come out. ‘Yes, I am here!’

Wrong cognitions are not strong cognitions. You strongly believe wrong cognitions are strong cognitions and they are default cognitions and that is the way of life, which is not true.

Understand, today inaugurating Ganesha Brahmotsava, I give this as a message to all of you. Next ten days, all of us will complete all the inadequate cognitions, wrong cognitions, the cognition of impossibility, “I can not”, “I don’t”, “I won’t”, the cognition of obstacles; we will complete with all that. We will complete with all that. And completion with all these inadequate and wrong cognitions is the real Ganesha Chaturthi Brahmotsava this time for all of us. That is Ganesha Puja for our whole Sangha. Let us start Ganesha Brahmotsava from today.

And with my Integrity, Authenticity, Responsibility and Enriching, keeping Maha Ganapathy as witness, I complete for all of your inadequate cognitions, all your “impossible” cognitions, all your cognitions of “it is not possible” or “impossible” or “obstacles”, I complete for all of you. I bless you all with Integrity, Authenticity, Responsibility and Enriching, let you all experience the power of Completion, completion with all the obstacles, and completion with all the “impossible” cognitions, and create possibility and fulfill your declarations.

With this, I will move to the next segment of the morning satsangh – Nirahara Samyama.

Lets move to Nirahara Samyama . Before that, I have an announcement.

Tomorrow, 18th batch, next batch of Nirahara Samyama Level-1 is starting. If you want to enroll – it is a free program – you can register by visiting www.nithyananda.org/events, or call +91 (80) 2727 9999.

“Hindi Translation”

With this I will move to the Nirahara Samyama.

I request all the participants to sit straight. Close your eyes. Cognize you have become Bidadi Kalpavriksha, living, alive! Inhale through both the nostrils and the mouth. Hold as long as you can and exhale through both nostrils. Do this Kriya continuously for the next twenty-one minutes as comfortably as possible.

With this, I bless you all! Let you all experience intense Completion! Let you all experience intense Kundalini awakening and produce energy directly from space! Let you all live health, bliss and enlightenment! Namah Shivaya!

Let you all achieve, experience, live, express, radiate, share and explore in eternal bliss, Nithyananda!