New revs

Arantor

  • As powerful as possible, as complex as necessary.
  • Posts: 14,278
Re: New revs
« Reply #390, on November 27th, 2010, 11:57 PM »
Quote
Well, putting the args into a variable before imploding them takes more time and memory...
There's actually not a lot in it, I think, if you dig down to the underlying C code, since a string and an array are internally managed through pointers rather than the physical value being pushed; it's sort of by-reference-but-pretending-otherwise as opposed to really-by-reference. (This is most noticeable when calling C stuff from something like Visual Basic where you have to be explicit and strings, arrays etc are always ByRef even if the intent is not.)
Quote
We still have plenty of issues to fix...
The current code seems to work, work quite well and achieves what the original intent was - putting everything that much closer to the end to get faster rendering and add <insert JS library here> if we wanted. So there are bigger fish to fry, so to speak.


Right now I'm trying to visualise exactly how drafts would play out - see my notes in http://tracker.wedge.org/?sa=ticket;ticket=51 for more of the issues that need to be tackled.
Posted: November 27th, 2010, 08:23 PM

Revision: 304
Author: arantor
Date: 19:32:42, 27 November 2010
Message:
- Remove installed add-ons list seeing how we already have the same list in the Browse Add-ons page (Admin.php, Packages.php, PackageGet.php, Packages.template.php, Admin.english.php, Admin.french.php, Packages.english.php, Packages.french.php)
----
Modified : /trunk/Sources/Admin.php
Modified : /trunk/Sources/PackageGet.php
Modified : /trunk/Sources/Packages.php
Modified : /trunk/Themes/default/Packages.template.php
Modified : /trunk/Themes/default/languages/Admin.english.php
Modified : /trunk/Themes/default/languages/Admin.french.php
Modified : /trunk/Themes/default/languages/Packages.english.php
Modified : /trunk/Themes/default/languages/Packages.french.php

Posted: November 27th, 2010, 08:33 PM

Revision: 305
Author: arantor
Date: 22:56:55, 27 November 2010
Message:
! More movement of actions to their own files (Search.php, Search2.php, Themes.php, Jsoption.php, index.php)
! Fix for broken info centre toggle (BoardIndex.php)
----
Modified : /trunk/Sources/BoardIndex.php
Added : /trunk/Sources/Jsoption.php
Modified : /trunk/Sources/Search.php
Added : /trunk/Sources/Search2.php
Modified : /trunk/Sources/Themes.php
Modified : /trunk/index.php
When we unite against a common enemy that attacks our ethos, it nurtures group solidarity. Trolls are sensational, yes, but we keep everyone honest. | Game Memorial

MultiformeIngegno

  • Posts: 1,337
Re: New revs
« Reply #391, on November 28th, 2010, 02:07 AM »
It's great to see arantor working again! :)

Arantor

  • As powerful as possible, as complex as necessary.
  • Posts: 14,278
Re: New revs
« Reply #392, on November 28th, 2010, 07:19 PM »
Revision: 306
Author: arantor
Date: 18:19:11, 28 November 2010
Message:
! Converted redirects to blank.gif into outputting raw image from shared function to avoid redirections. (index.php, Subs.php, Jsoption.php, VerificationCode.php)
! Some uses of raw image output had to be inlined because Subs.php isn't loaded at that point (install.php, repair_settings.php, upgrade.php)
! Removed legacy files listed in installer (install.php)
----
Modified : /trunk/Sources/Jsoption.php
Modified : /trunk/Sources/Subs.php
Modified : /trunk/Sources/VerificationCode.php
Modified : /trunk/index.php
Modified : /trunk/other/install.php
Modified : /trunk/other/tools/repair_settings.php
Modified : /trunk/other/upgrade.php

Nao

  • Dadman with a boy
  • Posts: 16,082
Re: New revs
« Reply #393, on November 29th, 2010, 09:43 AM »
rev 307

* Updated license.txt to Wedge's. Not many differences though. Also moved it to the root instead of a license in Themes and one in other/*. (license.txt)
* Optimized a DOM traversing function, and moved it to the inline section. (Admin.template.php)
* Gave more padding to autosuggest popups. (index.css)
Re: New revs
« Reply #394, on November 29th, 2010, 10:05 AM »
rev 308

* Simplifying calls to the auto-suggest widget: setting sSearchType to 'member' by default until we write more suggestion types, making sSuggestId the same as sControlId (a prefix is added to it anyway so collision chances are close to zero), and bItemList already accounted for the lack of parameter. (suggest.js, PersonalMessage.js, TEMPLATES: ManageBans, ManageBoards, ManageMaintenance, ManageMembergroups, ManageNews, ManagePaid, Profile)
! Fixed syntax error in Member Tasks. (ManageMaintenance.template.php)
Re: New revs
« Reply #395, on November 29th, 2010, 11:48 PM »Last edited on November 29th, 2010, 11:55 PM by Nao/Gilles
rev 309 (I hate revs ending in "9", I usually reserve them for my crappy commits :P Well, it will be a first...)

+ Added jQuery into Wedge. YES! (jquery-1.4.4.min.js)
+ Added new setting, $modSettings['jquery_remote'], defaulting to false, determining whether jQuery should be loaded from the Google CDN or merged into script.js, cached and gzipped locally. No UI for it yet. (Load.php, index.template.php)
* Replaced own JS minification routines with a more efficient version based on Dean Edwards' Packer 2.0. (Class-Minify.php, Subs.php)
* Optimized minification by listing all variable names that can safely be renamed. (Subs.php, script.js, theme.js)
* Added a quick fix for Javascript errors when a minified file has something = function () {} without a closing semicolon. Strings containing solo "}" or "{" are not supported. I can't fix your weird code all by myself. (Subs.php)
! Fixed some Nix styling colors. (Nix/index.css)
- submitonce() doesn't actually take any parameter. (script.js, editor.js, TEMPLATES: MoveTopic, Packages, PersonalMessage, Poll, Post)

So, I guess this build will crash on everyone's machine, ah ah. It may work, too. I hope I didn't forget to commit any file (I had to add Class-Minify.php and jquery.js manually.)
If it crashes, please wait until tomorrow morning and I'll have a look. Right now I have to hurry to bed.

TOMORROW-- let's have some fun with jQuery!! ;)

Arantor

  • As powerful as possible, as complex as necessary.
  • Posts: 14,278
Re: New revs
« Reply #396, on November 30th, 2010, 12:05 PM »
I knew it was hard to debug since it was an error on line 1... but it's all line 1 >_< I can enable that to test it, sure. If the option is disabled, it probably shouldn't go through Packer. Thing is, though, which performs better overall - Minification & Packer strikes me as though it should underperform compared to Minification & Gzip.

Meanwhile...


Revision: 310
Author: arantor
Date: 08:46:41, 30 November 2010
Message:
! Renamed the .xml action as feed which just seems more logical, as well as moved it around (index.php, Feed.php, Load.php, News.php, BoardIndexInfoCenter.template.php, index.php, Help.english.php, Help.french.php)
! Cleaned up xmlhttp action as part of ongoing harmonisation (index.php, Xml.php, Xmlhttp.php)
----
Added : /trunk/Sources/Feed.php (Copy from path: /trunk/Sources/News.php, Revision, 309)
Modified : /trunk/Sources/Load.php
Deleted : /trunk/Sources/News.php
Deleted : /trunk/Sources/Xml.php
Added : /trunk/Sources/Xmlhttp.php (Copy from path: /trunk/Sources/Xml.php, Revision, 309)
Modified : /trunk/Themes/default/BoardIndexInfoCenter.template.php
Modified : /trunk/Themes/default/index.template.php
Modified : /trunk/Themes/default/languages/Help.english.php
Modified : /trunk/Themes/default/languages/Help.french.php
Modified : /trunk/index.php

Posted: November 30th, 2010, 09:49 AM

OK so I enabled it, and Chrome did not like the compressed file one bit. Yay for unstyled page!
Posted: November 30th, 2010, 09:51 AM

Revision: 311
Author: arantor
Date: 09:01:37, 30 November 2010
Message:
! Removed legacy requestmembers action and function (index.php, Subs-Auth.php)
----
Modified : /trunk/Sources/Subs-Auth.php
Modified : /trunk/index.php


This was the old auto-suggest handler from 1.1.x, only no-one removed it, haha. Needless to say it'll still be in 2.0 final >_<
Posted: November 30th, 2010, 10:02 AM

Revision: 312
Author: arantor
Date: 09:08:09, 30 November 2010
Message:
! Harmonised action=jseditor, including removing the method from the editor class (strictly speaking it feels a little less like it should be in the class anyway) (index.php, Class-Editor.php, Jseditor.php)
----
Modified : /trunk/Sources/Class-Editor.php
Added : /trunk/Sources/Jseditor.php
Modified : /trunk/index.php

Posted: November 30th, 2010, 10:08 AM

Revision: 313
Author: arantor
Date: 09:46:55, 30 November 2010
Message:
! Tidy up the WAP2 PM find-member action into its own file (index.php, Findmember.php, Subs-Auth.php)
! Remove the non WAP template for findmember since it doesn't appear to be in use anywhere (Findmember.php, Help.template.php)
----
Added : /trunk/Sources/Findmember.php
Modified : /trunk/Sources/Subs-Auth.php
Modified : /trunk/Themes/default/Help.template.php
Modified : /trunk/index.php

Posted: November 30th, 2010, 10:57 AM

Revision: 314
Author: arantor
Date: 10:12:23, 30 November 2010
Message:
! Silently rewrite action=.xml into action=feed (index.php)
! Move the buddy, lock and sticky actions into their own files (index.php, Buddy.php, Subs-Members.php, LockTopic.php, Lock.php, Sticky.php)
----
Added : /trunk/Sources/Buddy.php
Added : /trunk/Sources/Lock.php (Copy from path: /trunk/Sources/LockTopic.php, Revision, 309)
Deleted : /trunk/Sources/LockTopic.php
Added : /trunk/Sources/Sticky.php
Modified : /trunk/Sources/Subs-Members.php
Modified : /trunk/index.php

Posted: November 30th, 2010, 11:12 AM

Revision: 315
Author: arantor
Date: 11:05:06, 30 November 2010
Message:
! Split LogInOut into separate actions and support, and fix all the links to it (index.php, LogInOut.php, Subs-Login.php, Login.php, Login2.php, Logout.php, Load.php, Profile-Actions.php, Reminder.php, Security.php, Subs-OpenID.php)
----
Modified : /trunk/Sources/Load.php
Deleted : /trunk/Sources/LogInOut.php
Added : /trunk/Sources/Login.php
Added : /trunk/Sources/Login2.php
Added : /trunk/Sources/Logout.php
Modified : /trunk/Sources/Profile-Actions.php
Modified : /trunk/Sources/Reminder.php
Modified : /trunk/Sources/Security.php
Added : /trunk/Sources/Subs-Login.php (Copy from path: /trunk/Sources/LogInOut.php, Revision, 309)
Modified : /trunk/Sources/Subs-OpenID.php
Modified : /trunk/index.php

Nao

  • Dadman with a boy
  • Posts: 16,082
Re: New revs
« Reply #397, on November 30th, 2010, 06:28 PM »
rev 316

* Spacinazi. (Findmember.php, ModerationCenter.template.php)
! Missing div and incorrect bar. (ModerationCenter.template.php)
- Removed some test code. (theme.js)
* The index template has two RSS links, but they were formed differently. Spider engines will appreciate that we use the exact same link. (index.template.php)
Posted: November 30th, 2010, 02:15 PM

rev 317

* Updated logo and favicon to the newest ones. (wedgelogo.png, favicon.ico)
* Spacinazi. (Class-Minify.php)
* Pete, I'll hate you forever for ignoring my moving plea. <scream> Removed my own custom minifying code. (Subs.php)
+ Added support for JSMin minifier. Delete the DEFINE('JSMIN', 1) line to test support for Packer. (Subs.php, Class-JSMin.php)
* JSMin keeps multi-line comments in cached files, so used the opportunity to add license information to a couple of them. (editor.js (yes, it isn't packed yet, but it will come), script.js, theme.js)
Posted: November 30th, 2010, 06:26 PM

Forgot that one...

rev 318

+ Added a compatibility sheet for IE6 in Nix styling. (Nix/ie6.css)
Re: New revs
« Reply #398, on November 30th, 2010, 06:42 PM »
rev 319

! JSMin doesn't need the semicolon fix. (Subs.php)

(Sorry! Forgot to move the block...)

Arantor

  • As powerful as possible, as complex as necessary.
  • Posts: 14,278
Re: New revs
« Reply #399, on December 1st, 2010, 04:19 AM »
Revision: 320
Author: arantor
Date: 19:50:43, 30 November 2010
Message:
! Convert action=collapse into its own file (index.php, BoardIndex.php, Collapse.php)
! Remove legacy modifycat action (index.php, ManageBoards.php)
----
Modified : /trunk/Sources/BoardIndex.php
Added : /trunk/Sources/Collapse.php
Modified : /trunk/Sources/ManageBoards.php
Modified : /trunk/index.php

Posted: November 30th, 2010, 08:51 PM

Revision: 321
Author: arantor
Date: 20:44:34, 30 November 2010
Message:
! Convert polls to be a action=poll with subactions (index.php, Poll.php, Who.english.php, Who.french.php, Poll.template.php, Display.template.php)
+ Add the ability for topic-permission (whotopic) strings that support specific action/subaction strings (Who.php)
----
Modified : /trunk/Sources/Errors.php
Modified : /trunk/Sources/Poll.php
Modified : /trunk/Sources/Who.php
Modified : /trunk/Themes/default/Display.template.php
Modified : /trunk/Themes/default/Poll.template.php
Modified : /trunk/Themes/default/languages/Who.english.php
Modified : /trunk/Themes/default/languages/Who.french.php
Modified : /trunk/index.php

Posted: November 30th, 2010, 09:44 PM

Revision: 322
Author: arantor
Date: 03:19:01, 01 December 2010
Message:
! loadSource introduced. (Load.php)
! A decent number of files converted to use loadSource where possible without lots of work, and globalisation of $sourcedir removed in the process. Not all files are finished yet. (Lots and lots of files)
----
Modified : /trunk/SSI.php
Modified : /trunk/Sources/Activate.php
Modified : /trunk/Sources/Admin.php
Modified : /trunk/Sources/Announce.php
Modified : /trunk/Sources/BoardIndex.php
Modified : /trunk/Sources/Calendar.php
Modified : /trunk/Sources/Collapse.php
Modified : /trunk/Sources/Display.php
Modified : /trunk/Sources/Errors.php
Modified : /trunk/Sources/Findmember.php
Modified : /trunk/Sources/JSModify.php
Modified : /trunk/Sources/Jseditor.php
Modified : /trunk/Sources/Load.php
Modified : /trunk/Sources/Lock.php
Modified : /trunk/Sources/Login2.php
Modified : /trunk/Sources/Logout.php
Modified : /trunk/Sources/ManageBans.php
Modified : /trunk/Sources/ManageCalendar.php
Modified : /trunk/Sources/Modlog.php
Modified : /trunk/Sources/MoveTopic.php
Modified : /trunk/Sources/Poll.php
Modified : /trunk/Sources/QuickMod.php
Modified : /trunk/Sources/Reminder.php
Modified : /trunk/Sources/RepairBoards.php
Modified : /trunk/Sources/Reports.php
Modified : /trunk/Sources/Search.php
Modified : /trunk/Sources/Search2.php
Modified : /trunk/Sources/Sticky.php
Modified : /trunk/Sources/Subs-Admin.php
Modified : /trunk/Sources/Subs-Database.php
Modified : /trunk/Sources/Subs-Graphics.php
Modified : /trunk/Sources/Subs-Login.php
Modified : /trunk/Sources/Subs-OpenID.php
Modified : /trunk/Sources/Subs-Package.php
Modified : /trunk/Sources/Subs-Post.php
Modified : /trunk/Sources/Subs.php
Modified : /trunk/Sources/Themes.php
Modified : /trunk/Sources/Unread.php
Modified : /trunk/Sources/VerificationCode.php
Modified : /trunk/Sources/Xmlhttp.php
Modified : /trunk/index.php
Modified : /trunk/subscriptions.php
Re: New revs
« Reply #400, on December 1st, 2010, 11:22 AM »
Revision: 323
Author: arantor
Date: 10:22:11, 01 December 2010
Message:
! Fixing most of the rest of the uses of $sourcedir / loadSource in main source (lots of files)
! Reverting use of loadSource where function not available at that point (Subs-Database.php)
----
Modified : /trunk/Sources/Admin.php
Modified : /trunk/Sources/Class-Editor.php
Modified : /trunk/Sources/Dlattach.php
Modified : /trunk/Sources/Groups.php
Modified : /trunk/Sources/ManageAttachments.php
Modified : /trunk/Sources/ManageBoards.php
Modified : /trunk/Sources/ManageErrors.php
Modified : /trunk/Sources/ManageMail.php
Modified : /trunk/Sources/ManageMaintenance.php
Modified : /trunk/Sources/ManageMembergroups.php
Modified : /trunk/Sources/ManageMembers.php
Modified : /trunk/Sources/ManageNews.php
Modified : /trunk/Sources/ManagePaid.php
Modified : /trunk/Sources/ManagePermissions.php
Modified : /trunk/Sources/ManagePosts.php
Modified : /trunk/Sources/ManageRegistration.php
Modified : /trunk/Sources/ManageScheduledTasks.php
Modified : /trunk/Sources/ManageSearch.php
Modified : /trunk/Sources/ManageSearchEngines.php
Modified : /trunk/Sources/ManageServer.php
Modified : /trunk/Sources/ManageSettings.php
Modified : /trunk/Sources/ManageSmileys.php
Modified : /trunk/Sources/MessageIndex.php
Modified : /trunk/Sources/ModerationCenter.php
Modified : /trunk/Sources/PackageGet.php
Modified : /trunk/Sources/Packages.php
Modified : /trunk/Sources/PersonalMessage.php
Modified : /trunk/Sources/Post.php
Modified : /trunk/Sources/Post2.php
Modified : /trunk/Sources/PostModeration.php
Modified : /trunk/Sources/PrettyUrls-Filters.php
Modified : /trunk/Sources/Profile-Actions.php
Modified : /trunk/Sources/Profile-Modify.php
Modified : /trunk/Sources/Profile-View.php
Modified : /trunk/Sources/Profile.php
Modified : /trunk/Sources/QueryString.php
Modified : /trunk/Sources/QuoteFast.php
Modified : /trunk/Sources/Recent.php
Modified : /trunk/Sources/Register.php
Modified : /trunk/Sources/RemoveTopic.php
Modified : /trunk/Sources/SMStats.php
Modified : /trunk/Sources/ScheduledTasks.php
Modified : /trunk/Sources/Security.php
Modified : /trunk/Sources/SendTopic.php
Modified : /trunk/Sources/SplitTopics.php
Modified : /trunk/Sources/Subs-Auth.php
Modified : /trunk/Sources/Subs-Boards.php
Modified : /trunk/Sources/Subs-Calendar.php
Modified : /trunk/Sources/Subs-Categories.php
Modified : /trunk/Sources/Subs-Database.php
Modified : /trunk/Sources/Subs-Editor.php
Modified : /trunk/Sources/Subs-Membergroups.php
Modified : /trunk/Sources/Subs-Members.php
Modified : /trunk/Sources/Subs-Menu.php
Modified : /trunk/Sources/Unreadreplies.php

Nao

  • Dadman with a boy
  • Posts: 16,082
Re: New revs
« Reply #401, on December 1st, 2010, 12:31 PM »
rev 324

! Wrong loadSource destination. (ManagePaid.php)
Re: New revs
« Reply #402, on December 1st, 2010, 08:37 PM »
rev 325

- Removed preg_match hack from loadUserSettings, as the security issue is fixed in PHP 5.0.2, and we won't accept anything below 5.0.2 anyway. (Load.php)
* Updated createList() to use loadSource(). (ManageCalendar.php, ManageMembergroups.php, ManageMembers.php, Subs-List.php)
- Removed hitme classes, as they won't be used in the end. (ManageMembers.php, ManageSmileys.php, TEMPLATES: Calendar, MessageIndex, Post)
! Another file with a .php extension where it shouldn't have had it. (Profile.php)
@ todo: implement hitme replacement, and update the minimum PHP version.
Re: New revs
« Reply #403, on December 1st, 2010, 11:05 PM »
rev 326

* Upping minimum version of PHP from 5.0.0 to 5.1.2. (install.php, readme_*.html, webinstall.php, upgrade.php)
* Upping minimum version of MySQL from inconsistent stuff to 4.1.2. (install.sql, readme_*.html, upgrade.php, ManageMaintenance.php, SearchAPI-Fulltext.php, ManageMaintenance language)

Arantor

  • As powerful as possible, as complex as necessary.
  • Posts: 14,278
Re: New revs
« Reply #404, on December 2nd, 2010, 01:33 AM »
Revision: 327
Author: arantor
Date: 22:35:19, 01 December 2010
Message:
! Minor formatting fix to fatal error page (Errors.template.php)
! Replaced $smcFunc['db_*'] functions with the weDB family of classes. (LOTS of files. Far too many for a sane person, or even not so sane person, to list here manually.)
----
Modified : /trunk/SSI.php
Modified : /trunk/Sources/Activate.php
Modified : /trunk/Sources/Announce.php
Added : /trunk/Sources/Class-DB.php
Added : /trunk/Sources/Class-DBExtra.php
Added : /trunk/Sources/Class-DBPackages.php
Added : /trunk/Sources/Class-DBSearch.php
Modified : /trunk/Sources/Class-Editor.php
Modified : /trunk/Sources/CoppaForm.php
Deleted : /trunk/Sources/DbExtra.php
Deleted : /trunk/Sources/DbPackages.php
Deleted : /trunk/Sources/DbSearch.php
Modified : /trunk/Sources/Display.php
Modified : /trunk/Sources/Dlattach.php
Modified : /trunk/Sources/DumpDatabase.php
Modified : /trunk/Sources/Errors.php
Modified : /trunk/Sources/Feed.php
Modified : /trunk/Sources/Groups.php
Modified : /trunk/Sources/JSModify.php
Modified : /trunk/Sources/Jsoption.php
Modified : /trunk/Sources/Load.php
Modified : /trunk/Sources/Lock.php
Modified : /trunk/Sources/Login2.php
Modified : /trunk/Sources/Logout.php
Modified : /trunk/Sources/ManageAttachments.php
Modified : /trunk/Sources/ManageBans.php
Modified : /trunk/Sources/ManageBoards.php
Modified : /trunk/Sources/ManageCalendar.php
Modified : /trunk/Sources/ManageErrors.php
Modified : /trunk/Sources/ManageMail.php
Modified : /trunk/Sources/ManageMaintenance.php
Modified : /trunk/Sources/ManageMembergroups.php
Modified : /trunk/Sources/ManageMembers.php
Modified : /trunk/Sources/ManageNews.php
Modified : /trunk/Sources/ManagePaid.php
Modified : /trunk/Sources/ManagePermissions.php
Modified : /trunk/Sources/ManagePosts.php
Modified : /trunk/Sources/ManageRegistration.php
Modified : /trunk/Sources/ManageScheduledTasks.php
Modified : /trunk/Sources/ManageSearch.php
Modified : /trunk/Sources/ManageSearchEngines.php
Modified : /trunk/Sources/ManageServer.php
Modified : /trunk/Sources/ManageSettings.php
Modified : /trunk/Sources/ManageSmileys.php
Modified : /trunk/Sources/Memberlist.php
Modified : /trunk/Sources/MessageIndex.php
Modified : /trunk/Sources/ModerationCenter.php
Modified : /trunk/Sources/Modlog.php
Modified : /trunk/Sources/MoveTopic.php
Modified : /trunk/Sources/Notify.php
Modified : /trunk/Sources/PackageGet.php
Modified : /trunk/Sources/Packages.php
Modified : /trunk/Sources/PersonalMessage.php
Modified : /trunk/Sources/Poll.php
Modified : /trunk/Sources/Post.php
Modified : /trunk/Sources/Post2.php
Modified : /trunk/Sources/PostModeration.php
Modified : /trunk/Sources/PrettyUrls-Filters.php
Modified : /trunk/Sources/Printpage.php
Modified : /trunk/Sources/Profile-Actions.php
Modified : /trunk/Sources/Profile-Modify.php
Modified : /trunk/Sources/Profile-View.php
Modified : /trunk/Sources/Profile.php
Modified : /trunk/Sources/QueryString.php
Modified : /trunk/Sources/QuickMod.php
Modified : /trunk/Sources/QuoteFast.php
Modified : /trunk/Sources/Recent.php
Modified : /trunk/Sources/Register.php
Modified : /trunk/Sources/Reminder.php
Modified : /trunk/Sources/RemoveTopic.php
Modified : /trunk/Sources/RepairBoards.php
Modified : /trunk/Sources/Reports.php
Modified : /trunk/Sources/ScheduledTasks.php
Modified : /trunk/Sources/Search.php
Modified : /trunk/Sources/Search2.php
Modified : /trunk/Sources/SearchAPI-Custom.php
Modified : /trunk/Sources/SearchAPI-Fulltext.php
Modified : /trunk/Sources/Security.php
Modified : /trunk/Sources/SendTopic.php
Modified : /trunk/Sources/SplitTopics.php
Modified : /trunk/Sources/Stats.php
Modified : /trunk/Sources/Sticky.php
Modified : /trunk/Sources/Subs-Admin.php
Modified : /trunk/Sources/Subs-Auth.php
Modified : /trunk/Sources/Subs-BoardIndex.php
Modified : /trunk/Sources/Subs-Boards.php
Modified : /trunk/Sources/Subs-Calendar.php
Modified : /trunk/Sources/Subs-Categories.php
Modified : /trunk/Sources/Subs-Charset.php
Deleted : /trunk/Sources/Subs-Database.php
Modified : /trunk/Sources/Subs-Editor.php
Modified : /trunk/Sources/Subs-Graphics.php
Modified : /trunk/Sources/Subs-Login.php
Modified : /trunk/Sources/Subs-Membergroups.php
Modified : /trunk/Sources/Subs-Members.php
Modified : /trunk/Sources/Subs-MembersOnline.php
Modified : /trunk/Sources/Subs-Menu.php
Modified : /trunk/Sources/Subs-MessageIndex.php
Modified : /trunk/Sources/Subs-OpenID.php
Modified : /trunk/Sources/Subs-Package.php
Modified : /trunk/Sources/Subs-Post.php
Modified : /trunk/Sources/Subs-PrettyUrls.php
Modified : /trunk/Sources/Subs-Recent.php
Modified : /trunk/Sources/Subs.php
Modified : /trunk/Sources/Subscriptions-PayPal.php
Modified : /trunk/Sources/Suggest.php
Modified : /trunk/Sources/Themes.php
Modified : /trunk/Sources/Unread.php
Modified : /trunk/Sources/Unreadreplies.php
Modified : /trunk/Sources/ViewQuery.php
Modified : /trunk/Sources/ViewSMFile.php
Modified : /trunk/Sources/Who.php
Modified : /trunk/Themes/default/Errors.template.php
Modified : /trunk/other/install.php
Modified : /trunk/subscriptions.php

Posted: December 1st, 2010, 11:36 PM

Revision: 328
Author: arantor
Date: 00:11:26, 02 December 2010
Message:
! Stupid bugfix for installer looking for the wrong file (install.php)
! Remove boardmod support (Packages.php, Subs-Package.php, Packages.template.php)
----
Modified : /trunk/Sources/Packages.php
Modified : /trunk/Sources/Subs-Package.php
Modified : /trunk/Themes/default/Packages.template.php
Modified : /trunk/other/install.php

Posted: December 2nd, 2010, 01:11 AM

Revision: 329
Author: arantor
Date: 00:32:51, 02 December 2010
Message:
! Reformatted the browse packages template to have a single subfunction handling the different lists of add-ons rather than doing it 4 times (Packages.template.php)
----
Modified : /trunk/Themes/default/Packages.template.php