diff --git a/src/Doc/mainpage.dox b/src/Doc/mainpage.dox index 172d02e94..8c3fb28a1 100644 --- a/src/Doc/mainpage.dox +++ b/src/Doc/mainpage.dox @@ -34,19 +34,19 @@ first to the Wiki Documentation. Refer to the - general + general introduction to the FreeCAD source code page for a broad view of how the source code is organized, and browse the modules, classes and namespaces from the menu above. - The Developers section + The Developers section of the wiki also contains additional information for developers, and the - Powerusers / python scripting + Powerusers / python scripting section contains coding documentation that is specifically aimed at python scripting, but that will also be useful to C++ coders, as most of the APIs are identical or very similar. For space reasons, this on-line version doesn't include the source code headers nor the full inheritance graphics. But you can build a full version yourself with everything included, - as explained in building + as explained in building the source code documentation. You can also browse through the source code on github. @@ -68,7 +68,7 @@ utility to browse through the sources. If you seek informations on FreeCAD at large, please consult our - Wiki + Wiki FreeCAD being a fast moving target, don't hesitate to rebuild an up to date doc from source as often as needed (\ref makingdocs "more info"). CPU cycles are cheap diff --git a/src/Doc/makingDocs.dox b/src/Doc/makingDocs.dox index 61357d999..15ba53999 100644 --- a/src/Doc/makingDocs.dox +++ b/src/Doc/makingDocs.dox @@ -1,7 +1,7 @@ /** \page makingdocs Building this source documentation After running cmake (as per build instructions on the -FreeCAD wiki, +FreeCAD wiki, run 'make DevDoc' in your build directory. HTML documentation will be built in doc/SourceDocu/html. diff --git a/src/Doc/templates/footer.html b/src/Doc/templates/footer.html index 92065215f..dce305712 100644 --- a/src/Doc/templates/footer.html +++ b/src/Doc/templates/footer.html @@ -36,7 +36,7 @@ $generatedby  
Learn @@ -44,17 +44,17 @@ $generatedby  
Help the project
Code
diff --git a/src/Gui/CommandStd.cpp b/src/Gui/CommandStd.cpp index 829b8d1e0..47d467b0e 100644 --- a/src/Gui/CommandStd.cpp +++ b/src/Gui/CommandStd.cpp @@ -461,7 +461,7 @@ StdCmdOnlineHelpWebsite::StdCmdOnlineHelpWebsite() void StdCmdOnlineHelpWebsite::activated(int iMsg) { Q_UNUSED(iMsg); - std::string defaulturl = QCoreApplication::translate(this->className(),"http://www.freecadweb.org/wiki/index.php?title=Online_Help_Toc").toStdString(); + std::string defaulturl = QCoreApplication::translate(this->className(),"http://www.freecadweb.org/wiki/Online_Help_Toc").toStdString(); ParameterGrp::handle hURLGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Websites"); std::string url = hURLGrp->GetASCII("OnlineHelp", defaulturl.c_str()); hURLGrp->SetASCII("OnlineHelp", url.c_str()); @@ -517,7 +517,7 @@ StdCmdFreeCADUserHub::StdCmdFreeCADUserHub() void StdCmdFreeCADUserHub::activated(int iMsg) { Q_UNUSED(iMsg); - std::string defaulturl = QCoreApplication::translate(this->className(),"http://www.freecadweb.org/wiki/index.php?title=User_hub").toStdString(); + std::string defaulturl = QCoreApplication::translate(this->className(),"http://www.freecadweb.org/wiki/User_hub").toStdString(); ParameterGrp::handle hURLGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Websites"); std::string url = hURLGrp->GetASCII("Documentation", defaulturl.c_str()); hURLGrp->SetASCII("Documentation", url.c_str()); @@ -545,7 +545,7 @@ StdCmdFreeCADPowerUserHub::StdCmdFreeCADPowerUserHub() void StdCmdFreeCADPowerUserHub::activated(int iMsg) { Q_UNUSED(iMsg); - std::string defaulturl = QCoreApplication::translate(this->className(),"http://www.freecadweb.org/wiki/index.php?title=Power_users_hub").toStdString(); + std::string defaulturl = QCoreApplication::translate(this->className(),"http://www.freecadweb.org/wiki/Power_users_hub").toStdString(); ParameterGrp::handle hURLGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Websites"); std::string url = hURLGrp->GetASCII("PowerUsers", defaulturl.c_str()); hURLGrp->SetASCII("PowerUsers", url.c_str()); @@ -601,7 +601,7 @@ StdCmdFreeCADFAQ::StdCmdFreeCADFAQ() void StdCmdFreeCADFAQ::activated(int iMsg) { Q_UNUSED(iMsg); - std::string defaulturl = QCoreApplication::translate(this->className(),"http://www.freecadweb.org/wiki/index.php?title=FAQ").toStdString(); + std::string defaulturl = QCoreApplication::translate(this->className(),"http://www.freecadweb.org/wiki/FAQ").toStdString(); ParameterGrp::handle hURLGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Websites"); std::string url = hURLGrp->GetASCII("FAQ", defaulturl.c_str()); hURLGrp->SetASCII("FAQ", url.c_str());