Fossil

Changes On Branch andygoth-inhibit-deleted-wiki-link
Login

Changes On Branch andygoth-inhibit-deleted-wiki-link

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch andygoth-inhibit-deleted-wiki-link Excluding Merge-Ins

This is equivalent to a diff from b824b3e7 to e6dae022

2015-05-18
14:09
Inhibit timeline links to wiki pages that have been deleted. ... (check-in: 425df28c user: drh tags: trunk)
2015-05-17
20:45
Rework [b824b3e7f7] to ensure the "[diff]" link or the actual inline diff is inside the paragraph block. ... (check-in: 80e7250a user: andygoth tags: trunk)
19:42
Inhibit timeline links to wiki pages that have been deleted. ... (Closed-Leaf check-in: e6dae022 user: andygoth tags: andygoth-inhibit-deleted-wiki-link)
17:43
Create parents of empty-dirs if they don't already exist. ... (check-in: 1ab80be4 user: andygoth tags: andygoth-empty-dirs-parents)
05:54
Consistently use periods and end-paragraph tags in append_file_change_line(). ... (check-in: b824b3e7 user: mistachkin tags: trunk)
02:45
Changelog URL correction. Credit: jungle Boogie. ... (check-in: 6cf8f364 user: andygoth tags: trunk)

Changes to src/wikiformat.c.

1149
1150
1151
1152
1153
1154
1155
1156


1157
1158
1159
1160
1161
1162
1163
  if( strncmp(zTarget, "wiki:", 5)==0
      && wiki_name_is_wellformed((const unsigned char*)zTarget) ){
    return zTarget+5;
  }
  if( strcmp(zTarget, "Sandbox")==0 ) return zTarget;
  if( wiki_name_is_wellformed((const unsigned char *)zTarget)
   && ((p->state & WIKI_NOBADLINKS)==0 ||
        db_exists("SELECT 1 FROM tag WHERE tagname GLOB 'wiki-%q'", zTarget))


  ){
    return zTarget;
  }
  return 0;
}

/*







|
>
>







1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
  if( strncmp(zTarget, "wiki:", 5)==0
      && wiki_name_is_wellformed((const unsigned char*)zTarget) ){
    return zTarget+5;
  }
  if( strcmp(zTarget, "Sandbox")==0 ) return zTarget;
  if( wiki_name_is_wellformed((const unsigned char *)zTarget)
   && ((p->state & WIKI_NOBADLINKS)==0 ||
        db_exists("SELECT 1 FROM tag WHERE tagname GLOB 'wiki-%q'"
                  " AND (SELECT value FROM tagxref WHERE tagid=tag.tagid"
                  " ORDER BY mtime DESC LIMIT 1) > 0", zTarget))
  ){
    return zTarget;
  }
  return 0;
}

/*

Changes to www/changes.wiki.

38
39
40
41
42
43
44

45
46
47
48
49
50
51
  *  Added fork warning to be issued if sync produced a fork
  *  Update the [/help?cmd=/info|info] page to report when a file becomes a
     symlink.  Additionally show the UUID for files whose types have changed
     without changing contents or symlink target.
  *  Have [/help?cmd=changes|fossil changes] and
     [/help?cmd=status|fossil status] report when executable or symlink status
     changes on otherwise unmodified files.


<h2>Changes for Version 1.32 (2015-03-14)</h2>
  *  When creating a new repository using [/help?cmd=init|fossil init], ensure
     that the new repository is fully compatible with historical versions of
     Fossil by having a valid manifest as RID 1.
  *  Anti-aliased rendering of arrowheads on timeline graphs.
  *  Added vi/less-style key bindings to the --tk diff GUI.







>







38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  *  Added fork warning to be issued if sync produced a fork
  *  Update the [/help?cmd=/info|info] page to report when a file becomes a
     symlink.  Additionally show the UUID for files whose types have changed
     without changing contents or symlink target.
  *  Have [/help?cmd=changes|fossil changes] and
     [/help?cmd=status|fossil status] report when executable or symlink status
     changes on otherwise unmodified files.
  *  Inhibit timeline links to wiki pages that have been deleted.

<h2>Changes for Version 1.32 (2015-03-14)</h2>
  *  When creating a new repository using [/help?cmd=init|fossil init], ensure
     that the new repository is fully compatible with historical versions of
     Fossil by having a valid manifest as RID 1.
  *  Anti-aliased rendering of arrowheads on timeline graphs.
  *  Added vi/less-style key bindings to the --tk diff GUI.