Yeah I figured that , i thought maybe it would store as the same asset but pull as a new one forcing the cache to update. We could use a blind rewrite for a folder bersion request. Plugins are always gonna have a problem but technically most people will only have this problem if the auto cache is recently accessed since it uses etag and lastmodified
I forgot i gotta finalize these cache issues and changes before i release this, oops, ill get that done and release 3.3.9 soon. Sorry for the delay been busy.
Just tested (with Chrome, with Firefox, XAMPP, shared host) and no difference - same issue.
So, as I said in my previous post, I think it may be better to leave it as it was in beta 1, and warn in the changelog about these potential ckeditor cache issues.
Yeah serms like the only fix is to rename theme which breaks plugins or modify ckeditor ourselves.
Oh well , ill revert these and jist leave it alone and tinestanp stuff later when there is a solution
I also kept the ckeditor timestamp code but moved it to a optional definition
It will probably be enable at some point in the future or you can do it yourself.
common.php // if(!defined('GSCKETSTAMP')) define('GSCKETSTAMP',get_gs_version()); // ckeditor asset querystring for cache control
Has any thought been given to adapting this parent menu driven page navigation to the core?
I and others have over 200 pages and it gets out of control.
I also added the / thingy commented in the config.js // ev.editor.dataProcessor.writer.selfClosingEnd = '>'; // self closing defautls to />
So, is the "stable" 3.3.9 update procedure simply overwrite existing files, or is there more to do?
Also, what is the difference between 3.3.9 and .10?
2016-04-21, 01:44:26 (This post was last modified: 2016-04-21, 01:51:04 by datiswous.)
(2016-04-21, 01:33:44)jwzumwalt Wrote: Has any thought been given to adapting this parent menu driven page navigation to the core?
I and others have over 200 pages and it gets out of control.
Btw. you can already do the same with the i18N plugin.
jwzumwalt Wrote:So, is the "stable" 3.3.9 update procedure simply overwrite existing files, or is there more to do?
Also, what is the difference between 3.3.9 and .10?
(2016-04-21, 00:56:53)shawn_a Wrote: I wonder if this single change would fix the icons caching
ckeditor.js
2016,auto','icons.png');}) <-- add querystring to filename
If anyone wants to try It would be good to know, it could just break it, since its js.
It is hard to tell because the css files also reference icons.png as an asset.
I changed 'icons.png' to 'icons.png?t=something' - doesn't break but no effect, same issue (until I Ctrl-F5 on Firefox / clear browsing data in Chrome)
Yeah I guess the css is causing the actual asset load, which means you have to change every instance in all the css for the theme, I guess the best solution will be to add a cache policy.
The codesnippet plugin uses highlight.js ( it can be modified to use alternates as well and geshi )
if you want to add front end to your theme you can play with this., and there are a bunch of themes in the folder.
PHP Code:
<?php GLOBAL $SITEURL; GLOBAL $GSADMIN; ?> <link rel="stylesheet" href="<?php echo $SITEURL.$GSADMIN;?>/template/js/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai_sublime.css" rel="stylesheet"> <script src="<?php echo $SITEURL.$GSADMIN;?>/template/js/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js"></script> <script>hljs.initHighlightingOnLoad();</script>
You will have to reset or remove any aggressive pre and code css though.
(2016-04-21, 01:33:44)jwzumwalt Wrote: Has any thought been given to adapting this parent menu driven page navigation to the core?
I and others have over 200 pages and it gets out of control.
Btw. you can already do the same with the i18N plugin.
Not really, you can not collapse a "parent", so you are left with a 200+ listing.
So I guess we can say it sorts the pages but does not really do much else.
(2016-04-21, 01:33:44)jwzumwalt Wrote: Has any thought been given to adapting this parent menu driven page navigation to the core?
I and others have over 200 pages and it gets out of control.
Btw. you can already do the same with the i18N plugin.
Not really, you can not collapse a "parent", so you are left with a 200+ listing.
So I guess we can say it sorts the pages but does not really do much else.
Sorry, I thought I understood what is described on that page, apparently I didn't..
I thought 200+ parents in view is a little unrealistic.
Cache problem, icons.png is old. Or you have a custom theme set.
Login as provate browsing mode and see, you probably didnt really clear your browserr cache.
(2016-04-27, 08:45:41)shawn_a Wrote: Cache problem, icons.png is old. Or you have a custom theme set.
Login as provate browsing mode and see, you probably didnt really clear your browserr cache.
This is good now. What about this CKeditor feature :
I have discussed it elsewhere, but its doable, but there are thinggs that need clever solutions, like switching the content in and out, so you are actually editing the source before any filtering and component expansion., so there needs to be some js fetching and swapping.