Re: [tw] Re: Displaying inline pdfs using pdf.js

2012-06-28 Thread Robert Pollard
Friends

One easy way I have recently discovered for embedding pdf files in
TiddlyWiki is to use the *Google Docs Viewer* -
https://docs.google.com/viewer

On that page, you can enter the URL of any .pdf file - or .doc, .ppt etc.
and generate a link to view the document in Google Docs along with
corresponding embed code, that can then be dropped into TW bracketed by
 .. 

Robert

On Wed, Jun 27, 2012 at 7:52 PM, andrew.j.harrison84 <
andrew.j.harriso...@gmail.com> wrote:

> I finally ended up with both iframes and objects and to display my menus
> in front of them, I put an iframe shim in a tiddler and transclude that
> tiddler into my menu. It was a little trick with the search plugin im using
> but i used the div examples in pagetemplate for displaying tiddlers and it
> works there also. This transclusion thing is way cool. I'm now ready for
> tiddlywiki5 but I hope I can get it to run on ie7 somehow.
>
> --
> You received this message because you are subscribed to the Google Groups
> "TiddlyWiki" group.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> To unsubscribe from this group, send email to
> tiddlywiki+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/tiddlywiki?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Insert image by using drag and drop

2012-06-28 Thread Didier BRETIN
Hello,

I would like to be able to insert an image in a tiddler by just drag and 
drop a file from my explorer file to my tiddler. Do you know if such plugin 
exist ? I'm under firefox on windows 7.

I do some research but I only find the plugin from Eric L 
Shulmanto attach file into a tiddler but 
it's not what I want. I don't want to 
stock images in my tiddlywiki.

Thanks.

Didier.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/UupqirLAhaoJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Inline Editing of tables

2012-06-28 Thread anthony
That does make sense, and I really really appreciate the time effort and 
replys you have provided!

Maybe I can provide SOME insight into what I am trying to accomplish and 
help this along the way. I am using a second plugin called "upload plugin" 
(http://tiddlywiki.bidix.info/#UploadPlugin) There is a "macro" that is for 
"save to web" that would (i think) need to be pointed to for the enter 
function you created. So instead of it trying to "save" it will just punch 
save to web instead? I don't know...

Thank you very very much!

On Monday, June 25, 2012 8:09:22 PM UTC-5, Vincent Yeh wrote:
>
>
> Anthony, thank you for trying the plugin and giving feedbacks. And for 
> your last question on uploading, I have no idea how to do that currently (I 
> have experiences in programming but not much in javascript and the web 
> things.) It will take me sometime to figure out. If someone has answers and 
> would like to contribute, it will be highly appreciated.
>
> Eric, thank you for pointing out the key point which I never knew myself.
>
> I have been using Google Chrome for the development of this plugin 
> (inspired by and modified from TableSortingPlugin v2.0.2 by Saq Imtiaz 
> and GridPlugin v2.0.7 by Eric Shulman. Many thanks to them.) It seems to 
> work just fine for me and I turned out to forget about other browsers. Next 
> time I will try them out myself but as mentioned above most likely I do not 
> have the knowledge to fix the cross-browser things. I shall be relying on 
> more experienced people to do that.
>
> Vincent
>
> On Tuesday, June 26, 2012 2:05:25 AM UTC+8, anthony wrote:
>>
>> Last question...sorry for so much spam...
>>
>> I am using this wiki as a webbased system, when I edit the table I would 
>> like for it to upload to the web versus to a local file...is there anyway 
>> for that to be done?
>>
>> On Monday, June 25, 2012 12:55:56 PM UTC-5, anthony wrote:
>>>
>>> spamming...sorry
>>>
>>> I fixed the issue with IE, it was a version issue. I was using IE8 
>>> (preferred over here) but upgraded to 9 and it is working PERFECTLY. this 
>>> plugin is going to make our tiddlywiki amazing in terms of what we were 
>>> trying to do.
>>>
>>> So in short I think IE8 may not work properly with this plugin.
>>>
>>> On Monday, June 25, 2012 12:22:23 PM UTC-5, Eric Shulman wrote:



 On Jun 25, 8:23 am, anthony  wrote: 
 > Just tried your plugin...am I missing something? I loaded the plugin 
 and 
 > tried your example both on my tiddly and yours and neither were 
 > editable...maybe I am just missing something though. 

 The plugin works in IE, but not in FF or other browsers. 

 The reason is because IE uses a different method of processing 
 events.  In IE, all events are processed by first setting a global 
 variable "event" and then invoking the appropriate onclick handler to 
 process the event.  However, in other browsers, the event is *passed* 
 to the handler as a parameter. 

 The plugin problem arises due to this line of code: 

cell.onclick = function(){editInPlace(this,event);}; 

 In order to make this cross-browser compatible, it should be re- 
 written as: 

cell.onclick = function(ev){editInPlace(this,ev|event);}; 

 This allows non-IE browsers to properly use the passed in event as a 
 variable named 'ev', while IE continues to fallback to using the 
 global 'event' variable. 

 enjoy, 
 -e 
 Eric Shulman 
 TiddlyTools / ELS Design Studios 

 WAS THIS ANSWER HELPFUL?  IF SO, PLEASE MAKE A DONATION 
http://www.TiddlyTools.com/#Donations 
 Professional TiddlyWiki Consulting Services... 
 Analysis, Design, and Custom Solutions: 
http://www.TiddlyTools.com/#Contact 





-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/7duRRpOQgqAJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



Re: [tw] Re: New alpha of TiddlyWiki5

2012-06-28 Thread Eric Weir

On Jun 28, 2012, at 3:13 AM, TonyM wrote:

> I add TiddlersBarPlugin to every TiddlyWiki I build and my main one would be 
> unusable without it.


Ditto.

--
Eric Weir
Decatur, GA
eew...@bellsouth.net

"Everywhere the crisis of the private financial system 
has been transformed into a tale of slovenly and overweening government 
that perpetuates and is perpetuated by a dependent and demanding population."

- Marilynne Robinson



-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Autotagging with tiddler macro

2012-06-28 Thread PMario
You could have a look at the mtpw at: http://mptw.tiddlyspot.com/

It uses taggly tagging mechanism. May be this is an option for you.

-m

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: New alpha of TiddlyWiki5

2012-06-28 Thread TonyM
Can I +1 the Tab view

I am not sure how anyone else does it but I add TiddlersBarPlugin to every 
TiddlyWiki I build and my main one would be unusable without it.

Otherwise it is looking great !
Good work

Tony

On Tuesday, June 26, 2012 7:13:25 PM UTC+10, 27escape wrote:
>
> This is looking good, had a quick try on my android tablet and it 
> seems to work well. 
>
> Would it be possible to have tabbed view as well? To me this is more 
> useful than the horizontally constrained side by side view. 
>
> Just a thought. 
>
> thanks for the hard work so far 
> kevin 
>
> On Jun 22, 10:52 pm, Jeremy Ruston  wrote: 
> > I've been remiss in not reporting progress on TiddlyWiki5 for a few 
> > weeks. There’s a new alpha with some fun new features at a new URL: 
> > 
> > http://alpha.tiddlywiki.com 
> > 
> > It's for modern browsers - I generally use it with the Chrome Canary 
> build, 
> > which is their bleeding edge alpha version. (It is currently the only 
> > browser to implement HTML5's 'download' attribute on the  element, 
> which 
> > TiddlyWiki5 uses for it's fallback saving mechanism). 
> > 
> > The code is now getting to the point where the interactive features are 
> > coming together: drop down menus, and the ability to switch between 
> > different views of your tiddlers.  Crucially, there is now a new 
> wikitext 
> > parser that generates proper HTML tags, and features new syntax for 
> > transclusions. 
> > 
> > Of course, the new features are all rather provisional, and I'd very 
> much 
> > appreciate feedback and thoughts. I've been making some good progress on 
> > it, but documentation still slightly lags behind the code, so feel free 
> to 
> > ask any questions here. 
> > 
> > I made a little video to demonstrate some of the new features on an 
> iPad: 
> > 
> > https://vimeo.com/44538974 
> > 
> > Finally, I've recently taken over the TiddlyWiki twitter account, and 
> will 
> > be using it to give updates and news alongside the discussions in this 
> > group. 
> > 
> > Best wishes 
> > 
> > Jeremy 
> > 
> > -- 
> > Jeremy Ruston 
> > jeremy.rus...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/hnlmVE-N65UJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.