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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user