Commit 2753ce04 authored by Frank Bergmann's avatar Frank Bergmann

- added code to company and project "new" page to redirect the

  page to the new object after creation
parent e2719908
]project-open[ Installer
Frank Bergmann <frank.bergmann@project-open.com>
Version V3.1.2, 2006-02-25
Version V3.1.4, 2006-04-04
Copyright (c) 2006 ]project-open[
This is the ]project-open[ Linux installer. This document describes
......@@ -13,10 +13,10 @@
0. About the Installer
Version V3.1.2, 2006-02-25
Version V3.1.4, 2006-04-04
Copyright (c) 2006 ]project-open[
Frank Bergmann <frank.bergmann@project-open.com>
http://www.project-open.org/download/win/3.1.2.0.html
http://www.project-open.org/download/win/3.1.4.0.html
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1 or
......@@ -35,11 +35,15 @@
The system in known to work with SuSE (> 9.1), RedHat (> 8.0)
and Debian (Sarge). For installation on different systems
please see http://openacs.org/doc/current/acs-admin.html.
- PostgreSQL 7.4.x or 8.0.1.
- PostgreSQL 7.4.x or 8.0.1 (8.0.3 or higher DOES NOT WORK!)
PostgreSQL comes as part of all Linux distributions above.
- CVS 1.12.x
CVS comes as part of all major Linux distributions.
Other recommended software include:
- Pound reverse proxy
______________________________________________________________________
......@@ -446,7 +450,7 @@
4.13. Check for the Latest Version and Updates
Please check http://www.project-open.org/download/win/3.1.2.0.html for
Please check http://www.project-open.org/download/win/3.1.4.0.html for
release notes and http://www.sourceforge.net/projects/project-open/ for news
and announcements. You can subscribe yourself to the project to get updated
about new packages, security updates etc.
......@@ -480,7 +484,7 @@
5. Where to go from Here
- Please check http://www.project-open.org/download/win/3.1.2.0.html
- Please check http://www.project-open.org/download/win/3.1.4.0.html
This is the location where we are posting release notes and comments
from others users on this particular version of the installer.
......
......@@ -279,4 +279,10 @@ if {[db_table_exists im_dynfield_attributes]} {
db_release_unused_handles
# Return to the new company page after creating
if {"" == $return_url} {
set return_url [export_vars -base "/intranet/companies/view?" {company_id}]
}
ad_returnredirect $return_url
......@@ -27,7 +27,7 @@ ad_page_contract {
{ parent_id:integer "" }
{ company_id:integer "" }
project_nr:optional
return_url:optional
{ return_url "" }
}
ad_proc var_contains_quotes { var } {
......@@ -54,11 +54,6 @@ if { ![exists_and_not_null return_url] && [exists_and_not_null project_id]} {
set return_url "[im_url_stub]/projects/view?[export_url_vars project_id]"
}
if {![exists_and_not_null return_url]} {
set return_url "[im_url_stub]/projects/index"
}
# -----------------------------------------------------------
# Permissions
# -----------------------------------------------------------
......@@ -621,5 +616,10 @@ if {[form is_valid $form_id]} {
$project_id \
$project_lead_id
}
if {"" == $return_url} {
set return_url [export_vars -base "/intranet/projects/view?" {project_id}]
}
ad_returnredirect $return_url
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment