Loris icon indicating copy to clipboard operation
Loris copied to clipboard

[Raisinbread] No data for help editor module?

Open johnsaigle opened this issue 4 years ago • 10 comments

It doesn't seem to be possible to edit any help files using the Raisinbread dataset. The Test VM, demo, and my sandbox contain no data.

How is this module being tested?

johnsaigle avatar Nov 19 '19 20:11 johnsaigle

@johnsaigle I'm debugging this issue and so far I think inside help_editor.class.inc the query for building the table is not returning anything.

SELECT helpChild.helpID as helpID,
                    helpChild.topic as Topic,
                    helpChild.parentID as Parent_ID,
                    helpParent.parentID as ParentTopic_ID,
                    helpParent.topic as Parent_Topic,
                    helpChild.content as Content
             FROM help helpChild
             LEFT JOIN help helpParent
               ON (helpChild.parentID = helpParent.helpID)
             WHERE helpChild.hash IS NOT NULL
             AND helpChild.topic IS NOT NULL
             ORDER BY helpChild.helpID

I'm not finding anything in the database for the help_editor query. @ridz1208 would you know if rasinbread doesn't populate it?

maltheism avatar Nov 21 '19 21:11 maltheism

i thought that was replaced with the files on the filesystem ??

ridz1208 avatar Nov 25 '19 18:11 ridz1208

If so then there shouldn't be a query, I think? Also if that is the case then the file system ones aren't loading. Either way the module is empty.

johnsaigle avatar Nov 25 '19 19:11 johnsaigle

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

stale[bot] avatar Jan 24 '20 19:01 stale[bot]

The Stale label is being removed automatically because some activity has occurred or because the developers have decided that this pull request is important and should not continue to be overlooked.

stale[bot] avatar Jan 30 '20 02:01 stale[bot]

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

stale[bot] avatar Mar 30 '20 03:03 stale[bot]

The Stale label is being removed automatically because some activity has occurred or because the developers have decided that this pull request is important and should not continue to be overlooked.

stale[bot] avatar Apr 15 '20 14:04 stale[bot]

@ridz1208 I dont' see a fix @AlexandraLivadas can implement here, to help with testing next round. shall we close this, while the future of the module is hanging in the balance?

christinerogers avatar Aug 05 '20 16:08 christinerogers

i think we could add a help document for the BMI ? then we put this to rest once and for all

ridz1208 avatar Aug 05 '20 16:08 ridz1208

ok that sounds worth a shot.
@AlexandraLivadas let's give this a try -- Take a few minutes to draft some general "How to fill out the BMI" instructions, make a PR to add them in the right place, also post a screenshot here of how it renders in the dropdown Help when you're looking at the BMI data entry form. We'll refine it from there.

christinerogers avatar Aug 05 '20 17:08 christinerogers

Resolved by #6907

AlexandraLivadas avatar Dec 02 '22 20:12 AlexandraLivadas