Skip to content

Commit

Permalink
Implemented Feature #235 - Smuxi Server Manager (closes: #235)
Browse files Browse the repository at this point in the history
Making use of NDesk.Options.cs for options parsing
Added a new classe in Engine "UserListController" that will help in the
future manage users of the engine.

MonoDevelop solutions and Makefiles modified
Modified POTFILES.in files to include new files were translatable strings are now present.
  • Loading branch information
moonpyk committed Jan 8, 2010
1 parent df29d25 commit 32ed9a5
Show file tree
Hide file tree
Showing 9 changed files with 1,427 additions and 40 deletions.
1 change: 1 addition & 0 deletions po-Engine/POTFILES.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
src/Engine/FrontendManager.cs
src/Engine/Protocols/ProtocolManagerBase.cs
src/Engine/Session.cs
src/Engine/Config/UserListController.cs
1 change: 1 addition & 0 deletions po-Server/POTFILES.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
src/Server/Server.cs
src/Server/Main.cs
5 changes: 3 additions & 2 deletions src/Common/Common.mdp
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<Output directory="../../bin/debug" assembly="smuxi-common" />
<Build debugmode="False" target="Library" />
<Execution consolepause="True" runwithwarnings="False" runtime="MsNet" clr-version="Net_2_0" />
<CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" definesymbols="DEBUG,TRACE,LOG4NET,NET_2_0" generatexmldocumentation="False" ctype="CSharpCompilerParameters" />
<CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" definesymbols="DEBUG,TRACE,LOG4NET,NET_2_0,NDESK_OPTIONS" generatexmldocumentation="False" ctype="CSharpCompilerParameters" />
</Configuration>
<Configuration name="Release" ctype="DotNetProjectConfiguration">
<Output directory="../../bin/release" assembly="smuxi-common" />
<Build debugmode="False" target="Library" />
<Execution consolepause="True" runwithwarnings="True" runtime="MsNet" clr-version="Net_2_0" />
<CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" definesymbols="NET_2_0" generatexmldocumentation="False" ctype="CSharpCompilerParameters" />
<CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" definesymbols="NET_2_0,NDESK_OPTIONS" generatexmldocumentation="False" ctype="CSharpCompilerParameters" />
</Configuration>
</Configurations>
<Contents>
Expand All @@ -23,6 +23,7 @@
<File subtype="Code" buildaction="Compile" name="LibraryCatalog.cs" />
<File subtype="Code" buildaction="Compile" name="Defines.cs" />
<File subtype="Code" buildaction="Compile" name="TaskQueue.cs" />
<File subtype="Code" buildaction="Compile" name="NDesk.Options.cs" />
</Contents>
<References>
<ProjectReference type="Assembly" localcopy="True" refto="../../lib/log4net.dll" />
Expand Down
5 changes: 3 additions & 2 deletions src/Common/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ EXTRA_DIST =

if ENABLE_RELEASE
ASSEMBLY_COMPILER_COMMAND = @MCS@
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -optimize+ "-define:NET_2_0"
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -optimize+ "-define:NET_2_0,NDESK_OPTIONS"

ASSEMBLY = ../../bin/release/smuxi-common.dll
ASSEMBLY_MDB =
Expand All @@ -19,7 +19,7 @@ endif

if ENABLE_DEBUG
ASSEMBLY_COMPILER_COMMAND = @MCS@
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -optimize+ "-define:DEBUG,TRACE,LOG4NET,NET_2_0"
ASSEMBLY_COMPILER_FLAGS = -noconfig -codepage:utf8 -warn:4 -optimize+ "-define:DEBUG,TRACE,LOG4NET,NET_2_0,NDESK_OPTIONS"

ASSEMBLY = ../../bin/debug/smuxi-common.dll
ASSEMBLY_MDB =
Expand Down Expand Up @@ -49,6 +49,7 @@ FILES = \
MD5.cs \
FastSerializer.cs \
LibraryCatalog.cs \
NDesk.Options.cs \
Defines.cs \
TaskQueue.cs

Expand Down
Loading

0 comments on commit 32ed9a5

Please sign in to comment.