Jump to content

Forum Upgrade Status


Jon
 Share

Recommended Posts

  • Administrators

Signatures have been rebuilt but there is a bug so most bbcode still hasn't converted. In the majority of cases if you just open your signature for editing and then save it, it should be ok.

Edit: I've run a script to fix up 'color' bbcode in signatures. Still have img and url to do.

Edited by Jon
Link to comment
Share on other sites

  • Jon featured this topic
  • Administrators

There has been a problem with the conversion of posts that contain backslashes outside of code blocks and they have been stripped out.

So this:

C:\Program Files\Something

Will have become this:

C:Program FilesSomething

However anything that was using the [ code] or [ autoit] code boxes will be ok (i.e. the really important stuff) because they were processed differently during the upgrade.

; This will have been ok
$var = "C:\Program Files\Something"

There is no easy way to fix this aside from doing a full rollback to Saturday morning, and as the code boxes are intact I'm not going to do that.

I'm going to write some scripts to look for commonly used paths that are used to fix them up, such as:

C:\Program Files
C:\Windows
C:\Windows\System32
C:\Program Files\AutoIt
C:\Program Files\AutoIt\Include

 

Edited by Jon
Link to comment
Share on other sites

  • Administrators

Fixed up about 2800 posts and signatures that contained links to other topics that didn't work anymore.

The old urls where in the format:

http://www.autoitscript.com/forum/index.php?showtopic=80636&view=findpost&p=753962

The new:

http://www.autoitscript.com/forum/topic/80636-thesaints-toolbox/?do=findComment&comment=753962

 

Edited by Jon
Link to comment
Share on other sites

  • Moderators

Because of a forum bug, members have temporarily been prevented from deleting their own posts - so think twice before you hit "Submit Reply".

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Jon unfeatured this topic
  • Administrators

I've got an implementation of the code collapse/expand/popup buttons working. This was the main thing missing from the new forum in my mind.

;
; Checks the documentation for various errors

#Region Includes
#include "include\OutputLib.au3"
#EndRegion Includes

#Region Global Variables
#EndRegion Global Variables

#Region Main body of code
Global $g_nExitCode = Main()
Exit $g_nExitCode
#EndRegion Main body of code

#Region Main()
; ===================================================================
; Main()
;
; The main program body.
; Parameters:
;   None.
; Returns:
;   None.
; ===================================================================
Func Main()
  Local $nReturn = 0

  ; Create the output window and initial message.
  _OutputWindowCreate()
  _OutputProgressWrite("==== Output for " & StringTrimRight(@ScriptName, StringLen(".exe")) & " (Help Check) ====" & @CRLF)
  _OutputProgressWrite("Checking... ")

  ; The path to the Help Check directory.
  Local Const $sPath = @ScriptDir & "\include\Help Check"

  ; The path to the Help Check script.
  Local Const $sScript = $sPath & "\Help File Check.au3"

  ; Build the full command to execute.
  Local Const $sCmd = '"' & @AutoItExe & '" /AutoIt3ExecuteScript "' & $sScript & '"'

  ; Run the script.
  $nReturn = _RunWaitForwardOutput("_OutputBuildWrite", $sCmd, $sPath)

  ; Check the return value.
  If $nReturn Then
    _OutputProgressWrite("failed (" & $nReturn & ")." & @CRLF)
  Else
    _OutputProgressWrite("complete." & @CRLF)
  EndIf

  ; Write closing message and wait for close (if applicable).
  _OutputProgressWrite("Finished." & @CRLF & @CRLF) ; Two CRLF's in case of chained output.
  _OutputWaitClosed($nReturn)

  ; Return the value.
  Return $nReturn
EndFunc   ;==>Main
#EndRegion Main()

 

Link to comment
Share on other sites

  • Administrators

Upgraded to 4.0.5.1 from 4.0.4 - some big backend changes so just checking everything is ok in the background.

Release Notes

Edited by Jon
Link to comment
Share on other sites

  • Moderators

User notification options appear to have been reset by the upgrade - you will need to reset them.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Moderators

Since the last upgrade, several members have reported that they cannot get an editor pane when trying to post. 

There is nothing that can be done at the server end -  it seems that this is a cache/browser issue when the editor javascript does not load. The only thing we can suggest is to clear the browser cache and restart the browser.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Administrators

There appears to be a problem uploading .au3 files into the Downloads system. I thought it was mime type related but after some testing I'm fairly certain that it's a weird bug caused by the file extension ending with a numeric. I've reported the bug and the workaround for the time being is upload as .zip.

Edited by Jon
Link to comment
Share on other sites

  • Jon featured this topic
  • Administrators

Removed the geshi code highlighting. It was causing some problems for a few users. No idea why.

Edit: Tweaked the code and re-added for testing.

Edit: And removed again.

Edited by Jon
Link to comment
Share on other sites

  • Melba23 unfeatured this topic
  • 2 weeks later...
  • Jon featured this topic
  • Jon unfeatured and featured this topic
  • Jon unfeatured this topic
 Share

×
×
  • Create New...