Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Chat and Glacier/simpleChat Swing demos #231

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions java/Chat/README.md

This file was deleted.

54 changes: 0 additions & 54 deletions java/Chat/build.gradle

This file was deleted.

28 changes: 0 additions & 28 deletions java/Chat/chatdemo.pro

This file was deleted.

44 changes: 0 additions & 44 deletions java/Chat/config.client

This file was deleted.

This file was deleted.

This file was deleted.

63 changes: 0 additions & 63 deletions java/Chat/src/main/java/com/zeroc/demos/Chat/ChatUtils.java

This file was deleted.

249 changes: 0 additions & 249 deletions java/Chat/src/main/java/com/zeroc/demos/Chat/ChatView.java

This file was deleted.

476 changes: 0 additions & 476 deletions java/Chat/src/main/java/com/zeroc/demos/Chat/Coordinator.java

This file was deleted.

35 changes: 0 additions & 35 deletions java/Chat/src/main/java/com/zeroc/demos/Chat/LoginInfo.java

This file was deleted.

124 changes: 0 additions & 124 deletions java/Chat/src/main/java/com/zeroc/demos/Chat/LoginView.java

This file was deleted.

281 changes: 0 additions & 281 deletions java/Chat/src/main/java/com/zeroc/demos/Chat/MainView.java

This file was deleted.

37 changes: 0 additions & 37 deletions java/Chat/src/main/java/com/zeroc/demos/Chat/StatusBarI.java

This file was deleted.

Binary file removed java/Chat/src/main/resources/icons/128x128/chat.png
Binary file not shown.
Binary file removed java/Chat/src/main/resources/icons/16x16/chat.png
Binary file not shown.
Binary file removed java/Chat/src/main/resources/icons/16x16/user.png
Binary file not shown.
Binary file removed java/Chat/src/main/resources/icons/32x32/chat.png
Binary file not shown.
Binary file removed java/Chat/src/main/resources/icons/32x32/error.ico
Binary file not shown.
Binary file removed java/Chat/src/main/resources/icons/32x32/error.png
Binary file not shown.
35 changes: 0 additions & 35 deletions java/Chat/src/main/slice/Chat.ice

This file was deleted.

118 changes: 0 additions & 118 deletions java/Chat/src/main/slice/ChatSession.ice

This file was deleted.

5 changes: 0 additions & 5 deletions java/Glacier2/README.md
Original file line number Diff line number Diff line change
@@ -4,8 +4,3 @@ Demos in this directory:

Illustrates how to allow a server to call back into a client via a
Glacier2 connection.

- [simpleChat](./simpleChat)

A swing application that shows how to use write a graphical Glacier2
simple chat client.
8 changes: 2 additions & 6 deletions java/Glacier2/build.gradle
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
// Copyright (c) ZeroC, Inc. All rights reserved.
//

['callback', 'simpleChat'].each {
['callback'].each {
def name = it
project(":demoGlacier2${it.capitalize()}") {
slice {
@@ -30,10 +30,6 @@
jar.enabled = false

demoJar("client")

// The simpleChat demo has no serverJar.
if(name != "simpleChat") {
demoJar("server")
}
demoJar("server")
}
}
22 changes: 0 additions & 22 deletions java/Glacier2/simpleChat/Chat.ice

This file was deleted.

492 changes: 0 additions & 492 deletions java/Glacier2/simpleChat/Client.java

This file was deleted.

21 changes: 0 additions & 21 deletions java/Glacier2/simpleChat/README.md

This file was deleted.

46 changes: 0 additions & 46 deletions java/Glacier2/simpleChat/config.client

This file was deleted.

3 changes: 0 additions & 3 deletions java/README.md
Original file line number Diff line number Diff line change
@@ -15,8 +15,6 @@ following additional subdirectories:
- [Manual](./Manual) contains complete examples for some of the code snippets
in the [Ice manual][1].

- [Chat](./Chat) contains a GUI client for the ZeroC [Chat Demo][2].

Refer to the [C++11 demos](../cpp11) for more examples that use the Ice services
(Glacier2, IceGrid, IceStorm).

@@ -113,4 +111,3 @@ Follow these steps to open the project in Android Studio:
Refer to the README.md file in each demo directory for usage instructions.

[1]: https://doc.zeroc.com/ice/3.7/introduction
[2]: https://doc.zeroc.com/technical-articles/general-topics/chat-demo
5 changes: 1 addition & 4 deletions java/settings.gradle
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ def demos = [
'session', 'swing', 'throughput', 'optional', 'context'],
'IceDiscovery' : ['hello', 'replication'],
'IceBox' : ['hello'],
'Glacier2' : ['callback', 'simpleChat'],
'Glacier2' : ['callback'],
'IceStorm' : ['clock'],
'IceGrid' : ['icebox', 'simple'],
'Manual' : ['printer', 'simpleFilesystem']
@@ -32,6 +32,3 @@ demos.each {
project("${projectName}").projectDir = new File("${dir}/${it}")
}
}

include ":demoChat"
project(":demoChat").projectDir = new File("Chat")