Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MoinMoinDiscussion: Difference between revisions

From ZeroWiki
(Repair batch-0002 pages from live compare)
(Repair MoniWiki formatting after migration)
 
Line 1: Line 1:
Talk about the things on MoinMoinTodo and MoinMoinIdeas in this space...
Talk about the things on [[MoinMoinTodo]] and MoinMoinIdeas in this space...


=== Images ===
=== Images ===
Line 10: Line 10:
** '''R''': The Icon macro worked well.  I wanted to avoid the fully qualified URL because to access the Wiki in question requires password authentication.  Including an image using the full URL caused my webserver (Apache 1.3.19) to reprompt for authentication whenever the page was viewed or re-edited.  Perhaps a default  
** '''R''': The Icon macro worked well.  I wanted to avoid the fully qualified URL because to access the Wiki in question requires password authentication.  Including an image using the full URL caused my webserver (Apache 1.3.19) to reprompt for authentication whenever the page was viewed or re-edited.  Perhaps a default  
<code>&#91;&#91;Image&#93;&#93;</code>
<code>&#91;&#91;Image&#93;&#93;</code>
macro could be added to the distribution (essentially identical to <code>&#91;&#91;Icon&#93;&#93;</code> ) which isn't relative to the data/img directory. (!) I've actually been thinking about trying to cook up my own "upload image" (or upload attachment) macro.  I need to familiarize myself with the MoinMoin source first, but would others find this useful?
macro could be added to the distribution (essentially identical to <code>&#91;&#91;Icon&#93;&#93;</code> ) which isn't relative to the data/img directory. (!) I've actually been thinking about trying to cook up my own "upload image" (or upload attachment) macro.  I need to familiarize myself with the [[MoinMoin]] source first, but would others find this useful?


** '''Note:''' Regarding the upload feature - pls note that the PikiePikie also implemented in Python already has this feature, see http://pikie.darktech.org/cgi/pikie?UploadImage ... so I guess you could borrow some code from there :) -- J
** '''Note:''' Regarding the upload feature - pls note that the PikiePikie also implemented in Python already has this feature, see http://pikie.darktech.org/cgi/pikie?UploadImage ... so I guess you could borrow some code from there :) -- J

Latest revision as of 00:34, 29 March 2026

Talk about the things on MoinMoinTodo and MoinMoinIdeas in this space...

Images

Q: How do you inline an image stored locally? (e.g. ../wiki-moimoin/data/images/picture.gif)

A: See the [[Icon]] macro; besides that, fully qualified URLs to the wiki server work, too.

    • R: The Icon macro worked well. I wanted to avoid the fully qualified URL because to access the Wiki in question requires password authentication. Including an image using the full URL caused my webserver (Apache 1.3.19) to reprompt for authentication whenever the page was viewed or re-edited. Perhaps a default

[[Image]] macro could be added to the distribution (essentially identical to [[Icon]] ) which isn't relative to the data/img directory. (!) I've actually been thinking about trying to cook up my own "upload image" (or upload attachment) macro. I need to familiarize myself with the MoinMoin source first, but would others find this useful?