Forum Upgrade

  • Thread starter Thread starter SoftWareRevue
  • Start date Start date
S

SoftWareRevue

Guest
Well be updating the forum software today (Dec. 15).

We will have to shut the site down for a few minutes while we do.

Weve managed to keep the style looking basically the same. The only things you may notice are some advanced features throughout the forum and a skyscraper banner to the right.

If anyone encounters any bugs after the upgrade, please let us know.

Thanks!

Dennis
 
Last edited:
What happened to syntax highlighting on VB and C# code? Ive gone color blind, and I have double vision (or, at least, all the newlines are doubled). And to make matters worse, the new advertisement banner squeezes this hard-to-read code into a tighter space. Is this a temporary issue?
 
Wasted space in threads

The new multi-quote feature is pretty neat, and post editing is a lot nicer too. There are obviously a few small issues that need to be fixed - syntax highlighting, some missing images (all these), and probably a few others - but its nice. However, I really dont like the skyscraper ads being on every single page - it would be much better laid out if they werent used within threads. The height of the ad typically only spans one or two posts, meaning the rest of the thread contains a considerable amount of wasted space at the right hand edge.

:)
 
Im not a huge fan of the side banner but I understand the business requirement for more ad space. Id rather have that than have ads interspersed with threads. The ability to close the ad (like on the front page) on every page might be a good compromise for the regulars while still serving the ad to all users. The giant gap is a little annoying. Why not go all out and just server ads down the entire right side? If youre going to do it, go all out.

Bringing back the syntax highlighting in the VB/CS tags should be a top priority.

Edit: By the way, sweet in place editing.
 
Frankly, I dont see the need for multi-quote. What will it do except clog up the threads? (Im not being sarcastic, Im just wondering if there is something Im missing.) And the skyscraper ad banner... well, Id rather see an extra ad at the top or bottom of each page. I cant see anyone, not even the regulars, closing the ad on each and every page. Vertical space is infinite on the web. Of horizontal space we have precious little. But anyone who has been around these boards long enough knows it takes me a while to warm up to new things. Thats all Im gonna say because its not like Im the one paying to host the site.
 
Last edited by a moderator:
On the banner... is it possible to get a different set of advertisements? They seem to be geared mostly towards the server-hosting market. If you want click-throughs, the best ads would be geared for developers - 3rd party controls, visual studio plug-ins (such as extra refactoring tools), etc.

I havent had a chance to use many of the new features yet, though the "edit post" looks much nicer.

-ner
 
C#:
and
Code:

Has there been any action towards getting [noparse]
C#:
and
Code:
[/noparse] working again? Ive been using them since the upgrade with the expectation that at some point they will work again and all those posts will become "fixed", but if thats not likely to happen soon I might start colouring code "manually" (ala marble_eater).
 
I wouldnt really call my syntax highlighting "manual." I actually use two programs Ive written: one that applies syntax highlighting to C# code with the output in vB code and an RTF-based formatting tool that produces vB code (which I use for VB, not to be confused with vB). I could (and will, if asked) share them, but I should also point out that PHP syntax highlighting will also usually do the trick for C# code.
PHP:
private bool CheckChar(char c) {
    if(text[chrOffset] != c) return false;
    
    chrOffset++; // seek past char
    return true;
}
 
Small CS bug

Good job! The line numbers and scrollbars are a welcome addition. Not sure about the VB colour scheme, but Im sure Ill get used to it. However, I dont know if youve spotted the little bug with the [noparse]
C#:
[/noparse] tag. The open square bracket [ character is causing a problem:

[code=csharp]string[] strings; byte[] bytes; int[] ints;
string astring; byte abyte; int anint;
bool abool, char achar;

abool = (bytes[10] == (byte) ints[20]);
/* Brackets [] in a comment */ astring[2] = "brackets outside a comment";

Original code:

Code:
string[] strings; byte[] bytes; int[] ints;
string astring; byte abyte; int anint;
bool abool, char achar;

abool = (bytes[10] == (byte) ints[20]);
/* Brackets [] in a comment */ astring[2] = "brackets outside a comment";

It appears the first non-comment [ on a line is being converted to [ (HTML code for the bracket) which is then being converted to [ with the result of the line becoming a comment starting at the #.
 
Re: Small CS bug

Not to sound too ungrateful, but editing and copying the new code blocks results in funny, terrible things. To demonstrate I will post a code block, then edit and post another code block. Im using the cs tags.

Code:
  1. [FONT=Courier New,Courier,monospace]class super[/FONT]
  2. [FONT=Courier New,Courier,monospace]{[/FONT]
  3. [FONT=Courier New,Courier,monospace] public int yoyo()[/FONT]
  4. [FONT=Courier New,Courier,monospace] {[/FONT]
  5. [FONT=Courier New,Courier,monospace] // do stuff[/FONT]
  6. [FONT=Courier New,Courier,monospace] MessageBox.Show("YOYO!");[/FONT]
  7. [FONT=Courier New,Courier,monospace] }[/FONT]
  8. [FONT=Courier New,Courier,monospace]} [/FONT]


And now the same code block reentered after editing:

C#:
class super
{
   public int yoyo()
   {
      // do stuff
      MessageBox.Show("YOYO!");
    }
}
 
Re: Small CS bug

I did switch editing modes becuase I couldnt get any more editing space outside of the code block at the end of the editing space. Perhaps that had something to do with it?
 
Scrollbars and wide posts

I like the idea of horizontal scrollbars on code segments to prevent posts getting ridiculously wide, but at the moment theyre totally ineffective, as can be seen in this thread. Its hardly worth using a scrollbar at all if the box is almost as wide as the code it contains.
 
Re: Scrollbars and wide posts

MrPaul said:
Its hardly worth using a scrollbar at all if the box is almost as wide as the code it contains.
Remember that because pages are rendered client side and not everyone is running the same screen resolution/size as you, relatively sized boxes may not appear the same sizes for everyone.
 
Back
Top