Browse Source

moved around source code and reconfigured the eclipsefp project a bit

master
Jon Kristensen 14 years ago
parent
commit
1adf789309
  1. 4
      .hsproject
  2. 20
      .project
  3. 2
      Examples/EchoClient.hs
  4. 0
      Network/XMPP.hs
  5. 0
      Network/XMPP/Address.hs
  6. 0
      Network/XMPP/SASL.hs
  7. 0
      Network/XMPP/Session.hs
  8. 0
      Network/XMPP/SessionOld.hs
  9. 0
      Network/XMPP/Stanza.hs
  10. 0
      Network/XMPP/Stream.hs
  11. 0
      Network/XMPP/TLS.hs
  12. 0
      Network/XMPP/Types.hs
  13. 0
      Network/XMPP/Utilities.hs
  14. 3
      pontarius-xmpp.cabal

4
.hsproject

@ -1,4 +0,0 @@ @@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<haskellProject>
<sourcePath path="Source"/>
<compiler>ghcCompiler</compiler></haskellProject>

20
.project

@ -5,6 +5,26 @@ @@ -5,6 +5,26 @@
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>net.sf.eclipsefp.haskell.core.partitioned.uuagc.UuagcBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>net.sf.eclipsefp.haskell.core.partitioned.happy.HappyBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>net.sf.eclipsefp.haskell.core.partitioned.alex.AlexBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>net.sf.eclipsefp.haskell.core.hlint.HLintBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>net.sf.eclipsefp.haskell.core.builder.HaskellBuilder</name>
<arguments>

2
Source/Examples/EchoClient.hs → Examples/EchoClient.hs

@ -21,7 +21,7 @@ userName = "pontarius" @@ -21,7 +21,7 @@ userName = "pontarius"
serverIdentifier = "jonkristensen.com"
portNumber = 5222
resource = "pontarius"
password = "substrat44"
password = ""
-- The main function initializes Pontarius XMPP and specifies the (XMPPT)

0
Source/Network/XMPP.hs → Network/XMPP.hs

0
Source/Network/XMPP/Address.hs → Network/XMPP/Address.hs

0
Source/Network/XMPP/SASL.hs → Network/XMPP/SASL.hs

0
Source/Network/XMPP/Session.hs → Network/XMPP/Session.hs

0
Source/Network/XMPP/SessionOld.hs → Network/XMPP/SessionOld.hs

0
Source/Network/XMPP/Stanza.hs → Network/XMPP/Stanza.hs

0
Source/Network/XMPP/Stream.hs → Network/XMPP/Stream.hs

0
Source/Network/XMPP/TLS.hs → Network/XMPP/TLS.hs

0
Source/Network/XMPP/Types.hs → Network/XMPP/Types.hs

0
Source/Network/XMPP/Utilities.hs → Network/XMPP/Utilities.hs

3
pontarius-xmpp.cabal

@ -25,7 +25,6 @@ Tested-With: GHC ==7.0.2 @@ -25,7 +25,6 @@ Tested-With: GHC ==7.0.2
-- Extra-Tmp-Files:
Library
Exposed-Modules: Network.XMPP
Exposed: True
Build-Depends: base >= 2 && < 5, parsec, enumerator, crypto-api ==0.6.3,
base64-string, pureMD5, utf8-string, network, xml-types,
@ -34,7 +33,7 @@ Library @@ -34,7 +33,7 @@ Library
stringprep, asn1-data, cryptohash ==0.7.0,
time, certificate, ranges, uuid
-- Other-Modules:
HS-Source-Dirs: Source
-- HS-Source-Dirs:
-- Extensions:
-- Build-Tools:
-- Buildable:

Loading…
Cancel
Save