Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Uniquely identifying each & every html template

by BrowserUk (Patriarch)
on Jan 21, 2013 at 13:38 UTC ( [id://1014446]=note: print w/replies, xml ) Need Help??


in reply to Uniquely identifying each & every html template

My question is HOW am i suppose to identify each and every html webpage i have, without the need of editing and embedding a string containing a number for them.

The full pathname of each file is already a unique identifier, why do you need a number also?

Converting the unique name to a unique number can be done in any number of ways:

  • Put a list of all the paths into a file and then number them;
  • On *nix, the node id should be unique;
  • md5 the path;
  • crc64 the path;
  • A custom hashing function:
    sub id{ my $n = 0; $n = ( $n << 1 ^ $_ ) for unpack 'Q(X7Q)*', $_[0]; +$n };; print id( $_ ), ' : ', $_ for qw[ /home/nikos/public_html/folder/subfolder/index2.html /home/nikos/public_html/folder/subfoldre/index2.html /homa/nikos/public_html/folder/subfolder/index2.html /home/nikos/public_html/folder/subfoldre/index.html /home/nikos/public_html/folder/subfolder/index.html ];; 14395874431259872676 : /home/nikos/public_html/folder/subfolder/inde +x2.html 18362554206005274164 : /home/nikos/public_html/folder/subfoldre/inde +x2.html 14252040718160727460 : /homa/nikos/public_html/folder/subfolder/inde +x2.html 534634562378736008 : /home/nikos/public_html/folder/subfoldre/index. +html 2010048469067125824 : /home/nikos/public_html/folder/subfolder/index +.html

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Replies are listed 'Best First'.
Re^2: Uniquely identifying each & every html template
by Nik (Initiate) on Jan 21, 2013 at 15:24 UTC
    Why there is a need to Convert the unique filename to a unique number? How is this gonna help?
    The hash is a mathematical algorithm of producing a string based on a contents file BUT in my case i stated that:

    the .html file can be:

    1. renamed
    2. moved
    3. contents altered (hash is based on files contents, so that will fail)

    We need some other attribute to identify a file because relying on the above attributes will only produce DOUBLE counters for the modifies file.
      Why there is a need to Convert the unique filename to a unique number? How is this gonna help?

      Why are you asking me the same question as I asked you?

      The hash is a mathematical algorithm of producing a string based on a contents file

      I showed the hash operating on the file path, not its content.

      the .html file can be: 1. renamed 2. moved 3. contents altered

      Thus, you want to be able to consider two files with different names, different locations and different contents as "the same file".

      Without you arranging to place some piece of information within those files that can be searched for, to uniquely identify them; those criteria mean that any two files could be considered the same, which is a nonsense; which is why I ignored the possibility that you actually meant that; and assumed your description was lacking precision.

      However, inserting a piece of information -- say a custom html-like tag or html comment -- into each html file -- regardless of whether the are 100's 1000's or 100s of 1000s would be the works of a few minutes. At least it would be for Perl.


      With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.
        those criteria mean that any two files could be considered the same, which is a nonsense; which is why I ignored the possibility that you actually meant that; and assumed your description was lacking precision.
        No, it is not a nonsense. Imagine me in real life:

        1. i'am altering my real name
        2. i'am changing the location of where i live
        3. i face lift myself.

        Am i not still the same person i used to be?
        However, inserting a piece of information -- say a custom html-like tag or html comment -- into each html file -- regardless of whether the are 100's 1000's or 100s of 1000s would be the works of a few minutes. At least it would be for Perl.
        And what if the .html page gets rewritten by DreamWeaver or Joomla and the certain piece of information is overwwitten, thus gets lost?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1014446]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-16 04:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found