MorphOS Does it have a signature on the webb?
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    osco
    Posts: 680 from 2009/10/21
    From: Boston, USA
    Does the webb no that its a Morph system visiting its site?
    Mac Mini 1.5GHz, 1G, 250G Drive, Apple Cinema Display, MorphOS 3.1 registered, MacOS 10 PowerBook (5,8) 1.67Hz, 2G, 80G Drive,........Waiting
    PowerBook (5,8) 1.67Hz, 2G, 40G MorphOS 3.1 unregisterd
  • »02.05.10 - 01:25
    Profile
  • Cocoon
    Cocoon
    jalla
    Posts: 57 from 2004/10/4
    From: Norway
    Not really. The web browser sends an ID when accessing a page. Most Amiga based browsers has built in spoofing ability to bypass problems if a site only accepts certain browsers. But usually the browser tell what system it's using.
    ------------------------------------------------------
    Pegasos II/G4/512MB/Radeon9200
    ------------------------------------------------------
  • »02.05.10 - 04:04
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    osco
    Posts: 680 from 2009/10/21
    From: Boston, USA
    But usually the browser tell what system it's using.
    Would web inspector show that communication?
    Mac Mini 1.5GHz, 1G, 250G Drive, Apple Cinema Display, MorphOS 3.1 registered, MacOS 10 PowerBook (5,8) 1.67Hz, 2G, 80G Drive,........Waiting
    PowerBook (5,8) 1.67Hz, 2G, 40G MorphOS 3.1 unregisterd
  • »02.05.10 - 04:51
    Profile
  • Cocoon
    Cocoon
    jalla
    Posts: 57 from 2004/10/4
    From: Norway
    A web inspector (program running on the site I assume) could make use of the user agent string. E.g for statistics of wich operating system and wich browsers are used to acces a certain pages based on the user agent string submitted.

    This string usually includes the browsers name, the version of it and the OS it's running on.
    But this can easyly be changed .(e.g in OWB Settings/Preference/Network). Also in IBrowse in Preferences/Settings/Network/URL-Prefs this can be adjusted. Not checked with AWeb yet.
    ------------------------------------------------------
    Pegasos II/G4/512MB/Radeon9200
    ------------------------------------------------------
  • »02.05.10 - 09:26
    Profile
  • Moderator
    hooligan
    Posts: 1948 from 2003/2/23
    From: Lahti, Finland
    Not really related, but I discovered BizInformation changes to russian when evaluating morph.zone. Now whats with that? :)
    www.mikseri.net/hooligan <- Free music
  • »02.05.10 - 09:46
    Profile Visit Website
  • Cocoon
    Cocoon
    jalla
    Posts: 57 from 2004/10/4
    From: Norway
    Just another site that checks if your future domain name is free. And if you search for a free address, this company saves it and buy the domain name cheap so they can sell it expensive to you later. Big business now adays. Be carefule about who you mention your planned domain name for before it's yours. Price could rice in the meantime.
    ------------------------------------------------------
    Pegasos II/G4/512MB/Radeon9200
    ------------------------------------------------------
  • »02.05.10 - 10:49
    Profile
  • Cocoon
    Cocoon
    jalla
    Posts: 57 from 2004/10/4
    From: Norway
    The language settings in your browser is also sent when accessinga page. So if a page is available in several languages you will get the one matching you language settings. Most PHP based systems uses this feature. Didn't notice this setting in OWB. But it exsists in Ibrowse and windows browsers. You could have several languages specified in your selected order.
    ------------------------------------------------------
    Pegasos II/G4/512MB/Radeon9200
    ------------------------------------------------------
  • »02.05.10 - 10:57
    Profile
  • Fab
  • MorphOS Developer
    Fab
    Posts: 1331 from 2003/6/16
    @jalia

    The language header is also used by OWB, by using system locale settings.

    @osco

    There are many way to show user agents (the easiest being to go to some site showing user agent), but if you want to see it in WebInspector, you have to go to resource section and click any file, and you'll see the user agent header in the HTTP request.
  • »02.05.10 - 13:01
    Profile Visit Website
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    osco
    Posts: 680 from 2009/10/21
    From: Boston, USA
    There are many way to show user agents (the easiest being to go to some site showing user agent), but if you want to see it in WebInspector,
    you have to go to resource section and click any file, and you'll see the user agent header in the HTTP request.
    _detectPlatformFlavor: function()
    84 {
    85 const userAgent = navigator.userAgent;
    86
    87 if (this.platform === "windows") {
    88 var match = userAgent.match(/Windows NT (\d+)\.(?:\d+)/);
    89 if (match && match[1] >= 6)
    90 return WebInspector.PlatformFlavor.WindowsVista;
    91 return null;
    92 } else if (this.platform === "mac") {
    93 var match = userAgent.match(/Mac OS X\s*(?:(\d+)_(\d+))?/);
    94 if (!match || match[1] != 10)
    95 return WebInspector.PlatformFlavor.MacSnowLeopard;
    96 switch (Number(match[2])) {
    97 case 4:
    98 return WebInspector.PlatformFlavor.MacTiger;
    99 case 5:
    100 return WebInspector.PlatformFlavor.MacLeopard;
    101 case 6:
    102 default:
    103 return WebInspector.PlatformFlavor.MacSnowLeopard;
    104 } :-?
    Mac Mini 1.5GHz, 1G, 250G Drive, Apple Cinema Display, MorphOS 3.1 registered, MacOS 10 PowerBook (5,8) 1.67Hz, 2G, 80G Drive,........Waiting
    PowerBook (5,8) 1.67Hz, 2G, 40G MorphOS 3.1 unregisterd
  • »08.05.10 - 05:44
    Profile