18/8/2013 15:16:47
|
---|
|
Please test ImpressCMS 1.3.5 RC2 packagesHi everyone,
I just created the files for the release of ImpressCMS 1.3.5 RC2. Please have a quick look and test. If I don't get any negative notifications by tomorrow (well, that's more or less 14h from now), I'll publish the packages and the news. these packages now include RC versions of content and profile, to include the improvements that have been made. ZIP package TAR.GZ package Thanks! |
_________________
|
19/8/2013 7:15:44
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesThanks for whole work, David. Tested around the fixes in core and modules. Seems to be much better now. This will be a very nice update
![]() |
19/8/2013 14:20:25
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesthanks qm-b. I'm uploading the packages at the moment.
|
_________________
|
19/8/2013 21:14:16
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesI tested also, but incl the last 2 commits from the branch. And it's works as well for me with a fresh installation.
|
20/8/2013 4:42:30
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packages@sato-san I came to the conclusion that the files that I created didn't include Steve's last 2 commits. I've added the changes into the RC2 branch now,
I'll create the files in the evening, and they will be uploaded immediately after that. Sorry for the delay. |
_________________
|
20/8/2013 5:22:26
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesThank you for the updated files @fiammybe - btw, I tested an update also and it looks good for me.
|
20/8/2013 11:15:46
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagessomeone needs to keep a close eye on me - commit 12261 did not apply to 1.3 (though it does still work).
![]() If it all works - we can tidy up for final. Thanks, everyone. |
26/8/2013 18:43:16
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesHello, all - ready for the final?
|
26/8/2013 21:14:49
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesI think too, we are ready
![]() |
26/8/2013 23:34:47
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesWe received a mail from the xps project that some copyright info is still missing. I'd like to check that prior to releasing a final. Final was scheduled for release on the 31st anyhow. My verifications will be done before that.
|
_________________
|
27/8/2013 4:04:23
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesTested again and think, we can go final now. Well, the copyright thing can be done before.
|
28/8/2013 16:44:30
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesPlease commit the latest files to 1.3.6,since we have codefreez. We waiting for the final version soon.
|
29/8/2013 19:11:32
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesAnyone can hear my? :)
|
29/8/2013 19:19:22
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesThe release of 1.3.5 final will not be delayed by the changes to the documentation headers for copyright information, nor will it require another RC release. We have addressed this in the past.
We are still on track to release the final this weekend, along with an updated 1.2.8 (Smarty update for security). |
2/9/2013 18:40:16
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesI tested the last final pack and I think we have an issue in the search result page. If you enter a keyword who is not available, you get a redirect to search page, but no information that the page could not find anything. This is very confuse for the user
![]() |
3/9/2013 1:41:15
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesHi René,
is that different in 1.3.4? |
_________________
|
3/9/2013 13:32:24
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesIn previous versions, there was no message if no search results were found in any module - just the search form. I agree it isn't the best user experience and should be addressed, but that wasn't the purpose of the 1.3.5 release.
Now, I do see an error in the changes made to the search in regards to modules with no results - the logic is backwards in the current packages. This needs to be fixed before we release - 1 simple ! will take care of this. In testing to confirm this, I have discovered that if no module has any results, the page is just as Rene describes it above - no message, no modules shown with 0 results - just the form. Basically, the option to display modules with no search results only works if at least 1 module has a result. I haven't found the fix for this, yet. |
4/9/2013 3:12:40
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesIsn't this just a template change? currently it checks at the beginning for search results:
<{if $basic_search == false && $search_results }>
so we could simply add an else or elseif.. or removing the $search_results, if the searched module should be displayed without results |
4/9/2013 21:21:15
|
---|
![]() |
Re: Please test ImpressCMS 1.3.5 RC2 packagesThe unwanted insertion of line breaks into legacy content is still an issue, have posted a ticket (see this post for explanation).
|
5/9/2013 18:39:59
|
---|
|
Re: Please test ImpressCMS 1.3.5 RC2 packagesCitaat:
I did find the fix for the various settings of 'show modules with no matches' and displaying - changed the nested if statements to a single 1 to get the proper hierarchy. @qm-b: that could be a possibility for the time when there no modules return any results. $basic_search tells the page there was not a query - just go to advanced search form. $search_results is an array of results from all the modules queried, so it will only be false/empty when there are no results, at all. At the end of the template, between the last <{/if}> <{$search_form}> add another test for $search_results being empty, then display a language constant, like this, and style appropriately (completely untested, at the moment) - <{/if}> <{if count($search_results) = 0 }> <div><{$smarty.const._SR_NOMATCH}></div> <{$search_form}> |