MathHubInfo / Legacy-planetary

Legacy: Planetary System is a math-enabled Web 3.0 information portal.
http://trac.mathweb.org/planetary/
79 stars 25 forks source link

Alphabetic article listing #374

Closed rspuzio closed 11 years ago

rspuzio commented 11 years ago

Suppose that I start on a page of alphabetic article listing, say

http://planetmath.org/articles/a?section=All&page=7

Now, suppose that I want to look at articles starting with the letter "B". When click the "B" link on the page, what I get instead is

http://planetmath.org/articles/articles/b

i.e., there is an extra "articles/" in the path, so it doesn't work.

holtzermann17 commented 11 years ago

Thanks for the report! Now fixed. I wonder what it was that broke relative paths? Formerly, the header area had paths like this (which worked at the time):

<ul class="action-links"> 
 <li><a href="./node/add/article">Add new Article</a></li> 
 <li><a href="./msc_browser">View sorted by MSC</a></li> 
 <li><a href="http://map.mathweb.org">navigate by MSC Map (experimental)</a></li>
 <li><a href="./revisions">View sorted by revision date</a></li> 
 <li><a href="./articlesicanedit">Only show articles I can edit</a></li> 
 <li><a href="./articles/a">A</a> <a href="./articles/b">B</a> <a href="./articles/c">C</a> <a href="./articles/d">D</a> <a href="./articles/e">E</a> <a href="./articles/f">F</a> <a href="./articles/g">G</a> <a href="./articles/h">H</a> <a href="./articles/i">I</a> <a href="./articles/j">J</a> <a href="./articles/k">K</a>  <a href="./articles/l">L</a>  <a href="./articles/m">M</a>  <a href="./articles/n">N</a> <a href="./articles/o">O</a> <a href="./articles/p">P</a>  <a href="./articles/q">Q</a> <a href="./articles/r">R</a> <a href="./articles/s">S</a> <a href="./articles/t">T</a>  <a href="./articles/u">U</a> <a href="./articles/v">V</a> <a href="./articles/w">W</a> <a href="./articles/x">X</a> <a href="./articles/y">Y</a>  <a href="./articles/z">Z</a> <a href="./articles/0">0-9</a>  <a href="./articles/a">other symbols</a> </li>
</ul> 

Now changed to:

<ul class="action-links"> 
 <li><a href="http://planetmath.org/node/add/article">Add new Article</a></li> 
 <li><a href="http://planetmath.org/msc_browser">View sorted by MSC</a></li> 
 <li><a href="http://map.mathweb.org">navigate by MSC Map (experimental)</a></li>
 <li><a href="http://planetmath.org/revisions">View sorted by revision date</a></li> 
 <li><a href="http://planetmath.org/articlesicanedit">Only show articles I can edit</a></li> 
 <li><a href="http://planetmath.org/articles/a">A</a> <a href="http://planetmath.org/articles/b">B</a> <a href="http://planetmath.org/articles/c">C</a> <a href="http://planetmath.org/articles/d">D</a> <a href="http://planetmath.org/articles/e">E</a> <a href="http://planetmath.org/articles/f">F</a> <a href="http://planetmath.org/articles/g">G</a> <a href="http://planetmath.org/articles/h">H</a> <a href="http://planetmath.org/articles/i">I</a> <a href="http://planetmath.org/articles/j">J</a> <a href="http://planetmath.org/articles/k">K</a>  <a href="http://planetmath.org/articles/l">L</a>  <a href="http://planetmath.org/articles/m">M</a>  <a href="http://planetmath.org/articles/n">N</a> <a href="http://planetmath.org/articles/o">O</a> <a href="http://planetmath.org/articles/p">P</a>  <a href="http://planetmath.org/articles/q">Q</a> <a href="http://planetmath.org/articles/r">R</a> <a href="http://planetmath.org/articles/s">S</a> <a href="http://planetmath.org/articles/t">T</a>  <a href="http://planetmath.org/articles/u">U</a> <a href="http://planetmath.org/articles/v">V</a> <a href="http://planetmath.org/articles/w">W</a> <a href="http://planetmath.org/articles/x">X</a> <a href="http://planetmath.org/articles/y">Y</a>  <a href="http://planetmath.org/articles/z">Z</a> <a href="http://planetmath.org/articles/0">0-9</a>  <a href="http://planetmath.org/articles/a">other symbols</a> </li>
</ul> 
rspuzio commented 11 years ago

By the way, how am I supposed to add a label, such as labeling this issue as a bug?

dginev commented 11 years ago

On the upper left of this ticket there is a "Labels" drop-down menu, but I am not sure you can assign them vial email.

holtzermann17 commented 11 years ago

Also, I think you can't do that unless you're added to the repository as an official "collaborator". (I can't do it on https://github.com/KWARC/jobad for example.)