THE GREAT RENAMING! All that was "SIG" should now be "community," except for

the database and the URLs (for backward compatibility).  Do a full rebuild
after browsing this one!
This commit is contained in:
Eric J. Bowersox
2001-11-07 08:43:09 +00:00
parent fe352efbd1
commit dde12bdf2e
131 changed files with 2573 additions and 2503 deletions

View File

@@ -36,16 +36,16 @@ public class Invitation implements JSPRender
*--------------------------------------------------------------------------------
*/
private SIGContext sig; // the SIG context
private CommunityContext comm; // the community context
/*--------------------------------------------------------------------------------
* Constructor
*--------------------------------------------------------------------------------
*/
public Invitation(SIGContext sig)
public Invitation(CommunityContext comm)
{
this.sig = sig;
this.comm = comm;
} // end constructor
@@ -73,7 +73,7 @@ public class Invitation implements JSPRender
public String getPageQID()
{
return "sigops?cmd=I&sig=" + sig.getSIGID();
return "sigops?cmd=I&sig=" + comm.getCommunityID();
} // end getPageQID
@@ -99,16 +99,16 @@ public class Invitation implements JSPRender
*--------------------------------------------------------------------------------
*/
public int getSIGID()
public int getCommunityID()
{
return sig.getSIGID();
return comm.getCommunityID();
} // end getSIGID
} // end getCommunityID
public String getSIGName()
public String getCommunityName()
{
return sig.getName();
return comm.getName();
} // end getSIGName
} // end getCommunityName
} // end class Invitation