You can subscribe to this list here.
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(18) |
Jul
(7) |
Aug
(20) |
Sep
(7) |
Oct
(5) |
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2009 |
Jan
(3) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Justin T. <jus...@gm...> - 2008-06-16 10:11:22
|
Ack! I just realized the code isn't there. Are there plans to release it soon? thx Justin |
From: Justin T. <jus...@gm...> - 2008-06-16 07:47:54
|
That did it! Late night PEBKAC (head down, tail between legs). thx Justin On Mon, Jun 16, 2008 at 12:28 AM, Rehan Iftikhar <reh...@gm...> wrote: > I used these values and it worked for me. > > > "business";"Businesss";"Businesses";"Business";"business";"bus";"1";"1";"1";"1";"0";"0";"0";"0";"0";"0";"0";"0" > > My business table is named 'businesss' > > Also remember to build your model files (rebuild.sh) > > -Rehan > > On Mon, Jun 16, 2008 at 12:23 AM, Justin Tilson <jus...@gm...> > wrote: > >> >> "businesss";"Businesss";"Business";"Business";"business";"bus";"1";"1";"1";"1";"1";"1";"1";"1";"1";"1";"0";"0" >> >> I followed the third 's' work around you suggested in your last other post >> - hence the misspelling. >> >> thx >> Justin >> > |
From: Rehan I. <reh...@gm...> - 2008-06-16 07:28:55
|
I used these values and it worked for me. "business";"Businesss";"Businesses";"Business";"business";"bus";"1";"1";"1";"1";"0";"0";"0";"0";"0";"0";"0";"0" My business table is named 'businesss' Also remember to build your model files (rebuild.sh) -Rehan On Mon, Jun 16, 2008 at 12:23 AM, Justin Tilson <jus...@gm...> wrote: > > "businesss";"Businesss";"Business";"Business";"business";"bus";"1";"1";"1";"1";"1";"1";"1";"1";"1";"1";"0";"0" > > I followed the third 's' work around you suggested in your last other post > - hence the misspelling. > > thx > Justin > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > Wiserplatform-support mailing list > Wis...@li... > https://lists.sourceforge.net/lists/listinfo/wiserplatform-support > > |
From: Justin T. <jus...@gm...> - 2008-06-16 07:23:38
|
"businesss";"Businesss";"Business";"Business";"business";"bus";"1";"1";"1";"1";"1";"1";"1";"1";"1";"1";"0";"0" I followed the third 's' work around you suggested in your last other post - hence the misspelling. thx Justin |
From: Rehan I. <reh...@gm...> - 2008-06-16 07:14:31
|
Did you complete this step? http://wiserplatform.org/Customize_new_entity_table If so, can you post the record for the business entity (from the 'entities' table)? -Rehan On Sun, Jun 15, 2008 at 11:53 PM, Justin Tilson <jus...@gm...> wrote: > I've followed the steps to create a new entity on http://wiserplatform.organd I can load the create new entity page but I cannot create a new entity > or go to the browse page. Both pages error and result in the following error > getting dumped to Apache's log: > > 'business is not a registered entity' > > The error is being thrown from 'lib/model/EntitiesPeer.php' on line 63. > > How to I 'register' an entity? > > thx > Justin > > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > Wiserplatform-support mailing list > Wis...@li... > https://lists.sourceforge.net/lists/listinfo/wiserplatform-support > > |
From: Justin T. <jus...@gm...> - 2008-06-16 06:53:20
|
I've followed the steps to create a new entity on http://wiserplatform.organd I can load the create new entity page but I cannot create a new entity or go to the browse page. Both pages error and result in the following error getting dumped to Apache's log: 'business is not a registered entity' The error is being thrown from 'lib/model/EntitiesPeer.php' on line 63. How to I 'register' an entity? thx Justin |
From: Rehan I. <reh...@gm...> - 2008-06-15 08:51:35
|
Unfortunately, the WiserPlatform currently does a simple singular to plural translation in a few different areas throughout the code base. This constraint was grandfathered in from the legacy code. The developers know this is not the optimal situation, and plan on fixing the issue in upcoming releases. In the time being, certain measures can be taken to work with given translation constraints. For example, if you want to create an entity for "businesses", you could do the following: 1. As usual, create you entities table in the database. Give it the name of "businesss". Notice extra 's'. This is important. 2. When adding your entity to the entities table, for the ORM Name field, use "Businesss". Again, notice the extra "s". This is also important. 3. Finally, when running the create_entity.sh script, use "businesss" as your entity's name. The only downside here is that you have a table in your database with a slightly mispelled name. All human references to the entity are defined in the entity table. This should get your new entity working with the platform. Hope that helps, -Rehan |
From: Justin T. <jus...@gm...> - 2008-06-15 05:57:38
|
I've followed all the instructions on http://wiserplatform.org to create a new entity named 'business' except the code (somewhere!) is expecting 'businesss' and chops off the trailing 's' resulting in 'busines' I modified './create_entity.sh' to not do the concatenation of the 's'. This create the module folder and file names correctly. All the values in 'entities' table are 'business' or 'Business'. This is the error I'm getting: I've modified the 'getRoute' method in 'wiser_platform/apps/frontend/lib/Routes.php' and it didn't seem to make a difference. I ran 'symfony clear-carche' and started Apache. I'll still get the following error in the log: 'symfony [crit] Error message: There was a problem adding a business: busines is not a registered entity' Where can could the nasty little bit of code be hiding that is truncating my entity name? thx! Justin |
From: Justin T. <jus...@gm...> - 2008-06-14 23:24:06
|
The create_entity.sh script truncates the last character when creating files. There has been an assumption made that all entity table names are pluralized and end with an 's'. This is an unsafe assumption. For instance: - business / businesses - mouse / mice - goose / geese Pluralization in English is too varied to rely on the assumption you made. I've always preferred singular table names as a way of enforcing consistency. Rather than justify - there is a short article: http://www.breaksoft.com/Blog/Posts/2004/9/Plural_vs_Singular_Table_Names.aspxthat discusses the pros and cons. I think the pros are stronger. Or instead if you want to keep the pluralized database names, perhaps the script should ask for the entity name created in the backend vs the table name. Justin |
From: Justin T. <jus...@gm...> - 2008-06-14 21:55:21
|
I've followed the steps on http://wiserplatform.org to create a new entity with exactly the same fields as 'Institutions' but am not able to get my pages to load. After following steps 1 - 5, I added : <?php $routes = new Routes("organization"); $routes->yamlDump(); ?> to /wiser_platform/apps/frontend/config/routing.yml and then ran 'symfony clear-cache' The 'browse' link results in (perhaps the email address should be changed to point to this mailing list??): An error has occurred. We apologize for any inconvenience. Please contact de...@na...for assistance. The 'create' link just goes to a blank page. >From what I can tell 'Institutions' relies on a common/shared template. I want mine to work the same as Institutions. What have I missed? thx Justin |
From: Rehan I. <reh...@gm...> - 2008-05-22 04:59:11
|
FIRST! (I claimed it :-) |