holtzermann17 / planetmath-docs

Documentation for the PlanetMath website and organization to be read in combination with the Planetary issue tracker.
https://github.com/KWARC/planetary/issues?labels=&milestone=&page=1&state=open
7 stars 1 forks source link

Operator's Manual for Planetary #33

Open holtzermann17 opened 11 years ago

holtzermann17 commented 11 years ago

Please add interesting details here. I'm making this part of our "organization building" milestone, because it's important for many people in the organization to have a decent understanding of how the software works.

Pointers

holtzermann17 commented 11 years ago

I installed the admin_views module, which makes it easier to process content at admin/content. See http://drupal.org/project/admin_views for details.

holtzermann17 commented 11 years ago

After changing the name of a module, I had to run some commands to update the blocks:

update block set pages = 'if(drupal_is_front_page()){
  return false;
}
if(arg(0) == "node"){
 return planetmath_authorlinks_countLinks(arg(1));
}
return false;
?>' where module = 'planetary_authorlinks';

and

update block set module = 'planetmath_authorlinks' 
where module = 'planetary_authorlinks';