Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - goonerforlife

Pages: [1]
1
Community Contributions / Re: Couple of fixes (small 1 liners)
« on: January 14, 2011, 08:32:24 am »
Opps forgot to say the methods were :
  • Project->getUsersTasks
  • CustomProperties::getCustomPropertyByName

:)


2
Community Contributions / Couple of fixes (small 1 liners)
« on: January 14, 2011, 08:30:09 am »
I wasnt sure entirely where the best place for this was but i have been developing a charting widget and came across a couple of bugs in unused methods.
Here are the fixes :
These are in applications/models/ :
   projects/Project.class.php - I changed line 1440 from :
      
Code: [Select]
'conditions' => array('`task_list_id` IN (?) AND ...   To :
      
Code: [Select]
'conditions' => array('`id` IN (?) AND ...      
   custom_properties/CustomProperties.class.php - I changed line 76 from :
      
Code: [Select]
$object_type, $property_name)   To :
      
Code: [Select]
$object_type, $custom_property_name)
Tested after making those changes (as i was trying to use the methods.) and they work fine.
Hope that helps ^^
Cheers,
Goonerforlife

3
Development / Re: Rss Plugin For Tasks
« on: January 12, 2011, 12:24:46 pm »
I realised i was confusing Milestones and Projects >< (sorry!)

If someone could remove this that would be great. I dont seem to have permission to remove this.

4
Architecture / Re: Suggestions to plugin-system
« on: January 12, 2011, 10:21:15 am »
I know this thread is fairly old but im fairly new here. Did anything come of the new plugin system?

I have been making some new widgets and some other tweaks that i should be able to share.
Particularly integrating a new charting system (i want to expand it before i share it but the basic idea is projects or tasks over a time period. these are also links to the task/milestone/project.)

Cheers,
Goonerforlife

5
General Discussion / Re: Why Feng Office is going nowhere ?
« on: January 12, 2011, 09:41:50 am »
Even though im fairly new to the opengoo/ feng office scene i feel i should point out that (from my point of view) ALOT of these little arguments would be resolved if there was a centralised module service.
Something that alot of other projects have (jooml, drupal ,modx etc etc).
This opens the entire software up to be properly supported by the community AND allows the genuine contributions that are popular to be integrated (by the dev team so they still have work !) .

Without this type of model/service/approach its difficult for a community to add anything to project such as this in any meaningful way. Alot of people dont have time to sit down and write a large forum post. (me being one of them! this is my lunch break gone btw :( )

For example i have written a few modules recently for feng office one of which was a (fairly complex) charting plugin which im sure would be a great addition but there isnt an obvious place to put it and i dont have time to write a forum post to the standard i would want (i dont want to just drop it in on a lunchtime after spending the time to write it)

Also there are a few core bus/missing calls that i noticed as i was building this and patched but again i would need to spend more time on the forum to write out everything i have done.

Time i dont really have!

and now my lunch breaks over ....

6
Development / Rss Plugin For Tasks
« on: January 10, 2011, 09:07:25 am »
I am writing a small RSS plugin to allow users to pull out their milestone/task data in RSS format.
I have hit a snag however in that if i call $milestone->getTasks(); i dont seem to get anything back.
There is no error and the milestone definatly has tasks (i create a variety of open closed etc so that I could see all scenarios).
I also only have one milestone so I know i havent created the tasks somewhere else.

The reason for making this is so that users of another web app can see on their dashboard (in the other web app) what tasks/milestones are outstanding.

If i cant pull out tasks (either for security or for another reason) then milestones will suffice (i have that bit working) but i would just like to know either way Smiley

Any help would be appreciate.
Cheers.

Pages: [1]