Changes On Branch ticket-2cfd96b2ba
Not logged in

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

Changes In Branch ticket-2cfd96b2ba Excluding Merge-Ins

This is equivalent to a diff from 32b8fc7dcd to 3546a84c1f

2013-03-31
18:56
Fix for [2cfd96b2ba]: Improve ignore-glob. This changes the UI regarding versionable settings with a string value to use a multi-line input field. Already looks quite good, but feedback on layout perfectioning appreciated! check-in: bc047d1e3d user: jan.nijtmans tags: trunk
2013-03-08
00:09
Revise the looks_like_utf16() function so that it can handle blobs with an odd number of bytes and still set all the applicable output flags. Add tests for the UTF-8/UTF-16 detection functions. check-in: e3ae41483d user: mistachkin tags: trunk
2013-03-07
22:26
Detect overlong and nul-bytes for files starting with utf-16 BOM but with odd number of bytes. Closed-Leaf check-in: 14019cb0e2 user: jan.nijtmans tags: bomRefactor
12:35
Somewhat better layout: Putting text-field title first, above the text-field. Closed-Leaf check-in: 3546a84c1f user: jan.nijtmans tags: ticket-2cfd96b2ba
11:00
merge trunk check-in: f96894a54a user: jan.nijtmans tags: ticket-2cfd96b2ba
10:19
merge-mark trunk check-in: 9baee7e90f user: jan.nijtmans tags: bomRefactor
09:56
Since the blob size is unsigned, looks_like_utf16() cannot easily process the content if the size is not even. check-in: 32b8fc7dcd user: mistachkin tags: trunk
01:27
Add support for detecting standalone carriage-return characters via the looks_like_utf*() functions. check-in: 6c7185d9ba user: mistachkin tags: trunk

Changes to src/setup.c.

1195
1196
1197
1198
1199
1200
1201
1202
1203


1204
1205
1206
1207
1208
1209
1210











1211
1212
1213
1214
1215
1216
1217
1195
1196
1197
1198
1199
1200
1201


1202
1203
1204
1205





1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223







-
-
+
+


-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+







      } else {
        @ <br />
      }
    }
  }
  @ </td><td style="width:50px;"></td><td valign="top">
  for(pSet=ctrlSettings; pSet->name!=0; pSet++){
    if( pSet->width!=0 ){
      entry_attribute(pSet->name, /*pSet->width*/ 40, pSet->name,
    if( pSet->width!=0 && !pSet->versionable){
      entry_attribute(pSet->name, /*pSet->width*/ 25, pSet->name,
                      pSet->var!=0 ? pSet->var : pSet->name,
                      (char*)pSet->def);
      if( pSet->versionable ){
        @  (v)<br />
      } else {
        @ <br />
      }
      @ <br />
    }
  }
  @ </td><td style="width:50px;"></td><td valign="top">
  for(pSet=ctrlSettings; pSet->name!=0; pSet++){
    if( pSet->width!=0 && pSet->versionable){
      @<b>%s(pSet->name)</b> (v)<br />
      textarea_attribute("", /*rows*/ 3, /*cols*/ 20, pSet->name,
                      pSet->var!=0 ? pSet->var : pSet->name,
                      (char*)pSet->def);
      @<br />
    }
  }
  @ </td></tr></table>
  @ <p><input type="submit"  name="submit" value="Apply Changes" /></p>
  @ </div></form>
  @ <p>Settings marked with (v) are 'versionable' and will be overridden
  @ by the contents of files named <tt>.fossil-settings/PROPERTY</tt>.</p>