Recent activity
Subscribe to this feed
A comment on the question "Overfull Folders wrecking Nav-Bar. Solution?" in PBwiki:
WOW! Great work Clif, this is an excellent workaround! – Carlos Ramos, on March 03, 2009 11:38
Carlos Ramos marked one of Tim's replies in PBwiki as useful. Tim replied to the question "Overfull Folders wrecking Nav-Bar. Solution?".
Carlos Ramos asked a question in PBwiki on February 23, 2009 01:53:
Hide certain pages from anonymous readers?Is there any way to hide certain pages from anonymous readers. I need to hide certain pages, like a "member's only" area. The only way I see how to do this would be to manually set each member to each hidden page, which would be very tedious to do.
Is there a way to set a show pages for "readers" only?
Carlos Ramos replied on February 17, 2009 23:26 to the question "Overfull Folders wrecking Nav-Bar. Solution?" in PBwiki:
Clif,
You can drag every panel except for this one. Even if the user could hide it would be great. It's that panel that says "In Folder:FOLDERNAME" and has the options to edit tags and security. When you have a hundred pages, the user literally has to scroll down a couple seconds before reaching the Side Panel or comments section. I don't have 100 pages yet, but I'll get there soon I think...
Carlos Ramos replied on February 15, 2009 18:56 to the question "Overfull Folders wrecking Nav-Bar. Solution?" in PBwiki:
-
Carlos Ramos started following the problem "Links to new wiki pages are not differentiated" in PBwiki.
Carlos Ramos replied on February 15, 2009 12:56 to the idea "Request for easier page tree navigation" in PBwiki:
I don't think that's currently possible, you'll need a way to either assign a page as a child or store pages in subfolders, either of which you can't do right now.
However, with some scripting it's definitely possible! Are you good with scripting? If so read my other posts http://getsatisfaction.com/pbwiki/top... and http://getsatisfaction.com/pbwiki/top... Combining the two methods you could accomplish what you want with a couple hours of work.
In any case, if your patient, I'll have the scripts finished in a couple weeks since this is something I'm working on for my wiki as well.
Carlos Ramos replied on February 14, 2009 19:40 to the idea "Tutorial: Organize how the templates appear and remove default templates from the list on the NewPage" in PBwiki:
Really, the only thing I feel needs to be done is allowing us to organize the order in which the templates are shown. Even a change as simple as listing the User-Made Templates first, and defaults last would be great. The problem is that eventually when my wiki gets bigger, I'll be using several dozen different templates for each area of Magic tricks...to create uniformity and make it A LOT easier for my users to create pages - at that point all they need to worry about is putting up the text, everything else is done for them.
It isn't something major though, and most people probably overlook it. But like I said, having the user-made templates appear first would be a MAJOR plus.
Carlos Ramos shared an idea in PBwiki on February 14, 2009 17:56:
Tutorial: Organize how the templates appear and remove default templates from the list on the NewPage[EDIT] This page won't allow me to show you the scripts, check this link out for this same text with the code shown http://magicwiki.pbwiki.com/f/Tutoria...
Hey guys, until PBWiki allows us to set the order of the template list, and which templates to display, here's a quick and dirty workaround. For an example of how I'm using this in my own Wiki, check http://magicwiki.pbwiki.com/New-Page
First, you'll need to create a new page and name it NewPage. Next you'll need to add a new "HTML/JavaScript Plugin", check "Allow JavaScript" and Copy+Paste
the following:
This function determines how to create the page by checking the Name you assigned it, and the template to use. Next, create another plugin and add the
following to it:
This function actually creates the page. Simply change WIKINAME to the name of your wiki. Now we need to create the forms the users will interact with,
including the Name, the creation button, the folder to store the page in, the security settings, and the template to use. To add the Name field and Create
Page button, add another Plugin with the following:
For the Folder, add the following into another Plugin:
Next, the security settings in a separte Plugin:
And finally, the list of templates to use:
It's that easy. The only thing you need to do is manually enter in the templates you want to use, and manually update the folder list. You'll also need to provide the user with a link to this page, as I don't know how to edit the "Create a Page" button at the top of the screen to redirect you to your new "Create a Page" page. Anyways, I hope this tutorial helps!
Carlos Ramos replied on February 13, 2009 21:34 to the idea "Custom Menu Bars, Table of Contents, and Importing blocks of HTML Tutorial" in PBwiki:
TextFixer is an excellent source, I've referenced it several times. A couple of others I use are:
http://www.echoecho.com/tools.htm
http://www.dynamicdrive.com/
http://www.colorschemer.com/online.html - I recommend this if you use custom colors. It's based on the color wheel which is taught in Art Theory which automatically set's up the colors you should use for your layout.
Carlos Ramos replied on February 13, 2009 02:51 to the idea "Custom Menu Bars, Table of Contents, and Importing blocks of HTML Tutorial" in PBwiki:
’ve been trying to get some really complicated bits of code to work lately, and I’ve come up with a nice alternative to have a “second” sidebar, custom menu bar, and Index which I hope can help you out. It’s a bit complicated, but there’s nothing here that’s hard as long as you know how to edit a wiki page! For the moment, I’m using this method to keep a Sortable-Hierarchal-Table of Contents within my site...see http://magicwiki.pbwiki.com for more and scroll to the bottom, that table is stored in an external file and not inside the page at all!
OK, the first thing you’ll need to do is create a “HTML/JavaScript Plugin” wherever you want the block of external Javascript or HTML to go. Then check the box that says “Allow Javascript code...” and paste the following:
<*script type="text/javascript" src="/f/NAMEOFFILE.js">
Removing the * and changing NAMEOFFILE to the name of your file, which must always be a javascript file (even if you only are using a block of HTML, more on that in a bit). If you only wish to reuse a block of HTML, then it’s simple, just upload your Javascript file and your done. If however you want to reuse a piece of HTML or HTML and JavaScript mix, then read on.
The first thing you’ll need to do is create the block of HTML. You can do this by creating a temporary page in your PBWiki, and using the editor to create whatever it is you will be reusing as you want it to appear (Menu, Table of Contents, News Announcements, etc) in your pages. Then go into Source Mode, and copy/paste all the code into this link http://accessify.com/tools-and-wizard... , making sure to uncheck the “Include <*script> tags”. Click the “Convert to JavaScript” button.
Now, open up Notepad, and copy paste the code you got. Save it as NAMEOFFILE.js and upload it to your wiki. Now all you have to do is place a “HTML/JavaScript Plugin” like above in all the pages you want the block of HTML to go. If you need to make changes, you only have to change the NAMEOFFILE.js and not all of the individual pages!
It’s complicated I know, but it’s an excellent alternative if you need to call an external bit of code or HTML, especially if it’s something you edit often (like a Table of Contents) or need throughout many pages (like a Menu Bar). If you don’t understand something or can’t get it to work right let me know. Like I said, I’ve got a rather complicated Table of Contents going, but all I need to do is edit the .js file and all my pages (or the ones I’ll have in the future) are all automatically updated.
Carlos Ramos shared an idea in PBwiki on February 13, 2009 02:47:
Custom Menu Bars, Table of Contents, and Importing blocks of HTML TutorialI’ve been trying to get some really complicated bits of code to work lately, and I’ve come up with a nice alternative to have a “second” sidebar, custom menu bar, and Index which I hope can help you out. It’s a bit complicated, but there’s nothing here that’s hard as long as you know how to edit a wiki page! For the moment, I’m using this method to keep a Sortable-Hierarchal-Table of Contents within my site...see http://magicwiki.pbwiki.com for more and scroll to the bottom, that table is stored in an external file and not inside the page at all!
OK, the first thing you’ll need to do is create a “HTML/JavaScript Plugin” wherever you want the block of external Javascript or HTML to go. Then check the box that says “Allow Javascript code...” and paste the following:
<*script type="text/javascript" src="/f/NAMEOFFILE.js">
Removing the * and changing NAMEOFFILE to the name of your file, which must always be a javascript file (even if you only are using a block of HTML, more on that in a bit). If you only wish to reuse a block of HTML, then it’s simple, just upload your Javascript file and your done. If however you want to reuse a piece of HTML or HTML and JavaScript mix, then read on.
The first thing you’ll need to do is create the block of HTML. You can do this by creating a temporary page in your PBWiki, and using the editor to create whatever it is you will be reusing as you want it to appear (Menu, Table of Contents, News Announcements, etc) in your pages. Then go into Source Mode, and copy/paste all the code into this link http://accessify.com/tools-and-wizard... , making sure to uncheck the “Include
Carlos Ramos replied on February 13, 2009 01:39 to the problem "Google Chrome - Edit Page Failure?" in PBwiki:
I was getting the same problem a while back. I'm using Chrome 1.0.154.48 which I guess is a tiny bit different, but enough that it doesn't happen anymore. Try updating.
The only thing that happens to me now is sometimes the WYSIWYG editor pans NE if I highlight too much with my mouse in source mode, then I have to close the tab completely and open the page back up in a new tab.-
Carlos Ramos started following the question "Can I add a folder inside another folder?" in PBwiki.
-
Carlos Ramos started following the question "Am I just missing a spell checker?" in PBwiki.
Carlos Ramos replied on February 01, 2009 15:07 to the question "Showing a random YouTube video from a predefined list?" in PBwiki:
Thanks for the links. I think I'll just create a custom gadget next weekend to do this, and I'll post it in this thread when I'm finished.
I'm "familiar" with JavaScript, VbScript, and RBScript as well as a few others, but am I "good" with them is something I'll find out next weekend. I just started work as a Network Manager for the Military, but I rarely work with scripting languages. Anyways, thanks again Clif.
Carlos Ramos replied on January 31, 2009 21:51 to the question "Showing a random YouTube video from a predefined list?" in PBwiki:
Carlos Ramos asked a question in PBwiki on January 31, 2009 13:23:
Showing a random YouTube video from a predefined list?Is there any way through the YouTube plugin to have a list of links and pick one of those out randomly on a page visit?
For example:
if random(10) = 1 then load link1
if random(10) = 2 then load link2
if random(10) = 3 then load link3
...
I'm running a Wiki on the history and origin of tricks, and each magic genre (card, coin, stage, street, etc) has a video at the top of the page. I would like those to change on each visit to make coming back to the page more interesting.
Carlos Ramos marked one of Clif's replies in PBwiki as useful. Clif replied to the idea "Login color scheme's should be the same as the site color scheme!".
Carlos Ramos replied on January 30, 2009 14:24 to the idea "Login color scheme's should be the same as the site color scheme!" in PBwiki:
| next » « previous |
Loading Profile...

