Re: css bug in the wiki rendering for nested lists

2019-01-01 Thread Alexander Burger
On Tue, Jan 01, 2019 at 05:44:24PM +0900, Jean-Christophe Helary wrote:
> It looks like the culprit is the wiki.css file (L86):
> 
> #main > ul li {
>list-style-type: square;
> }
> 
> That selector applies the "list-style-type: square;" to *all*  elements
> under a  element (including  nested  elements).
> 
> The correct syntax for the selector is:
> 
> #main > ul > li {
>list-style-type: square;
> }

I see, thanks!

I don't know CSS well, all these changes were done by various people. But I
gladly change wiki.css as you suggest.

I installed it on picolisp.com. Can you check?

☺/ A!ex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


Re: Wikipedia

2019-01-01 Thread George Orais
Hi Jon,

First of all, a Happy New Year to everyone!

Sorry for the very slow progress and less update on the PilMCU due to the 
recent changes in life.. 

I can say that PilMCU is still a work in progress and it would be nice to still 
keep it in the history section. One of the proof that its working is my youtube 
video at this link: 

https://youtu.be/mMgIvITAMBc

And there are many inquiries when and where the softcore can be available. I 
believe this year I can get back and finalize the softcore for I gained more 
knowledge on how to optimize the implementation based on my daily work here in 
Tokyo.

Thanks again and looking forward for more Picolisp projects soon!



BR,
Geo





On Saturday, 29 December 2018, 7:00, Jon Kleiser  wrote:



Hi,

I suggest we add one or more milestones in the History section, and maybe 
remove the 2014 PilMCU paragraph (if that was not successful). Give me the text 
and I shall put it in.

/Jon


Sent from my iPhone

On 28 Dec 2018, at 08:35, Jean-Christophe Helary  wrote:


I think the issue with the Wikipedia message is that not much is said of 
Picolisp outside of the Picolisp community :) Hence, if we can have a few 
articles about *anything* related to Picolisp then we can add a lot of 
"neutral" contents and that doesn't have to be you who does the stuff.

So anything you're aware that can be published and possibly be referenced, go 
ahead :)

JC



On Dec 28, 2018, at 16:18, Alexander Burger  wrote:
>
>Hi Jean-Christophe,
>
>
>Do you have a list of commercial applications that were developed in picolisp
>>and can be mentioned there?
>>
>I could put together a list of all my projects during the last 30 years, but it
>would not be helpful as these are all custom applications, not visible in
>public.
>
>
>
>Are there citations that refer to that (in industry papers, etc.) ?
>>
>Not that I'm aware of ...
>☺/ A!ex
>
>
>-- 
>UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
>

Jean-Christophe Helary
---
http://mac4translators.blogspot.com @brandelune

--
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe


css bug in the wiki rendering for nested lists

2019-01-01 Thread Jean-Christophe Helary
+{
-{item}
-{
*{-{nested item}
  -{nested item}}}
-{item}}

renders normally the ordered/unordered nesting,

but

*{
-{item}
-{
+{-{nested item}
  -{nested item}}}
-{item}}

sets all the items to be unordered list items.

Which is weird because the rendered html is correct:


item

nested item
  nested item
item


It looks like the culprit is the wiki.css file (L86):

#main > ul li {
   list-style-type: square;
}

That selector applies the "list-style-type: square;" to *all*  elements 
under a  element (including  nested  elements).

The correct syntax for the selector is:

#main > ul > li {
   list-style-type: square;
}

that way the style is only applied to the direct children of .

reference:
https://developer.mozilla.org/en-US/docs/Web/CSS/Descendant_combinator
https://developer.mozilla.org/en-US/docs/Web/CSS/Child_combinator


Jean-Christophe Helary
---
http://mac4translators.blogspot.com @brandelune



--
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe