a huge commit. splitting extensions into their own sub-packages.

This commit is contained in:
Andrew Gallant (Ocelot)
2012-05-10 17:01:42 -04:00
parent e239bb3c68
commit 0c50dc6241
81 changed files with 51645 additions and 52516 deletions

View File

@@ -3,7 +3,6 @@ package main
import (
"fmt"
"log"
"strings"
"unicode"
)
@@ -23,7 +22,7 @@ type Request struct {
func (r *Request) Initialize(p *Protocol) {
r.srcName = SrcName(p, r.xmlName)
if p.isExt() {
r.srcName = strings.Title(strings.ToLower(p.Name)) + r.srcName
r.srcName = r.srcName
}
if r.Reply != nil {