Page Not Found Error Message Email Subject Tutorial
โœ‚๐Ÿƒ๐Ÿพโ€โ™€๏ธ๐Ÿƒ๐Ÿผโ€โ™‚๏ธ
๐Ÿ“–

Page Not Found Error Message Email Subject Tutorial

Page Not Found Error Message Email Subject Tutorial   ๐Ÿ”

Why, with todayโ€™s tutorial, are we conflating two quite disparate subjects โ€ฆ

  1. HTTP (ie. Hypertext Transfer Protocol) Error Code 404 โ€œPage Not Foundโ€ or โ€œServer Not Foundโ€ โ€ฆwith โ€ฆ
  2. Email Subject lines

โ€ฆ into the one tutorial topic? Well, as we talked about with body of email scenarios, with some email clients (with Window SessionStorage Client Versus Server CSS Tutorial) โ€ฆ

As far as links go, you may expect to need serverside means to construct these in online Email and SMS message interfacing, but email (client program) products like Gmail parse your ascii text and convert http: or https: protocol URLs in your Email body to hyperlinks, as does the Messages SMS application here on this MacBook Pro using macOS Mojave.

โ€ฆ it pans out with some email clients such as iOS Mail app, that email subject lines containing similar http: or https: protocol URLs also get converted into hyperlinks. For us this has become a more likely scenario ever since the email [date] subject line token work typified by Local Datetime Token Subject Integrations Tutorial. The nature of those hyperlinks created, though, seem to be a great concern for these more helpful email clients and if you put into subject lines URLs containing โ€œ?โ€ and โ€œ&โ€ delimited arguments, the email clients mildly โ€œmash upโ€ these URLs so that recent ones from our โ€œPlot Axes โ€“ Linear or Parabolic Formulaโ€ web application for (an example like) โ€ฆ



https://www.rjmprogramming.com.au/HTMLCSS/square_hr_tracing.htm?wording=Vertex%20Pointing%20Game&question=%20#blank=plot187|-200,-200,200,200|2,-123

โ€ฆ on email clients that do not do โ€œthe (monster) mashโ€, on an email client that โ€œdoes hyperlink but mash upโ€ the URL the email subject line takes you to is actually (an additional โ€œlayer of encodeURIComponentโ€˜ed contentโ€ you can see as you hover over the link, the display normalized as far as looks go, via HTML entity mapping) โ€ฆ



https://www.rjmprogramming.com.au/HTMLCSS/square_hr_tracing.htm?wording=Vertex%20Pointing%20Game&question=%20#blank=plot187|-200,-200,200,200|2,-123

โ€ฆ which, without the tailoring of RJM Programming domainโ€™s Error 404 trapping 404.shtml would not take you to its true destination (of look) โ€ฆ because of โ€œthe mashโ€.

Itโ€™s been a while since we set up this 404.shtml Apache web server means to serve โ€œNot Foundโ€ (Page) URLs with a more welcoming experience than the default web browser โ€œError 404 โ€ฆ Not Foundโ€ kind of error message, so we started our research into whether it was possible to redirect from a 404.shtml on an Apache web server at this useful Google search, thanks.

Now, it must be noted here, that the search engines may penalise you for making the 404.shtml redirection we are going to show you below. Honestly, we donโ€™t know, but we feel compelled to let you know that such a redirection is possible on an Apache web serverโ€™s 404.shtml with a document.body โ€œonloadโ€ changed event (HTML and Javascript code snippet) piece of logic as below โ€ฆ



<script type='text/javascript'>

function onPageUnload() {

}



function onPageLoad() {

if (document.URL.indexOf('square_hr_tracing.htm%') != -1) {

location.href=document.URL.replace('%3F','?').replace(/\%23/g, '#').replace(/\%26/g, '&');

exit;

}

}

</script>




</head>

<body style="background: #d4d4d4; margin: 0pt; " onload="onPageLoad();" onunload="onPageUnload();">

โ€ฆ that is helping make sense of the โ€œmashed upโ€ URL (from some email client subject lines) above, as well as the rest of this 404.shtml (placed into RJM Programming domainโ€™s Document Root) showing a more friendly webpage for all those misdirected URLs such as this one.



Previous relevant Window SessionStorage Client Versus Server CSS Tutorial is shown below.

Window SessionStorage Client Versus Server CSS Tutorial

Window SessionStorage Client Versus Server CSS Tutorial   ๐Ÿ”

Further to yesterdayโ€™s Window SessionStorage Client Versus Server Integration Tutorial we have a two pronged improvements set for you today with our current Capital City Find Matching Country Report web application project โ€ฆ

  • CSS styling changes โ€ฆ and โ€ฆ
  • additional functionality for Email and SMS links back to our current Capital City Find Matching Country Report web application project (to complete the cycle)

We use several modes of CSS application (the first and last of particular relevance to todayโ€™s โ€œhighlighting of workflowโ€ improvements) โ€ฆ

โ€ฆ the โ€œstaticโ€ measures often helping to highlight the web applicationโ€™s main workflow of user interaction and the โ€œdynamicโ€ measures helping to alert the user as to where to proceed with their โ€œworkflowโ€.

In terms of CSS styling work โ€ฆ

  1. for non-mobile platforms we allow for more columns to be applied to our Capitals select (dropdown) element (in order to reduce some user scrolling, as does our new additional A-Z letter basis sorting functionality) as per โ€ฆ the โ€œdynamicโ€ Javascript DOM โ€œclassโ€ modifications โ€ฆ


    if (!navigator.userAgent.match(/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile/i)) {

    document.getElementById('lefttd').className='lefttd';

    }


    โ€ฆ dovetailing with the โ€œstaticโ€ internal CSS coding โ€ฆ


    <style>

    .lefttd {

    column-count: 4;

    max-height: 35%;

    vertical-align: top;

    max-width: 70%;

    font-size: 8px;

    background-color: rgba(205,205,205,0.5);

    background-image: -webkit-gradient(

    linear,

    right bottom,

    left top,

    color-stop(0, rgba(205, 205, 205, 0.8)),

    color-stop(0.50, rgba(255, 255, 0, 0.2))

    );

    background-image: -o-linear-gradient(left top, rgba(205, 205, 205, 1) 0%, rgba(255, 255, 0, 0.2) 50%);

    background-image: -moz-linear-gradient(left top, rgba(205, 205, 205, 1) 0%, rgba(255, 255, 0, 0.2) 50%);

    background-image: -webkit-linear-gradient(left top, rgba(205, 205, 205, 1) 0%, rgba(255, 255, 0, 0.2) 50%);

    background-image: -ms-linear-gradient(left top, rgba(205, 205, 205, 1) 0%, rgba(255, 255, 0, 0.2) 50%);

    background-image: linear-gradient(to left top, rgba(205, 205, 205, 1) 0%, rgba(255, 255, 0, 0.2) 50%);


    }

    </style>


    โ€ฆ and please note that around here at RJM Programming we have a โ€œfar from hard and fast ruleโ€ (but a rule regardless) regarding HTML element ID and class attributes that they concern (and (usually) be compartmentalised into) Javascript (DOM) manipulations and CSS styling issues respectively โ€ฆ and add a linear-gradient background to the table cell when expecting the initial user interaction on non-mobile platforms
  2. a โ€œdynamicโ€ Javascript DOM โ€œclassโ€ modification โ€ฆ document.getElementById(โ€˜myrepsbโ€™).className=โ€™dglowโ€™; โ€ฆ is made to the โ€œReportโ€ฆโ€ button at the Capitals select (dropdown) onfocusout event so as to highlight (with โ€œglowโ€ inspired styling) where user interaction may flow to

As far as links go, you may expect to need serverside means to construct these in online Email and SMS message interfacing, but email (client program) products like Gmail parse your ascii text and convert http: or https: protocol URLs in your Email body to hyperlinks, as does the Messages SMS application here on this MacBook Pro using macOS Mojave. Cute, huh?! So to close the circle back from remote tharโ€™ parts back to our web application is a simple matter of, in broad brush terms โ€ฆ

  • adding two new buttons called โ€œEmail Columns and Links โ€ฆโ€ and โ€œSMS Columns and Links โ€ฆโ€ that โ€ฆ
  • set a global variable andlinkto = true; โ€ฆ setting in play, within the report writing code (that likes monospaced fonts) โ€ฆ
  • add a new links column to the right with URLs like โ€ฆ
    https://www.rjmprogramming.com.au/HTMLCSS/wls_vs_php.htm?andgo=y&countries=Belize&capitals=Belmopan
    โ€ฆ to tell your client programs to form the hyperlinks for us (if they are โ€œof the moodโ€, that is!)

To improve user experience we use โ€œdynamicโ€ Javascript DOM HTML โ€œstyleโ€ attribute change means to easier close the โ€œColour Wheelโ€ helper web application โ€œabove the foldโ€ by changing the CSS z-index (Javascript DOM [element].style.zIndex) of elements accordingly, when the user clicks other elements. You can see all this with the first โ€œthechangedโ€ link above, where all โ€œglowโ€ CSS styling will also feature prominently.


Previous relevant Window SessionStorage Client Versus Server Integration Tutorial is shown below.

Window SessionStorage Client Versus Server Integration Tutorial

Window SessionStorage Client Versus Server Integration Tutorial   ๐Ÿ”

We hope, when performing a โ€œsoftware integrationโ€ task, that the two or more components of that integration work with each otherโ€™s talents, rather than a big tussle like reinventing the wheel. This ideal makes the work โ€ฆ

  • sometimes difficult but rewarding because โ€ฆ
  • the differences between two independent software components can be quite large and daunting โ€ฆ and the programmer has to see that โ€ฆ
  • care is applied so as not to wreck previous functionality and integrations in making the current integration work

โ€ฆ and that is why weโ€™ve made corollaries to โ€œbuilding from scratchโ€ (when planning and design is a huge component) can be a lot simpler than a software integration โ€œrenovationโ€, in the past, here at this blog.

Our primary integration today is to (software) integrate the great Weather Underground and its great API service for autocomplete name searches for weather (and hurricane) information. Why bother? Well, can you not envisage a user using that Ajax functionality of yesterdayโ€™s Window SessionStorage Client Versus Server Ajax Tutorial as a trip planner, perhaps, or as a โ€œchecking up on relatives overseasโ€ tool, perhaps? And not all the capital cities are timezone places, and so for some of those we can use Weather integration to still show apt online information when click/touching a Countries Report row. Speaking of this โ€œrowโ€, we make an improvement whereby on a first click of a right hand (Country) row cell, that cell is not initially a contenteditable=โ€trueโ€ one (that may frustrate showing the keyboard on mobile, when most likely it was the row touch intended), but then becomes a contenteditable=โ€trueโ€ cell henceforth.

As a user experience improvement for โ€œtrip plannersโ€ perhaps, we allow the user to alphabetically sort the presented select (dropdown) element entries โ€ฆ



var firstopt='';

var wasopts='';

var restopts='';



function readyitforsort(iselid) {

var optsare=[];

var huhisel=document.getElementById(iselid).innerHTML;

var huhsopts=huhisel.split('</option>');

for (var ihuh=0; ihuh<huhsopts.length; ihuh++) {

if (huhsopts[ihuh].trim() != '') {

if (firstopt == '') {

firstopt=huhsopts[ihuh] + '</option>';

} else {

wasopts+=huhsopts[ihuh].replace('option ','option data-ih="' + (huhsopts[ihuh].split('>')[eval(-1 + huhsopts[ihuh].split('>').length)] + '" ')) + '</option>';

optsare.push(huhsopts[ihuh].replace('option ','option data-ih="' + (huhsopts[ihuh].split('>')[eval(-1 + huhsopts[ihuh].split('>').length)] + '" ')) + '</option>');

}

}

}

optsare.sort();

for (var jhuh=0; jhuh<optsare.length; jhuh++) {

restopts+=optsare[jhuh];

}

}

โ€ฆ controlled by a new dropdown in the left hand column header cell.

We also allow the user to move the iframe element with some positioning emoji buttons near the โ€œCloseโ€ button one (of yesterdayโ€™s work).

Into the future, too, weโ€™ll have more to say regarding the germination of an idea โ€œto allow a mobile onmouseover simulator (of sorts)โ€ be to allow the user to perform a swipe across an individual HTML element of interest on mobile platforms (ie. harness ontouchmove event) as per (so far) โ€ฆ kicked off by โ€œ<body onload=โ€ setTimeout(athn, 5000); โ€œ>โ€ โ€ฆ



var last24='';

var rectdc;



function nodivalert() {

document.getElementById('divalert').style.display='none';

document.getElementById('divalert').style.zIndex='-456';

document.getElementById('divalert').style.left=('-' + rectdc.left).replace('px','') + 'px';

document.getElementById('divalert').style.top=('-' + rectdc.top).replace('px','') + 'px';

}



function ourdivalert(inmsg) {

document.getElementById('divalert').style.position='absolute';

document.getElementById('divalert').style.left=('' + rectdc.left).replace('px','') + 'px';

document.getElementById('divalert').style.top='' + eval(-80 + eval(('' + rectdc.top).replace('px',''))) + 'px';

document.getElementById('divalert').style.backgroundColor='#e0e0e0';

document.getElementById('divalert').style.display='block';

document.getElementById('divalert').style.zIndex='456';

document.getElementById('divalert').style.opacity='0.8';

document.getElementById('divalert').style.padding='5px 5px 5px 5px';

document.getElementById('divalert').innerHTML=inmsg + '<br><br><input type=button value=Close onclick=nodivalert();></input>';

setTimeout(nodivalert,9000);

}



function athn() {

rectdc=document.getElementById('dc').getBoundingClientRect();

if (navigator.userAgent.match(/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile/i)) {

document.getElementById('dc').ontouchmove=function(event) { if (last24.substring(0,eval(-1 + last24.length)) == event.target.title.substring(0,eval(-1 + event.target.title.length))) { last24=last24; } else { last24=event.target.title; ourdivalert(event.target.title); } }

} else {

document.getElementById('dc').onmousemove=function(event) { if (last24.substring(0,eval(-1 + last24.length)) == event.target.title.substring(0,eval(-1 + event.target.title.length))) { last24=last24; } else { last24=event.target.title; ourdivalert(event.target.title); } }

}

}

โ€ฆ working with the new HTML โ€ฆ



<div id=divalert></div>

</body>

</html>

โ€ฆ to try to allow the โ€œexplainer of an elementโ€ advantages non-mobile platforms have for hovering over an HTML element with a title attribute filled in.

And so, yet again, see thechanged wls_vs_phpโšซhtmโ€˜s Capitalโœ‚City Find Matching Country Report live run linkโ€™s new Weather integration functionality. It caused thechanged colour_wheelโšซhtmlโ€˜s colour wheel (at this liveโœ‚run link) to be affected (by integrations โ€œupโ€).


Previous relevant Window SessionStorage Client Versus Server Ajax Tutorial is shown below.

Window SessionStorage Client Versus Server Ajax Tutorial

Window SessionStorage Client Versus Server Ajax Tutorial   ๐Ÿ”

We have a few โ€œclientside chestnutsโ€ to use with our current Capital City Find Matching Country Report web application project today, those being โ€ฆ

  • Ajax functionality, kicked off by an โ€œonclickโ€ event set of logic, allowing mobile platforms to also have a look in (the look in that they miss when the event logic is off the โ€œonmouseoverโ€ event)
  • iframe and its โ€ฆ
    1. srcdoc attribute (โ€œcontentโ€ alternative to src โ€œurlโ€ attribute) โ€ฆ along with, and crucially needing (because srcdoc ignores its own document.body onload goings on, that we need the โ€œIframe Client Pre-Emptiveโ€ methods below to circumvent) the โ€ฆ
    2. onload event opportunity of an iframe element (we group into โ€œIframe Client Pre-Emptiveโ€ methods, here)

โ€ฆ adding onto yesterdayโ€™s Window SessionStorage Client Versus Server Canvas Tutorial.

Itโ€™s not that involved with the Ajax work today, given that there are no cross-domain issues, though there are cross-protocol (SSL https: versus non-SSL http:) issues to be careful about. Those can be addressed because the web application is recalled to present its โ€œCountry Reportโ€ and that is the opportunity to check on protocol navigation requirements.

Along the way, we also make this happen for the user on โ€ฆ

  • click/touching a table row โ€ฆ it sets off new โ€œtrโ€ (table row) element logic calling our (inhouse) Timezone and Wikipedia Place Information helper (HTML) via Ajax (so not leaving the webpage) โ€ฆ and because of place name oddities we allow for โ€ฆ
  • โ€œtdโ€ (table cell) element user amendments by setting their contenteditable attributes to โ€œtrueโ€ (since fixed, but we found the Timezone Europe/Tirane pointing at Tirane in Albania used to be spelt โ€œTiranaโ€)

โ€ฆ that latter methodology normally a technique we apply to โ€œdivโ€ elements (so, there you are!)

Also used are โ€œoverlayโ€ techniques, two of the โ€œusual suspectsโ€ here coming into play, to present to the โ€œAjax content to srcdoc iframe arrangementsโ€ โ€ฆ

Yet again, see thechanged wls_vs_phpโšซhtmโ€˜s Capitalโœ‚City Find Matching Country Report live run linkโ€™s new โ€œAjaxโ€ functionality.


Previous relevant Window SessionStorage Client Versus Server Canvas Tutorial is shown below.

Window SessionStorage Client Versus Server Canvas Tutorial

Window SessionStorage Client Versus Server Canvas Tutorial   ๐Ÿ”

Yesterdayโ€™s Window SessionStorage Client Versus Server Share Tutorial dealt with ascii text clipboard copy assisted sharing options with our current Capital City Find Matching Country Report web application project. This suited both Email and SMS share options we coded for, but todayโ€™s extension of functionality from โ€œascii textโ€ data to โ€œgraphical dataโ€ only suits Email sharing. The other caveat with our work is that no serverside (for us, PHP) help is allowed, so no PHP mail here.

What comes into play with a โ€œgraphical dataโ€ clientside (only) sharing approach? It will not surprise many readers that, for us, it involves โ€ฆ

  • canvas element โ€ฆ converting HTML table outerHTML โ€œascii textโ€ data โ€ฆ via โ€ฆ
  • canvas drawing methods โ€œ[canvasContext].strokeRect()โ€ and โ€œ[canvasContext].strokeText()โ€ via โ€œ[cellElement].getBoundingClientRect()โ€ โ€ฆ to convert that canvas element content via โ€ฆ
  • [canvasElement].toDataURL() โ€ฆ to an โ€ฆ
  • img element nested in a div contenteditable=true element โ€ฆ so as to hook in with todayโ€™s very useful helper link, thanks โ€ฆ use โ€ฆ


  • function tabletoclipboard(canvas) { // thanks to https://stackoverflow.com/questions/27863617/is-it-possible-to-copy-a-canvas-image-to-the-clipboard

    var img = document.createElement('img');

    img.src = canvas.toDataURL();



    var div = document.createElement('div');

    div.contentEditable = true;

    div.appendChild(img);

    document.body.appendChild(div);



    // do copy

    SelectText(div);

    document.execCommand('Copy');

    document.body.removeChild(div);

    }



    function SelectText(element) { // thanks to https://stackoverflow.com/questions/27863617/is-it-possible-to-copy-a-canvas-image-to-the-clipboard

    var doc = document;

    if (doc.body.createTextRange) {

    var range = document.body.createTextRange();

    range.moveToElementText(element);

    range.select();

    } else if (window.getSelection) {

    var selection = window.getSelection();

    var range = document.createRange();

    range.selectNodeContents(element);

    selection.removeAllRanges();

    selection.addRange(range);

    }

    }

  • to leave the userโ€™s deviceโ€™s clipboard containing a useful table (with linework) โ€ฆ ready to โ€ฆ
  • paste into an email body section

โ€ฆ sharing off to an emailee collaborator.

Again, see thechanged wls_vs_phpโšซhtmโ€˜s Capitalโœ‚City Find Matching Country Report live run linkโ€™s new โ€œEmail Tableโ€ button functionality.


Previous relevant Window SessionStorage Client Versus Server Share Tutorial is shown below.

Window SessionStorage Client Versus Server Share Tutorial

Window SessionStorage Client Versus Server Share Tutorial   ๐Ÿ”

Yesterdayโ€™s Window SessionStorage Client Versus Server Tutorial has been amended today for two new sharing and collaboration options, those being โ€ฆ

  • email
  • SMS

โ€ฆ but you may well be familiar with the restrictions on email and SMS client (program) approaches to this, coming from HTML โ€œaโ€ link โ€œmailto:โ€ and โ€œsms:โ€ href property prefixes respectively. Weโ€™re going to need help with the 800 odd character (length) restrictions with the (resultant) web address (bar) URL, but what? How about working off the great advice of this wonderful link, thanks, to copy what weโ€™d have assembled into an ascii text Report into the characters contained by the userโ€™s deviceโ€™s clipboard?



function copytoclipboard(str) { // thanks to https://hackernoon.com/copying-text-to-clipboard-with-javascript-df4d4988697f

var el = document.createElement('textarea');

el.value = str;

el.setAttribute('readonly', '');

el.style.position = 'absolute';

el.style.left = '-9999px';

document.body.appendChild(el);

el.select();

document.execCommand('copy');

document.body.removeChild(el);

}

An issue that springs up here using such clipboard ascii text content, whenever you get the Font choice given to you, pick a monospaced Font like Courier New or โ€œFixed Widthโ€.

See thechanged wls_vs_phpโšซhtmโ€˜s Capitalโœ‚City Find Matching Country Report live run linkโ€™s new sharing functionality.


Previous relevant Window SessionStorage Client Versus Server Tutorial is shown below.

Window SessionStorage Client Versus Server Tutorial

Window SessionStorage Client Versus Server Tutorial   ๐Ÿ”

Sometimes itโ€™s the case at this blog that weโ€™d like to introduce a new topic, but do not do so, because we cannot show any real world (or real application) use of that concept. So it has been, up until now, with the concept of (web browser) window (object) sessionStorage property. But yesterdayโ€™s Window LocalStorage Client Versus Server Primer Tutorial represented an opportunity akin to when Haleyโ€™s Comet gets at its closest to the Earth โ€ฆ while you see a chance, take it โ€ฆ chance because of that nuance whereby we were not trying to store data for any other purpose than passing data onto โ€ฆ

  1. a known entity โ€ฆ ie. same web application โ€ฆ at โ€ฆ
  2. a known time โ€ฆ ie. immediately

โ€ฆ two conditions that make the code design โ€œmarginallyโ€ more ideal for the window object property concept of sessionStorage rather than localStorage, in that any โ€ฆ



localStorage.removeItem([knownLocalStorageName]);

โ€ฆ becomes superfluous as with sessionStorage data will disappear between web browser sessions, anyway.

We offer this new concept as a non-default option of a select (dropdown) element replacement to the h1 element hardcoding โ€œlocalStorageโ€ with thechanged wls_vs_phpโšซhtm Capitalโœ‚City Find Matching Country Report live run. The other nuance of difference with sessionStorage usage is that in the document.body onload event logic, we may as well (as part of other changes) pre-emptively look for, and if there, respond to, any found sessionStorage data points, even without the user having flagged it specifically โ€ฆ



var datamode='localStorage';



function checkforreport() {

var divcont='';

var dcaps, dctys, idis;

if (getcapitals == 'localStorage') {

if (window.localStorage) {

getcapitals=decodeURIComponent(localStorage.getItem('wls_vs_php_capitals')).replace(/\+/g,' ');

localStorage.removeItem('wls_vs_php_capitals');

} else {

getcapitals='';

}

} else if (getcapitals == 'sessionStorage') {

document.getElementById('smode').value=getcapitals;

datamode=getcapitals;

if (window.sessionStorage) {

getcapitals=decodeURIComponent(sessionStorage.getItem('wls_vs_php_capitals')).replace(/\+/g,' ');

} else {

getcapitals='';

}

}
else if (getcapitals == '' && window.sessionStorage) {

getcapitals=decodeURIComponent(('' + sessionStorage.getItem('wls_vs_php_capitals')).replace(/^null$/g,'')).replace(/\+/g,' ');

if (getcapitals != '') {

document.getElementById('smode').value='sessionStorage';

datamode='sessionStorage';

}

}


if (getcountries == 'localStorage') {

if (window.localStorage) {

getcountries=decodeURIComponent(localStorage.getItem('wls_vs_php_countries')).replace(/\+/g,' ');

if (getcapitals.replace('localStorage','') != '' && getcountries.replace('localStorage','') != '') { document.getElementById('myh1').innerHTML+=' <font size=1>... yes, it was needed</font>'; }

localStorage.removeItem('wls_vs_php_countries');

} else {

getcountries='';

}

} else if (getcountries == 'sessionStorage') {

if (window.sessionStorage) {

getcountries=decodeURIComponent(sessionStorage.getItem('wls_vs_php_countries')).replace(/\+/g,' ');

if (getcapitals.replace('sessionStorage','') != '' && getcountries.replace('sessionStorage','') != '') { document.getElementById('myh1').innerHTML+=' <font size=1>... yes, it was needed</font>'; }

} else {

getcountries='';

}

}
else if (getcountries == '' && document.getElementById('smode').value == 'sessionStorage' && window.sessionStorage) {

getcountries=decodeURIComponent(('' + sessionStorage.getItem('wls_vs_php_countries')).replace(/^null$/g,'')).replace(/\+/g,' ');

if (getcountries != '') {

document.getElementById('smode').value='sessionStorage';

datamode='sessionStorage';

}

}


if (getcapitals != '' && getcountries != '') {

divcont='<table border=5 style="width:95%;vertical-align:top;background-color:white;"><tr style=background-color:#f0f0f0;"><th>Capital</th><th>Country</th></tr></table>';

dcaps=getcapitals.split('|');

dctys=getcountries.split('|');

for (idis=0; idis<dcaps.length; idis++) {

divcont=divcont.replace('</table>', '<tr><td>' + dcaps[idis] + '</td><td>' + dctys[idis] + '</td></tr></table>');

}

document.getElementById('dreport').innerHTML=divcont;

}

document.getElementById('smode').value=datamode;

}

Which beggars the question โ€œWhat are the differences between sessionStorage and localStorage?โ€ A quick reading might surmise that โ€œthe latter has an expiration dateโ€. We leave you with an open ended Google search so that you may extend your readings on this.


Previous relevant Window LocalStorage Client Versus Server Primer Tutorial is shown below.

Window LocalStorage Client Versus Server Primer Tutorial

Window LocalStorage Client Versus Server Primer Tutorial   ๐Ÿ”

Even though we rave on a lot about serverside PHP and its $_POST method=POST (versus HTML/Javascript recipient via ? and & argument $_GET method=GET scenario) data length advantages as the recipient of an HTML form method=POST set of data that could be sizeable, weโ€™ve just realized that there is a client Javascript and window.localStorage methodology that may help alleviate the need to involve PHP (and any other serverside intervention) on occasions.

Hint: Yes, weโ€™ve raved on about this too?! Does the blog posting title give it away? Okay, yes, it should read โ€œlocalStorageโ€, but thought weโ€™d gone past such juvenile finickiness since the Whac-A-Mole controversy of 1st December 2019 (or even The Great Tea Trolley Disaster of โ€™67, we daresay).

It can even use a โ€œself-destructโ€ approach to the use of this โ€œlocalStorageโ€ on having used it because โ€ฆ

  • the web application knows who is using it (localStorage) โ€ฆ and on having accessed and read it โ€ฆ
  • the web application knows it (localStorage) is of no use to any other user (in this web applicationโ€™s case, at least)

โ€ฆ which is very pleasing for a Land Surveyor who likes to leave cow paddocks as theyโ€™ve seen them so to speak. Except itโ€™s like having a ten tonne truck worth of data access in amongst the cow pats when having access to โ€œlocalStorageโ€ (or PHP), rather than a little piddle of calf wee (wee Metcalfes know a thing or two about these things!) data access of ? and & HTML/Javascript URL arguments (or even if we were to use HTTP Cookies).

Itโ€™s not as if we all have access to serverside language usage, though we do, because we really like PHP and MAMP and Apache/PHP/MySql web servers (and have arranged our development environment accordingly), but what if you are starting out in web development, and still want to allow for sizeable chunks of data with your web applications? Huh? Huh?! See the possibilities? Try our proof of concept Capitalโœ‚City Find Matching Country Report live run, and highlight a whole swathe of (multiple mode) dropdown option Capital Cities holding down the shift key before pressing the yellow โ€œReportโ€ button. If the URL ends up as โ€ฆ

https://rjmprogramming.com.au/HTMLCSS/wls_vs_php.html?capitals=localStorage&countries=localStorage

โ€ฆ thatโ€™s because the web applicationโ€™s โ€ฆ



function analyze() {

var purl=document.URL.split('#')[0].split('?')[0] + '?capitals=' + encodeURIComponent(document.getElementById('capitals').value) + '&countries=' + encodeURIComponent(document.getElementById('countries').value);

if (purl.length > 800) {

if (phpexists) {

document.getElementById('myform').method='POST';

document.getElementById('myform').action='./wls_vs_php.php';

} else if (window.localStorage) {

localStorage.setItem('wls_vs_php_countries', encodeURIComponent(document.getElementById('countries').value));

localStorage.setItem('wls_vs_php_capitals', encodeURIComponent(document.getElementById('capitals').value));

document.getElementById('capitals').value='localStorage';

document.getElementById('countries').value='localStorage';

location.href=document.URL.split('#')[0].split('?')[0] + '?capitals=' + encodeURIComponent(document.getElementById('capitals').value) + '&countries=' + encodeURIComponent(document.getElementById('countries').value);


return false;

}

}

return true;

}

โ€ฆ HTML form onsubmit event logic โ€ฆ

  1. discovered no PHP web application existant (via Client Pre-emptive Iframe techniques) โ€ฆ and โ€ฆ
  2. discovered (in a sanity check feeling way) that to go down the proposed HTML form method=GET approach was risking a โ€ฆ


    HTTP 414 "Request URI too long"


    โ€ฆ web browser error โ€ฆ and that โ€ฆ
  3. localStorage was a known web browser piece of functionality
  4. โ€ฆ and so as per our localStorage logic we โ€ฆ

  5. back out of the default HTML form method=GET navigation setup of the web application in favour of โ€ฆ
    • storing that data into localStorage
    • substituting into the URL ? and & arguments the hardcoding โ€œlocalStorageโ€ (and in so doing, getting back under the HTTP 414 โ€œRequest URI too longโ€ limitation, piecing together (what amounts to) โ€ฆ
      location.href=document.URL.split(โ€˜#โ€™)[0].split(โ€˜?โ€™)[0] + โ€˜?capitals=localStorage&countries=localStorageโ€™;)
      โ€ฆ that on a recall to this same web application a โ€ฆ
    • document.body onload event piece of Javascript logic checks the localStorage for its incoming Capital City Country Report data, as per โ€ฆ


      var phpexists=false;

      var getcapitals=location.search.split('capitals=')[1] ? decodeURIComponent(location.search.split('capitals=')[1].split('&')[0]).replace(/\+/g,' ') : '';

      var getcountries=location.search.split('countries=')[1] ? decodeURIComponent(location.search.split('countries=')[1].split('&')[0]).replace(/\+/g,' ') : '';



      function checkforreport() {

      var divcont='';

      var dcaps, dctys, idis;

      if (getcapitals == 'localStorage') {

      if (window.localStorage) {

      getcapitals=decodeURIComponent(localStorage.getItem('wls_vs_php_capitals')).replace(/\+/g,' ');

      localStorage.removeItem('wls_vs_php_capitals');

      } else {

      getcapitals='';

      }

      }

      if (getcountries == 'localStorage') {

      if (window.localStorage) {

      getcountries=decodeURIComponent(localStorage.getItem('wls_vs_php_countries')).replace(/\+/g,' ');

      if (getcapitals.replace('localStorage','') != '' && getcountries.replace('localStorage','') != '') { document.getElementById('myh1').innerHTML+=' <font size=1>... yes, it was needed</font>'; }

      localStorage.removeItem('wls_vs_php_countries');

      } else {

      getcountries='';

      }

      }


      if (getcapitals != '' && getcountries != '') {

      divcont='<table border=5 style="width:95%;vertical-align:top;background-color:white;"><tr style=background-color:#f0f0f0;"><th>Capital</th><th>Country</th></tr></table>';

      dcaps=getcapitals.split('|');

      dctys=getcountries.split('|');

      for (idis=0; idis<dcaps.length; idis++) {

      divcont=divcont.replace('</table>', '<tr><td>' + dcaps[idis] + '</td><td>' + dctys[idis] + '</td></tr></table>');

      }

      document.getElementById('dreport').innerHTML=divcont;

      }

      }


      โ€ฆ the localStorage.removeItem() representing that โ€œself-destructโ€ nuance we were talking about before

We may well use this methodology in future projects, and hope it has been of some little interest to you as well?!

If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.

This entry was posted in eLearning, Event-Driven Programming, Operating System, Tutorials and tagged , , , , , , , , , , , , , , , , , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *