summaryrefslogtreecommitdiff
path: root/src/net/tmwserv/loginhandler.cpp
AgeCommit message (Collapse)AuthorFilesLines
2009-10-24REplace instances of TMW with ManaJared Adams1-359/+0
2009-10-07Clean up state machine some moreJared Adams1-2/+2
2009-10-06Some cleanup regarding keeping track of gender for eAthenaThorbjørn Lindeijer1-1/+1
LoginHandler now owns the world list and the token, instead of having them as global variables with pointers to the 'sex' member of the token from the GUI.
2009-10-04Introduced Net::LoginHandler::SetEmailOnRegisterThorbjørn Lindeijer1-2/+1
This "optional action" specifies whether the server expects to get an email address during registration. It is used now instead of having the general handlers of eAthena and tmwserv set a pointer to an email string on the GUI dialogs (to keep things understandable, the dependency should preferably go one way).
2009-10-03Fix the text of an error messageJared Adams1-1/+2
Better grammer and more explanatory.
2009-10-03Do some more post-merge cleanupJared Adams1-0/+5
Fixes a few more bugs
2009-10-03Added support for the "too fast" login errorThorbjørn Lindeijer1-0/+3
So that next time somebody encounters it, it doesn't turn up as "unknown error".
2009-10-01Finish merging registration dialogJared Adams1-1/+2
2009-09-30Merge login state machines for both clientsJared Adams1-3/+75
Also do some cleanup and refactoring of related code.
2009-08-07Gettext fixesKess Vargavind1-20/+20
Trying to use the same kind of capitalization and interpunctuation for various parts of the gui, melding a few split strings, updating POTFILES.in and adding translators' notes.
2009-07-17Various gettext fixesKess Vargavind1-1/+1
* Merged a few split strings * Fixed some spellings and wordings * Turned a couple of std::cout and std::cerr into logger messages
2009-05-07Moved two files which held net data into the net folder. ConsideringTametomo1-1/+1
their function, this is a much better place to put them. Signed-off-by: Tametomo <irarice@gmail.com> Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
2009-05-07Made error strings in tmwserv login handler translatableBjørn Lindeijer1-23/+25
2009-04-12Append _F or _M to username in eAthena network layerBjørn Lindeijer1-3/+4
Abstracts it away and out of main.cpp and register.cpp.
2009-04-07Make GeneralHandlers for both networksJared Adams1-5/+54
Also make Net::LogoutHandler
2009-03-27Changed the includes for the net/tmwserv/ directoryBjørn Lindeijer1-5/+6
2009-03-26Fixes to file headers and header guardsBjørn Lindeijer1-4/+4
Mostly removal of branding for tmwserv related files, as was done for the eAthena client before.
2009-03-23Move all TMWServ-specific code to net/tmwservJared Adams1-0/+225
Also fix several instances where the same net handler was being used for both servers, and a few other related oddities.