I'm also having trouble the last 36 hours or so, but the API is working, if you put something like this in your web browser:
https://www.alphavantage.co/query?function=BATCH_STOCK_QUOTES&symbols=T&apikey=*yourAPIkeyhere* It seems that Alphavantage has bumped their freebie access rate limit to one every 12 seconds according to https://www.alphavantage.co/premium/ Finance::Quote's Alphavantage.pm has the following in lines 276-280: # Alpha Vantage recommends that API call frequency does not extend far # beyond ~1 call per second so that they can continue to deliver # optimal server-side performance: # https://www.alphavantage.co/support/#api-key sleep(1); I'll try bumping that up to 12 and see what I get. When I tried to put some print statements in the Perl scripts to follow along, I just got an error message from GC. Regards, Ethan ---------- Forwarded message ---------- From: <gnucash-user-requ...@gnucash.org> Date: Tue, Jul 31, 2018 at 8:20 PM Subject: gnucash-user Digest, Vol 184, Issue 81 To: gnucash-user@gnucash.org Send gnucash-user mailing list submissions to gnucash-user@gnucash.org To subscribe or unsubscribe via the World Wide Web, visit https://lists.gnucash.org/mailman/listinfo/gnucash-user or, via email, send a message with subject or body 'help' to gnucash-user-requ...@gnucash.org You can reach the person managing the list at gnucash-user-ow...@gnucash.org When replying, please edit your Subject line so it is more specific than "Re: Contents of gnucash-user digest..." Today's Topics: 1. Re: Change text color (Adrien Monteleone) 2. Re: Get Quote is Not Working? (Chen Thomas) 3. Re: Linux Mint 18.2 Sonya and Gnucash 3.2 (David Cousens) 4. Re: Change text color (John Ralls) 5. Re: Get Quote is Not Working? (Adrien Monteleone) 6. Re: Change text color (Adrien Monteleone) ---------------------------------------------------------------------- Message: 1 Date: Tue, 31 Jul 2018 19:53:09 -0500 From: Adrien Monteleone <adrien.montele...@lusfiber.net> To: gnucash-user <gnucash-user@gnucash.org> Subject: Re: [GNC] Change text color Message-ID: <6909b18e-f043-4166-ac35-a7ae8b5b1...@lusfiber.net> Content-Type: text/plain; charset=utf-8 Ah yes, I tested that too. I thought you meant the arrow pointer itself. Regards, Adrien > On Jul 31, 2018, at 5:48 PM, GT-I9070 H <gti90...@gmail.com> wrote: > > Excuse me, this works fine: > > #account_tree:selected { > color: white; > background-color: steelblue; > } > > Regards > GTI > > Em ter, 31 de jul de 2018 ?s 16:25, GT-I9070 H <gti90...@gmail.com> escreveu: > It would be interesting also to stylize the account sheet cursor. > > Regards > GTI > > Em ter, 31 de jul de 2018 ?s 16:02, Adrien Monteleone < adrien.montele...@lusfiber.net> escreveu: > Hmm... > > It was working using the GtkInspector, and with the css file Linux. But when I try similar selectors via css on MacOS (which I normally use) they don?t work at all. (just the header stuff that is) I?ll have to investigate more. > > Regards, > Adrien > > > On Jul 31, 2018, at 2:42 PM, GT-I9070 H <gti90...@gmail.com> wrote: > > > > Hi Adrien, > > > > This does not work: > > > > #account_tree column-header { > > color: lime; > > } > > > > Am I writing something wrong? > > > > Regards > > GTI > > > > Em ter, 31 de jul de 2018 ?s 14:38, Adrien Monteleone < adrien.montele...@lusfiber.net> escreveu: > > GTI, > > > > You could test the font-family rule by changing it to something obviously different, like serif, monospaced, or say ?Comic Sans?. (I suppose it?s useful at least for this) I just revamped my css from the old gtkrc method from 2.6.x and it picked up the font rules just fine. > > > > I found the header selectors. > > > > So here is the hierarchy: > > > > GncTreeViewAccount (id=?account_tree?) > column-header > GtkButton (class=?button?) > GtkBox > GtkAlignment > GtkLabel (class=?label?) > > > > GncTreeViewAccount affect the entire tab contents. > > column-header affects the entire header. > > GtkButton affects each section of the header. > > GtkBox affects only the portion of the header cell that contains text and white space. (Does not include separators or margins) > > GtkAlignment affects only the portion of GtkBox that contains actual text characters. (GtkBox minus padding) > > GtkLabel is the text itself. > > > > Thus if you want to style the entire header bar you could use: > > > > #account_tree column-header > > > > #account_tree column-header GtkButton/button will target only the first header. (you can use the :x-child pseudo selectors for the others) > > > > #account_tree column-header .button targets all header buttons seems to have the same effect as if you hadn?t specified the class as in the first instance. > > > > #account_tree column-header GtkLabel/label targets only the first header label. (same as button) > > > > #account_tree column-header .label targets all header labels. > > > > > > Note, ?column-header? for some reason doesn?t appear to be specifically necessary at least in gtk-3.18, but it?s probably a good idea to include it. It seems all of the accounts are also GtkButton nodes with GtkLabels, but they don?t seem to change on the declarations when I don?t include column-header for some reason. Perhaps this is a code issue as noted in a previous reply. Since this might change, I?d say it?s safer to specify buttons/labels as children of column-header for future durability. > > > > Since including column-header is more specific, it shouldn?t matter the cascade order as it will take precedence over plain #account_tree rules. > > > > Regards, > > Adrien > > > > > > > On Jul 31, 2018, at 12:17 PM, GT-I9070 H <gti90...@gmail.com> wrote: > > > > > > Thanks Adrien , > > > > > > I'm with my smartphone bricked and I stopped Flash it to test GnuCash. > > > > > > I tested this on Windos 10: > > > > > > /* Account sheet font settings */ > > > #account_tree { > > > font-family: Arial; > > > font-size: 15; > > > color: blue; > > > background-color: #1C2833; > > > padding: 1px; > > > letter-spacing: 5px; > > > } > > > > > > #account_tree:selected { > > > color: white; > > > } > > > > > > /* Tab font color */ > > > notebook tab label { > > > color: blue; > > > } > > > > > > and it worked the first time. I'm not sure if "font-family: Arial;" worked, but I'm sure it did not block the .css. > > > > > > Only "letter-spacing: 5px;" changed the column header. > > > > > > Now we just need to customize the column header. > > > > > > Regards > > > GTI > > > > > > Em ter, 31 de jul de 2018 ?s 02:25, Adrien Monteleone < adrien.montele...@lusfiber.net> escreveu: > > > Follow-up: > > > > > > I?m not sure what was wrong the first time, but the following does work for all text on the CoA tab but does not change the header row: > > > > > > #account_tree { > > > color: *your-color-here*; > > > } > > > > > > #account_tree:selected { > > > color: *other-color-here*; > > > } > > > > > > If there was a need to address the GtkLabels directly, that doesn?t seem possible. According to the spec, it should be to style the node by type, but it isn?t working. (at least in 3.18) > > > > > > The class ?label? is also not working properly. It seems to only apply to toolbar button labels and the header row of the CoA table. > > > > > > Using the GtkInspector, I added the label class to the GtkTreeViewAccountView widget and it worked properly though. So perhaps the code needs to somehow include this for it to work. (my reading of the Gtk-css reference doesn?t seem to make this clear, with the impression that one can specify a node or a label regardless) > > > > > > There should probably be something on the wiki documenting this, as well as all the relevant selectors. (some are documented on Git as part of a sample css file) If I have page permissions I?ll start one, but if not I?ll have to file a wiki bug and wait for it to be created. > > > > > > Regards, > > > Adrien > > > > > > > > > > On Jul 30, 2018, at 5:04 PM, Adrien Monteleone < adrien.montele...@lusfiber.net> wrote: > > > > > > > > This is proving to be more difficult than it probably should be. Unfortunately, there is very little documentation on using GtkInspector, and it seems the tool was designed for people who are doing the coding of the app and are ?inyoursleep? familiar with the GUI elements and objects used. > > > > > > > > However, I?ve managed something that might be useful. > > > > > > > > Try: > > > > > > > > #account_tree { > > > > color: *your-color-here*; > > > > } > > > > > > > > This should change the base color of the text for the entire tree, including the column headers. > > > > > > > > You can use other common css rules here such as background-color, font-family, font-size, letter-spacing, padding, etc. > > > > > > > > The account names themselves (and their related text in sibling columns) are likely either class ?label? or ?GtkLabel? (depending on Gtk version, 3.20 is the former, 3.18 the latter) but specifying this class instead of the ID for the entire tree doesn?t seem to do anything. (I?m on 3.18 using Ubuntu 16.04, but I tried both with no result) You might have better luck. Ideally, I?d rather style classes than IDs, especially since in this case, the ID includes the column headers. > > > > > > > > An additional complication is that the tree-view has identical nodes for pretty much everything under it and the inspector doesn?t seem to let me select any particular account label with any specificity or figure out which node in the tree is which one I?m looking at on screen. (I understand specificity for the web, but building a unique selector seems a little different in GTK) I can only select the entire tree at once. > > > > > > > > The above might also pose an issue because a selected account would need different background and font colors. The inspector is supposed to show a ?selected? node that might be useful here, but since I can't figure out which child GtkLabel belongs to what, I?m not seeing that particular ?selected? node. I?ll keep trying and poking around though. > > > > > > > > Hope that helps. > > > > > > > > Regards, > > > > Adrien > > > > > > > >> On Jul 26, 2018, at 7:27 PM, GT-I9070 H <gti90...@gmail.com> wrote: > > > >> > > > >> One file for everything is better. > > > >> > > > >> In my .ini file there is only one section and one line to change the text size of the accounts page because it was the only method I found and worked, the .css method for this fails. For everything else I use .css, I've customized the registry with .css. > > > >> > > > >> For tabs I already got change color and font. > > > >> > > > >> I had already done searches on the list and I was not lucky. > > > >> > > > >> Of course we can wait, without problems, meanwhile I'll keep trying. > > > >> > > > >> > > > >> Regards > > > >> GTI > > > >> > > > > > > > > > > > > > _______________________________________________ > > > gnucash-user mailing list > > > gnucash-user@gnucash.org > > > To update your subscription preferences or to unsubscribe: > > > https://lists.gnucash.org/mailman/listinfo/gnucash-user > > > If you are using Nabble or Gmane, please see https://wiki.gnucash.org/wiki/Mailing_Lists for more information. > > > ----- > > > Please remember to CC this list on all your replies. > > > You can do this by using Reply-To-List or Reply-All. > > > > > > _______________________________________________ > > gnucash-user mailing list > > gnucash-user@gnucash.org > > To update your subscription preferences or to unsubscribe: > > https://lists.gnucash.org/mailman/listinfo/gnucash-user > > If you are using Nabble or Gmane, please see https://wiki.gnucash.org/wiki/Mailing_Lists for more information. > > ----- > > Please remember to CC this list on all your replies. > > You can do this by using Reply-To-List or Reply-All. > > > _______________________________________________ > gnucash-user mailing list > gnucash-user@gnucash.org > To update your subscription preferences or to unsubscribe: > https://lists.gnucash.org/mailman/listinfo/gnucash-user > If you are using Nabble or Gmane, please see https://wiki.gnucash.org/wiki/Mailing_Lists for more information. > ----- > Please remember to CC this list on all your replies. > You can do this by using Reply-To-List or Reply-All. ------------------------------ Message: 2 Date: Wed, 1 Aug 2018 02:27:01 +0000 From: Chen Thomas <jctc...@outlook.com> To: "gnucash-user@gnucash.org" <gnucash-user@gnucash.org> Subject: Re: [GNC] Get Quote is Not Working? Message-ID: <MWHPR0601MB36445C02B46F746CB8E02A20A12D0@MWHPR0601MB3644. namprd06.prod.outlook.com> Content-Type: text/plain; charset="us-ascii" I also think AlphaVantage is having a problem, due to I tried it on another laptop, it's still not working yet. thomas -----Original Message----- From: gnucash-user <gnucash-user-bounces+jctchen=outlook....@gnucash.org> On Behalf Of Les Sent: Tuesday, July 31, 2018 9:48 PM To: gnucash-user@gnucash.org Subject: Re: [GNC] Get Quote is Not Working? I have the same problem. I think AlphaVantage is having a problem. Les On 07/31/2018 08:28 AM, Chen Thomas wrote: > Hi, > > My GC is 3.2 and Finance::Quote is also up to date 1.47 in Windows 10. > Get Quote had been working well until yesterday. Get Quote window (perl is running) is now freezing and not working today. > > Is anyone experiencing the same issue? > > Thanks, > thomas > _______________________________________________ > gnucash-user mailing list > gnucash-user@gnucash.org > To update your subscription preferences or to unsubscribe: > https://nam04.safelinks.protection.outlook.com/?url= https%3A%2F%2Flists.gnucash.org%2Fmailman%2Flistinfo% 2Fgnucash-user&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3% 7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636686423480722879& sdata=T9bISwyd9n%2BWs5aiQP4AgTll%2BpgGp2y4aHVgc6dr0L4%3D&reserved=0 > If you are using Nabble or Gmane, please see https://nam04.safelinks. protection.outlook.com/?url=https%3A%2F%2Fwiki.gnucash. org%2Fwiki%2FMailing_Lists&data=02%7C01%7C% 7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435aaaaaaaa aaaa%7C1%7C0%7C636686423480722879&sdata=7qqWwnc46Q3pxuhDJ% 2Fs1qGPRDjvyv7jL8cbRXyFOp20%3D&reserved=0 for more information. > ----- > Please remember to CC this list on all your replies. > You can do this by using Reply-To-List or Reply-All. _______________________________________________ gnucash-user mailing list gnucash-user@gnucash.org To update your subscription preferences or to unsubscribe: https://nam04.safelinks.protection.outlook.com/?url= https%3A%2F%2Flists.gnucash.org%2Fmailman%2Flistinfo% 2Fgnucash-user&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3% 7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636686423480722879& sdata=T9bISwyd9n%2BWs5aiQP4AgTll%2BpgGp2y4aHVgc6dr0L4%3D&reserved=0 If you are using Nabble or Gmane, please see https://nam04.safelinks. protection.outlook.com/?url=https%3A%2F%2Fwiki.gnucash. org%2Fwiki%2FMailing_Lists&data=02%7C01%7C% 7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435aaaaaaaa aaaa%7C1%7C0%7C636686423480722879&sdata=7qqWwnc46Q3pxuhDJ% 2Fs1qGPRDjvyv7jL8cbRXyFOp20%3D&reserved=0 for more information. ----- Please remember to CC this list on all your replies. You can do this by using Reply-To-List or Reply-All. ------------------------------ Message: 3 Date: Wed, 01 Aug 2018 12:45:43 +1000 From: David Cousens <davidcous...@bigpond.com> To: gnucash-user@gnucash.org Subject: Re: [GNC] Linux Mint 18.2 Sonya and Gnucash 3.2 Message-ID: <7262269dfdd0eaa434f714122817555382ebb8d5.ca...@bigpond.com> Content-Type: text/plain; charset="UTF-8" Tommy, Linux Mint is an Ubuntu based distribution. Lm 18 was based on Ubuntu 16.04 and the latest release Lm 19 is based on ubuntu 18.04. The Software Manager has a standard build of GnuCash 2.6.19 and has a flatpak version of V3.2 which has some issues in regard to accessing some devices. It is possible some of these can be fixed with additional flatpak components. GnuCash is fairly easy to build on Linux Mint if anyone needs to stay ahead of the versions available in the distributions. See the Wiki http s://wiki.gnucash.org/wiki/BuildUbuntu16.04. (It also covers Ubuntu 18.04 and Linux Mint 18 and now Linux Mint 19.) David Cousens ------------------------------ Message: 4 Date: Tue, 31 Jul 2018 19:59:52 -0700 From: John Ralls <jra...@ceridwen.us> To: GT-I9070 H <gti90...@gmail.com> Cc: Adrien Monteleone <adrien.montele...@lusfiber.net>, gnucash-user <gnucash-user@gnucash.org> Subject: Re: [GNC] Change text color Message-ID: <b0b31b35-aa88-4765-b97f-e72f783df...@ceridwen.us> Content-Type: text/plain; charset=utf-8 It?s missing the colon (?:?) between account_tree and column-header. That could be a typo in the email rather than in gtk.css, of course. Regards, John Ralls > On Jul 31, 2018, at 12:42 PM, GT-I9070 H <gti90...@gmail.com> wrote: > > Hi Adrien, > > This does not work: > > #account_tree column-header { > color: lime; > } > > Am I writing something wrong? > > Regards > GTI > > Em ter, 31 de jul de 2018 ?s 14:38, Adrien Monteleone < > adrien.montele...@lusfiber.net> escreveu: > >> GTI, >> >> You could test the font-family rule by changing it to something obviously >> different, like serif, monospaced, or say ?Comic Sans?. (I suppose it?s >> useful at least for this) I just revamped my css from the old gtkrc method >> from 2.6.x and it picked up the font rules just fine. >> >> I found the header selectors. >> >> So here is the hierarchy: >> >> GncTreeViewAccount (id=?account_tree?) > column-header > GtkButton >> (class=?button?) > GtkBox > GtkAlignment > GtkLabel (class=?label?) >> >> GncTreeViewAccount affect the entire tab contents. >> column-header affects the entire header. >> GtkButton affects each section of the header. >> GtkBox affects only the portion of the header cell that contains text and >> white space. (Does not include separators or margins) >> GtkAlignment affects only the portion of GtkBox that contains actual text >> characters. (GtkBox minus padding) >> GtkLabel is the text itself. >> >> Thus if you want to style the entire header bar you could use: >> >> #account_tree column-header >> >> #account_tree column-header GtkButton/button will target only the first >> header. (you can use the :x-child pseudo selectors for the others) >> >> #account_tree column-header .button targets all header buttons seems to >> have the same effect as if you hadn?t specified the class as in the first >> instance. >> >> #account_tree column-header GtkLabel/label targets only the first header >> label. (same as button) >> >> #account_tree column-header .label targets all header labels. >> >> >> Note, ?column-header? for some reason doesn?t appear to be specifically >> necessary at least in gtk-3.18, but it?s probably a good idea to include >> it. It seems all of the accounts are also GtkButton nodes with GtkLabels, >> but they don?t seem to change on the declarations when I don?t include >> column-header for some reason. Perhaps this is a code issue as noted in a >> previous reply. Since this might change, I?d say it?s safer to specify >> buttons/labels as children of column-header for future durability. >> >> Since including column-header is more specific, it shouldn?t matter the >> cascade order as it will take precedence over plain #account_tree rules. >> >> Regards, >> Adrien >> >> >>> On Jul 31, 2018, at 12:17 PM, GT-I9070 H <gti90...@gmail.com> wrote: >>> >>> Thanks Adrien , >>> >>> I'm with my smartphone bricked and I stopped Flash it to test GnuCash. >>> >>> I tested this on Windos 10: >>> >>> /* Account sheet font settings */ >>> #account_tree { >>> font-family: Arial; >>> font-size: 15; >>> color: blue; >>> background-color: #1C2833; >>> padding: 1px; >>> letter-spacing: 5px; >>> } >>> >>> #account_tree:selected { >>> color: white; >>> } >>> >>> /* Tab font color */ >>> notebook tab label { >>> color: blue; >>> } >>> >>> and it worked the first time. I'm not sure if "font-family: Arial;" >> worked, but I'm sure it did not block the .css. >>> >>> Only "letter-spacing: 5px;" changed the column header. >>> >>> Now we just need to customize the column header. >>> >>> Regards >>> GTI >>> >>> Em ter, 31 de jul de 2018 ?s 02:25, Adrien Monteleone < >> adrien.montele...@lusfiber.net> escreveu: >>> Follow-up: >>> >>> I?m not sure what was wrong the first time, but the following does work >> for all text on the CoA tab but does not change the header row: >>> >>> #account_tree { >>> color: *your-color-here*; >>> } >>> >>> #account_tree:selected { >>> color: *other-color-here*; >>> } >>> >>> If there was a need to address the GtkLabels directly, that doesn?t seem >> possible. According to the spec, it should be to style the node by type, >> but it isn?t working. (at least in 3.18) >>> >>> The class ?label? is also not working properly. It seems to only apply >> to toolbar button labels and the header row of the CoA table. >>> >>> Using the GtkInspector, I added the label class to the >> GtkTreeViewAccountView widget and it worked properly though. So perhaps the >> code needs to somehow include this for it to work. (my reading of the >> Gtk-css reference doesn?t seem to make this clear, with the impression that >> one can specify a node or a label regardless) >>> >>> There should probably be something on the wiki documenting this, as well >> as all the relevant selectors. (some are documented on Git as part of a >> sample css file) If I have page permissions I?ll start one, but if not I?ll >> have to file a wiki bug and wait for it to be created. >>> >>> Regards, >>> Adrien >>> >>> >>>> On Jul 30, 2018, at 5:04 PM, Adrien Monteleone < >> adrien.montele...@lusfiber.net> wrote: >>>> >>>> This is proving to be more difficult than it probably should be. >> Unfortunately, there is very little documentation on using GtkInspector, >> and it seems the tool was designed for people who are doing the coding of >> the app and are ?inyoursleep? familiar with the GUI elements and objects >> used. >>>> >>>> However, I?ve managed something that might be useful. >>>> >>>> Try: >>>> >>>> #account_tree { >>>> color: *your-color-here*; >>>> } >>>> >>>> This should change the base color of the text for the entire tree, >> including the column headers. >>>> >>>> You can use other common css rules here such as background-color, >> font-family, font-size, letter-spacing, padding, etc. >>>> >>>> The account names themselves (and their related text in sibling >> columns) are likely either class ?label? or ?GtkLabel? (depending on Gtk >> version, 3.20 is the former, 3.18 the latter) but specifying this class >> instead of the ID for the entire tree doesn?t seem to do anything. (I?m on >> 3.18 using Ubuntu 16.04, but I tried both with no result) You might have >> better luck. Ideally, I?d rather style classes than IDs, especially since >> in this case, the ID includes the column headers. >>>> >>>> An additional complication is that the tree-view has identical nodes >> for pretty much everything under it and the inspector doesn?t seem to let >> me select any particular account label with any specificity or figure out >> which node in the tree is which one I?m looking at on screen. (I understand >> specificity for the web, but building a unique selector seems a little >> different in GTK) I can only select the entire tree at once. >>>> >>>> The above might also pose an issue because a selected account would >> need different background and font colors. The inspector is supposed to >> show a ?selected? node that might be useful here, but since I can't figure >> out which child GtkLabel belongs to what, I?m not seeing that particular >> ?selected? node. I?ll keep trying and poking around though. >>>> >>>> Hope that helps. >>>> >>>> Regards, >>>> Adrien >>>> >>>>> On Jul 26, 2018, at 7:27 PM, GT-I9070 H <gti90...@gmail.com> wrote: >>>>> >>>>> One file for everything is better. >>>>> >>>>> In my .ini file there is only one section and one line to change the >> text size of the accounts page because it was the only method I found and >> worked, the .css method for this fails. For everything else I use .css, >> I've customized the registry with .css. >>>>> >>>>> For tabs I already got change color and font. >>>>> >>>>> I had already done searches on the list and I was not lucky. >>>>> >>>>> Of course we can wait, without problems, meanwhile I'll keep trying. >>>>> >>>>> >>>>> Regards >>>>> GTI >>>>> >>>> >>> >>> >>> _______________________________________________ >>> gnucash-user mailing list >>> gnucash-user@gnucash.org >>> To update your subscription preferences or to unsubscribe: >>> https://lists.gnucash.org/mailman/listinfo/gnucash-user >>> If you are using Nabble or Gmane, please see >> https://wiki.gnucash.org/wiki/Mailing_Lists for more information. >>> ----- >>> Please remember to CC this list on all your replies. >>> You can do this by using Reply-To-List or Reply-All. >> >> >> _______________________________________________ >> gnucash-user mailing list >> gnucash-user@gnucash.org >> To update your subscription preferences or to unsubscribe: >> https://lists.gnucash.org/mailman/listinfo/gnucash-user >> If you are using Nabble or Gmane, please see >> https://wiki.gnucash.org/wiki/Mailing_Lists for more information. >> ----- >> Please remember to CC this list on all your replies. >> You can do this by using Reply-To-List or Reply-All. > _______________________________________________ > gnucash-user mailing list > gnucash-user@gnucash.org > To update your subscription preferences or to unsubscribe: > https://lists.gnucash.org/mailman/listinfo/gnucash-user > If you are using Nabble or Gmane, please see https://wiki.gnucash.org/wiki/Mailing_Lists for more information. > ----- > Please remember to CC this list on all your replies. > You can do this by using Reply-To-List or Reply-All. ------------------------------ Message: 5 Date: Tue, 31 Jul 2018 22:17:29 -0500 From: Adrien Monteleone <adrien.montele...@lusfiber.net> To: "gnucash-user@gnucash.org" <gnucash-user@gnucash.org> Subject: Re: [GNC] Get Quote is Not Working? Message-ID: <13d97ad5-afcc-4d80-860e-31ad694f0...@lusfiber.net> Content-Type: text/plain; charset=us-ascii Worked just fine about 2 hours ago for me. It might be intermittent. Regards, Adrien > On Jul 31, 2018, at 9:27 PM, Chen Thomas <jctc...@outlook.com> wrote: > > I also think AlphaVantage is having a problem, due to I tried it on another laptop, it's still not working yet. > > thomas > > -----Original Message----- > From: gnucash-user <gnucash-user-bounces+jctchen=outlook....@gnucash.org> On Behalf Of Les > Sent: Tuesday, July 31, 2018 9:48 PM > To: gnucash-user@gnucash.org > Subject: Re: [GNC] Get Quote is Not Working? > > I have the same problem. I think AlphaVantage is having a problem. > > Les > > > On 07/31/2018 08:28 AM, Chen Thomas wrote: >> Hi, >> >> My GC is 3.2 and Finance::Quote is also up to date 1.47 in Windows 10. >> Get Quote had been working well until yesterday. Get Quote window (perl is running) is now freezing and not working today. >> >> Is anyone experiencing the same issue? >> >> Thanks, >> thomas >> _______________________________________________ >> gnucash-user mailing list >> gnucash-user@gnucash.org >> To update your subscription preferences or to unsubscribe: >> https://nam04.safelinks.protection.outlook.com/?url= https%3A%2F%2Flists.gnucash.org%2Fmailman%2Flistinfo% 2Fgnucash-user&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3% 7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636686423480722879& sdata=T9bISwyd9n%2BWs5aiQP4AgTll%2BpgGp2y4aHVgc6dr0L4%3D&reserved=0 >> If you are using Nabble or Gmane, please see https://nam04.safelinks. protection.outlook.com/?url=https%3A%2F%2Fwiki.gnucash. org%2Fwiki%2FMailing_Lists&data=02%7C01%7C% 7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435aaaaaaaa aaaa%7C1%7C0%7C636686423480722879&sdata=7qqWwnc46Q3pxuhDJ% 2Fs1qGPRDjvyv7jL8cbRXyFOp20%3D&reserved=0 for more information. >> ----- >> Please remember to CC this list on all your replies. >> You can do this by using Reply-To-List or Reply-All. > > _______________________________________________ > gnucash-user mailing list > gnucash-user@gnucash.org > To update your subscription preferences or to unsubscribe: > https://nam04.safelinks.protection.outlook.com/?url= https%3A%2F%2Flists.gnucash.org%2Fmailman%2Flistinfo% 2Fgnucash-user&data=02%7C01%7C%7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3% 7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636686423480722879& sdata=T9bISwyd9n%2BWs5aiQP4AgTll%2BpgGp2y4aHVgc6dr0L4%3D&reserved=0 > If you are using Nabble or Gmane, please see https://nam04.safelinks. protection.outlook.com/?url=https%3A%2F%2Fwiki.gnucash. org%2Fwiki%2FMailing_Lists&data=02%7C01%7C% 7Cf36c6d1a0fdd4c7d6bfb08d5f6edc8a3%7C84df9e7fe9f640afb435aaaaaaaa aaaa%7C1%7C0%7C636686423480722879&sdata=7qqWwnc46Q3pxuhDJ% 2Fs1qGPRDjvyv7jL8cbRXyFOp20%3D&reserved=0 for more information. > ----- > Please remember to CC this list on all your replies. > You can do this by using Reply-To-List or Reply-All. > _______________________________________________ > gnucash-user mailing list > gnucash-user@gnucash.org > To update your subscription preferences or to unsubscribe: > https://lists.gnucash.org/mailman/listinfo/gnucash-user > If you are using Nabble or Gmane, please see https://wiki.gnucash.org/wiki/Mailing_Lists for more information. > ----- > Please remember to CC this list on all your replies. > You can do this by using Reply-To-List or Reply-All. > ------------------------------ Message: 6 Date: Tue, 31 Jul 2018 22:20:06 -0500 From: Adrien Monteleone <adrien.montele...@lusfiber.net> To: gnucash-user <gnucash-user@gnucash.org> Subject: Re: [GNC] Change text color Message-ID: <85bbd0eb-b95b-4de8-bd4f-aec27bb3a...@lusfiber.net> Content-Type: text/plain; charset=utf-8 ?column-header' is a pseudo selector? It looks like a Css node in GtkInspector. I?ll give it a try. Regards, Adrien > On Jul 31, 2018, at 9:59 PM, John Ralls <jra...@ceridwen.us> wrote: > > It?s missing the colon (?:?) between account_tree and column-header. That could be a typo in the email rather than in gtk.css, of course. > > Regards, > John Ralls > > >> On Jul 31, 2018, at 12:42 PM, GT-I9070 H <gti90...@gmail.com> wrote: >> >> Hi Adrien, >> >> This does not work: >> >> #account_tree column-header { >> color: lime; >> } >> >> Am I writing something wrong? >> >> Regards >> GTI >> >> Em ter, 31 de jul de 2018 ?s 14:38, Adrien Monteleone < >> adrien.montele...@lusfiber.net> escreveu: >> >>> GTI, >>> >>> You could test the font-family rule by changing it to something obviously >>> different, like serif, monospaced, or say ?Comic Sans?. (I suppose it?s >>> useful at least for this) I just revamped my css from the old gtkrc method >>> from 2.6.x and it picked up the font rules just fine. >>> >>> I found the header selectors. >>> >>> So here is the hierarchy: >>> >>> GncTreeViewAccount (id=?account_tree?) > column-header > GtkButton >>> (class=?button?) > GtkBox > GtkAlignment > GtkLabel (class=?label?) >>> >>> GncTreeViewAccount affect the entire tab contents. >>> column-header affects the entire header. >>> GtkButton affects each section of the header. >>> GtkBox affects only the portion of the header cell that contains text and >>> white space. (Does not include separators or margins) >>> GtkAlignment affects only the portion of GtkBox that contains actual text >>> characters. (GtkBox minus padding) >>> GtkLabel is the text itself. >>> >>> Thus if you want to style the entire header bar you could use: >>> >>> #account_tree column-header >>> >>> #account_tree column-header GtkButton/button will target only the first >>> header. (you can use the :x-child pseudo selectors for the others) >>> >>> #account_tree column-header .button targets all header buttons seems to >>> have the same effect as if you hadn?t specified the class as in the first >>> instance. >>> >>> #account_tree column-header GtkLabel/label targets only the first header >>> label. (same as button) >>> >>> #account_tree column-header .label targets all header labels. >>> >>> >>> Note, ?column-header? for some reason doesn?t appear to be specifically >>> necessary at least in gtk-3.18, but it?s probably a good idea to include >>> it. It seems all of the accounts are also GtkButton nodes with GtkLabels, >>> but they don?t seem to change on the declarations when I don?t include >>> column-header for some reason. Perhaps this is a code issue as noted in a >>> previous reply. Since this might change, I?d say it?s safer to specify >>> buttons/labels as children of column-header for future durability. >>> >>> Since including column-header is more specific, it shouldn?t matter the >>> cascade order as it will take precedence over plain #account_tree rules. >>> >>> Regards, >>> Adrien >>> >>> >>>> On Jul 31, 2018, at 12:17 PM, GT-I9070 H <gti90...@gmail.com> wrote: >>>> >>>> Thanks Adrien , >>>> >>>> I'm with my smartphone bricked and I stopped Flash it to test GnuCash. >>>> >>>> I tested this on Windos 10: >>>> >>>> /* Account sheet font settings */ >>>> #account_tree { >>>> font-family: Arial; >>>> font-size: 15; >>>> color: blue; >>>> background-color: #1C2833; >>>> padding: 1px; >>>> letter-spacing: 5px; >>>> } >>>> >>>> #account_tree:selected { >>>> color: white; >>>> } >>>> >>>> /* Tab font color */ >>>> notebook tab label { >>>> color: blue; >>>> } >>>> >>>> and it worked the first time. I'm not sure if "font-family: Arial;" >>> worked, but I'm sure it did not block the .css. >>>> >>>> Only "letter-spacing: 5px;" changed the column header. >>>> >>>> Now we just need to customize the column header. >>>> >>>> Regards >>>> GTI >>>> >>>> Em ter, 31 de jul de 2018 ?s 02:25, Adrien Monteleone < >>> adrien.montele...@lusfiber.net> escreveu: >>>> Follow-up: >>>> >>>> I?m not sure what was wrong the first time, but the following does work >>> for all text on the CoA tab but does not change the header row: >>>> >>>> #account_tree { >>>> color: *your-color-here*; >>>> } >>>> >>>> #account_tree:selected { >>>> color: *other-color-here*; >>>> } >>>> >>>> If there was a need to address the GtkLabels directly, that doesn?t seem >>> possible. According to the spec, it should be to style the node by type, >>> but it isn?t working. (at least in 3.18) >>>> >>>> The class ?label? is also not working properly. It seems to only apply >>> to toolbar button labels and the header row of the CoA table. >>>> >>>> Using the GtkInspector, I added the label class to the >>> GtkTreeViewAccountView widget and it worked properly though. So perhaps the >>> code needs to somehow include this for it to work. (my reading of the >>> Gtk-css reference doesn?t seem to make this clear, with the impression that >>> one can specify a node or a label regardless) >>>> >>>> There should probably be something on the wiki documenting this, as well >>> as all the relevant selectors. (some are documented on Git as part of a >>> sample css file) If I have page permissions I?ll start one, but if not I?ll >>> have to file a wiki bug and wait for it to be created. >>>> >>>> Regards, >>>> Adrien >>>> >>>> >>>>> On Jul 30, 2018, at 5:04 PM, Adrien Monteleone < >>> adrien.montele...@lusfiber.net> wrote: >>>>> >>>>> This is proving to be more difficult than it probably should be. >>> Unfortunately, there is very little documentation on using GtkInspector, >>> and it seems the tool was designed for people who are doing the coding of >>> the app and are ?inyoursleep? familiar with the GUI elements and objects >>> used. >>>>> >>>>> However, I?ve managed something that might be useful. >>>>> >>>>> Try: >>>>> >>>>> #account_tree { >>>>> color: *your-color-here*; >>>>> } >>>>> >>>>> This should change the base color of the text for the entire tree, >>> including the column headers. >>>>> >>>>> You can use other common css rules here such as background-color, >>> font-family, font-size, letter-spacing, padding, etc. >>>>> >>>>> The account names themselves (and their related text in sibling >>> columns) are likely either class ?label? or ?GtkLabel? (depending on Gtk >>> version, 3.20 is the former, 3.18 the latter) but specifying this class >>> instead of the ID for the entire tree doesn?t seem to do anything. (I?m on >>> 3.18 using Ubuntu 16.04, but I tried both with no result) You might have >>> better luck. Ideally, I?d rather style classes than IDs, especially since >>> in this case, the ID includes the column headers. >>>>> >>>>> An additional complication is that the tree-view has identical nodes >>> for pretty much everything under it and the inspector doesn?t seem to let >>> me select any particular account label with any specificity or figure out >>> which node in the tree is which one I?m looking at on screen. (I understand >>> specificity for the web, but building a unique selector seems a little >>> different in GTK) I can only select the entire tree at once. >>>>> >>>>> The above might also pose an issue because a selected account would >>> need different background and font colors. The inspector is supposed to >>> show a ?selected? node that might be useful here, but since I can't figure >>> out which child GtkLabel belongs to what, I?m not seeing that particular >>> ?selected? node. I?ll keep trying and poking around though. >>>>> >>>>> Hope that helps. >>>>> >>>>> Regards, >>>>> Adrien >>>>> >>>>>> On Jul 26, 2018, at 7:27 PM, GT-I9070 H <gti90...@gmail.com> wrote: >>>>>> >>>>>> One file for everything is better. >>>>>> >>>>>> In my .ini file there is only one section and one line to change the >>> text size of the accounts page because it was the only method I found and >>> worked, the .css method for this fails. For everything else I use .css, >>> I've customized the registry with .css. >>>>>> >>>>>> For tabs I already got change color and font. >>>>>> >>>>>> I had already done searches on the list and I was not lucky. >>>>>> >>>>>> Of course we can wait, without problems, meanwhile I'll keep trying. >>>>>> >>>>>> >>>>>> Regards >>>>>> GTI >>>>>> >>>>> >>>> >>>> >>>> _______________________________________________ >>>> gnucash-user mailing list >>>> gnucash-user@gnucash.org >>>> To update your subscription preferences or to unsubscribe: >>>> https://lists.gnucash.org/mailman/listinfo/gnucash-user >>>> If you are using Nabble or Gmane, please see >>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information. >>>> ----- >>>> Please remember to CC this list on all your replies. >>>> You can do this by using Reply-To-List or Reply-All. >>> >>> >>> _______________________________________________ >>> gnucash-user mailing list >>> gnucash-user@gnucash.org >>> To update your subscription preferences or to unsubscribe: >>> https://lists.gnucash.org/mailman/listinfo/gnucash-user >>> If you are using Nabble or Gmane, please see >>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information. >>> ----- >>> Please remember to CC this list on all your replies. >>> You can do this by using Reply-To-List or Reply-All. >> _______________________________________________ >> gnucash-user mailing list >> gnucash-user@gnucash.org >> To update your subscription preferences or to unsubscribe: >> https://lists.gnucash.org/mailman/listinfo/gnucash-user >> If you are using Nabble or Gmane, please see https://wiki.gnucash.org/wiki/Mailing_Lists for more information. >> ----- >> Please remember to CC this list on all your replies. >> You can do this by using Reply-To-List or Reply-All. > > ------------------------------ Subject: Digest Footer _______________________________________________ gnucash-user mailing list gnucash-user@gnucash.org To update your subscription preferences or to unsubscribe: https://lists.gnucash.org/mailman/listinfo/gnucash-user If you are using Nabble or Gmane, please see https://wiki.gnucash.org/wiki/ Mailing_Lists for more information. ----- Please remember to CC this list on all your replies. You can do this by using Reply-To-List or Reply-All. ------------------------------ End of gnucash-user Digest, Vol 184, Issue 81 ********************************************* _______________________________________________ gnucash-user mailing list gnucash-user@gnucash.org To update your subscription preferences or to unsubscribe: https://lists.gnucash.org/mailman/listinfo/gnucash-user If you are using Nabble or Gmane, please see https://wiki.gnucash.org/wiki/Mailing_Lists for more information. ----- Please remember to CC this list on all your replies. You can do this by using Reply-To-List or Reply-All.