This commit is contained in:
dougt%netscape.com 2001-03-12 22:57:34 +00:00
Родитель c6c8eaa18f
Коммит 02921f234e
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -70,6 +70,14 @@ nsIndexedToHTML::OnStartRequest(nsIRequest* request, nsISupports *aContext)
buffer.AppendWithConversion("<hr><table border=0>\n");
// buffer.AppendWithConversion("<tr><th>Name</th><th>Size</th><th>Last modified</th><th>Description</th></tr>\n"); //FIX i18n.
const char * path = mCurrentPath.get();
if (path && *path && path[1] != '\0')
{
buffer.AppendWithConversion("<tr>\n <td><a HREF=\"");
buffer.AppendWithConversion(mCurrentPath);
buffer.AppendWithConversion("/../\"> ..</a></td>\n");
}
// Push buffer to the listener now, so the initial HTML will not
// be parsed in OnDataAvailable().