FreeTextBoxWrapper for Community Server v2.1 & v2007 (Refresh)

Αρχειοθήκη / Addins No Comments

Έχει περάσει κάμποσος καιρός από τότε έκανα τις δημοσιεύσεις για το FreeTextBoxWrapper control για τον for Community Server v2.1 & v2007. Αν και δεν ήταν στα σχέδιά μου να ασχοληθώ ξανά με αυτά τα controls, έχω δεχτεί πολλές ερωτήσεις, αν θα ήταν δυνατόν να τα ενημερώσω με την τελευταία έκδοση του FreeTextBox assembly, ώστε να είναι δυνατόν να υποστηρίξουν τους καινούργιους browsers...

Διαβάστε περισσότερα →

CS 2007.1 - Greek (el-gr) Language Pack

Αρχειοθήκη / Translations No Comments

Greek Translation for CS 2007.1
Client part is complete, Administration part us almost complete.

Please feel free to contact me for more corrections/suggestions.

Διαβάστε περισσότερα →

NetSpell v2.1.7 - .NET Framework v2.0 port

Αρχειοθήκη / Projects No Comments

Ο κώδικας για το NetSpell library που υπάρχει στο SourgeForge.net είναι για Visual Studio 2003 και είναι γραμμένο σε .NET Framework v1.1. Η έκδοση του κώδικα που υπάρχει στο συνημένο αρχείο, έχει γίνει port για .ΝΕΤ Framework v2.0 και επιπλέον υπάρχει Ελληνικό spelling dictionary. Αν θέλετε να προσθέσετε δυνατότητες spelling για την ελληνική γλώσσα στην .NET Framework v2.0 εφαρμογή...

Διαβάστε περισσότερα →

Dark Theme

Αρχειοθήκη / Themes No Comments

Διαβάστε περισσότερα →

CS v2.1 SP2 - Greek (el-gr) Language Pack

Αρχειοθήκη / Translations No Comments

Greek Translation for CS v2.1SP2
Client part is complete, Administration part us almost complete.

Please feel free to contact me for more corrections/suggestions.

Διαβάστε περισσότερα →

CS 2007 SP1 - Greek (el-gr) Language Pack

Αρχειοθήκη / Translations No Comments

Greek Translation for CS 2007 SP1
Client part is complete, Administration part us almost complete.

Please feel free to contact me for more corrections/suggestions.

Διαβάστε περισσότερα →

CS v2.1 SP3 - Greek (el-gr) Language Pack

Αρχειοθήκη / Translations No Comments

Greek Translation for CS v2.1 SP3
Client part is complete, Administration part us almost complete.

Last update: 12/6/2007

  • The files included in the previous version was not the correct ones!

Please feel free to contact me for more corrections/suggestions.

Διαβάστε περισσότερα →

CS 2007 - Greek (el-gr) Language Pack

Αρχειοθήκη / Translations No Comments

Greek Translation for CS 2007 RTW

Client part is complete, Administration part us almost complete.

Please feel free to contact me for more corrections/suggestions.

Διαβάστε περισσότερα →

CodeHighlight CSModule for CS v2007 RTM

Αρχειοθήκη / Modules No Comments

In order to install the CodeHilight CSModule under Community Server - this CSModule works only with CS v2007 RTM - in order to download a CS v2007 RC1 version of the component get " CodeHighlight CSModule for CS v2007 RC1 ": Step 1 : In communityserver.config, replace the line < add name ="ForumSourceCode" type ="CommunityServer.Discussions.Components.SourceCodeModule, CommunityServer...

Διαβάστε περισσότερα →

CodeHighlight CSModule for CS v2.1 SP2

Αρχειοθήκη / Modules No Comments

In order to install the CodeHilight CSModule under Community Server - this CSModule works only with CS v2.1 SP2:

Step 1:
In communityserver.config, replace the line


	<add name="ForumSourceCode" type="CommunityServer.Discussions.Components.SourceCodeModule, CommunityServer.Discussions" />

with the lines


  <add name="ForumSourceCode" type="CommunityServer.Discussions.Components.SourceCodeModule, CommunityServer.Discussions" enabled="false" />
  <add name="SourceCode" type="CommunityServer.CodeHighlight.CodeHighlighter, CommunityServer.CodeHighlight" />

Step 2:
Add in web.config, just under the <configuration> tag on the top of the file:


    <configSections>
        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
            <section name="CommunityServer.CodeHighlight.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        </sectionGroup>
    </configSections>
    <applicationSettings>
        <CommunityServer.CodeHighlight.Properties.Settings>
            <setting name="CodeWrapperHTML" serializeAs="String">
                <value>&lt;pre style="overflow: scroll; background-color: #f2f2f2;"&gt;{0}&lt;/pre&gt;</value>
            </setting>
            <setting name="UseLineNumbers" serializeAs="String">
                <value>False</value>
            </setting>
            <setting name="NumberWrapperHTML" serializeAs="String">
                <value>&lt;table border="0" cellpadding="0" cellspacing="0" style="background-color: #f2f2f2; border: solid 1px #e5e5e5; width: 100%;"&gt;
    &lt;tr style="vertical-align: top; line-height: normal;"&gt;
        &lt;td style="width: 40px; text-align: right;"&gt;
            &lt;pre style="font-family: courier new; font-size: 11px; color: gray; margin: 0px; padding: 2px; border-right: solid 1px #e7e7e7;"&gt;{0}&lt;/pre&gt;&lt;/td&gt;
        &lt;td&gt;
            &lt;pre style="overflow: scroll; margin:0px; padding: 2px; padding-left: 8px;"&gt;{1}&lt;/pre&gt;&lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;</value>
            </setting>
        </CommunityServer.CodeHighlight.Properties.Settings>
    </applicationSettings>

Customize your installation:
The HTML code produced is surrounded with the HTML code in CodeWrapperHTML setting, and if the option to include line numbers is included - setting UseLineNumbers - then the HTML code in NumberWrapperHTML is used.

Use of [code][/code] tags:
In order to use the code highlighting in your posts use the tags [code language="C#"][/code] in a post's body. Languages supported: ASPX, C, C++, C#, COBOL, Eiffel, Fortan, Haskell, HTML, Java, Javascript, Mercury, MSIL, Pascal, Perl, PHP, Python, Ruby, SQL, Visual Basic, VBScript, VB.NET, XML. Make sure that the code pasted in your post, has no previous formating - copy the code to notepad first and then to the post's body in order to remove formating.

In order to make the HTML rendering, the CSModule uses the Highlight library of Thomas Johansen and Christian Nordbakk.

You are welcome to feedback,
George J.
george@capnias.org

Διαβάστε περισσότερα →