Forum Activity for @blindmime

blindmime
@blindmime
06/29/16 03:51:20AM
772 posts

Documentation to ePUB or app


Suggestions

michael:
also check
ACP -> MODULES -> SYSTEM CORE -> QUOTA CONFIG -> (the docs profile quota) -> ACTIVE TEXT FORMATTERS -> Convert Embed Tags

That's what it was.
blindmime
@blindmime
06/28/16 02:01:06PM
772 posts

Documentation to ePUB or app


Suggestions

Yeah, I think that will be fine. I'm seeing this though.
screenshot_58.png screenshot_58.png - 28KB
blindmime
@blindmime
06/25/16 04:50:43AM
772 posts

youtube limit error


Using Jamroom

When adding youtube videos over a quota's limit, we get this error: Unable to create new YouTube entry - please try again.

The user will keep trying since they don't know they're over their limit. I suggest wording the error so they know they are over their quota.
updated by @blindmime: 09/24/16 01:21:41PM
blindmime
@blindmime
06/21/16 12:48:43PM
772 posts

Documentation to ePUB or app


Suggestions

I've been sort of exploring the use of the Documentation module as a collaborative writing tool for Family histories and other kinds of digital books or rich media publications. Thinking a controlled export of the dataset could even produce an app in something like the Baker Framework, if I understand it correctly. So a group of people could put media into galleries, video, audio, stories and use the Document module to outline, organize and then produce a publication, discussing it in a forum, assigning tasks in the tracker.

That's what's prompting the question.
blindmime
@blindmime
06/21/16 08:10:17AM
772 posts

Documentation to ePUB or app


Suggestions

"Also, it would be great to have an Audio document type added. "
Where?[/quote]

In the Documentation Module
blindmime
@blindmime
06/20/16 09:58:07AM
772 posts

Documentation to ePUB or app


Suggestions

Have you thought of making it possible to output from the Documentation module to ePub format or as an app?

Also, it would be great to have an Audio document type added.
updated by @blindmime: 11/17/16 06:07:50PM
blindmime
@blindmime
06/10/16 10:29:42AM
772 posts

contact form file types for non-logged in users


Using Jamroom

I'm unable to upload a pdf file via a custom contact form, although I've set it as an allowable file type. Is there somewhere else I need to set this?
updated by @blindmime: 09/09/16 02:17:04PM
blindmime
@blindmime
06/09/16 01:48:57PM
772 posts

player invisible buttons


Using Jamroom

Yeah, that's what I was talking about above. Tapegerm was doing the same thing until it wasn't all of a sudden. I don't think I did anything to fix it. I'll try your suggestion and see what happens.
blindmime
@blindmime
06/09/16 07:15:02AM
772 posts

player invisible buttons


Using Jamroom

michael:
Not understanding why that code is pasted there.

You asked me if I had changed css in the header. I pasted the meta.tpl so you could see.

Douglas, it is working now and I don't know why. Seems I'm back to square one. It is not working here: http://blindmime.com.
blindmime
@blindmime
06/08/16 12:02:21PM
772 posts

player invisible buttons


Using Jamroom

I don't believe I've changed anything. It's Elastic. I see this on at least 3 different sites. http://tapegerm.com would be one. Here's the meta:

<!doctype html>
<html lang="{jrCore_lang module="_settings" id="lang" default="en"}" dir="{jrCore_lang module="_settings" id="direction" default="ltr"}">
<head>{jrCore_lang skin=$_conf.jrCore_active_skin id="1" assign="default_title"}
<title>{$page_title|default:"`$default_title`"|capitalize} | Experimental Music Collaboration - {$_conf.jrCore_system_name}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{if isset($meta)}
{foreach from=$meta key="mname" item="mvalue"}
<meta name="{$mname}" content="{$mvalue}" />
{/foreach}
{/if}
<link rel="stylesheet" href="{jrCore_server_protocol}://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,400,600,700" type="text/css">
<link rel="stylesheet" href="{jrCore_css_src}" media="screen" />
{if isset($css_href)}
{foreach from=$css_href item="_css"}
<link rel="stylesheet" href="{$_css.source}" media="{$_css.media|default:"screen"}" />
{/foreach}
{/if}
{if isset($css_embed)}
<style type="text/css">
{$css_embed}</style>
{/if}
{if isset($javascript_embed)}
<script type="text/javascript">
{$javascript_embed}</script>
{/if}
<script type="text/javascript" src="{jrCore_javascript_src}"></script>
{if isset($javascript_href)}
{foreach from=$javascript_href item="_js"}
<script type="{$_js.type|default:"text/javascript"}" src="{$_js.source}"></script>
{/foreach}
{/if}
{if isset($javascript_ready_function)}
<script type="text/javascript">
$(document).ready(function(){
{$javascript_ready_function}return true;
});
</script>
{/if}
<script type="text/javascript">
$(document).ready(function($) {
	$('.accordion2 dd').hide();
	$('.accordion2 dt').click(function(){
		if ($(this).hasClass('selected')) {
			$(this).removeClass('selected');
			$(this).parent().next().slideUp();
		} else {
			$('.accordion2 dt').removeClass('selected');
			$(this).addClass('selected');
			$('.accordion2 dd').slideUp();
			$(this).parent().next().slideDown();
		}
		return false;
	});
});
</script>

</head>
  19