source: companies/celepar/jabberit_messenger/readme.txt @ 763

Revision 763, 6.8 KB checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

Line 
1To deploy Jeti copy the extracted contents to your website, you only have to copy the plugins and emoticons that you want to use. If you changed some plugins or emoticons you should update the plugins.xml and/or the emoticons.xml files. You can do that by hand with a text editor, or by running Jeti as standalone java application (java -jar applet.jar, or double click on the applet.jar file). If you can't run it at you webhost run it localy and copy the xml file to your webhost. You should also add the plugins you use to the applet tag in the html file you use to start Jeti
2
3There are no requirements to your webhost, only the browsers of your users must have at least java 1.4
4
5If you want some advertisment for your applet you can add it to the Jeti applets page: http://jeti.sourceforge.net/mwiki/index.php/Jeti_Sites
6
7The Jeti applet can be configured in different ways to match your requirements, if your changes don't work, you can try to restart your browser or clear the java cache All things that can be changed in the normal Jeti can also be changed in the applet version, just start it as java application as written above. If you want the applet to use automatic language detection open the preferences.xml file and remove the lines <preference key="jeti.country" value="(country ID)"/>
8<preference key="spell.defaultLanguage" value="(language)"/>
9and upload the preferences.xml file to your webhost
10
11If you want to lock the preferences so the users can't change them you can copy the lines you don't want the users to change to a new file called default.xml and put it in the root jeti directory. The default.xml also has some extra options to remove some menu entries, just add them to that file. The default.xml file should start with <?xml version='1.0'?> <preferences> and end with </preferences> with some <preference key="" value="false"> between.
12
13Extra default.xml options:
14Main Jeti menu
15<preference key="jeti.jetimenuShowMessage" value="false"/>
16<preference key="jeti.jetimenuShowAccount" value="false"/>
17<preference key="jeti.jetimenuShowOptions" value="false"/>
18<preference key="jeti.jetimenuShowLog" value="false"/>
19<preference key="jeti.jetimenuShowAddContact" value="false"/>
20<preference key="jeti.jetimenuShowChat" value="false"/>
21<preference key="jeti.jetimenuShowExit" value="false"/>
22<preference key="jeti.jetimenuShowComment" value="false"/>
23
24Roster menu
25<preference key="jeti.rostermenuShowMessage" value="false"/>
26<preference key="jeti.rostermenuShowChat" value="false"/>
27<preference key="jeti.rostermenuSubscriptions" value="false"/>
28<preference key="jeti.rostermenuRemove" value="false"/>
29<preference key="jeti.rostermenuRename" value="false"/>
30<preference key="jeti.rostermenuGroup" value="false"/>
31<preference key="jeti.rostermenuLocalTime" value="false"/>
32<preference key="jeti.rostermenuLocalVersion" value="false"/>
33<preference key="jeti.rostermenuLastSeen" value="false"/>
34<preference key="jeti.rostermenuInvisible" value="false"/>
35
36Change the jid where comments are send to from the comment/bug window <preference key="jeti.commentJID" value="a jid"/>
37
38Hide the servers pane in the Jeti main window
39<preference key="jeti.hideServerPanel" value="true"/>
40
41Hide the text error in the servers pane on a error
42<preference key="jeti.jetiShowError" value="false"/>
43
44Hide the groupchat Menu in the groupchat window
45<preference key="groupchat.hideGroupchatMenu" value="true"/>
46Hide the groupchat menu entry in the Jeti menu
47<preference key="groupchat.hideGroupchatMenuEntry" value="true"/>
48Hide the groupchat status change button
49<preference key="groupchat.hideGroupchatStatusButton" value="true"/>
50<preference key="groupchat.hideServerChooser" value="true"/>
51<preference key="groupchat.defaultGroupchatServer" value="groupchat.server.tld"/>The groupchat server to use
52<preference key="groupchat.hideNicknameChooser" value="true"/>
53
54Disable the private chat options in groupchat
55<preference key="groupchat.privateMessageingAllowed" value="false"/>
56
57Things to hide in the login window
58Hide the whole window
59<preference key="jeti.hideLoginWindow" value="true"/>
60Hide the server selection box
61<preference key="jeti.hideServerSelect" value="true"/>
62Hide the port and ssl selection in the login window
63<preference key="jeti.hidePortSelect" value="true"/>
64Hide the resource input field
65<preference key="jeti.hideResourceInput" value="true"/>
66Hide the register button
67<preference key="jeti.hideRegisterButton" value="true"/>
68
69Anonymous Login
70Anonymous login using SASL only works with the xmpp plugin enabled and the server supporting it
71<preference key="xmpp.anonymousLogin" value="true"/>
72The jabber server basil.cd.chalmers.se supports this, but only allows you to use the groupchats at conference.jabber.cd.chalmers.se. You can also use this server without the XMPP plugin by just login in with any username/password
73
74There are also some options you can set in the applet tag in the jeti.html file (see jetiParams.html for an example)
75
76<PARAM NAME=SERVER VALUE="The jabber server to connect with" >
77<PARAM NAME=HOST VALUE="The server to connect with, if it is different then the jabber server" >
78<PARAM NAME=PORT VALUE=5223 > The port to connect to
79<PARAM NAME=SSL VALUE=true > (Use SSL or not)
80<PARAM NAME=USER VALUE="username" > The username
81<PARAM NAME=PASSWORD VALUE="password" > The password of the user (for automatic login)
82<PARAM NAME=GROUPCHATSERVER VALUE="groupchat.server"> The groupchat server to connect to on load
83<PARAM NAME=GROUPCHATROOM VALUE="room" > The groupchat room to connect to on load
84<PARAM NAME=GROUPINVITE VALUE="jid1,jid2,jid3" > Invite the specified users users to the room if the applet is started
85<PARAM NAME=GROUPCHATROOM2 VALUE="room" > The second groupchat room to connect to on load, only works with SHOWGROUPCHATASMAIN
86<PARAM NAME=RESOURCE VALUE=JetiApplet > The resource, when "random" Jeti will choose a random one
87<PARAM NAME=CHATTO VALUE="user@server" > open a chat to user on login
88<PARAM NAME=SHOWCHATTOASMAIN value="TRUE"> show the chatwindow defined in chatto as main window <PARAM NAME=SHOWGROUPCHATASMAIN VALUE="TRUE"> hide the main Jeti window and show only the groupchat window
89<PARAM NAME=HIDELOGINSTATUS VALUE="TRUE" > Hide the login status window
90<PARAM NAME=EXITPAGE VALUE="an url" > The url Jeti should go to on exit. Use "javascript:window.close();" as value to close the window on exit
91<PARAM NAME=GROUPCHATNICK VALUE="nickname"> The nickname to use in the groupchat on load (otherwise it uses the JID username as nick, or it asks the user if RESOURCE has the value random)
92<PARAM NAME=OWNNAME VALUE="nickname"> Your name in the chatwindows
93
94You can also use the jeti preferences in the applet parameters to allow for dynamic per user preferences for example:
95<PARAM NAME=DEFAULTPREFERENCES VALUE="jeti.enterSends#false;jeti.menutop#true;jeti.language#it;metaltheme.color1#-3088897;
Note: See TracBrowser for help on using the repository browser.