diff --git a/install.xml b/install.xml index 65bf46ba..7f27c03d 100644 --- a/install.xml +++ b/install.xml @@ -1,7 +1,7 @@ - +
http://opensource.org/licenses/gpl-license.php GNU General Public License v2 board3 Portal @@ -11,18 +11,14 @@ It has several boxes wich can be turned on an off in the ACP and certain setting Included language files: » English (en) -» Czech (cs) -» Dutch (nl) » German (de) -» Norwegian (nb) -» Turkish (tr) -This portal is based on the phpBB3 Portal a.k.a canverPortal ( www.phpbb3portal.com ) +More langages can be found in our International forums: http://www.board3.de/viewforum.php?f=13 Fügt ein Portal deinem Forum hinzu. Es hat diverse Boxen, die über das ACP an- / abgeschaltet und eingestellt werden können. -Dieses Portal basiert auf dem phpBB3 Portal a.k.a canverPortal ( www.phpbb3portal.com ) + i hope you get everything working. Further developement, new boxes for the portal or questions are welcome at www.board3.de Ich hoffe ihr habt Spaß am Portal. Neuen Code, bzw neue Boxen und Fragen könnt ihr auf www.board3.de posten. @@ -63,28 +59,45 @@ Dieses Portal basiert auf dem phpBB3 Portal a.k.a canverPortal ( www.phpbb3por - - 1 - 0 - 0 - + 1.0.0RC2 easy - - 3.0.1 - 3 - 0 - + 3.0.2 + + subsilver2 + subsilver2 + Deutsch + Update instructions for Board3 Portal Version 1.0.0RC1 + Updateanleitung für Board3 Portal Version 1.0.0RC1 + Update instructions for Board3 Portal Version 0.2.1 + Updateanleitung für Board3 Portal Version 0.2.1 + Update instructions for Board3 Portal Version 0.2.0 + Updateanleitung für Board3 Portal Version 0.2.0 + Update instructions for Board3 Portal Version 0.1.0 + Updateanleitung für Board3 Portal Version 0.1.0 + Update instructions for phpBB3 Portal Version 1.2.2 + Updateanleitung für Board3 Portal Version 1.2.2 + Update instructions for phpBB3 Portal Version 1.1.0b + Updateanleitung für Board3 Portal Version 1.1.0b + German + Installations-Anleitung + + 2008-09-01 + 1.0.0RC2 + + Added the hyper-blast - whatever this means... + + + Hyper-blast hinzugefügt. Was auch immer das bedeuten soll... + + + 2008-05-03 - - 1 - 0 - 0 - + 1.0.0RC1 Many bugfixes, view: http://www.board3.de/bugtracker/viewcat.php?c=6 Adaptions to phpBB 3.0.1 @@ -116,11 +129,7 @@ Dieses Portal basiert auf dem phpBB3 Portal a.k.a canverPortal ( www.phpbb3por 2008-02-03 - - 0 - 2 - 1 - + 0.2.1 Fixed a news/announcements permissions bug Fixed a bug when no news posts were viewable due to account permissions @@ -135,11 +144,7 @@ Dieses Portal basiert auf dem phpBB3 Portal a.k.a canverPortal ( www.phpbb3por 2008-02-03 - - 0 - 2 - 0 - + 0.2.0 added subsilver2 templates (valid XHTML 1.0 Strict) added upcoming birthdays, configurable in ACP / thanks to Kendoo @@ -161,11 +166,7 @@ Dieses Portal basiert auf dem phpBB3 Portal a.k.a canverPortal ( www.phpbb3por 2008-01-15 - - 0 - 1 - 0 - + 0.1.0 Changes from "phpBB3 Portal 1.1.0Beta" to "board3 Portal - based on phpBB3 Portal Version 1.0.0": completet all missing ACP Control for several boxes @@ -206,6 +207,8 @@ Dieses Portal basiert auf dem phpBB3 Portal a.k.a canverPortal ( www.phpbb3por + + @@ -263,7 +266,7 @@ Deny from All ]]> - {L_INDEX} {navlinks.FORUM_NAME}]]> + {L_INDEX} ]]> ]]> {L_PORTAL} » ]]> @@ -288,6 +291,12 @@ Deny from All + + + + + + Browse to install_portal/install.php and run the installer, after successfull installation delete the installer. install_portal/install.php aufrufen und ausführen, nach erfolgreicher Installation löschen diff --git a/modx.prosilver.en.xsl b/modx.prosilver.en.xsl index a748e36d..9da54654 100644 --- a/modx.prosilver.en.xsl +++ b/modx.prosilver.en.xsl @@ -1,34 +1,34 @@ - - + + ]> - + - - - - - + + + + - + - - - - - - phpBB MOD » <xsl:value-of select="$title" /> - - -
-
- -
-
-
- - - -
-
-
- - - -
-
-
- - - -
-
-

Save all files. End of MOD.

-

You have finished the installation for this MOD. Upload all changed files to your website. If the installation went bad, simply restore your backed up files.

-
-
-
-
- - - -
-
-
- -
- +/** + * Update the MODX with the selected dbms + * + */ +function change_dbms($form) +{ + $type = new Array(); + $type[0] = ''; + $type[1] = 'mysql'; + $type[2] = 'mysql_41'; + $type[3] = 'mysql_40'; + $type[4] = 'firebird'; + $type[5] = 'mssql'; + $type[6] = 'oracle'; + $type[7] = 'postgres'; + $type[8] = 'sqllite'; + + $exists = 0; + $tags = document.getElementsByTagName('dbms'); + + if ($form) + { + sql_display($form.value); + } + else + { + if ($tags.length > 0) + { + for ($i = 0; $i < $tags.length; $i++) + { + $dbms = $tags[$i].attributes['type'].nodeValue; + + if (!$dbms) + { + continue; + } + + $position = in_array($type, $dbms, true); + if ($position !== false) + { + if ($exists > 0 && $position < $exists) + { + $exists = $position; + } + else if ($exists == 0) + { + $exists = $position; + } + } + } + + if ($exists > 0) + { + sql_display($type[$exists]); + } + } + } + + return; +} + +/** + * display the dbms specific sql data with the dbms we have selected + * + */ +function sql_display($value) +{ + $tags = document.getElementsByTagName('dbms'); + + // show the dbms of type we have selected, hide all others except for non dbms specific + for ($i = 0; $i < $tags.length; $i++) + { + $dbms = $tags[$i].attributes['type'].nodeValue; + + if (!$dbms) + { + continue; + } + + if ($dbms == $value) + { + $tags[$i].style.display = ''; + } + else + { + $tags[$i].style.display = 'none'; + } + } +} + +/** + * load the sql dropdown with all the database types supported by this MODX file + * + */ +function sql_dropdown() +{ + var $dbms_element = document.getElementById('dbms'); + var $dbms_selector = document.getElementById('dbms-selector'); + if (!$dbms_element || !$dbms_selector) + { + return; + } + + $type = new Array(); + $type[0] = 'mysql'; + $type[1] = 'mysql_41'; + $type[2] = 'mysql_40'; + $type[3] = 'firebird'; + $type[4] = 'mssql'; + $type[5] = 'oracle'; + $type[6] = 'postgres'; + $type[7] = 'sqllite'; + + $options = new Array(); + $tags = document.getElementsByTagName('dbms'); + + // show the dbms of type we have selected, hide all others except for non dbms specific + for ($i = 0; $i < $tags.length; $i++) + { + $dbms = $tags[$i].attributes['type'].nodeValue; + $position = in_array($type, $dbms, true); + + if (!$dbms) + { + continue; + } + else if ($position !== false) + { + $options[$position] = ''; + } + } + + if ($options.length > 0) + { + $selects = ''; + + // sort options and output in the correct order + for ($i = 0; $i < $type.length; $i++) + { + if ($options[$i]) + { + $selects += $options[$i]; + } + } + $dbms_element.innerHTML = $selects; + } + else + { + $dbms_selector.style.display = 'none'; + } +} + //-->]]> + + + + +
+
+ +
+
+
+
+
+ + + + +
+
+ + + + +
+
+

Save all files. End of MOD.

+

You have finished the installation for this MOD. Upload all changed files to your website. If the installation went bad, simply restore your backed up files.

+
+
+
+
+
+
+
+ +
+
-

About this MOD

-
-
Title:
-
-
- - -
- -
- -
-
-

-
-
-
-
- -

- -

-
- -
-
-
Description:
-
-
+
+ About this MOD +
- -
- -
- -
-
-

+

+
Title:
+
+ +
+ +
+
+

+
+
+
+
+ +

+
+
+
Description:
+
+ +
+ +
+
+

+ + + + + +

+
+
+
+
+ +

- +

-
- -
- - -

- - - - - -

-
+ +
+
Version:
+
+

+ + + +

+
+ + + +
-
-
Version:
-
-
- -

- - - -

- -
-
- - - -
+ +
-

Authors

-

Author

+ + Authors + + + Author +
-

Files to Edit

+
+

Files to Edit

-

Included Files

+

Included Files

No files have been included with this MOD.

+

Additional MODX Files

+ +

This MOD has no additional MODX files.

+
+
-
-

Disclaimer

-
-
- - - -

- For security purposes, please check: http://www.phpbb.com/mods/ for the latest version of this MOD. Downloading this MOD from other sites could cause malicious code to enter into your phpBB Forum. As such, phpBB will not offer support for MODs not offered in our MODs database, located at: http://www.phpbb.com/mods/ -

- - - -
-
-
-

Author Notes

-
-
+
+

Disclaimer

+
+ +
+

For security purposes, please check: http://www.phpbb.com/mods/for the latest version of this MOD. Downloading this MOD from other sites could cause malicious code to enter into your phpBB Forum. As such, phpBB will not offer support for MODs not offered in our MODs database, located at: http://www.phpbb.com/mods/

+
+ +
+
+

Author Notes

+
- -
- -
- -
-
- - - - - -
-
-
-
- -
+ +
+ +
+
+ + + + + +
+
+
+
+ +
-
-
- +
+ + +
+
+ + + +

License

+
+ +
+

This MOD has been licensed under the following license:

+

+
+ +
+

Other Notes

+
+ +
+

Before adding this MOD to your forum, you should back up all files related to this MOD

+

This MOD was designed for phpBB  and may not function as stated on other phpBB versions. MODs for phpBB3.0 will not work on phpBB2.0 and vice versa.

+ + +

This MOD is development quality. It is not recommended that you install it on a live forum.

+
+
+
+ +
+
+

+
+ +
+

+
+ +
+
-
-
- - - -

License

-
-
- -

This MOD has been licensed under the following license:

-

- -

- -
-
-

Other Notes

-
-
- - - -

Before adding this MOD to your forum, you should back up all files related to this MOD

-

- This MOD was designed for phpBB and may not function as stated on other phpBB versions. MODs for phpBB3.0 will not work on phpBB2.0 and vice versa. -

- - -

- - This MOD is development quality. It is not recommended that you install it on a live forum. - -

-
-
- - - -
-
-
-

- -

-
-
- - - -

- -

- - - -
-
-
-
-
-
- - - -
-
+
+ + + +
-
-
Username:
-
- - - -
+
+
Username:
+
-
Email:
-
- - - -
+
Email:
+
-
Name:
-
- -
+
Name:
+
-
WWW:
+
WWW:
+
+
+ +
Contributions:
- - - + +
+ From:
+ To: +

- - - - - - - - - - - - - - - -
Installation Level:
- -

Easy

-

Intermediate

-

Advanced

- -
-
+ +

Easy

+
+ +

Intermediate

+
+ +

Advanced

+
+ +
Installation Time:
- -

~ minutes

- - - -
-
+

~minutes

+ +
-

MOD History

-
- - - -
+
+ MOD History + + + +
-
-
-

- Version

-
- -
- - - -
-
- - - - - -
-
-
+
+ +
+
+

- Version + + + +

+
+

+ +
+ + + +
+
+ + + + + +
+
+ +
-
- -
-
-
    - -
  • -
    -
-
+
+
+
    + +
  • +

    +
  • +
    +
+
    -
  • +
  • +

    +
@@ -1541,218 +1774,228 @@ function mod_doKeyPress(e) -
  • - - , -
  • +
  • ,
  • -
  • - - , +
  • + , +
  • + -

    SQL

    -
    -
    -
    +
    +
    + + +
    +
    +

    SQL

    +
    - - - -
    - -
    + + + +
    + - - - - -

    Edits

    -

    - s

    -

    - Use your keyboard to navigate the code boxes. You may also hit 's' on your keyboard to go to the first code box. -

    -
    + + + + + +

    Edits

    +

    s

    +

    Use your keyboard to navigate the code boxes. You may also hit 's' on your keyboard to go to the first code box.

    +
    - - - - - + + +
    +
    -
    -
    - -
    + +
    + + : + +
    + +
    +
    -
    +
    +
    + - -
    -
    - -

    DIY Instructions

    -

    These are manual instructions that cannot be performed automatically. You should follow these instructions carefully.

    -
    - -
    -
    -
    - -
    -
    -
    + +

    DIY Instructions

    +
    + +
    +

    These are manual instructions that cannot be performed automatically. You should follow these instructions carefully.

    +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    - -
    - - - -
    -
    - + -
    -

    Open: 

    - -
    - -
    -

    Comments

    -
    - -
    - -
    -
    -
    -
    -
    -
    -
    - - -

    Find

    -

    Tip: This may be a partial find and not the whole line. - -
    - This find contains an advanced feature known as regular expressions, click here to learn more. -
    -

    -
    - -
    -
    -
    - - -

    Add after

    -

    Tip: Add these lines on a new blank line after the preceding line(s) to find.

    -
    - -

    Add before

    -

    - Tip: Add these lines on a new blank line before the preceding line(s) to find. -

    -
    - -

    Replace With

    -

    Tip: Replace the preceding line(s) to find with the following lines.

    -
    - -

    Increment

    -

    - Tip: This allows you to alter integers. For help on what each operator means, click here. -

    -
    -
    - -
    -
    -
    - -
    - - -
    In-line Find
    -

    - Tip: This is a partial match of a line for in-line operations. - -
    - This find contains an advanced feature known as regular expressions, click here to learn more. +

    +
    +

    Open: 

    + +
    + +
    +

    Comments

    +
    + +
    + + -

    -
    - -
    -
    - - - -
    In-line Add after
    -

    - -

    -
    - -
    In-line Add before
    -

    - -

    -
    - -
    In-line Replace With
    -

    - -

    -
    - -
    In-line Increment
    -

    - Tip: This allows you to alter integers. For help on what each operator means, click here. -

    -
    -
    - -
    -
    -
    - -
    -
    Comments 
    -
    -
    -
    - +
    +
    +
    +
    - -
    -
    -
    + + +

    Find

    +

    Tip:This may be a partial find and not the whole line. + +
    + This find contains an advanced feature known as regular expressions, click here to learn more. +
    +

    +
    + +
    +
    +
    +
    +
    + + +

    Add after

    +

    Tip:Add these lines on a new blank line after the preceding line(s) to find.

    +
    + +

    Add before

    +

    Tip:Add these lines on a new blank line before the preceding line(s) to find.

    +
    + +

    Replace With

    +

    Tip:Replace the preceding line(s) to find with the following lines.

    +
    + +

    Increment

    +

    Tip:This allows you to alter integers. For help on what each operator means, click here.

    +
    +
    + +
    +
    +
    +
    +
    + +
    + + +
    In-line Find
    +

    Tip:This is a partial match of a line for in-line operations. + +
    + This find contains an advanced feature known as regular expressions, click here to learn more. +
    +

    +
    + +
    +
    +
    +
    +
    + + +
    In-line Add after
    +

    +
    + +
    In-line Add before
    +

    +
    + +
    In-line Replace With
    +

    +
    + +
    In-line Increment
    +

    Tip:This allows you to alter integers. For help on what each operator means, click here.

    +
    +
    + +
    +
    +
    +
    +
    + +
    +
    Comments 
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -

    File Copy

    -
      +

      File Copy

      +
        -
      1. -
        -
        Copy: 
        -
        To: 
        -
        -
      2. +
      3. +
        Copy: 
        +
        To: 
        +
        +
      @@ -1761,11 +2004,9 @@ function mod_doKeyPress(e) - -
      +
      - - +