Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appinventor-sources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
appinventor-sources
Commits
a4f52040
Commit
a4f52040
authored
Sep 06, 2023
by
SusanRatiLane
Committed by
Jeffrey Schiller
Sep 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore ability to export multiple selected projects
parent
d36e9234
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
appinventor/appengine/src/com/google/appinventor/client/actions/ExportProjectAction.java
...oogle/appinventor/client/actions/ExportProjectAction.java
+3
-2
No files found.
appinventor/appengine/src/com/google/appinventor/client/actions/ExportProjectAction.java
View file @
a4f52040
...
...
@@ -17,8 +17,10 @@ import com.google.appinventor.client.utils.Downloader;
import
com.google.appinventor.shared.rpc.ServerLayout
;
import
com.google.gwt.user.client.Command
;
import
java.util.List
;
import
java.util.logging.Logger
;
public
class
ExportProjectAction
implements
Command
{
private
static
final
Logger
LOG
=
Logger
.
getLogger
(
ExportProjectAction
.
class
.
getName
());
@Override
public
void
execute
()
{
if
(
Ode
.
getInstance
().
getCurrentView
()
==
Ode
.
PROJECTS
)
{
...
...
@@ -60,7 +62,6 @@ public class ExportProjectAction implements Command {
selectedProjPath
+=
project
.
getProjectId
()
+
"-"
;
}
Downloader
.
getInstance
().
download
(
ServerLayout
.
DOWNLOAD_SERVLET_BASE
+
ServerLayout
.
DOWNLOAD_SELECTED_PROJECTS_SOURCE
+
"/"
+
selectedProjPath
);
Downloader
.
getInstance
().
download
(
selectedProjPath
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment