Difference between revisions of "User:Prunc"
m |
|||
| Line 109: | Line 109: | ||
<pre> | <pre> | ||
| − | var str = ""; | + | var str = location.href.substr( location.href.indexOf("/Billy_Meier/") + 13 ,location.href.length) + "\n"; |
$("table:not('#toc') tr").each(function(){ | $("table:not('#toc') tr").each(function(){ | ||
var that = $(this).find("td").eq(0).find("a").attr("href"); | var that = $(this).find("td").eq(0).find("a").attr("href"); | ||
if (that != undefined) { | if (that != undefined) { | ||
| − | str += | + | str += decodeURI(that.substr(13,that.length)) + "\n" ; |
} | } | ||
}); | }); | ||
| Line 119: | Line 119: | ||
</pre> | </pre> | ||
| − | + | Booklets | |
| − | + | All_Seven_Forms_of_Prayer_by_Nokodemion | |
| − | + | Consciously_Develop_and_Use_Love,_Knowledge,_Wisdom_and_Feeling_for_Others | |
| − | + | The_Human_Being_and_Destiny,_Yesterday_and_Today | |
| − | + | Desiderata_(Desirable_and_Vital_Items) | |
| − | + | The_Teaching_"Goblet_of_the_Truth"_and_Spiritual_Teaching_in_General | |
| − | + | Doing_Something_for_the_Neighbour | |
| − | + | Thoughts_about_Worries_of_Yesterday,_Today_and_Tomorrow | |
| − | + | Weighty_Words_About_Death | |
| − | + | Basic_Rules_of_Man | |
| − | + | Life_And_Death_Are_Inherent_To_Each_Other | |
| − | + | Meditation_about_death_is_important | |
| − | + | Meditation_and_Life_Itself_are_the_Best_Teachers | |
| − | + | Human_being_of_the_Earth | |
| − | + | Human_Beings_Without_Work_Or_Other_Valuable_Activity_Go_to_Seed | |
| − | + | Ideas_of_Partnership | |
| − | + | The_Philosophy_of_Life | |
| − | + | Wealth_of_the_Non-Gewalt_and_Profound_Spiritual_Teaching_Interpretations | |
| − | + | Sapere_Aude_(Dare_to_Exercise_Reason) | |
| − | + | Victors_and_Losers | |
| − | + | Silent_Devotion | |
| − | + | Ignorance,_Problems,_Frustration_and_Gewalt | |
| − | + | And_there_shall_be_peace_on_earth... | |
| − | + | Impatience_and_Uncontentment_Lead_to_Hate_and_Anger,_and_an_Enemy_is_a_Very_Good_Tool_for_Learning | |
| − | + | Differences_Between_Man_and_Woman | |
| − | + | Prophecies_and_Predictions | |
| − | + | Fortune-telling,_Star-reading,_Clairvoyance_and_Self-fulfilment | |
| − | + | Warning_to_all_the_governments_of_Europe! | |
| − | + | What_the_Human_Seeks | |
| − | + | What_the_Plejaren_Wish_for_Earth_Humans | |
| − | + | Anger_and_Rage | |
| − | + | True_Love_has_its_Basis_in_Reality,_Not_in_Belief | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Latest revision as of 07:51, 10 March 2014
Things about me
Things about me written in Articles by Prunc.
Fairy Dust
FIGU AU/CA
/*******************************************************************
* Used on au.figu.org and ca.figu.org to convert html to wikitext. *
*******************************************************************/
var repeat;
function testing(){
if (typeof jQuery != 'undefined'){
clearInterval(repeat);
afterLoad();
// console.log("jQuery loaded...");
}else{
};
};
if (typeof jQuery == 'undefined') {
var newscript = document.createElement('script');
newscript.type = 'text/javascript';
newscript.async = true;
newscript.src = '//code.jquery.com/jquery-2.1.0.min.js';
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(newscript);
repeat = setInterval(testing,250);
} else {
afterLoad();
// console.log("jQuery already present...");
}
function afterLoad(){
// jQuery("table tr").each(function(){
// jQuery(this).find("td").eq(1).prependTo(jQuery(this))
// })
var str = "\n\n\n{|\n\n|-\n| style=\"width:50%; background:LightSkyBlue; color:Black\" | '''English translation'''\n| style=\"width:50%; background:LightSkyBlue; color:Black\" | '''Original German text'''\n\n";
jQuery("table tr").each(function(){
str += "|-\n";
str += ( "| " + jQuery(this).find("td").eq(1).text().trim().replace(/\n+/gim,"").replace(/\s+/gim, ' ') + "\n" );
str += ( "| " + jQuery(this).find("td").eq(0).text().trim().replace(/\n+/gim,"").replace(/\s+/gim, ' ') + "\n" );
str += "\n";
});
str += "|-\n|}\n";
console.log(str);
}
TheyFly.com
//http://theyfly.com/spiritual/rules/rules.htm
var str = "\n\n\n{|\n\n|-\n| style=\"width:50%; background:LightSkyBlue; color:Black\" | '''English translation'''\n| style=\"width:50%; background:LightSkyBlue; color:Black\" | '''Original German text'''\n\n";
jQuery("table").each(function(){
for (var i=0;i<jQuery("table").find("tr").eq(1).find("p").length;i++) {
str += "|-\n";
str += ( "| " + jQuery(this).find("tr").eq(1).find("p").eq(i).text().trim().replace(/\n+/gim,"").replace(/\s+/gim, ' ') + "\n" );
str += ( "| " + jQuery(this).find("td").eq(3).find("p").eq(i).text().trim().replace(/\n+/gim,"").replace(/\s+/gim, ' ') + "\n" );
str += "\n";
}
});
//PDF
var repeat;
function testing(){
if (typeof jQuery != 'undefined'){
clearInterval(repeat);
afterLoad();
// console.log("jQuery loaded...");
}else{
};
};
if (typeof jQuery == 'undefined') {
var newscript = document.createElement('script');
newscript.type = 'text/javascript';
newscript.async = true;
newscript.src = 'http://code.jquery.com/jquery-2.1.0.min.js';
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(newscript);
repeat = setInterval(testing,250);
} else {
afterLoad();
// console.log("jQuery already present...");
}
function afterLoad(){
var str = "\n\n\n{|\n\n|-\n| style=\"width:50%; background:LightSkyBlue; color:Black\" | '''English translation'''\n| style=\"width:50%; background:LightSkyBlue; color:Black\" | '''Original German text'''\n\n";
var n = jQuery("#div2 p").length
for (var i=0;i<n;i++) {
str += "|-\n";
str += ( "| " + jQuery("#div1 p").eq(i).text().trim().replace(/\n+/gim,"").replace(/\s+/gim, ' ') + "\n" );
str += ( "| " + jQuery("#div2 p").eq(i).text().trim().replace(/\n+/gim,"").replace(/\s+/gim, ' ') + "\n" );
str += "\n";
};
str += "|-\n|}\n";
console.log(str);
}
Other stuff
var str = location.href.substr( location.href.indexOf("/Billy_Meier/") + 13 ,location.href.length) + "\n";
$("table:not('#toc') tr").each(function(){
var that = $(this).find("td").eq(0).find("a").attr("href");
if (that != undefined) {
str += decodeURI(that.substr(13,that.length)) + "\n" ;
}
});
console.log(str) ;
Booklets All_Seven_Forms_of_Prayer_by_Nokodemion Consciously_Develop_and_Use_Love,_Knowledge,_Wisdom_and_Feeling_for_Others The_Human_Being_and_Destiny,_Yesterday_and_Today Desiderata_(Desirable_and_Vital_Items) The_Teaching_"Goblet_of_the_Truth"_and_Spiritual_Teaching_in_General Doing_Something_for_the_Neighbour Thoughts_about_Worries_of_Yesterday,_Today_and_Tomorrow Weighty_Words_About_Death Basic_Rules_of_Man Life_And_Death_Are_Inherent_To_Each_Other Meditation_about_death_is_important Meditation_and_Life_Itself_are_the_Best_Teachers Human_being_of_the_Earth Human_Beings_Without_Work_Or_Other_Valuable_Activity_Go_to_Seed Ideas_of_Partnership The_Philosophy_of_Life Wealth_of_the_Non-Gewalt_and_Profound_Spiritual_Teaching_Interpretations Sapere_Aude_(Dare_to_Exercise_Reason) Victors_and_Losers Silent_Devotion Ignorance,_Problems,_Frustration_and_Gewalt And_there_shall_be_peace_on_earth... Impatience_and_Uncontentment_Lead_to_Hate_and_Anger,_and_an_Enemy_is_a_Very_Good_Tool_for_Learning Differences_Between_Man_and_Woman Prophecies_and_Predictions Fortune-telling,_Star-reading,_Clairvoyance_and_Self-fulfilment Warning_to_all_the_governments_of_Europe! What_the_Human_Seeks What_the_Plejaren_Wish_for_Earth_Humans Anger_and_Rage True_Love_has_its_Basis_in_Reality,_Not_in_Belief