Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

Compiling src_workspace

Avatar

Not applicable
I am trying to modify workspace, so that when a user clicks logout it asks him to close the browser.



I have edited build.xml like it is written in customize workspace .pdf file for successful compile of workspace_src.



var request:URLRequest = new URLRequest("javascript:window.opener=self; window.close();") ;

navigateToURL(request,"_self");



is the code that I add to doLogin() function.



I tried to compile the workspace_src target in ant script and then recompile using clean, build war, build ear targets.



I also tried to first clean, the build all.



I alse added some Alerts randomly in code just to check ... but it looks like editing code in workspace_src folder does not have any effect in functionality of workspace.



Can you please elaborate? Am I building it wrong?



Thank you in advance.
2 Replies

Avatar

Not applicable
I succeded in making changes to workspace by modifying build xml<br /><br /><target name="buildWar" depends="compileSrc, updateTemplate, compileTheme"><br /><br />to <br /><br /><target name="buildWar" depends="compileWorkspaceSrc, updateTemplate, compileTheme"><br /><br />But now I can't use custom login page that I made in \src dir. So I tried<br /><br /><target name="buildWar" depends="compileWorkspaceSrc, compileSrc, updateTemplate, compileTheme"><br /><br />And now I don't get the changes I made in src_workspace.

Avatar

Not applicable
Well I did what I needed to do with customizing \src_workspace , but this is a unsupported feature according to customize workspace.pdf .



Why is this so?