Fossil

Diff
Login

Differences From Artifact [af5ac929fd]:

To Artifact [33089e2968]:


203
204
205
206
207
208
209


210

211
212
213
214
215
216
217
203
204
205
206
207
208
209
210
211

212
213
214
215
216
217
218
219







+
+
-
+







        continue;
      }
      if( x.isRepolistSkin==2 && !allRepo ){
        /* Repositories with repolist-skin==2 are omitted from directory
        ** scan lists, but included in "fossil all ui" lists */
        continue;
      }
      /* Assert that the following cast will not narrow in fact. */
      assert((rNow - x.rMTime)<=(((unsigned)~0)>>1)/86400.0);
      iAge = (rNow - x.rMTime)*86400;
      iAge = (int)((rNow - x.rMTime)*86400);
      if( iAge<0 ) x.rMTime = rNow;
      zAge = human_readable_age(rNow - x.rMTime);
      blob_append_sql(&html, "<tr><td valign='top'>");
      if( sqlite3_strglob("*.fossil", zName)!=0 ){
        /* The "fossil server DIRECTORY" and "fossil ui DIRECTORY" commands
        ** do not work for repositories whose names do not end in ".fossil".
        ** So do not hyperlink those cases. */