91
alain01
Bootstrap stable version 5 soon
  • 2021/4/21 12:52

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


Hi,
Bootstrap is close to being in stable version, version 5.

For designers who work on Bootstrap 4,
with BT5, some parameters change cause there is now RTL features (Right to Left)

So,
all paramters with "left" and "right" become : "start" and "end"
Quote:
Horizontal direction sensitive variables, utilities and mixins are renamed with more logical names — start and end in lieu of left and right.
Examples :
Renamed .dropdown-menu-*-left and .dropdown-menu-*-right to .dropdown-menu-*-start and .dropdown-menu-*-end.
Renamed .carousel-item-left and .carousel-item-right to .carousel-item-start and .carousel-item-end.
Renamed .float-left and .float-right to .float-start and .float-end.
Renamed .border-left and .border-right to .border-start and .border-end.
Renamed .rounded-left and .rounded-right to .rounded-start and .rounded-end.
Renamed .ml-* and .mr-* to .ms-* and .me-*.
Renamed .pl-* and .pr-* to .ps-* and .pe-*.
Renamed .text-left and .text-right to .text-start and .text-end.
Renamed $navbar-brand-margin-right to $navbar-brand-margin-end.

Other things:

Javascript :
Data attributes for all JavaScript plugins are now namespaced to help distinguish Bootstrap functionality from third parties and your own code. For example, we use data-bs-toggle instead of data-toggle.

badge, rounded, breadcrumbs, group buttons, carousel, form...

All is here !



92
alain01
Re: Lasius 1.18 RC 3
  • 2021/4/11 1:34

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


I can modify parameters in the tab block setting
But no "validation" button,
So, when i go to another tab then come back to block settings, my changes are not keep.
May be cause the error : Notification: Array to string conversion dans le fichier /modules/lasius/class/Db.php ligne 97



93
alain01
Re: Lasius 1.18 RC 3
  • 2021/4/11 1:30

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


Hi Culex, Thank you for this work !

I got a message during installation :

Avertissement: Invalid argument supplied for foreach() dans le fichier /modules/lasius/include/install.php ligne 44

And tab "block settings" :
Notification: Array to string conversion dans le fichier /modules/lasius/class/Db.php ligne 97

Hum, It could be take big ressources for 15 s to 1 mn, no ?

I understand for the block "Who is online"
But for the user menu, What 's changing if I didnt click on a link ?



94
alain01
Re: Looking for a light moduke to better understand Xoops Modules Namespacing
  • 2021/4/8 7:21

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


Quote:
goffy wrote:
modulebuilder
Wonderful work, Goffy !



95
alain01
Re: So much wasted potential
  • 2021/4/6 21:40

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


Hi, XOOPS is not for basic user like you seems to be, for sure.
Yes, i agree with you, XOOPS should be managed by webmasters, not by basic users.

Welcome to basic users.
Forum are here to anwser to your questions and problems.

It's like skiing or driving, you should learn some basic notions.
It would be a lie to say the opposite !

You can use other CMS with click click click like a blackbox
OR
you can be master of your work, Thus, with XOOPS you will have more scope to modify EXCATELY as you want your site, your design, your pages, your style.
XOOPS is not a blackbox, but you need to learn a bit.

For french users, there are some very recent tutorials here

So, in 2 words,
Use blackbox, or if you want to master of your destiny, learn and use XOOPS !



Ps : for activity see this !
No activity ? lol see here too

I hate haters



96
alain01
Re: bbcode and url
  • 2021/4/6 15:45

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


The source code given by my browser, for the last link is :
Quote:
<a href="http:///modules/xmnews/article.php?news_id=35" rel="noopener external" title="">


Note (from Greg)

/class/module.textsanitizer.php
may be @ line 410 (Replace XoopsCodes with their equivalent HTML formatting)

The url should not return a [http] word key if there is no http (or https) in the initial string



97
alain01
bbcode and url
  • 2021/4/6 14:51

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


Hi,
I noticed a thing on the URL bbcode
Is it only for a standard URL ?

I explain the problem here:
I want to write only the absolute link from the root of the website

Example:
The URL is:
Quote:
https://www.monxoops.fr/modules/xmnews/article.php?news_id=35
but I want to write
Quote:
/modules/xmnews/article.php?news_id = 35

BBCode turns this link into
Quote:
modules/xmnews/article.php?news_id=35
(Without "/")
so the link is bad.

A solution ?
- I should use an html link with an href = "" ?
- This BBCode only works for a standard URL ?
- Others?



98
alain01
Re: Error in the themes, xbootstrap and xswatch?
  • 2021/4/4 18:17

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


Hi,
Right,
I didn't notice but yes !!!
Content is on top in these themes but you can modify it.

See theme.tpl (xswatch)
<div class="row">
    <{
includeq file="$theme_name/tpl/leftBlock.tpl"}>
    <{
includeq file="$theme_name/tpl/content-zone.tpl"}>
    <{
includeq file="$theme_name/tpl/rightBlock.tpl"}>
</
div>

So then see /tpl/content-zone.tp
<{includeq file="$theme_name/tpl/contents.tpl"}>

                <
div class="row">
                    <{
includeq file="$theme_name/tpl/centerBlock.tpl"}>
                    <{
includeq file="$theme_name/tpl/centerLeft.tpl"}>
                    <{
includeq file="$theme_name/tpl/centerRight.tpl"}>
                </
div>

So, content is located BEFORE center blocs
So you can modify like that :
<div class="row">
                    <{
includeq file="$theme_name/tpl/centerBlock.tpl"}>
                    <{
includeq file="$theme_name/tpl/centerLeft.tpl"}>
                    <{
includeq file="$theme_name/tpl/centerRight.tpl"}>
                </
div>
                <{
includeq file="$theme_name/tpl/contents.tpl"}>



99
alain01
Re: Many users admin->users timing out, mysql pegged at 100% CPU
  • 2021/3/17 16:49

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


cp -p ../xoops_data/caches/index.html ../xoops_data/caches/xoops_cache

"-p" to preserve mode,ownership,timestamps

There is a solution to delete all except 1 file,
in bash :
>shopt -s extglob
then
>rm -- !(index.html)
But be careful, test it on tempory directory and with recursive directories (rm -r)

Note A :
Since XOOPS 2.5.9, there is a admin maintenance page to do it , empty cache (smarty_cache / smarty_compile, xoops_cache)

Note B :
On the XOOPS 2.5.11, we use index.php with this content , not index.html :
<?php
header
("HTTP/1.0 404 Not Found");



100
alain01
Re: xmcontent 1.5 Final Released
  • 2021/3/16 17:59

  • alain01

  • Just can't stay away

  • Posts: 528

  • Since: 2003/6/20


Here the news (in french language) on the french XOOPS site, monxoops.fr




TopTop
« 1 ... 7 8 9 (10) 11 12 13 ... 38 »



Login

Who's Online

162 user(s) are online (96 user(s) are browsing Support Forums)


Members: 0


Guests: 162


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits