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

LPS-74205 Build lang #52785

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f2332bc
LPS-75209 Try to find reference page at the original site in case whe…
pavel-savinov Oct 16, 2017
99de6f1
LPS-75209 Should return content
jkappler Nov 3, 2017
e2471e7
subrepo:ignore Update 'modules/apps/web-experience/journal/.gitrepo'.
liferay-continuous-integration Nov 7, 2017
989750e
LPS-75174 Simplify message format
marcellustavares Nov 3, 2017
89a17c5
LPS-75174 Update tests
marcellustavares Nov 3, 2017
3cb7e2a
LPS-75174 Make some properties explicitly required
marcellustavares Nov 3, 2017
e57f0b5
LPS-75174 Update tests
marcellustavares Nov 3, 2017
9470db6
LPS-75174 Add final to classes definition
marcellustavares Nov 3, 2017
9e398ac
LPS-75174 Make sure the message contains at least one event
marcellustavares Nov 3, 2017
3d40a67
LPS-75174 Add unit test
marcellustavares Nov 3, 2017
ef7177c
LPS-75174 Not needed
marcellustavares Nov 3, 2017
d7c8468
LPS-75174 SF
marcellustavares Nov 3, 2017
07aaa5a
subrepo:ignore Update 'modules/apps/analytics/.gitrepo'.
liferay-continuous-integration Nov 7, 2017
ac08442
LPS-74849 Apply using 'StringBundler.compat'
hhuijser Oct 30, 2017
608c942
LPS-74849 need StringBundler#concat
hhuijser Oct 30, 2017
d611246
LPS-75010 Apply com.liferay.petra.string.CharPool
tomwang2011 Oct 23, 2017
a2c61eb
LPS-75010 Apply to build.gradle
tomwang2011 Oct 23, 2017
db64865
LPS-75359 Fix test dependencies for "adaptive-media"
Ithildir Oct 28, 2017
027202a
LPS-74849 Update docker image to fix "Unresolved requirement: Import-…
Oct 31, 2017
07f212d
LPS-75359 reviewed adaptive-media-journal-editor-configuration
brianchandotcom Nov 3, 2017
f0877a1
LPS-75359 adaptive-media-journal-web #todo
brianchandotcom Nov 3, 2017
50870e1
subrepo:ignore Update 'modules/apps/adaptive-media/.gitrepo'.
liferay-continuous-integration Nov 7, 2017
1e4e3e1
LRDOCS-4044 Javadoc
ngaskill Nov 6, 2017
e4a81c1
LRDOCS-4044 Javadoc formatter
ngaskill Nov 6, 2017
7c4895b
subrepo:ignore Update 'modules/apps/foundation/vulcan/.gitrepo'.
liferay-continuous-integration Nov 7, 2017
58151f2
LPS-74205 Add new local service API method that deletes original mode…
GergoMathe Nov 6, 2017
2db81e2
LPS-74205 Autogenerated
GergoMathe Nov 6, 2017
d066893
LPS-74205 Empty the trash before kicking off initial publication
GergoMathe Nov 6, 2017
088378e
LPS-74205 Display warning when turning on local staging and trash is …
GergoMathe Oct 6, 2017
2fb26b9
LPS-74205 Build lang
GergoMathe Nov 6, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/apps/adaptive-media/.gitrepo
Expand Up @@ -4,8 +4,8 @@
[subrepo]
autopull = true
cmdver = liferay
commit = de02f7fea2c8b59646d2c649349275e400806126
commit = c23d8da1016726a116c08493d53ae3b8ad82e484
mergebuttonmergecommits = false
mode = pull
parent = c9f142ef897189e0c5b6404e1ab7c67706fa70b3
parent = 07aaa5ab7448a3bae68ed48d849dd790c37c6120
remote = git@github.com:liferay/com-liferay-adaptive-media.git
Expand Up @@ -5,7 +5,7 @@ dependencies {
provided group: "biz.aQute.bnd", name: "biz.aQute.bndlib", version: "3.1.0"
provided group: "com.liferay", name: "com.liferay.osgi.service.tracker.collections", version: "2.0.0"
provided group: "com.liferay", name: "com.liferay.portal.configuration.metatype", version: "2.0.0"
provided group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "2.0.0"
provided group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "2.49.0"
provided group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1"
provided group: "org.osgi", name: "org.osgi.core", version: "5.0.0"
provided group: "org.osgi", name: "org.osgi.service.component.annotations", version: "1.3.0"
Expand Down
Expand Up @@ -23,6 +23,7 @@
import com.liferay.portal.kernel.messaging.Message;
import com.liferay.portal.kernel.messaging.MessageBus;
import com.liferay.portal.kernel.transaction.TransactionCommitCallbackUtil;
import com.liferay.portal.kernel.util.StringBundler;
import com.liferay.portal.kernel.util.Validator;

import java.util.List;
Expand Down Expand Up @@ -51,9 +52,10 @@ public void cleanQueue(

if (_log.isInfoEnabled()) {
_log.info(
"Cleaned queue for model ID " + modelId +
" and adaptive media processor command " +
amProcessorCommand);
StringBundler.concat(
"Cleaned queue for model ID ", modelId,
" and adaptive media processor command ",
String.valueOf(amProcessorCommand)));
}
}

Expand Down
Expand Up @@ -12,6 +12,7 @@ dependencies {
provided project(":apps:adaptive-media:adaptive-media-image-item-selector-api");

testCompile group: "com.liferay.portal", name: "com.liferay.portal.impl", version: "2.0.0"
testCompile group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1"
testCompile group: "org.jabsorb", name: "jabsorb", version: "1.3.1"
testCompile group: "org.jodd", name: "jodd-bean", version: "3.6.4"
testCompile group: "org.jodd", name: "jodd-core", version: "3.6.4"
Expand Down
Expand Up @@ -5,7 +5,7 @@ dependencies {
provided group: "com.liferay", name: "com.liferay.blogs.service", version: "1.1.0"
provided group: "com.liferay", name: "com.liferay.blogs.web", version: "1.0.0"
provided group: "com.liferay.portal", name: "com.liferay.portal.impl", version: "2.0.0"
provided group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "2.0.0"
provided group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "2.49.0"
provided group: "javax.portlet", name: "portlet-api", version: "2.0"
provided group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1"
provided group: "org.osgi", name: "org.osgi.service.component.annotations", version: "1.3.0"
Expand Down
Expand Up @@ -17,6 +17,7 @@
import com.liferay.blogs.util.BlogsEntryAttachmentContentUpdater;
import com.liferay.portal.kernel.portletfilerepository.PortletFileRepository;
import com.liferay.portal.kernel.repository.model.FileEntry;
import com.liferay.portal.kernel.util.StringBundler;
import com.liferay.portal.kernel.util.StringPool;

import org.osgi.service.component.annotations.Component;
Expand Down Expand Up @@ -48,9 +49,10 @@ protected String getBlogsEntryAttachmentFileEntryImgTag(
String fileEntryURL = _portletFileRepository.getPortletFileEntryURL(
null, blogsEntryAttachmentFileEntry, StringPool.BLANK);

return "<img data-fileEntryId=\"" +
blogsEntryAttachmentFileEntry.getFileEntryId() + "\" src=\"" +
fileEntryURL + "\" />";
return StringBundler.concat(
"<img data-fileEntryId=\"",
String.valueOf(blogsEntryAttachmentFileEntry.getFileEntryId()),
"\" src=\"", fileEntryURL, "\" />");
}

@Reference
Expand Down
@@ -1,4 +1,4 @@
FROM liferay/portal-tomcat-mysql:master-7227093900666b12759b383063ac60a03956fa6c
FROM liferay/portal-tomcat-mysql:master-2089294ff076c896108e5cffcf0efe66b165afad
MAINTAINER Sergio González <sergio.gonzalez@liferay.com>

RUN rm $LIFERAY_HOME/osgi/modules/com.liferay.adaptive.media*.jar
Expand Down
Expand Up @@ -3,6 +3,7 @@ targetCompatibility = "1.8"

dependencies {
provided group: "biz.aQute.bnd", name: "biz.aQute.bndlib", version: "3.1.0"
provided group: "com.liferay", name: "com.liferay.petra.string", version: "1.0.0"
provided group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "2.0.0"
provided project(":apps:adaptive-media:adaptive-media-api");
provided project(":apps:adaptive-media:adaptive-media-content-transformer-api");
Expand Down
Expand Up @@ -17,9 +17,9 @@
import com.liferay.adaptive.media.content.transformer.constants.ContentTransformerContentTypes;
import com.liferay.adaptive.media.image.html.AMImageHTMLTagFactory;
import com.liferay.document.library.kernel.service.DLAppLocalService;
import com.liferay.petra.string.CharPool;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.repository.model.FileEntry;
import com.liferay.portal.kernel.util.CharPool;
import com.liferay.portal.kernel.util.StringBundler;
import com.liferay.portal.kernel.util.StringPool;
import com.liferay.portal.kernel.util.StringUtil;
Expand Down
Expand Up @@ -30,6 +30,7 @@ classes {
dependencies {
picturefill group: "org.webjars.bower", name: "picturefill", transitive: false, version: pictureFillVersion

provided group: "com.liferay", name: "com.liferay.petra.string", version: "1.0.0"
provided group: "com.liferay.portal", name: "com.liferay.portal.kernel", version: "2.0.0"
provided group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1"
provided group: "org.osgi", name: "org.osgi.core", version: "5.0.0"
Expand Down
Expand Up @@ -17,9 +17,9 @@
import com.liferay.adaptive.media.image.media.query.Condition;
import com.liferay.adaptive.media.image.media.query.MediaQuery;
import com.liferay.adaptive.media.image.media.query.MediaQueryProvider;
import com.liferay.petra.string.CharPool;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.repository.model.FileEntry;
import com.liferay.portal.kernel.util.CharPool;
import com.liferay.portal.kernel.util.StringBundler;
import com.liferay.portal.kernel.util.StringUtil;

Expand Down
Expand Up @@ -9,6 +9,7 @@ dependencies {
provided project(":apps:adaptive-media:adaptive-media-image-item-selector-api");

testCompile group: "com.liferay.portal", name: "com.liferay.portal.impl", version: "2.0.0"
testCompile group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1"
testCompile group: "org.jabsorb", name: "jabsorb", version: "1.3.1"
testCompile group: "org.jodd", name: "jodd-bean", version: "3.6.4"
testCompile group: "org.jodd", name: "jodd-core", version: "3.6.4"
Expand Down
10 changes: 10 additions & 0 deletions modules/apps/adaptive-media/adaptive-media-journal-web/todo.bchan
@@ -0,0 +1,10 @@
1.) In AMJournalTransformerListenerTest

String originalOutput = "some content";
String transformedOutput = "some transformed content";

String originalScript = "some script content";

Can these be randomString() instead?

Thx.
4 changes: 2 additions & 2 deletions modules/apps/analytics/.gitrepo
Expand Up @@ -4,8 +4,8 @@
[subrepo]
autopull = true
cmdver = liferay
commit = f09913c16cccf4bcf71dba78a7c8b36b53970694
commit = 1dc1eee7f37bb9de37408b914e45c49eb56ba296
mergebuttonmergecommits = false
mode = pull
parent = 40e452d095e3c7f2dd93dfeb3fc3cea9b69bcce9
parent = e2471e7f7aeafd896607f80216d12a007f15479c
remote = git@github.com:liferay/com-liferay-analytics.git