Skip to content

Commit

Permalink
Updated URLS in documentation files, debugger help menu and soarnews …
Browse files Browse the repository at this point in the history
…command to point to github and new website
  • Loading branch information
mazina committed Oct 3, 2014
1 parent 67cd485 commit fe21500
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 20 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ case**.

* Run _all_ the tests to assure nothing was accidentally broken. If you
break the project in your git pull request, Jenkins [(our build
system)](http://daidalos.eecs.umich.edu:8080)
system)](http://soar-jenkins.eecs.umich.edu:8080)
will let you know. Until Jenkins passes your pull request, it **WILL NOT**
be merged in.

Expand All @@ -131,7 +131,7 @@ organization.
documentation](http://help.github.com/send-pull-requests/)
* [How to GitHub: Fork, Branch, Track, Squash and Pull
Request](https://gun.io/blog/how-to-github-fork-branch-and-pull-request/)
* [Soar Home Page](http://sitemaker.umich.edu/soar/home)
* [Soar Home Page](http://soar.eecs.umich.edu/)
* [Soar Github Page](https://github.com/SoarGroup/Soar)

## References
Expand Down
10 changes: 5 additions & 5 deletions Core/CLI/src/cli_soarnews.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ bool CommandLineInterface::DoSoarNews()
{

m_Result << "This is Soar ";

// Make DoVersion print its result to the result string
bool rawOutputSave = m_RawOutput;
m_RawOutput = true;
DoVersion();
m_RawOutput = rawOutputSave;

m_Result << ".\n";
m_Result << "Please visit the Soar home page at\n\thttp://sitemaker.umich.edu/soar/\n";
m_Result << "Please see the announce.txt file included in the Documentation folder with this release for more information.";
m_Result << "Please visit the Soar home page at\n\thttp://soar.eecs.umich.edu/\n";
m_Result << "Please see the release notes included in this release for more information.";

return true;
}

6 changes: 3 additions & 3 deletions Java/Debugger/src/edu/umich/soar/debugger/menu/HelpMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void actionPerformed(ActionEvent e)
{
public void actionPerformed(ActionEvent e)
{
open("http://sitemaker.umich.edu/soar");
open("http://soar.eecs.umich.edu/");
}
};

Expand All @@ -49,15 +49,15 @@ public void actionPerformed(ActionEvent e)
{
public void actionPerformed(ActionEvent e)
{
open("http://code.google.com/p/soar/wiki/Home?tm=6");
open("https://github.com/SoarGroup");
}
};

private AbstractAction m_CLI = new AbstractAction("Soar Command Line Help")
{
public void actionPerformed(ActionEvent e)
{
open("http://code.google.com/p/soar/wiki/CommandIndex");
open("http://soar.eecs.umich.edu/articles/articles/general/73-command-line-help");
}
};

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is the code base for Soar, a cognitive architecture for developing systems

For binary builds of Soar you can get them in two places:

* [Google Code - Stable Releases](http://soar.eecs.umich.edu/articles/downloads/soar-suite)
* [Unstable "Nightlies"](http://soar-jenkins.eecs.umich.edu)
* [Official Releases](http://soar.eecs.umich.edu/articles/downloads/soar-suite)
* [Latest Successful Development Build](http://soar-jenkins.eecs.umich.edu)

Note: For the nightlies there is no difference between non-scu and scu builds.
Note: For the developmental builds, the non-scu and scu versions are equivalent.
13 changes: 6 additions & 7 deletions Tcl/TclSoarLib_README.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=====================
TclSoarLib
Author: Mazin Assanie
5/27/14
10/03/14
=====================

- Seamlessly turns Soar prompt into a Tcl prompt with a single command.
Expand Down Expand Up @@ -51,7 +51,7 @@ Binary Installation
- We recommend that you use the default install location.

2. Download the SoarSuite binary for your platform from the Soar wiki
- https://code.google.com/p/soar/wiki/Downloads
- http://soar.eecs.umich.edu/articles/downloads/soar-suite
- TclSoarLib is automatically included in the SoarSuite download.

=========================
Expand All @@ -62,9 +62,9 @@ Building from Source Code
- http://www.activestate.com/activetcl/downloads
- We recommend that you use the default install location.

2. Download the SoarSuite source code from the wiki or check out the
SVN repository
- https://code.google.com/p/soar/wiki/Downloads
2. Download the SoarSuite source code from the web site or clone the git repository
- http://soar.eecs.umich.edu/articles/downloads/soar-suite
- https://github.com/SoarGroup/Soar
- Follow the standard build instructions for your platform until you get to
the build step

Expand All @@ -83,8 +83,7 @@ Building from Source Code
Known Bugs
==========

1. Turning off tcl mode causes a crash on some systems. That option is
currently disabled as a result.
1. Turning off tcl mode is currently disabled as it causes a crash on some systems.

=======
Caveats
Expand Down

0 comments on commit fe21500

Please sign in to comment.