Index: README.txt =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/pageroute/README.txt,v retrieving revision 1.18.2.2 diff -u -r1.18.2.2 README.txt --- README.txt 26 Mar 2009 13:53:36 -0000 1.18.2.2 +++ README.txt 15 Sep 2009 12:46:55 -0000 @@ -2,3 +2,61 @@ Pageroute Module 6.x-1.x-dev Documentation see: http://drupal.org/node/310795 + + +Pageroute Module +------------------------ +by Thomas Pönitz + + +Other documentation files: +-------------------------- +UPGRADE.txt ... for upgraders from 4.7.x +For an API look at the drupal handbooks. + +Short module overview: +--------------------- +pageroute.module - Allows the creation of pageroutes. +pageroute_ui.module - Adminstration pages for pageroute + + +Description +----------- +The module can be used to provide a user friendly wizard for creating and +editing several nodes. +You can use the module to create a "route" which leads users through multiple +pages, which can be e.g. node creation forms. + +For example this allows you to build a user profile which consists of multiple +content types. Then users can easily create and edit their nodes through the +same pageroute. + + +Installation +------------ + * Copy the whole pageroute directory to your modules directory and + activate at least the modules pageroute and pageroute_ui. + + +Introduction +------------ +Pageroute allows you define a route through various pages. There are several different +type of pages available. Pageroute comes with the following page types: + * node add form + * node edit form + * user edit page + * node display page + +For further information regarding the page types have a look at the pageroute_ui page. +Make sure that you have enabled the pageroute_ui module, then go to: +http://yoursite.example.com/admin/help/pageroute_ui + +To create or edit your pageroutes activate the pageroute_ui module and go to +/admin/build/pageroute. Pageroute will automatically generate a new menu item +for each pageroute, which can be customized by using the menu module. Furthermore +it creates customizable back/forward buttons at the bottom of each page, +so that users are lead through the route. + +Once you have finished defining your route you may deactivate pageroute_ui.module +again, as it provides only the adminstration pages. + \ No newline at end of file Index: UPGRADE.txt =================================================================== RCS file: UPGRADE.txt diff -N UPGRADE.txt --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ UPGRADE.txt 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,26 @@ +Upgrading Pageroute from 5.x.x to a 6.x version +------------------------------------------------ + +Many things have changed in Pageroute 6.x. +Most do only concern developers, who should look at the API at the drupal Handbooks for a +documentation of the new API, but some things have also changed for users. + +This document is about the changes, which are important and visible for users: + + * You can upgrade pageroute like any other module, remove the old files, + add all new files and run your drupal's update.php. + + * Pageroute arguments changed! + In 5.x the first pageroute argument was always interpreted as a node id and + the second argument as a user id. + The argument order for 6.x has been changed, so the first one is the user id and the + second one the node id. + So to go through the route as another user e.g. as user with the id 5, but without + passing a node id just us the URL: + pageroute_url/5/0 + + * The Node Managment page is not longer supported. It was to complicated and we had no + need for it. You'll have to remove pages from pageroutes that uses this page types. + + * Submit like tabs buttons are also depricated. They were to buggy and complicated to fix + them and we don't need them anymore.