Re: [fossil-users] BISECT LOG displays UTC date/time even though timeline is set to local date/time

2016-06-21 Thread Marko Käning
Hi Tony,

I think your finding is something like I’ve spotted also in the ticket overview 
pages [1].

This needs someone willing to submit a patch fixing these issues… Sorry, I 
hadn’t found the time to deal with this myself up to now.

Greets,
Marko



[1] http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg23088.html




On 21 Jun 2016, at 09:13 , Tony Papadimitriou  wrote:

> This is fossil version 1.35 [3aa86af6aa] 2016-06-14 11:10:39 UTC
>  
> It’d be less confusing if BISECT displayed the date/time the same way as the 
> current timeline setting.
>  
> Thanks.
>  
> ___
> fossil-users mailing list
> fossil-users@lists.fossil-scm.org
> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Fossil :: typos

2016-06-21 Thread K. Fossil user
Hi,
People read docs : this is one way to find typos... :-)just sayin' 
Best Regards

K.

  De : Richard Hipp 
 À : Fossil SCM user's discussion  
 Envoyé le : Mardi 21 juin 2016 20h04
 Objet : Re: [fossil-users] Fossil :: typos
   
On 6/21/16, Svyatoslav Mishyn  wrote:
> Hi, just found a few typos.

Fixed now.  Thanks.

How did you find these?  Are you reading through the code line by line?

-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


  ___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] Fossil :: typos

2016-06-21 Thread Svyatoslav Mishyn
Hi, just found a few typos.


-- 
https://www.juef.tk/
Index: src/allrepo.c
==
--- src/allrepo.c
+++ src/allrepo.c
@@ -138,11 +138,11 @@
 **
 ** In addition, the following maintenance operations are supported:
 **
 **add Add all the repositories named to the set of repositories
 **tracked by Fossil.  Normally Fossil is able to keep up with
-**this list by itself, but sometime it can benefit from this
+**this list by itself, but sometimes it can benefit from this
 **hint if you rename repositories.
 **
 **ignore  Arguments are repositories that should be ignored by
 **subsequent clean, extras, list, pull, push, rebuild, and
 **sync operations.  The -c|--ckout option causes the listed

Index: src/bundle.c
==
--- src/bundle.c
+++ src/bundle.c
@@ -26,11 +26,11 @@
 **
 ** The bblob.delta field can be an integer, a text string, or NULL.
 ** If an integer, then the corresponding blobid is the delta basis.
 ** If a text string, then that string is a SHA1 hash for the delta
 ** basis, which is presumably in the master repository.  If NULL, then
-** data contains contain without delta compression.
+** data contain without delta compression.
 */
 static const char zBundleInit[] =
 @ CREATE TABLE IF NOT EXISTS "%w".bconfig(
 @   bcname TEXT,
 @   bcvalue ANY
@@ -370,11 +370,11 @@
" WHERE fnid=(SELECT fnid FROM mlink WHERE fid=%d)"
"   AND fid<%d", rid, mnToBundle);
   }
 }
 
-/* Try to insert the insert the artifact as a delta
+/* Try to insert the artifact as a delta
 */
 if( deltaFrom ){
   Blob basis, delta;
   content_get(deltaFrom, );
   blob_delta_create(, , );

Index: src/clone.c
==
--- src/clone.c
+++ src/clone.c
@@ -224,11 +224,11 @@
 }
 
 /*
 ** If user chooses to use HTTP Authentication over unencrypted HTTP,
 ** remember decision.  Otherwise, if the URL is being changed and no
-** preference has been indicated, err on the safe side and revert the
+** preference has been indicated, error on the safe side and revert the
 ** decision. Set the global preference if the URL is not being changed.
 */
 void remember_or_get_http_auth(
   const char *zHttpAuth,  /* Credentials in the form "user:password" */
   int fRemember,  /* True to remember credentials for later reuse */

Index: src/fusefs.c
==
--- src/fusefs.c
+++ src/fusefs.c
@@ -51,11 +51,11 @@
   /* Parsed path */
   char *az[3];  /* 0=type, 1=id, 2=path */
 } fusefs;
 
 /*
-** Clear the fusefs.sz[] array.
+** Clear the fusefs.az[] array.
 */
 static void fusefs_clear_path(void){
   int i;
   for(i=0; i=size || data[i]!='>' || nb!=1 ) return 0;
   return i+1;
 }
 
 
-/* tag_length -- returns the length of the given tag, or 0 is it's not valid */
+/* tag_length -- returns the length of the given tag, or 0 if it's not valid */
 static size_t tag_length(char *data, size_t size, enum mkd_autolink *autolink){
   size_t i, j;
 
   /* a valid tag can't be shorter than 3 chars */
   if( size<3 ) return 0;
@@ -403,11 +403,11 @@
   }else if( (j = is_mail_autolink(data+i, size-i))!=0 ){
 *autolink = (i==8) ? MKDA_EXPLICIT_EMAIL : MKDA_IMPLICIT_EMAIL;
 return i+j;
   }
 
-  /* looking for sometinhg looking like a tag end */
+  /* looking for something like a tag end */
   while( i=size ) return 0;
   return i+1;
 }
 
@@ -520,11 +520,11 @@
   }
   return 0;
 }
 
 
-/* parse_emph1 -- parsing single emphase */
+/* parse_emph1 -- parsing single emphasis */
 /* closed by a symbol not preceded by whitespace and not followed by symbol */
 static size_t parse_emph1(
   struct Blob *ob,
   struct render *rndr,
   char *data,
@@ -565,11 +565,11 @@
   }
   return 0;
 }
 
 
-/* parse_emph2 -- parsing single emphase */
+/* parse_emph2 -- parsing single emphasis */
 static size_t parse_emph2(
   struct Blob *ob,
   struct render *rndr,
   char *data,
   size_t 

[fossil-users] BISECT LOG displays UTC date/time even though timeline is set to local date/time

2016-06-21 Thread Tony Papadimitriou
This is fossil version 1.35 [3aa86af6aa] 2016-06-14 11:10:39 UTC

It’d be less confusing if BISECT displayed the date/time the same way as the 
current timeline setting.

Thanks.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users