Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
c58b2f04
Commit
c58b2f04
authored
Oct 18, 2006
by
Nigel McNie
Committed by
Nigel McNie
Oct 18, 2006
Browse files
Merge with
git+ssh://git.catalyst.net.nz/var/git/mahara.git#master
parents
063b3140
65813a18
Changes
7
Hide whitespace changes
Inline
Side-by-side
htdocs/admin/upgrade.json.php
View file @
c58b2f04
...
...
@@ -48,7 +48,6 @@ if (!empty($upgrade)) {
$data
[
'success'
]
=
1
;
}
catch
(
Exception
$e
)
{
error_log
(
print_r
(
$e
,
true
));
$data
[
'errormessage'
]
=
$e
->
getMessage
();
$data
[
'success'
]
=
0
;
}
...
...
htdocs/admin/upgrade.php
View file @
c58b2f04
...
...
@@ -32,6 +32,15 @@ require(dirname(dirname(__FILE__)).'/init.php');
$upgrades
=
check_upgrades
();
$js
=
'var todo = '
.
json_encode
(
array_keys
(
$upgrades
))
.
";
\n
"
;
$loadingicon
=
theme_get_image_path
(
'loading.gif'
);
$successicon
=
theme_get_image_path
(
'success.gif'
);
$failureicon
=
theme_get_image_path
(
'failure.gif'
);
$loadingstring
=
get_string
(
'upgradeloading'
,
'admin'
);
$successstring
=
get_string
(
'upgradesuccess'
,
'admin'
);
$failurestring
=
get_string
(
'upgradefailure'
,
'admin'
);
$js
.
=
<<<
EOJS
function
processNext
()
{
var
element
=
todo
.
shift
();
...
...
@@ -43,14 +52,22 @@ $js .= <<< EOJS
var
d
=
loadJSONDoc
(
'upgrade.json.php'
,
{
'name'
:
element
});
$
(
element
)
.
innerHTML
=
'
working...
'
;
$
(
element
)
.
innerHTML
=
'
<img src="{$loadingicon}" alt="{$loadingstring}" />
'
;
d
.
addCallback
(
function
(
data
)
{
if
(
data
.
success
)
{
$
(
data
.
key
)
.
innerHTML
=
'Done! Upgraded to version '
+
data
.
newversion
;
var
message
=
'{$successstring}'
+
data
.
newversion
;
$
(
data
.
key
)
.
innerHTML
=
'<img src="{$successicon}" alt="'
+
message
+
'" /> '
+
message
;
}
else
{
$
(
data
.
key
)
.
innerHTML
=
'Poo, Error: '
+
data
.
errormessage
;
var
message
=
''
;
if
(
data
.
errormessage
)
{
message
=
data
.
errormessage
;
}
else
{
message
=
'{$failurestring}'
;
}
$
(
data
.
key
)
.
innerHTML
=
'<img src="{$failureicon}" alt="'
+
message
+
'" /> '
+
message
;
}
processNext
();
});
...
...
htdocs/lang/en.utf8/admin.php
View file @
c58b2f04
...
...
@@ -32,5 +32,8 @@ $string['fromversion'] = 'From version';
$string
[
'toversion'
]
=
'To version'
;
$string
[
'notinstalled'
]
=
'Not installed'
;
$string
[
'nothingtoupgrade'
]
=
'Nothing to upgrade'
;
$string
[
'upgradeloading'
]
=
'Loading...'
;
$string
[
'upgradesuccess'
]
=
'Successfully upgraded to version '
;
$string
[
'upgradefailure'
]
=
'Failed to upgrade!'
;
?>
htdocs/lib/web.php
View file @
c58b2f04
...
...
@@ -54,7 +54,10 @@ function &smarty($javascript = array(), $headers = array()) {
$smarty
=&
new
Smarty
();
$smarty
->
template_dir
=
get_config
(
'docroot'
)
.
'theme/'
.
get_config
(
'theme'
)
.
'/templates/'
;
$theme
=
theme_setup
();
$smarty
->
template_dir
=
$theme
->
template_dir
;
$smarty
->
compile_dir
=
get_config
(
'dataroot'
)
.
'smarty/compile'
;
$smarty
->
cache_dir
=
get_config
(
'dataroot'
)
.
'smarty/cache'
;
...
...
@@ -77,6 +80,80 @@ function &smarty($javascript = array(), $headers = array()) {
return
$smarty
;
}
/**
* This function sets up and caches info about the current selected theme
* contains inheritance path (used for locating images) and template dirs
* and potentially more stuff later ( like mime header to send (html vs xhtml))
* @return object
*/
function
theme_setup
()
{
static
$theme
;
if
(
!
empty
(
$theme
))
{
return
$theme
;
}
$theme
=
new
StdClass
;
$theme
->
theme
=
get_config
(
'theme'
);
$theme
->
path
=
get_config
(
'docroot'
)
.
'theme/'
.
$theme
->
theme
.
'/'
;
$theme
->
template_dir
=
array
(
$theme
->
path
.
'templates/'
);
$theme
->
inheritance
=
array
(
$theme
->
theme
);
$parent
=
$theme
->
theme
;
while
(
true
)
{
if
(
!
$parent
=
theme_get_parent
(
$parent
))
{
break
;
}
if
(
$parent
!=
'default'
)
{
$theme
->
template_dir
[]
=
get_config
(
'docroot'
)
.
'theme/'
.
$parent
.
'/templates/'
;
$theme
->
inheritance
[]
=
$parent
;
}
}
// always put the parent at the top of the tree, unless we're already it
if
(
$theme
->
theme
!=
'default'
)
{
$theme
->
template_dir
[]
=
get_config
(
'docroot'
)
.
'theme/default/templates/'
;
$theme
->
inheritance
[]
=
$parent
;
}
return
$theme
;
}
/**
* helper function to walk up the inheritance tree and find a parent
* @param $currtheme the name of the theme to find the parent for
* @return parent name or false
*/
function
theme_get_parent
(
$currtheme
)
{
// look for a config file
if
(
is_readable
(
get_config
(
'docroot'
)
.
'theme/ '
.
$currtheme
.
'/config.php'
))
{
require_once
(
get_config
(
'docroot'
)
.
'theme/ '
.
$currtheme
.
'/config.php'
);
if
(
!
empty
(
$theme
->
parent
)
&&
is_dir
(
get_config
(
'docroot'
)
.
'theme/ '
.
$theme
->
parent
))
{
return
$theme
->
parent
;
}
}
return
false
;
}
/**
* This function returns the full url to an image
* Always use it to get image urls
* @param $imagelocation path to image relative to theme/$theme/static/
* @param $pluginlocation path to plugin relative to docroot
*/
function
theme_get_image_path
(
$imagelocation
,
$pluginlocation
=
''
)
{
$theme
=
theme_setup
();
foreach
(
$theme
->
inheritance
as
$themedir
)
{
if
(
is_readable
(
get_config
(
'docroot'
)
.
$pluginlocation
.
'theme/'
.
$themedir
.
'/static/'
.
$imagelocation
))
{
return
get_config
(
'wwwroot'
)
.
$pluginlocation
.
'theme/'
.
$themedir
.
'/static/'
.
$imagelocation
;
}
}
}
function
clean_requestdata
(
$paramname
,
$paramtype
,
$where
=
REQUEST_EITHER
)
{
$cleanversion
=
''
;
if
(
$where
==
REQUEST_POST
||
$where
==
REQUEST_EITHER
)
{
// post overrides get for either
...
...
htdocs/theme/default/static/failure.gif
0 → 100644
View file @
c58b2f04
603 Bytes
htdocs/theme/default/static/loading.gif
0 → 100644
View file @
c58b2f04
700 Bytes
htdocs/theme/default/static/success.gif
0 → 100644
View file @
c58b2f04
82 Bytes
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment