Thread subject: muscapaul's PHP-Fusion website :: Terms Infusion v2.xx

Posted by muscapaul on 18-12-2007 00:59
#1

There is a major update of the Terms Infusion.

ADDED GENERAL FEATURES
* The Update Publication Date feature that appeared to be incorporated in the Infusion is now functional.

ADDED GLOSSARY FEATURES
* Moving the mouse over the question mark image signifying a Glossary Term will show a popup layer with the Term Title, Explanation and (if given) Image.
* Clicking a marked Term that is not yet included in the Glossary will lead to an error page. (In the popup layer a message will appear with a similar message).
* Clicking a marked Term that has two different explanations in the Glossary will lead to a page with the the possible options. (In the popup layer the same is noticed and the visitor is requested to click the link to see the options.)
* Previously modified core files updated to add above mentioned features. In addition several other core files were modified (see separate instructions).

Updating from the v1.0x can be done by overwriting the existing files in the Infusion folder (beware to appropriately rename your infusion.php files!). To add the full Glossary features when using the glos tags requires the modification of several core files. For an otherwise unmodified site you can upload all files from the changed-files folder. If you have already modified core files you need to check whether changes for the Glossary also apply to previously modified files (in which case you need to modify the file manually) or not (in which case you can upload the supplied modified file).

DOWNLOAD:
Terms_v2.00 (last updated: 21.12.2007)


Notice: Undefined index: post_edituser in /home/muscapal/public_html/print.php on line 114
Edited by muscapaul on 21-12-2007 13:15

Posted by muscapaul on 18-12-2007 01:19
#2

Example items:
Orange
PHP-Fusion
Potato


Notice: Undefined index: post_edituser in /home/muscapal/public_html/print.php on line 114
Edited by muscapaul on 18-12-2007 14:18

Posted by helmuth on 19-12-2007 20:09
#3

I'm translating to Danish and I wondered about this:

$locale['term104'] = "1.01";

shouldn't be

$locale['term104'] = "2.0";

Posted by helmuth on 20-12-2007 00:46
#4

attached Danish locales for v2.0 ;)

Posted by muscapaul on 20-12-2007 00:58
#5

Er..., helmuth, thanks, but there are three sets of locales...

Posted by helmuth on 20-12-2007 01:50
#6

I know ... but as far as I could see they are identical ... or ...?

EDIT

just discovered they aren't :(

back to translation mode :)


Notice: Undefined index: post_edituser in /home/muscapal/public_html/print.php on line 114
Edited by helmuth on 20-12-2007 01:52

Posted by helmuth on 20-12-2007 02:44
#7

attached the fully translated Danish locales ... I have choosen to zip all the local folders ;)

Posted by muscapaul on 20-12-2007 02:59
#8

Thx. I will add them tomorrow.

Posted by muscapaul on 21-12-2007 13:16
#9

helmuth wrote:
I'm translating to Danish and I wondered about this:

$locale['term104'] = "1.01";

shouldn't be

$locale['term104'] = "2.0";

Actually, no, because I moved the version number back to the infusion files. Forgot to remove them from the locales, though.
I have added the Danish locales to the download package and emptied the locale definitions that were previously for the version number.

Download link: See first post in the thread.

Posted by franktombino on 30-05-2008 23:59
#10

hi muscapaul, great work!

I've a problem with this infusion...

In all of pages of news, forum, articles, i see that:

Warning: preg_replace() [function.preg-replace]: Empty regular expression in C:\xampp\htdocs\www\infusions\terms\include\functions.php on line 112

Warning: preg_replace() [function.preg-replace]: Empty regular expression in C:\xampp\htdocs\www\infusions\terms\include\functions.php on line 151

At line 112, the file funcions.php says:
$text = preg_replace($search, $terms, $text);

The same string at line 151.

Please, can you help me?

And sorry 4 my english, i'm italian :)

Bye

Posted by muscapaul on 31-05-2008 01:30
#11

I cannot give a ready solution. I will try to look at this tomorrow.

Posted by muscapaul on 01-06-2008 00:01
#12

Sorry, I have not been able to reproduce the error. As far as I can tell, all downloadable files are identical to the once I have on my test site. Can you please re-upload all the files and/or perform the file modification again and see if the problem persists?

Posted by franktombino on 03-06-2008 13:43
#13

Hi.

I've modificated the files, no upload.

I can to try modificate the files another time and I will see if error persist.

Posted by muscapaul on 03-06-2008 14:23
#14

I'll await the results.

Posted by villantz on 17-06-2008 01:13
#15

I test it clever, useful work, regal! i27.tinypic.com/i55b80.gif

King very full!
i29.tinypic.com/izrcc1.jpg

@franktombino
Tipp: correctly necessary and to insert codes into the particular files... for me came in.

Warning: ...... infusions\terms\include\functions.php on line 112
answer:
1. this is e search:
Code
        else {
            $terms_s .= "".$data_a['term_descript']."_ ";
        }
    }



delete: }
2. this is e search:
Code
    $text = preg_replace('#\The Glossary contains no matching items.
It may have been added using different lettering,
so you can click the Term to check this.
Otherwise, contact the Administrator to report this error.#si', $locale['term806'], $text);
    $text = descript($text,false);

    return $text;
}



}
return $text; - above it do

in this way correct:
Code
// Parse text to replace term title with term description and strip url bbcode from text
function parseterm($text) {
    $dsettings = dbarray(dbquery("SELECT * FROM ".DB_PREFIX."term_settings"));
    $type = $dsettings['term_type'];
    if (file_exists(INFUSIONS."terms/".$type."locale/".$settings['locale'].".php")) {
        include INFUSIONS."terms/".$type."locale/".$settings['locale'].".php";
    }
    else {
        include INFUSIONS."terms/".$type."locale/English.php";
    }

    $result_a = dbquery("SELECT term_title, term_descript FROM ".DB_PREFIX."terms ORDER BY term_id ASC");
    $search_s = '';
    $terms_s = '';
    while ($data_a=dbarray($result_a)) {
        $result_b = dbquery("SELECT term_title FROM ".DB_PREFIX."terms WHERE term_title = '".$data_a['term_title']."'");
        $rowsb = dbrows($result_b);
        $search_s .= "'The Glossary contains no matching items.
It may have been added using different lettering,
so you can click the Term to check this.
Otherwise, contact the Administrator to report this error.', ";
        if ($rowsb != 1) {
            $terms_s .= "".$locale['term805']."_ ";
        }
        else {
            $terms_s .= "".$data_a['term_descript']."_ ";

    }
       
    $search_a = substr($search_s, 0, -2);
    $terms_a = substr($terms_s, 0, -2);
    $search = explode(', ', $search_a);
    $terms = explode ('_ ', $terms_a);
    $text = preg_replace($search, $terms, $text);
    $text = preg_replace('#\[b\](.*?)\[/b\]#si', '\1', $text);
    $text = preg_replace('#\[i\](.*?)\[/i\]#si', '\1', $text);
    $text = preg_replace('#\[u\](.*?)\[/u\]#si', '\1', $text);
    $text = preg_replace('#\[center\](.*?)\[/center\]#si', '\1', $text);
    $text = preg_replace('#\[code\](.*?)\[/code\]#si', '\1', $text);
    $text = preg_replace('#\[quote\](.*?)\[/quote\]#si', '\1', $text);
    $text = preg_replace('#\[small\](.*?)\[/small\]#si', '\1', $text);
    $text = preg_replace('#\[url\](.*?)\[/url\]#si', '\1', $text);
    $text = preg_replace('#\[url=([\r\n]*)(http://|ftp://|https://|ftps://)([^\s\'\";\+]*?)\](.*?)([\r\n]*)\[/url\]#si', '\4 (\2\3)', $text);
    $text = preg_replace('#\[url=([\r\n]*)([^\s\'\";\+]*?)\](.*?)([\r\n]*)\[/url\]#si', '\3 (\2)', $text);
    $text = preg_replace('#\[img\](.*?)\[/img\]#si', '\1', $text);
    $text = preg_replace('#\The Glossary contains no matching items.
It may have been added using different lettering,
so you can click the Term to check this.
Otherwise, contact the Administrator to report this error.#si', $locale['term806'], $text);
    $text = descript($text,false);
        }
    return $text;
}




Warning: ...... infusions\terms\include\functions.php on line 151
answer:
1. this is e search:
Code
        else {
            $images_s .= "".$data_a['term_image'].", ";
        }
    }



delete: }
2. this is e search:
Code
    $text = descript($text,false);

    return $text;
}



}
return $text; - above it do

in this way correct:
Code
// Parse text to replace term title with term image
function parsetermimg($text) {
    $result_a = dbquery("SELECT term_title, term_image FROM ".DB_PREFIX."terms ORDER BY term_id ASC");
    $search_s = '';
    $images_s = '';
    while ($data_a=dbarray($result_a)) {
        $result_b = dbquery("SELECT term_title FROM ".DB_PREFIX."terms WHERE term_title = '".$data_a['term_title']."'");
        $rowsb = dbrows($result_b);
        $search_s .= "'-img-".$data_a['term_title']."-img-', ";
        if ($data_a['term_image'] == '' || $rowsb != 1) {
            $images_s .= "".INFUSIONS."/terms/images/no_image.gif, ";
        }
        else {
            $images_s .= "".$data_a['term_image'].", ";

    }
       
    $search_a = substr($search_s, 0, -2);
    $images_a = substr($images_s, 0, -2);
    $search = explode(', ', $search_a);
    $images = explode (', ', $images_a);
    $text = preg_replace($search, $images, $text);
    $text = preg_replace('#\-img-(.*?)\-img-#si', INFUSIONS."/terms/images/no_image.gif", $text);
    $text = preg_replace('#\[glos\](.*?)\[/glos\]#si', '\1', $text);
    $text = descript($text,false);
        }
    return $text;
}



Enjoy!!


Notice: Undefined index: post_edituser in /home/muscapal/public_html/print.php on line 114
Edited by villantz on 18-06-2008 00:17