Jump to content
Xtreme .Net Talk

Recommended Posts

Posted (edited)

We'll be updating the forum software today (Dec. 15).

 

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

 

We've 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

Edited by SoftWareRevue

Have a community? Have questions?

ForumUniversity's GlobalWarming Awareness2007 project.

  • Leaders
Posted
What happened to syntax highlighting on VB and C# code? I've 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?
[sIGPIC]e[/sIGPIC]
Posted

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 it's nice. However, I really don't like the skyscraper ads being on every single page - it would be much better laid out if they weren't 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.

 

:)

Never trouble another for what you can do for yourself.
Posted

I'm not a huge fan of the side banner but I understand the business requirement for more ad space. I'd 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 you're 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.

  • Leaders
Posted (edited)
Frankly, I don't see the need for multi-quote. What will it do except clog up the threads? (I'm not being sarcastic, I'm just wondering if there is something I'm missing.) And the skyscraper ad banner... well, I'd rather see an extra ad at the top or bottom of each page. I can't 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. That's all I'm gonna say because it's not like I'm the one paying to host the site. Edited by snarfblam
[sIGPIC]e[/sIGPIC]
  • *Experts*
Posted

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 haven't had a chance to use many of the new features yet, though the "edit post" looks much nicer.

 

-ner

"I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
  • 1 month later...
Posted

[PLAIN]

and

[/PLAIN]

 

Has there been any action towards getting [PLAIN]

and

[/PLAIN] working again? I've 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 that's not likely to happen soon I might start colouring code "manually" (ala marble_eater).

Never trouble another for what you can do for yourself.
  • Leaders
Posted

I wouldn't really call my syntax highlighting "manual." I actually use two programs I've 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.

private bool CheckChar(char c) {
   if(text[chrOffset] != c) return false;
   
   chrOffset++; // seek past char
   return true;
}

[sIGPIC]e[/sIGPIC]
  • 3 weeks later...
Posted

Small CS bug

 

Good job! The line numbers and scrollbars are a welcome addition. Not sure about the VB colour scheme, but I'm sure I'll get used to it. However, I don't know if you've spotted the little bug with the [PLAIN]

[/PLAIN] 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:

 

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 #.

Never trouble another for what you can do for yourself.
Posted

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. I'm using the cs tags.

 

Code:

  1. class super
  2. {
  3. public int yoyo()
  4. {
  5. // do stuff
  6. MessageBox.Show("YOYO!");
  7. }
  8. }

 

 

And now the same code block reentered after editing:

 

class super
{
  public int yoyo()
  {
     // do stuff
     MessageBox.Show("YOYO!");
   }
}

Posted

Re: Small CS bug

 

I did switch editing modes becuase I couldn't 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?

  • 3 weeks later...
Posted

Scrollbars and wide posts

 

I like the idea of horizontal scrollbars on code segments to prevent posts getting ridiculously wide, but at the moment they're totally ineffective, as can be seen in this thread. It's hardly worth using a scrollbar at all if the box is almost as wide as the code it contains.

Never trouble another for what you can do for yourself.
Posted

Re: Scrollbars and wide posts

 

It's 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.
Posted

IE problem

 

I think it might just be IE making code blocks so wide. In Firefox they display fine.

Never trouble another for what you can do for yourself.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...