0

I want to install TMS (Task Management System) from SO (Social Office) to my Liferay so that I would not install the SO first. So, it would be used as a portlet or so and I don't have to take the full amount of the other SO stuff. I have found out that I should use some hooks in there but I haven't more idea what to do.

Please, point me to some tutorial or give a short list of how to accomplish this task.

mico
  • 12,730
  • 12
  • 59
  • 99
  • Liferay had on their SVN trunk a tms portlet source, but it was completely deleted now on the current status there. On their forums I found some package which on running the portlet gives errors on tld files. [Link](http://www.liferay.com/community/forums/-/message_boards/view_message/8043085) – mico Jun 10 '11 at 10:47

1 Answers1

1

They've moved the tms-portlet from the incubation repository to tasks-portlet trunk repository. You can check it out at svn://svn.liferay.com/repos/public/plugins/trunk/

You'll find it in the portlet/tasks-portlet directory. If you need it for an older version, you might just have to check out an older revision.

rp.
  • 3,435
  • 1
  • 21
  • 29
  • How you guys contact to this repo? I am using Subclipse, but I can get only error stating: Malformed network data – mico Jun 13 '11 at 09:00
  • Now I got it with RabbitVCS :) – mico Jun 13 '11 at 10:09
  • Where I could find the dependencies: `portal-trunk` folder? – mico Jun 13 '11 at 12:32
  • Have anybody tried should this code also work? Trying to manually fit in the dependencies seems to be impossible task. First of all: included .jar files should be of the trunk version, but how to generate them? – mico Jun 13 '11 at 14:22
  • The user is "guest", and there is no password. – rp. Jun 13 '11 at 16:25
  • Thanks. Also I wanted to know where portal-trunk location can be found on the repo. – mico Jun 13 '11 at 17:30
  • @Mikko svn://svn.liferay.com/repos/public/portal/trunk/ – rp. Jun 13 '11 at 17:50
  • I don't think so. Code has a build path to `portal-trunk` with a dash between. Has anybody really get that code working, and have found this kind of project there. The reference is to `portal-trunk` PROJECT. Or did I miss sth? – mico Jun 13 '11 at 18:58
  • @Mikko, I'm not entirely sure where this reference is but I've successfully deployed Tasks into Liferay Portal trunk using Ant. – rp. Jun 13 '11 at 20:32
  • The project dependency is to svn.liferay.com/repos/public/portal/trunk. If you import this project into eclipse, you'll see that it's named portal-trunk. From this you see that the expectation is that this portlet might not run with a released version, because this version is under development with trunk. If you're using it with a release, you might want to change the dependency to the portal source code of the release you're working with. You might also get along without any dependency to the portal itself - try it. – Olaf Kock Jun 17 '11 at 11:32