luku

Results 15 comments of luku

Thanks for the reply! Yes, it's possible to achieve very high items/page by `per_page` query param, or in settings. I agree the majority of batch edits are about smaller number...

Adding real life scenario (for better motivation): Imagine you import few thousands items. After import you do some random changes. Now you visit your public page and see it's empty....

Thank you very much! I completely missed config.ini directive for this. It should be possible to change `jobs.dispatcher.default` on fly, so I could apply it just for the items batch...

Good point! The problem is that `Omeka_Db_Table::checkExists()` as well as `Omeka_Db_Table::exists()` is calling `getSelect()` which always applies `Omeka_Db_Select_PublicPermissions` in `Table_Item::getSelect()`, so 403 is never shown. I think the only solution...

@Daniel-KM came up with pull request #733 for custom admin themes, so custom views are no longer an issue, aren't they? Anyway, I started a plugin for this together with...

Ok, here comes example: Let's say you search all items, where DC:Title is not empty. It will produce query like: `search=&advanced[0][element_id]=50&advanced[0][type]=is not empty&range=...`. Now try to reproduce some error in...

Yes, in one way. I found out about it, when I tried to redirect back to the selected items, which was the actual heart of this pull request:) Btw. is...

I was using this `pclose(popen("start /B {$command}", 'r'));` in one project. I was briefly checking and there are more Linux specific cmds, like `file`, `which`, `kill`, ... So Windows port...

Well, I see another use case for search index update where none of suggested approaches really works; When adding new record types that should be searchable in `admin/settings/edit-search`, it should...

I noticed the search index is not updated on tag delete either, so I added possibility for it as well, but 2 concerns popped up... 1. When deleting, it's not...