|
PmWiki
pmwiki.org
|
An itinerant webmaster for some clubs on Wellington Community Net.
Started with UseMod, tried MoinMoin, now found and converted to PmWiki.
Once a software developer (Pascal), now joined the dark side as a Project Manager, ETL Team Leader, now Data Architect. Still dabble with CSS, HTML, JavaScript, and now PHP to support the websites.
|
Jack of all trades ...
the documentation to read if you're going to read documentation
Trying out, but not yet got to work
Search here if all else fails
Vaguely relevant
|
Knows enough to be ...
Cookbook customisations used
- Cookbook:Add image type Add new image type extension
- Cookbook:Add newline Make wiki text end with a newline character, so the last line won't be marked as changed if text is added at the bottom
- Cookbook:All group header How to create a page that appears as a header (or footer) for all pages in all groups
- Cookbook:Attach links Get
Attach: links to display by default without the "Attach:" prefix
- Cookbook:Attachtable Actions to rename, delete & restore deleted attachments, as well as an attachlist replacement to use those actions, show file types and list attachment references.
- Cookbook:Attachlist enhanced How to list missing or orphaned attachments.
- Cookbook:Case correction Makes PmWiki intelligently case-insensitive
- Cookbook:De Ob Mail Unobtrusive e-mail link (de)obfuscator
- Cookbook:Edit templates (
$EditTemplatesFmt) Specify a wiki page or pages to use as a template when a new page is created.
- Cookbook:Excel paste (Cookbook:Tabtable-jt) Copy and paste spreadsheet tables (e.g., from Excel) into pages (Support embedded line feeds, trim spaces and add prior patch (make first row a header))
- Cookbook:External links Configure external links to open in a new window, have a "tooltip title", or use other CSS classes
- Cookbook:Favicon Add a Favicon to your website
- Cookbook:Image map Directive to create image maps and image toolbars
- Cookbook:Include file How to include an external file (from the same file system)
- Cookbook:Include Url Include html pages into PmWiki 2.x pages
- Cookbook:Inline diff Shows the difference between 2 versions by highlighting the changes in markup on word level.
- Cookbook:Limit diffs per page Paginate the "diff" output (when viewing a page history, limit the number of displayed revisions at once)
- Cookbook:Link icons Add icons to your links according to their extensions.
Cookbook:Markup extensions Adds a range of character, start of line, and link markup extensions
- Cookbook:More custom page variables Additional custom page variables for use in pages, forms, includes and conditional markup.
- Cookbook:New group box Input box to create new wiki groups from predefined template pages
- Cookbook:New page box plus Adds customisable box plus button form for page creation
- Cookbook:NotsavedWarning Warn authors when they move away from a page without saving it. Optionally request an edit summary or an author name.
- Cookbook:Pagelist Auth List Short Display, in brief format, the permissions settings for pages that have permissions set.
- Cookbook:Pagelist Recent Changes A recent changes page created using Page lists
- Cookbook:Pagelist Site Map Create a sitemap using the page list directive
- Cookbook:Page Table of Contents Adds a clickable table of contents to a page
- Cookbook:Per Group Sub Directories Subdivide wiki.d into subdirectories according to page group
- Cookbook:Random quote Insert random quotes or markup into a page
- Cookbook:Recent uploads log List all uploaded files in RecentUploads pages
- Cookbook:Recipe check Check for new versions of recipes on pmwiki.org
- Cookbook:Rowspan in simple tables Markup to add a rowspan attribute on a simple table cell
- Cookbook:Skin change change skin via query or cookie setting
- Cookbook:Source block Source code syntax highlighter for PmWiki 2.x using GeSHi
- Cookbook:ROS patterns (
$ROSPatterns) How to use $ROSPatterns (Replace On Save Patterns)?
- Cookbook:Search patterns (
$SearchPatterns) Q & A's on search patterns
- Cookbook:Shared pages and groups Share selected pages among several wikis on a common server, as in WikiFarms
- Cookbook:Thumb list Cookbook:Thumb list-Talk A thumbnail picture gallery for PmWiki
- Cookbook:Toggle Adds links or buttons for toggling (hiding/showing) div sections and objects
- Cookbook:Upload form Alternative file upload form using
(:input file:)
- Cookbook:Watch lists Track the most recent changes to a list of pages
- Cookbook:Wiki footer Website page footer
|
Config.php customisations used
Markup('[[<]]', '[[<<]]', '/\\[\\[<\\]\\]/', '<br />'); # break without clear all
$PageSearchForm = '$DefaultGroup.Search'; # to fully use customised search page.
$UploadNameChars = "-\w. !=+#"; # allow exclamations, equals, plus, and hash
My weapons
|
Used as a home intranet (great for the kids),
and for community group websites.
|
My CSS suggestions and customisations
When creating a skin simply include the original pmwiki CSS file,
this ensures you benefit from pmwiki upgrades, viz
@import url("/pmwiki/pub/skins/pmwiki/pmwiki.css");
Use CSS to suppress and change some elements of the page when printing (latterly pmwiki also uses this), eg
@media print {
/* style sheet for print */
#wikilogo, #wikihead, #wikifoot, #wikileft, #wikicmds,
.wikitrail, .noprint {
display : none;
}
}
My template suggestions and customisations
Change the order of the skin CSS and run time CSS lines (which replace the Headertext) to ensure your customised skin CSS overrides the page by page generated CSS, viz
<!--HeaderText-->
<link rel='stylesheet' href='$SkinDirUrl/pmwiki.css' type='text/css' />
|
General tips
- Make Firefox refresh every time
- type about:config in the location bar, right click on browser.cache.check_doc_frequency and select modify, change to 1 and Firefox will now check for a new version of the page on every page load
- Safe Mode and uploads
- try chmod 777 /home/username/public_html/pmwikiuploads/
Like to contribute where I can
Simon
|
My configuration suggestions and customisations
Changes for config.php
$EditTemplatesFmt = array('$Group.Template', '$DefaultGroup.Template');
# include DefaultGroup in page search
$PagePathFmt = array ('$1.{$DefaultName}', '{$Group}.$1', '{$DefaultGroup}.$1', '$1.$1');
# Authors must give a name
$EnablePostAuthorRequired = 1;
# Create a simple 'last changed page' for including on other pages
$RecentChangesFmt['Site.LastChanged'] = '[-[[$Group.$Name]]-][[<<]] ';
# try to make recent changes show all recent changes (YMMV)
if (preg_match('![./]RecentChanges$!', $pagename))
$DefaultPageTextFmt = '(:include Site.AllRecentChanges lines=60 :)';
$RecentChangesFmt['$Group.RecentChanges'] = '(:include Site.AllRecentChanges lines=60 :)';
# add a soft break
Markup('[[<]]', '[[<<]]', '/\\[\\[<\\]\\]/', '<br />'); # break without clear all
# make search stay in group
$PageSearchForm = '$DefaultGroup.Search';
# better control over simple tables (''doesn't work, hoping for help'')
$BlockMarkups['table'] = '<table width=* class="wikisimpletable">';
# Additional uploads file types
$UploadExts['dot'] = 'application/msword'; # Word document template
Set $EnableDiag and
include_once("$FarmD/cookbook/analyze.php");
$AnalyzeKey = 'secret';
on one page only by creating a page specific configuration file.
(2006-05-02) Automatic population of the AuthorTracking field
Running PmWiki as an intranet in a fully windows environment, is there any possibility of hiding, but populating the Author name field from (say) Windows authentication, so that the author for every change is captured (and does not need to be entered (and cannot be changed) by the user)
(:pagelist group=PITS order=-name $:From=*imon*,-*Simon?B*,-*Simoni*
fmt={$FullName}#pitsentry :)
>>comment<<
[[#pitsentry]]
(:template first:)
||width=*
(:template each:)
||[-[[{=$FullName}]]-] ||[-''{=$:Status}''-] ||[-{=$LastModifiedSummary}-]
||[-{=$:Summary}-] ||
[[#pitsentryend]]
>><<
| | PITS.01252 | Open | Yes, link= works when category page doesn't exist | Add category= parameter to PageLists |
| PITS.01247 | Open | New Search Term Page variable | New Search Term Page variable |
| PITS.01246 | Closed, duplicate of PITS.00908 | Closed, duplicate of PITS.00908 | Allow negation of link parameter in pagelist |
| PITS.01245 | Closed - replied | See also Cookbook:FixURL | Links with quotes don't work correctly |
| PITS.01224 | Open | benefits from having a pagelist being able to select similarly named anchors from across a range of | Enhance page list templates to process anchors |
| PITS.01220 | Discussion | Entry related to PITS:01178 | Group homepages not resolved correctly when group only supplied |
| PITS.01219 | Open | extend for other inline markup | Add markup for inline markup such as soft break, clear left, clear right, fractions |
| PITS.01211 | Open | can be done now; could be optimized some day | Support Group/ in pagelist name parameter |
| PITS.01209 | Open | Add more markup expressions to the core | Add more markup expressions to the core |
| PITS.01204 | Open | voting | pagelist frontlinks |
| PITS.01203 | Open | Vote + suggestion | Backlinks to incorporate pagelists, redirect, and include |
| PITS.01152 | Closed - added for 2.2.14 | Closed - added for 2.2.14 | Display empty and undefined variables as null |
| PITS.01140 | Closed - declined, +workaround | Closed - declined, +workaround | Use $Titlespaced for [[ |+]] markup |
| PITS.01105 | Open | Corrected typo, added vote. | Add %item value=resume% to list processing |
| PITS.01093 | Open | see also | Enhance conditional markup to 'if attachments PAGENAME' |
| PITS.01091 | Closed - duplicate of 00986 | Closed - duplicate of 00986? | Pagelist default does not handle variable in trail |
| PITS.01087 | Suspended - needs votes | bump | Extend Conditional Markup (:if attachments:) to specify file names |
| PITS.00962 | Closed - replied | Closed - replied | Make >><< behave identically with other block formatting when style= is used |
| PITS.00957 | Closed - added in 2.2.3 | Closed - added in 2.2.3 | Pages to be added and updated in 2.2 release distribution |
| PITS.00951 | Awaiting feedback | please vote for this | {$SiteAdminGroup} page variable not created |
| PITS.00917 | Open | added reference to static pagelist capability and example of creating wiki trail | Page lists? to be able to create wiki trails? |
| PITS.00916 | Open | Support honeypot block list | Support honeypot block list |
| PITS.00915 | Closed in 2.2.0 beta 56 | fixed for 2.2.3 | Page text variable erroneous usage loops |
| PITS.00895 | Closed, added in 2.2.0-beta61 | closed | Allow multiple wiki trails on a page with anchors |
| PITS.00894 | Open | | Provide a better means of attaching images with spaces in their names |
| PITS.00885 | Open | add priority | Definition list marked up as Intermap Entry |
| PITS.00884 | Open | | Make pagelist parameter names not case sensitive |
| PITS.00880 | Open | added sig | Page text variables change request |
| PITS.00866 | Closed - not a bug | | Blocklist displays error |
| PITS.00860 | Open | removed BlockMarkup link | Add min and max width and height, clear; to table, div, block, and style directives |
| PITS.00850 | Closed, in 2.2.0-beta28 | closed | Blocklist to optionally check Author and Summary fields, and to optionally display blocklist name |
| PITS.00805 | Closed - exists | Closed - exists: label="Search Wiki" | Search: allow button text to be specified |
| PITS.00799 | Closed - too difficult for benefit obtained | | Odd behaviour of markup |
| PITS.00787 | Closed, in 2.2.0-beta32 | Closed, in 2.2.0-beta32 | (:else:) extension of Conditional Markup |
| PITS.00746 | Closed - declined | Closed - declined | Link markup broken in 2.1.6 |
| PITS.00741 | Closed - use %-escapes | add ( example | Escape characters in URLs |
| PITS.00707 | Closed - available in 2.2.0-beta1 | re: Simon | Add conditional markup to detect if text is included |
| PITS.00673 | Closed - not a bug | | PmWiki changes a character with a macron to a character with a circumflex on save |
| PITS.00665 | Open | added vote | Allow customization of attachlist output |
| PITS.00646 | Closed | restore | Search should use the page it is called from to return the result if it contains (:searchresults:) |
| PITS.00638 | Reopened, does not really exist | | Simple table have CSS class added to facilitate customisation |
| PITS.00615 | Open | I'd like to vote, but I already have! | Suggested default template changes |
| PITS.00489 | Suspended - needs votes | votes please | classes for Image frames and captions |
| PITS.00485 | Closed -- added to cookbook | link | Include NewPageBox in a release |
| PITS.00467 | Closed | closed, non existent page handling now changed | Describe DummyPage? here needs forced link |
| PITS.00466 | Closed - fixed for 2.0.0 | | Saving Approved URLs issues: Added twice; Case sensitive |
| PITS.00446 | Closed - added to documentation | restore | Approve Links tool tip |
| PITS.00423 | Closed - not a bug | de-sapm | Table attributes have a space added in string value |
| PITS.00411 | Open | maybe this has been done? | pagelist to exclude redirects |
| PITS.00396 | Closed (added for 2.2.3) | Closed (Added for 2.2.3) | Creating uploads directory error message may require tidy |
| PITS.00269 | Closed - not a bug | | %right% need blank line before and after |
| PITS.00250 | Closed | | Provide a "wikiright" to match the existing wikileft |
| PITS.00162 | Closed - fixed for 2.0.beta1 | | Move formatting of $PageLogoFmt into template |
(:template first:)
(:template each:)
|
(:pagelist trail={$FullName} fmt={$FullName}#watchlist order=group,-time:)
>>comment<<
[[#watchlist]]
(:template first:)
||width=*
(:template each:)
||[-[[{=$FullName}?action=diff | {=$LastModified}]]-] ||[-''[[{=$FullName}
| {=$Groupspaced}.{=$Namespaced}]]''-] ||[-[[~{=$LastModifiedBy}]]-]
||[-{=$LastModifiedSummary}-]||
[[#watchlistend]]
>><<
| | October 26, 2011, at 04:09 AM | Cookbook.Clean Urls | Habogo? | Compensated for missing / from certain links. |
| September 10, 2011, at 11:42 AM | Cookbook.Web Admin | bereiden | Replacement of deprecated code |
| September 10, 2011, at 11:42 AM | Cookbook.Wiki Gallery | simon | remove brackets |
| February 09, 2012, at 11:23 AM | Group.Namespaced? | Profiles | |
| February 09, 2012, at 11:23 AM | Group.Name? | Profiles | |
| January 07, 2012, at 03:29 PM | Pm Wiki.Site Analyzer | Petko | !UpdateMe |
| December 28, 2011, at 04:32 PM | Pm Wiki.Deleting Pages | Petko | fix find command |
| December 28, 2011, at 05:48 AM | Pm Wiki.Wiki Farms | gb | desandbox |
| November 29, 2011, at 07:02 AM | Pm Wiki.Uploads | Caroline Guénette | correction (removed a duplicate "not" |
| November 19, 2011, at 10:43 AM | Pm Wiki.Include Other Pages | Petko | question moved to talk |
| September 28, 2011, at 08:26 PM | Pm Wiki.How To Get Assistance | simon | fix link |
| September 20, 2011, at 03:47 AM | Pm Wiki.Troubleshooting | Petko | session_save_path for windows |
| September 10, 2011, at 11:08 AM | Pm Wiki.Wiki Trails | Petko | fix intermap link |
| September 10, 2011, at 11:08 AM | Pm Wiki.Comment Markup | Simon | warning about the use of HTML comments |
| September 10, 2011, at 11:08 AM | Pm Wiki.Blocklist | Peter Bowers | add reference to !spam |
| September 10, 2011, at 11:08 AM | Pm Wiki.Categories | Peter Bowers | warning re changing $CategoryGroup |
| September 10, 2011, at 11:08 AM | Pm Wiki.Upload Variables | Petko | minor |
| September 10, 2011, at 11:08 AM | Pm Wiki.Conditional Markup | mfwolff? | is obsolete |
| September 10, 2011, at 11:08 AM | Pm Wiki.Url Approvals | Peter Bowers | add somewhat nonstandard link to !spam. if it needs changing, feel free. |
| September 10, 2011, at 11:08 AM | Pm Wiki.Page Text Variables | simon | revert my change |
| September 10, 2011, at 11:08 AM | Pm Wiki.Notify | Petko | fix link for a release |
| September 10, 2011, at 11:08 AM | Pm Wiki.Security | Petko | -3 |
| September 10, 2011, at 11:08 AM | Pm Wiki.Available Actions | Petko | fix link for a release |
| September 10, 2011, at 11:08 AM | Pm Wiki.File Permissions | simon | see also Cookbook/DirectoryAndFilePermissions |
| September 10, 2011, at 11:08 AM | Pm Wiki.Analyze Results | Petko | typo |
| September 10, 2011, at 11:08 AM | Pm Wiki.Uploads Admin | Petko | |
(:template first:)
(:template each:)
|
Last modified by me
(thanks Pico for the pagelist)
>>comment<<
[[#lastmodbyme]]
(:template defaults order=group,-time:)
(:template each:)
(:if equal {(tolower "{=$LastModifiedBy}")} {(tolower "{$Name}")}:)
# [[{=$Group}.{=$Name}]] [-{=$LastModifiedHost}-] [-{=$LastModified}-]
''[-{=$LastModifiedSummary}-]'' [-{=$:Summary}-]
(:ifend:)
[[#lastmodbymeend]]
>><<
Pages that were [[{$Name}?action=search&q=fmt={$Name}#lastmodbyme|last
modified by {$Name}]]
(:pagelist fmt={$Name}#lastmodbyme group=PmWiki,Cookbook,PITS:)
|
(:template defaults order=group,-time:)
(:template each:)
Pages that were last modified by Simon
- Cookbook.ThumbList-Talk 66.183.19.53 January 15, 2012, at 07:33 PM add link Talk Page for ThumbList recipe
- Cookbook.Cookbook 203.97.214.12 December 12, 2011, at 02:42 AM layout List of cookbook recipe categories
- Cookbook.FixURL-Users 202.37.32.2 November 09, 2011, at 06:43 PM user User notes for the FixURL-Users recipe.
- Cookbook.LoginLogout 85.171.160.186 October 26, 2011, at 04:06 AM Add version for talk How to log out after logging in
- Cookbook.TextExtract 93.199.198.120 October 19, 2011, at 03:00 AM remove brackets search, grep, and extract text from other pages or groups with search terms and regular expressions, using search form or markup expression.
- Cookbook.BlackList 85.171.160.186 September 10, 2011, at 12:58 PM superceded?
- Cookbook.XMLRPC 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets How to communicate with PmWiki via the XML-RPC protocol
- Cookbook.TitleMarkup 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets setting a page title with the first title markup, subsequent titles (from included pages etc.) are ignored
- Cookbook.CommentsSplit 85.171.160.186 September 10, 2011, at 11:42 AM some other simon A simple way to have publically-editable comments section at the bottom of your pages
- Cookbook.PreventHotlinking 85.171.160.186 September 10, 2011, at 11:42 AM add see also Prevent hotlinking of uploaded files
- Cookbook.InstallOnWindowsHomeServer-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the InstallOnWindowsHomeServer-Users recipe.
- Cookbook.WikiConversion 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Recipes for converting other wikis from and to PmWiki
- Cookbook.UploadPicCompression 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Compress uploaded image files
- Cookbook.AddImageType 85.171.160.186 September 10, 2011, at 11:42 AM add bitmap example Add new image type extension
- Cookbook.PmWikiDeveloper 85.171.160.186 September 10, 2011, at 11:42 AM Add Pmwiki pages PmWiki developer documentation
- Cookbook.UploadForm-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the UploadForm-Users recipe.
- Cookbook.Imagemaps 85.171.160.186 September 10, 2011, at 11:42 AM broken link an image based summary of the visitors to your site
- Cookbook.PHPFilesManagement 85.171.160.186 September 10, 2011, at 11:42 AM see also PHP file manager
- Cookbook.SystemTools 85.171.160.186 September 10, 2011, at 11:42 AM use anchors System tools
- Cookbook.ModuleGuidelines-Talk 85.171.160.186 September 10, 2011, at 11:42 AM link to related content Discussion of ModuleGuidelines
- Cookbook.SmallInstall 85.171.160.186 September 10, 2011, at 11:42 AM from mailing list Minimise the size of the PmWiki installed files
- Cookbook.UniversalEditButton 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Provide support for the Universal Edit Button in PmWiki
- Cookbook.MoreCustomPageVariables-Users 85.171.160.186 September 10, 2011, at 11:42 AM user User notes for the MoreCustomPageVariables-Users recipe.
- Cookbook.RssImproved 85.171.160.186 September 10, 2011, at 11:42 AM defacement How to get better RSS compatibility & support; how to create podcasts or audioblogs
- Cookbook.TitleSpaced-Users 85.171.160.186 September 10, 2011, at 11:42 AM thanks User notes for the TitleSpaced-Users recipe.
- Cookbook.PagelistRecentChanges-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the PagelistRecentChanges-Users recipe.
- Cookbook.ZAPChat 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Step by step procedure for creating a chat using ZAP.
- Cookbook.SharedPages 85.171.160.186 September 10, 2011, at 11:42 AM add version to get user page Share selected pages among several wikis on a common server, as in WikiFarms
- Cookbook.International 85.171.160.186 September 10, 2011, at 11:42 AM use anchors Internationalizations, documentation in other languages
- Cookbook.RSS 85.171.160.186 September 10, 2011, at 11:42 AM use anchors List of all recipes in the RSS category, RSS, webfeeds and tools
- Cookbook.Menus 85.171.160.186 September 10, 2011, at 11:42 AM use anchors Menu and navigation tools
- Cookbook.TagPages 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Allow categorizing/tagging of pages with an easy interface.
- Cookbook.TrailPageDescription 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Create and maintain additional infos for Trailpages within the Trailindexpage
- Cookbook.WebServerSecurity 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets How to use ".htaccess" to make PmWiki more secure
- Cookbook.MarkupWriting 85.171.160.186 September 10, 2011, at 11:42 AM use anchors Functions and Recipes used in Markup Writing
- Cookbook.WikiFormsFeatureRequests 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Feature requests for the WikiForms recipe
- Cookbook.GuiEditResize-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the GuiEditResize-Users recipe.
- Cookbook.Txtdb 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Txtdb (A simple csv based database)
- Cookbook.CustomRecentChanges 85.171.160.186 September 10, 2011, at 11:42 AM add link How to create RecentChanges pages for selected groups
- Cookbook.ChordPro-Markup 85.171.160.186 September 10, 2011, at 11:42 AM update for new version ChordPro markup supported by this recipe
- Cookbook.WikiFarmStepByStep 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Step by step instruction on how to set up PmWiki as a WikiFarm from scratch
- Cookbook.CSVInclude 85.171.160.186 September 10, 2011, at 11:42 AM add category Include a CSV file as a table in your wiki page
- Cookbook.UserConfigurations 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets How can users customise an edit form for their personal use, and customise other settings like access keys?
- Cookbook.TrackingMenu 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets A sidebar menu tracking the current page
- Cookbook.UserAuth2Devel 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets
- Cookbook.ConvertTABLE 85.171.160.186 September 10, 2011, at 11:42 AM add category and see also How to convert HTML pages with tables full of data into advanced tables
- Cookbook.WikiShCrypt 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Provide encryption/decryption for WikiSh commands and in other contexts
- Cookbook.Trackback 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Simple trackback feature
- Cookbook.SectionList-Talk 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets
- Cookbook.PageListTemplates 85.171.160.186 September 10, 2011, at 11:42 AM category Recipe deprecated, see PmWiki.PageLists
- Cookbook.InstallOnWindowsHomeServer 85.171.160.186 September 10, 2011, at 11:42 AM increase IIS upload file size Install PmWiki on Windows Home Server and IIS6
- Cookbook.FoxForum 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets How to build a simple forum with Fox
- Cookbook.Cookbook-ByCategory 85.171.160.186 September 10, 2011, at 11:42 AM add summary The PmWiki cookbook based on category tags added for recipes
- Cookbook.ChordPro 85.171.160.186 September 10, 2011, at 11:42 AM add see also Display ChordPro-formatted song sheets in a wiki page
- Cookbook.RestrictActions-Talk 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets
- Cookbook.AutomaticLinks 85.171.160.186 September 10, 2011, at 11:42 AM GroupCustomizations How to automatically create Crosslinks for use in, e.g., a glossary
- Cookbook.CMS 85.171.160.186 September 10, 2011, at 11:42 AM use anchors List of all recipes in the CMS category
- Cookbook.DeltaBytesRecentChanges-Talk 85.171.160.186 September 10, 2011, at 11:42 AM format delta in summary? Talk page for DeltaBytesRecentChanges-Talk.
- Cookbook.Markup 85.171.160.186 September 10, 2011, at 11:42 AM use anchors Markup additions
- Cookbook.NewGroupBox-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the NewGroupBox-Users recipe.
- Cookbook.UserLastAction 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Record the last action for each user so that stale accounts can be detected
- Cookbook.Security 85.171.160.186 September 10, 2011, at 11:42 AM use anchors Security authentication and authorization methods and systems
- Cookbook.WikiSVN 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Handle TortoiseSVN (Subversion) via pmWiki
- Cookbook.Publishing 85.171.160.186 September 10, 2011, at 11:42 AM use anchors Recipes that support publishing wiki pages in some other form, such as printed or PDF
- Cookbook.VisitorsLogging 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets How to have a clean log of visitor activity for each field of a farm
- Cookbook.WikimediaSearch 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Get a functional search form like on wikipedia pages
- Cookbook.AutomaticChangeSummary-Users 85.171.160.186 September 10, 2011, at 11:42 AM vote User notes for the AutomaticChangeSummary-Users recipe.
- Cookbook.StarRater 85.171.160.186 September 10, 2011, at 11:42 AM typo 5 star rating system
- Cookbook.RandomQuote 85.171.160.186 September 10, 2011, at 11:42 AM change revision history Insert random quotes or markup into a page
- Cookbook.GroupHeader 85.171.160.186 September 10, 2011, at 11:42 AM add audience style
- Cookbook.UBBThreadsIntegration 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets How to use the user authentification of the UBBThreads forums to control access to a PmWiki installation
- Cookbook.AllGroupHeader-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the AllGroupHeader-Users recipe.
- Cookbook.UpdateAttachments 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Add "update Attachment" link to Attach: links
- Cookbook.Tabtable-jt 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Support embedded line feeds, trim spaces and add prior patch (make first row a header)
- Cookbook.WbBackup 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Backup dynamic wiki data (wiki.d, cookbook, ...)
- Cookbook.Xml4pmwiki 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets xml4pmwiki allows you to transform xml data using a xsl stylesheet in a pmwiki page
- Cookbook.PageActions 85.171.160.186 September 10, 2011, at 11:42 AM ] [
- Cookbook.WikiRefactoring 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Steps and methods to refactor and re-organize a wiki
- Cookbook.ShowHide 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Adds toggle buttons and links to show/hide sections and objects. Superseded by Toggle.
- Cookbook.XesAuthUserDbase 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Stand-Alone version of AuthUserDbase
- Cookbook.ThumbList-Talk-archive 85.171.160.186 September 10, 2011, at 11:42 AM update url ARCHIVE Talk Page for ThumbList recipe
- Cookbook.UserAuthDevel 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets User-based authorization Development Page
- Cookbook.WikiGallery 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets WikiGallery - automatic easy to use fully integrated gallery extension for PmWiki
- Cookbook.TwoWayMirroringWithRsync 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets How to keep identical copies of a wiki on two systems, one hosted and the other local
- Cookbook.WikiToBook 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets How to create and compile a printable book from your wiki documentation?
- Cookbook.Media 85.171.160.186 September 10, 2011, at 11:42 AM use anchors Multi media related recipes
- Cookbook.Layout 85.171.160.186 September 10, 2011, at 11:42 AM use anchors Layout enhancements
- Cookbook.UploadPlus 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Organise file uploads in Group and/or Group/Page subdirectories
- Cookbook.ZAPBusinessDirectory 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Adventures in building a business directory
- Cookbook.Categories 85.171.160.186 September 10, 2011, at 11:42 AM does this not work because Link cannot have wildcards? Cookbook categories
- Cookbook.ChordPro-Format 85.171.160.186 September 10, 2011, at 11:42 AM provide image ChordPro Basics and text format
- Cookbook.RecipeCheck-Users 85.171.160.186 September 10, 2011, at 11:42 AM User notes for the RecipeCheck-Users recipe.
- Cookbook.ConvertHtml 85.171.160.186 September 10, 2011, at 11:42 AM summary, perhaps should be deleted? Redirects to Cookbook.ConvertHTML
- Cookbook.WikiShCL 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Provide Command Line capabilities to WikiSh
- Cookbook.Wikipath 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets A page text lookup grammar which attempts to understand wiki page structure
- Cookbook.EditFormSamples 85.171.160.186 September 10, 2011, at 11:42 AM change link Provide administrators and authors with examples and instructions for replacing or customizing their site's Site.EditForm.
- Cookbook.Favicon 85.171.160.186 September 10, 2011, at 11:42 AM add link, remove one option Add a Favicon to your website
- Cookbook.RecipeInfoForm 85.171.160.186 September 10, 2011, at 11:42 AM summary, anchors Form to change recipeinfo fields
- Cookbook.PageNaming 85.171.160.186 September 10, 2011, at 11:42 AM use anchors List of page naming, URL modifying and hierarchical group recipes
- Cookbook.MultiUpload-Talk 85.171.160.186 September 10, 2011, at 11:42 AM Talk Page for MultiUpload recipe
- Cookbook.WordWrapPreformattedText 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Prevent long lines of text stretching beyond the window edge
- Cookbook.Wordpress 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Allows showing the last 5 posts from a wordpress installation.
- Cookbook.Uploads 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Uploading and linking to attachments
- Cookbook.Converttable 85.171.160.186 September 10, 2011, at 11:42 AM summary
- Cookbook.Attachtable-Talk 85.171.160.186 September 10, 2011, at 11:42 AM Case under windows Talk Page for Attachtable recipe
- Cookbook.SubgroupMarkup-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the SubgroupMarkup-Users recipe.
- Cookbook.UploadsMarkup 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Providing an "Uploads:" markup similar to "Attach:", but with a storage-oriented way of referencing
- Cookbook.AttachLinks 85.171.160.186 September 10, 2011, at 11:42 AM add version Get
Attach: links to display by default without the "Attach:" prefix
- Cookbook.ObfuscateEmail 85.171.160.186 September 10, 2011, at 11:42 AM obsolete Prevent email addresses from being harvested from your site
- Cookbook.WikiFooter-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the WikiFooter-Users recipe.
- Cookbook.InstallOnIIS-Users 85.171.160.186 September 10, 2011, at 11:42 AM user User notes for the InstallOnIIS-Users recipe.
- Cookbook.TextCaptcha 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Small and simple text captcha that uses ascii art and no session, cookies and images
- Cookbook.UserAuth 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets User-based authorization
- Cookbook.WikiObjects 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Enable Object Oriented Extensions for PmWiki
- Cookbook.UploadTypes-Users 85.171.160.186 September 10, 2011, at 11:42 AM user User notes for the UploadTypes-Users recipe.
- Cookbook.Tabulate 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Handles tab-delimited tables so you can cut and paste to and from spreadsheet applications
- Cookbook.DirectoryAndFilePermissions-Talk 85.171.160.186 September 10, 2011, at 11:42 AM questions
- Cookbook.CommentPageLink-Talk 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets
- Cookbook.SubpageMarkup 85.171.160.186 September 10, 2011, at 11:42 AM update summary Add one level of subpage using [[,subpage]] markup, deprecated in favour of Subgroup Markup
- Cookbook.UseAlternativeConfigurations 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Get the base URL from the server
- Cookbook.AttachLinks-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the AttachLinks-Users recipe.
- Cookbook.AttachListEnhanced 85.171.160.186 September 10, 2011, at 11:42 AM summary redirects to AttachlistEnhanced
- Cookbook.AutomaticChangeSummary 85.171.160.186 September 10, 2011, at 11:42 AM add version, categories Automatic change summaries
- Cookbook.WikiOnPDA 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Information on creating a read-only version of a wiki for handheld devices.
- Cookbook.XESBlog-Use 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets How to blog using XesBlog recipe
- Cookbook.FoxEntryMaskPages 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets use Fox forms as entry masks to store page data instead of wiki mark-up editing
- Cookbook.Radio3Player 85.171.160.186 September 10, 2011, at 11:42 AM add tag Embeds the CBC Radio 3 Media Player
- Cookbook.TellAFriend 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Gives Form to Send Page to Friend
- Cookbook.FPLTemplate-Talk 85.171.160.186 September 10, 2011, at 11:42 AM suggestions for exit and continue
- Cookbook.Kind-ofBlog 85.171.160.186 September 10, 2011, at 11:42 AM remove categories A blog for PmWiki - supports posting, digest, archive and syndication
- Cookbook.ZAPforum 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Step by step instructions for creating a forum using ZAP.
- Cookbook.TreeMenu 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Provides additional markup for creating a tree-like menu
- Cookbook.ChordPro-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the ChordPro-Users recipe.
- Cookbook.Trash 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets "safely delete" pages so that they can be restored and listed with pagelists
- Cookbook.LinkedResourceExtras 85.171.160.186 September 10, 2011, at 11:42 AM add category Linked resource helper functions and scripts for recipe writers
- Cookbook.SearchResults 85.171.160.186 September 10, 2011, at 11:42 AM refactor and add links to See Also How to change the way search results are displayed
- Cookbook.WikiFormSample 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Defines the layout of a simple issues form to use with the WikiForms recipe
- Cookbook.SelectQuery 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Run a SQL SELECT query based on parameters submitted
- Cookbook.TitleCased 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Site customizeable title case of titles.
- Cookbook.InstallOnIIS 85.171.160.186 September 10, 2011, at 11:42 AM refactor How to install PmWiki on IIS v6 or v7
- Cookbook.Favicon-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the Favicon-Users recipe.
- Cookbook.WikipublisherJournal 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets A journal separating content from presentation, aimed at delivering great web and printed results
- Cookbook.SimpleForumGroupFooter 85.171.160.186 September 10, 2011, at 11:42 AM summary Used by Cookbook:SimpleForum
- Cookbook.WbFAQ 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Create a "traditional" FAQ
- Cookbook.Tabtable-raf 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets tabtable with RAF patch of 2007/01/23 applied
- Cookbook.HowToMakeATabbedSkin 85.171.160.186 September 10, 2011, at 11:42 AM add version How to make a tabbed skin
- Cookbook.ToggleHide 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Add links to toggle display of html block elements
- Cookbook.Links 85.171.160.186 September 10, 2011, at 11:42 AM use anchors Links and page handling
- Cookbook.PIM 85.171.160.186 September 10, 2011, at 11:42 AM use anchors List of all recipes in the PIM category, Personal Information Management
- Cookbook.WatchThatPage 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Tips for how to use http://www.watchthatpage.com/ with the Recent Changes page.
- Cookbook.Footer-standard 85.171.160.186 September 10, 2011, at 11:42 AM summary Used by Cookbook:Lens skin
- Cookbook.PHP 85.171.160.186 September 10, 2011, at 11:42 AM Web platform installer PHP windows installation and configuration for PmWiki
- Cookbook.CardsMarkup 85.171.160.186 September 10, 2011, at 11:42 AM remove extra leading space in summary (not trimmed!) for layout Markup suitable for displaying playing card games (e.g., contract bridge)
- Cookbook.WikiForms 85.171.160.186 September 10, 2011, at 11:42 AM fix link Use a form template to create, edit and list wiki pages
- Cookbook.AddDeleteLine 85.171.160.186 September 10, 2011, at 11:42 AM restore Create a list where entries can easily be inserted and deleted
- Cookbook.ChordPro-ChordSheets 85.171.160.186 September 10, 2011, at 11:42 AM add image if not enabled ChordPro chord sheet documentation and examples
- Cookbook.Toolbox 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Tools for recipe developers
- Cookbook.VisitorsLogging1337 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Log all activity on your wiki to a text file in a configurable way.
- Cookbook.VoteCounter 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Count & summarize votes
- Cookbook.Tables 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets List of recipes in Tables category
- Cookbook.JavaScript 85.171.160.186 September 10, 2011, at 11:42 AM GroupCustomizations Embed (static) JavaScript into wiki pages
- Cookbook.DirectoryAndFilePermissions 85.171.160.186 September 10, 2011, at 11:42 AM See also PmWiki/FilePermissions Explains which directories and files need to be readable, writable, and servable by the webserver.
- Cookbook.RecentUploads 85.171.160.186 September 10, 2011, at 11:42 AM summary Redirects to Cookbook.RecentUploadsLog
- Cookbook.RssFeedDisplay-Talk 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Talk Page for RssFeedDisplay
- Cookbook.ToggleLink 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets redirect to Cookbook:ShowHide for SiteAnalyzer click through link
- Cookbook.InputJumpBox 85.171.160.186 September 10, 2011, at 11:42 AM add summary Redirects to Test.JumpBox
- Cookbook.CustomBullets 85.171.160.186 September 10, 2011, at 11:42 AM add link Enable custom bullets to distinguish document types
- Cookbook.ImageMap-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the ImageMap-Users recipe.
- Cookbook.LeanSkin-Talk 85.171.160.186 September 10, 2011, at 11:42 AM cannot edit skin - "Invalid code entered" - error message
- Cookbook.ProtectEmail 85.171.160.186 September 10, 2011, at 11:42 AM Obsolete Email obfuscation
- Cookbook.InputDefault 85.171.160.186 September 10, 2011, at 11:42 AM fix summary}
- Cookbook.SecureAttachments 85.171.160.186 September 10, 2011, at 11:42 AM add version to get User page Security issues for attachments
- Cookbook.ToDo 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets A nice looking ToDo list
- Cookbook.ViewPDF 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Embed PDF files in a wiki page
- Cookbook.TransferringPasswordsSecurely-Draft 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Provide basic protection against password sniffing and sessions theft where SSL is an infeasible or inappropriate solution
- Cookbook.RecipeList-Talk 85.171.160.186 September 10, 2011, at 11:42 AM #default Talk page for RecipeList
- Cookbook.PerGroupSubDirectories-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the PerGroupSubDirectories-Users recipe.
- Cookbook.RandomQuote-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the RandomQuote-Users recipe.
- Cookbook.ChordPro-Talk 85.171.160.186 September 10, 2011, at 11:42 AM Discussion of ChordPro
- Cookbook.AttachlistEnhanced 85.171.160.186 September 10, 2011, at 11:42 AM note its broken How to list missing or orphaned attachments.
- Cookbook.Quotes 85.171.160.186 September 10, 2011, at 11:42 AM more quotes A sample quotations file for the Cookbook.RandomQuote page
- Cookbook.MakeColumns 85.171.160.186 September 10, 2011, at 11:42 AM typo Create columns on a page without using tables.
- Cookbook.SharedPages-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the SharedPages-Users recipe.
- Cookbook.PagelistSiteMap-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the PagelistSiteMap-Users recipe.
- Cookbook.CompressedUploads 85.171.160.186 September 10, 2011, at 11:42 AM add see also Modify scripts/upload.php to work with bzip2 archives
- Cookbook.SourceHistory 85.171.160.186 September 10, 2011, at 11:42 AM add summary Web php programming abilities from computers without any editor installed
- Cookbook.UploadTypes 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Add extensions to or remove them from the list of allowed upload types
- Cookbook.WikiMail 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Provide support for email for other recipes
- Cookbook.EProtect-Talk 85.171.160.186 September 10, 2011, at 11:42 AM Discussion of EProtect
- Cookbook.Translatelink 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Insert Google translation links
- Cookbook.PagelistAuthListShort-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the PagelistAuthListShort-Users recipe.
- Cookbook.WikiFooter 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Website page footer
- Cookbook.CustomPagelistSortOrderFunctions-Users 85.171.160.186 September 10, 2011, at 11:42 AM rate User notes for the CustomPagelistSortOrderFunctions-Users recipe.
- Cookbook.SharedPages-Talk 85.171.160.186 September 10, 2011, at 11:42 AM got it figured out Talk Page for SharedPages recipe
- Cookbook.Favicon-Talk 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets
- Cookbook.OutlineLists 85.171.160.186 September 10, 2011, at 11:42 AM summary Deprecated, see WikiStylesPlus
- Cookbook.FarmApacheConfiguration-Talk 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Talk Page for FarmApacheConfiguration recipe
- Cookbook.Obsolete 85.171.160.186 September 10, 2011, at 11:42 AM set category Obsolete, superceded, and deprecated recipes
- Cookbook.WhosWhere 85.171.160.186 September 10, 2011, at 11:42 AM remove brackets Show Who's Where on your wiki
- PITS.00955 203.97.214.12 January 06, 2012, at 09:05 PM Bump, should be optional core feature Automatic anchors for document sections
- PITS.01045 85.171.160.186 September 10, 2011, at 11:56 AM Also PITS/00916, Security Vandalisation protection
- PITS.00024 85.171.160.186 September 10, 2011, at 11:56 AM closed, this will never be fixed Character entities don't work inside links in PmWiki 1
- PITS.00244 85.171.160.186 September 10, 2011, at 11:56 AM closed, no real need for this Have documentation as one file.
- PITS.01224 85.171.160.186 September 10, 2011, at 11:56 AM benefits from having a pagelist being able to select similarly named anchors from across a range of Enhance page list templates to process anchors
- PITS.00633 85.171.160.186 September 10, 2011, at 11:56 AM bump Categories are incorrectly group qualified in pagelists of trails (or filtered out entirely)
- PITS.01032 85.171.160.186 September 10, 2011, at 11:56 AM vote Enable processing of arrays as input values
- PITS.00740 85.171.160.186 September 10, 2011, at 11:56 AM link Allow "tagging" of pages
- PITS.01233 85.171.160.186 September 10, 2011, at 11:56 AM add suggestion Cleanup the Cookbook
- PITS.00485 85.171.160.186 September 10, 2011, at 11:56 AM link Include NewPageBox in a release
- PITS.00411 85.171.160.186 September 10, 2011, at 11:56 AM maybe this has been done? pagelist to exclude redirects
- PITS.00943 85.171.160.186 September 10, 2011, at 11:56 AM add example, please vote for this allow logical NOT and AND for pagelists link attribute, allow wildcards
- PITS.00023 85.171.160.186 September 10, 2011, at 11:56 AM closed, works OK ib version 2 Image styles break image alignment
- PITS.00398 85.171.160.186 September 10, 2011, at 11:56 AM please vote enhancements to wiki trails
- PITS.PITS 85.171.160.186 September 10, 2011, at 11:56 AM please unlock pits 339 The PmWiki Issue Tracking System
- PITS.01054 85.171.160.186 September 10, 2011, at 11:56 AM Closed, see cookbook install fails on IIS7
- PITS.01126 85.171.160.186 September 10, 2011, at 11:56 AM vote, I'd like to see as much content and forms as possible driven by wiki pages ability to create custom pages for ?action=attr
- PITS.00649 85.171.160.186 September 10, 2011, at 11:56 AM closed, trails now do this Letting the 'trail link' link back to the corresponding entry in the trail list
- PITS.00895 85.171.160.186 September 10, 2011, at 11:56 AM closed Allow multiple wiki trails on a page with anchors
- PITS.00986 85.171.160.186 September 10, 2011, at 11:56 AM and to pagelist parameter variables PageVariables substitution in pagelist's (:template defaults:)
- PITS.00673 85.171.160.186 September 10, 2011, at 11:56 AM PmWiki changes a character with a macron to a character with a circumflex on save
- PITS.00741 85.171.160.186 September 10, 2011, at 11:56 AM add ( example Escape characters in URLs
- PITS.01209 85.171.160.186 September 10, 2011, at 11:56 AM Add more markup expressions to the core Add more markup expressions to the core
- PITS.01246 85.171.160.186 September 10, 2011, at 11:56 AM Closed, duplicate of PITS.00908 Allow negation of link parameter in pagelist
- PITS.00781 85.171.160.186 September 10, 2011, at 11:56 AM closed, can be done in config file Add WordPerfect document to list of allowed extensions
- PITS.00424 85.171.160.186 September 10, 2011, at 11:56 AM vote Easier Pasting from Word Documents
- PITS.00536 85.171.160.186 September 10, 2011, at 11:56 AM de deface MailPosts Cookbok Page - noob
- PITS.00916 85.171.160.186 September 10, 2011, at 11:56 AM Support honeypot block list Support honeypot block list
- PITS.01023 85.171.160.186 September 10, 2011, at 11:56 AM vote, comment Include PTVs and values and PVs and values in pageindex
- PITS.00855 85.171.160.186 September 10, 2011, at 11:56 AM de deface Nested variables do not work inside directives.
- PITS.01215 85.171.160.186 September 10, 2011, at 11:56 AM vote Add intermap prefix to link classname
- PITS.00489 85.171.160.186 September 10, 2011, at 11:56 AM votes please classes for Image frames and captions
- PITS.00787 85.171.160.186 September 10, 2011, at 11:56 AM Closed, in 2.2.0-beta32
(:else:) extension of Conditional Markup
- PITS.00348 85.171.160.186 September 10, 2011, at 11:56 AM de deface Alphabetize Definition List
- PITS.00634 85.171.160.186 September 10, 2011, at 11:56 AM vote Define markup to add row attributes to advanced tables
- PITS.00657 85.171.160.186 September 10, 2011, at 11:56 AM implemented syntax Add "title" attribute to external links.
- PITS.00664 85.171.160.186 September 10, 2011, at 11:56 AM de deface Page link engine tweak for query strings
- PITS.01136 85.171.160.186 September 10, 2011, at 11:56 AM add see also 01152 change PTV use in pagelists to be more intuitive
- PITS.00522 85.171.160.186 September 10, 2011, at 11:56 AM de deface Allow InterMap entries to come from a wiki page
- PITS.00012 85.171.160.186 September 10, 2011, at 11:56 AM de deface TextFormattingRules is out of date
- PITS.00521 85.171.160.186 September 10, 2011, at 11:56 AM vote Add ?action=backlinks
- PITS.00757 85.171.160.186 September 10, 2011, at 11:56 AM Would >>pre<< do? Escape sequence for block quotes (non-preformatted)
- PITS.01093 85.171.160.186 September 10, 2011, at 11:56 AM see also Enhance conditional markup to 'if attachments PAGENAME'
- PITS.00607 85.171.160.186 September 10, 2011, at 11:56 AM My view Newly saved, unchanged page appears in the RecentChanges
- PITS.00426 85.171.160.186 September 10, 2011, at 11:56 AM refer to PITS/00521 Provide ?action=backlinks as special case of pagelist markup
- PITS.01219 85.171.160.186 September 10, 2011, at 11:56 AM extend for other inline markup Add markup for inline markup such as soft break, clear left, clear right, fractions
- PITS.00297 85.171.160.186 September 10, 2011, at 11:56 AM de deface Problem with include and SideBar
- PITS.01047 85.171.160.186 September 10, 2011, at 11:56 AM try this, not ideal, but not bad Escape-block within a
code block to enable (inline) markup
- PITS.00041 85.171.160.186 September 10, 2011, at 11:56 AM force link, fix link Floatable "sticky-notes"
- PITS.00885 85.171.160.186 September 10, 2011, at 11:56 AM add priority Definition list marked up as Intermap Entry
- PITS.01138 85.171.160.186 September 10, 2011, at 11:56 AM vote Identify the PageStore of a page
- PITS.00055 85.171.160.186 September 10, 2011, at 11:56 AM closed, can be achieved with a pagelist Automatic Page listing in footer
- PITS.00850 85.171.160.186 September 10, 2011, at 11:56 AM closed Blocklist to optionally check Author and Summary fields, and to optionally display blocklist name
- PITS.00621 85.171.160.186 September 10, 2011, at 11:56 AM vote Safe_mode prevents sub-directories creation
- PITS.00579 85.171.160.186 September 10, 2011, at 11:56 AM try Cookbook/ImageMap Allow mapped images
- PITS.00467 85.171.160.186 September 10, 2011, at 11:56 AM closed, non existent page handling now changed Describe DummyPage? here needs forced link
- PITS.01247 85.171.160.186 September 10, 2011, at 11:56 AM New Search Term Page variable New Search Term Page variable
- PITS.00736 85.171.160.186 September 10, 2011, at 11:56 AM change link Incorrect group home page links in pagelists
- PITS.01170 85.171.160.186 September 10, 2011, at 11:56 AM {$Name} and {$Group} do not contain name/group of actual page
- PITS.00961 85.171.160.186 September 10, 2011, at 11:56 AM de deface Issue with nopass / @nopass when upgrading pmwiki
- PITS.GroupHeader 85.171.160.186 September 10, 2011, at 11:56 AM message now in AuthForm
- PITS.00388 85.171.160.186 September 10, 2011, at 11:56 AM bump Sortable columns in simple tables
- PITS.00615 85.171.160.186 September 10, 2011, at 11:56 AM I'd like to vote, but I already have! Suggested default template changes
- PITS.00464 85.171.160.186 September 10, 2011, at 11:56 AM vote protect author identity
- PITS.00267 85.171.160.186 September 10, 2011, at 11:56 AM vote upload.php should check status of file_upload and report if disabled
- PITS.00425 85.171.160.186 September 10, 2011, at 11:56 AM vote Words like DVDs and CDs are mistaken for WikiWord links
- PITS.00942 85.171.160.186 September 10, 2011, at 11:56 AM vote Refactor code for Easier Unit Testing
- PITS.00447 85.171.160.186 September 10, 2011, at 11:56 AM bump Distinguish !Page and Category.Page in backlinks
- PITS.00497 85.171.160.186 September 10, 2011, at 11:56 AM vote for this please Add a separate <span> for image captions
- PITS.01087 85.171.160.186 September 10, 2011, at 11:56 AM bump Extend Conditional Markup
(:if attachments:) to specify file names
- PITS.00951 85.171.160.186 September 10, 2011, at 11:56 AM please vote for this {$SiteAdminGroup} page variable not created
- PITS.00647 85.171.160.186 September 10, 2011, at 11:56 AM vote Use a different anchor class for links to group homepage
- PITS.01193 85.171.160.186 September 10, 2011, at 11:56 AM vote
$RecentUploadsFmt should use $ChangeSummary
- PmWiki.Links 203.97.214.12 January 06, 2012, at 09:10 PM add information links Multiple mechanisms for creating links
- PmWiki.HowToGetAssistance 202.37.32.2 September 28, 2011, at 08:26 PM fix link How to seek help and assistance and report PmWiki bugs
- PmWiki.Variables 85.171.160.186 September 10, 2011, at 11:08 AM smaller Variables available for local customisation
- PmWiki.LayoutBasics 85.171.160.186 September 10, 2011, at 11:08 AM not in trail, deprecated Deprecated, see Skin Templates
- PmWiki.GroupFooter-Talk 85.171.160.186 September 10, 2011, at 11:08 AM summary Discussion of GroupFooter
- PmWiki.OtherVariables 85.171.160.186 September 10, 2011, at 11:08 AM restore Variables not yet classified
- PmWiki.WikiElements 85.171.160.186 September 10, 2011, at 11:08 AM not on trail An introduction to PmWiki page elements and features
- PmWiki.WikiWords 85.171.160.186 September 10, 2011, at 11:08 AM summary Redirects to PmWiki.WikiWord
- PmWiki.FunctionList 85.171.160.186 September 10, 2011, at 11:08 AM add link A simple list of the functions provided by PmWiki
- PmWiki.CustomizationConcept 85.171.160.186 September 10, 2011, at 11:08 AM links List of PmWiki concepts specifically dealing with customization
- PmWiki.PageActions-Draft-Talk 85.171.160.186 September 10, 2011, at 11:08 AM summary, answer Discussion of PageActions-Draft
- PmWiki.Robots 85.171.160.186 September 10, 2011, at 11:08 AM glean some robot variables Setting available to control robots
- PmWiki.DocumentationGuidelines 85.171.160.186 September 10, 2011, at 11:08 AM adhere to guidelines, add whitespace section Broad guidelines used for writing PmWiki documentation
- PmWiki.Blocklist-Talk 85.171.160.186 September 10, 2011, at 11:08 AM standard header - note unanswered question Discussion of Blocklist
- PmWiki.PmWikiPhilosophy-Talk 85.171.160.186 September 10, 2011, at 11:08 AM add support Discussion of PmWikiPhilosophy
- PmWiki.DetailedDebianSetup 85.171.160.186 September 10, 2011, at 11:08 AM add comment
- PmWiki.GroupHeader 85.171.160.186 September 10, 2011, at 11:08 AM restore PmWiki group header. Includes styles and trail.
- PmWiki.Functions 85.171.160.186 September 10, 2011, at 11:08 AM Why can't PmWiki pages in release have categories? How some of the functions in pmwiki.php work
- PmWiki.ListStyles-Talk 85.171.160.186 September 10, 2011, at 11:08 AM refactor Discussion of ListStyles?
- PmWiki.PageListTemplates 85.171.160.186 September 10, 2011, at 11:08 AM add example of display PTV in pagelist Creating page list format templates
- PmWiki.LinkSchemes 85.171.160.186 September 10, 2011, at 11:08 AM reference and link to Path Link schemes supported by PmWiki
- PmWiki.WikiStyleColors 85.171.160.186 September 10, 2011, at 11:08 AM correct colours to reference Standard and additional wiki colour styles
- PmWiki.BlockMarkup 85.171.160.186 September 10, 2011, at 11:08 AM Added see also Markup resulting in paragraphs
- PmWiki.PasswordsAdmin-Talk 85.171.160.186 September 10, 2011, at 11:08 AM summary Discussion of PasswordsAdmin
- PmWiki.FAQCandidate 85.171.160.186 September 10, 2011, at 11:08 AM answers Frequently asked (and answered) questions that may move to the FAQ page
- PmWiki.PerGroupCustomization 85.171.160.186 September 10, 2011, at 11:08 AM no backlinks now
- PmWiki.WikiFarmsAdvanced 85.171.160.186 September 10, 2011, at 11:08 AM not on trail
- PmWiki.AQ 85.171.160.186 September 10, 2011, at 11:08 AM trail Repository for questions about PmWiki that have been answered, see also FAQ
- PmWiki.WikiCascades 85.171.160.186 September 10, 2011, at 11:08 AM GroupCustomizations The order of usage or selection of settings and files
- PmWiki.CustomMarkupAlt 85.171.160.186 September 10, 2011, at 11:08 AM GroupCustomizations Alternate introduction to custom markup for beginners
- PmWiki.MailingLists-draft 85.171.160.186 September 10, 2011, at 11:08 AM not in trail, can this page be deleted ?
- PmWiki.WikiFarms-Old 85.171.160.186 September 10, 2011, at 11:08 AM GroupCustomizations
- PmWiki.Troubleshooting-OldVersion 85.171.160.186 September 10, 2011, at 11:08 AM not in trail, can this page be deleted ?
- PmWiki.MarkupVariables 85.171.160.186 September 10, 2011, at 11:08 AM not on trail (deprecated) redirects to Page variables
- PmWiki.SpecialMarkups 85.171.160.186 September 10, 2011, at 11:08 AM not in trail, can this page be deleted ? deprecated in favour of MarkupMasterIndex
- PmWiki.CommentMarkup 85.171.160.186 September 10, 2011, at 11:08 AM warning about the use of HTML comments various forms of comments and how to achieve them for wiki pages
- PmWiki.EditVariables-Talk 85.171.160.186 September 10, 2011, at 11:08 AM From SItePages Discussion of EditVariables
- PmWiki.WikiArchitecture 85.171.160.186 September 10, 2011, at 11:08 AM not on trail
- PmWiki.Version-Talk 85.171.160.186 September 10, 2011, at 11:08 AM summary Discussion of Version
- PmWiki.ChangeLogArchive 85.171.160.186 September 10, 2011, at 11:08 AM summary Version 2.0.devel1 (26-Aug-2004) to Version 2.1.beta38 (2006-03-09)
- PmWiki.BlockMarkup-Talk 85.171.160.186 September 10, 2011, at 11:08 AM >>pre<< This page covers discussion about the BlockMarkup character combinations
- PmWiki.AuthorTracking 85.171.160.186 September 10, 2011, at 11:08 AM no trail Deprecated, see All Recent Changes Per Author
- PmWiki.UrlApprovals-Talk 85.171.160.186 September 10, 2011, at 11:08 AM GroupCustomizations Discussion of UrlApprovals
- PmWiki.GroupAttributes-Talk 85.171.160.186 September 10, 2011, at 11:08 AM Discussion of GroupAttributes
- PmWiki.ChangesFromPmWiki1 85.171.160.186 September 10, 2011, at 11:08 AM no trail features of PmWiki 1.0 that have been changed or eliminated in PmWiki 2.0
- PmWiki.SimultaneousEdits 85.171.160.186 September 10, 2011, at 11:08 AM trails Handling multiple attempts to edit a page nearly simultaneously
- PmWiki.WikiGroups 85.171.160.186 September 10, 2011, at 11:08 AM Add summary Redirects to Wiki Group
- PmWiki.Glossary 85.171.160.186 September 10, 2011, at 11:08 AM trail Terms related to PmWiki
- PmWiki.Audiences 85.171.160.186 September 10, 2011, at 11:08 AM layout Patrick Michaud's comments regarding the "audiences" for which PmWiki was designed
- PmWiki.PageTextVariables 85.171.160.186 September 10, 2011, at 11:08 AM revert my change Page variables automatically made available through natural or explicit page markup
- PmWiki.CommentMarkup-Talk 85.171.160.186 September 10, 2011, at 11:08 AM standard header Discussion of CommentMarkup
- PmWiki.QuestionsAnswered 85.171.160.186 September 10, 2011, at 11:08 AM Answers from questions organised
- PmWiki.PmwikiFriendlyHosting-Talk 85.171.160.186 September 10, 2011, at 11:08 AM summary Discussion of PmwikiFriendlyHosting
- PmWiki.FilePermissions 85.171.160.186 September 10, 2011, at 11:08 AM see also Cookbook/DirectoryAndFilePermissions PmWiki's settings for file and directory permissions in a typical Unix environment
|
|