Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Learn More

resolving digital object identifiers

  • 1 odpowiedź
  • 1 osoba ma ten problem
  • 1 wyświetlenie
  • Ostatnia odpowiedź od user1379501

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

Zmodyfikowany przez user1379501 w dniu

Wszystkie odpowiedzi (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.