Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

resolving digital object identifiers

more options

Hi I'm a student doing a bit of research and I found that academia has become fond of these things called DOIs they're a little like DNs in that they're registered with a registry which points you to the last known URI for the object so as the web changes the URI can change but the DOI still works. the doi system is specified in ISO 26324: DOI System (2012) For more info see http://www.doi.org/hb.html

could we put a bit of code in the address bar that recognises the doi format.

maybe something like this

   #sudo python
   doi(addr):
       a, b = split(addr, ',');
       b, c = split(b, '/');
       if int(a) == 10 & int(b) > 1000:
           addr = 'https://doi.org/' & addr;
   return(addr);
   #end sudo code
Hi I'm a student doing a bit of research and I found that academia has become fond of these things called DOIs they're a little like DNs in that they're registered with a registry which points you to the last known URI for the object so as the web changes the URI can change but the DOI still works. the doi system is specified in ISO 26324: DOI System (2012) For more info see http://www.doi.org/hb.html could we put a bit of code in the address bar that recognises the doi format. maybe something like this #sudo python doi(addr): a, b = split(addr, ','); b, c = split(b, '/'); if int(a) == 10 & int(b) > 1000: addr = 'https://doi.org/' & addr; return(addr); #end sudo code

Modified by user1379501

All Replies (1)

more options

Hi,

The people who answer questions here, for the most part, are other Firefox users volunteering their time (like me), not Mozilla employees or Firefox developers.

If you want to leave feedback for Firefox developers, you can go to the Firefox Help menu and select Submit Feedback... or use this link. Your feedback gets collected at http://input.mozilla.org/, where a team of people read it and gather data about the most common issues.