Re: [Pws] user name

2006-02-06 Thread Jochen F. Rick
In what context are you trying to get this? Inside the swiki text? Inside 
a color scheme? Inside the a template that you are editing in the 
SwikiBrowser?

Peace and Luck!

Je77


On Sat, Feb 04, 2006 at 10:31:12PM -0500, [EMAIL PROTECTED] wrote:
 Once a user is logged in, I would like to be able to access the username in 
 html
 or native Swiki command such as ?username?.  Is that doable without a whole
 lot of coding?
 
 Jeff...
 
 
 ___
 Pws mailing list
 Pws@cc.gatech.edu
 https://mailman.cc.gatech.edu/mailman/listinfo/pws

-- 
Jochen Jeff Rick, PhD Candidate, Georgia Tech College of Computing
[EMAIL PROTECTED], http://www.je77.com/, work: 404-385-1105
___
Pws mailing list
Pws@cc.gatech.edu
https://mailman.cc.gatech.edu/mailman/listinfo/pws


Re: [Pws] User name

2005-03-14 Thread Jochen F. Rick
Swikis really have no sense of a username, so I'm not sure where you are 
going to get the username from.

Peace and Luck!

Je77

On Mon, Mar 14, 2005 at 07:51:14AM -0500, [EMAIL PROTECTED] wrote:
 When you add to a page (using [EMAIL PROTECTED]) the server returns 
 ttemTuesday, 15
 February 2005, 3:24:32 pm/em/tt.  I would like to add the user name of the
 author to that.  How difficult is that?  I have googled it to death but do not
 see any reference to username.  I am not Squeak-aware so I have not tried that
 route.
 
 Thanks.
 
 
 
 ___
 Pws mailing list
 Pws@cc.gatech.edu
 https://mailman.cc.gatech.edu/mailman/listinfo/pws

-- 
Jochen Je77 Rick, PhD Candidate, Georgia Tech College of Computing
[EMAIL PROTECTED], http://www.je77.com/, work: 404-385-1105
___
Pws mailing list
Pws@cc.gatech.edu
https://mailman.cc.gatech.edu/mailman/listinfo/pws


Re: [Pws] User name

2005-03-14 Thread Jochen F. Rick
You could. It would require a bit of programming to insert that in there.
I'm attaching a change set that you can install that will do it.

Peace and Luck!

Je77


On Mon, Mar 14, 2005 at 11:28:45AM -0500, [EMAIL PROTECTED] wrote:
 Hmmm...interesting...I have my Swikis set up with security set.  So you have 
 to
 log in with your username:password pair.  Is that username not captured by the
 server for the session?  And if it is, should you not be able to report on it?
 
 Jeff...
 
 
 Quoting Jochen F. Rick [EMAIL PROTECTED]:
 
  Swikis really have no sense of a username, so I'm not sure where you are
  going to get the username from.
 
  Peace and Luck!
 
  Je77
 
  On Mon, Mar 14, 2005 at 07:51:14AM -0500, [EMAIL PROTECTED] wrote:
   When you add to a page (using [EMAIL PROTECTED]) the server returns 
   ttemTuesday, 15
   February 2005, 3:24:32 pm/em/tt.  I would like to add the user name of
  the
   author to that.  How difficult is that?  I have googled it to death but do
  not
   see any reference to username.  I am not Squeak-aware so I have not tried
  that
   route.
  
   Thanks.
  
  
  
   ___
   Pws mailing list
   Pws@cc.gatech.edu
   https://mailman.cc.gatech.edu/mailman/listinfo/pws
 
  --
  Jochen Je77 Rick, PhD Candidate, Georgia Tech College of Computing
  [EMAIL PROTECTED], http://www.je77.com/, work: 404-385-1105
  ___
  Pws mailing list
  Pws@cc.gatech.edu
  https://mailman.cc.gatech.edu/mailman/listinfo/pws
 
 
 
 

-- 
Jochen Je77 Rick, PhD Candidate, Georgia Tech College of Computing
[EMAIL PROTECTED], http://www.je77.com/, work: 404-385-1105
'From Squeak3.6 of ''6 October 2003'' [latest update: #5429] on 14 March 2005 
at 1:25:59 pm'!

!IdFormatter class methodsFor: 'utility' stamp: 'je77 3/14/2005 13:25'!
appendFormat: text request: request response: response shelf: shelf book: book 
page: page
| append content today |
content _ String streamContents: [:stream |
(text includes: $_) ifTrue: [
_ means appends are seperated by lines
stream
nextPutAll: '_';
nextPutAll: String cr].
(text includes: $@) ifTrue: [
@ means appends include timestamps
today _ Date today.
stream
nextPutAll: 'ttem';
nextPutAll: today weekday;
nextPutAll: ', ';
nextPutAll: today dayOfMonth asString;
nextPutAll: ' ';
nextPutAll: today monthName;
nextPutAll: ' ';
nextPutAll: today year asString;
nextPutAll: ', '.
Time now printOn: stream.
(request security isKindOf: SwikiUser) ifTrue: [stream
nextPutAll: ', ';
nextPutAll: (TextFormatter encodeToXmlCr: 
request security name)].
(request security isKindOf: SwikiSecurityMember) 
ifTrue: [
request security user ifNotNil: [stream
nextPutAll: ', ';
nextPutAll: (request security user 
asString)]].
stream
nextPutAll: '/em/tt';
nextPutAll: String cr].
stream
nextPutAll: ((book settingsAt: 'saveFormatter') format: 
(request fieldsKey: 'append') request: request response: response shelf: shelf 
book: book page: page);
nextPutAll: String cr].
+ means appends are self replicating
^ means append areas stay at top and appends go down
append _ text, String cr.
^((text occurrencesOf: $+)  1)
ifTrue: [append, content, append]
ifFalse: [(text includes: $^)
ifTrue: [append, content]
ifFalse: [content, append]]! !
___
Pws mailing list
Pws@cc.gatech.edu
https://mailman.cc.gatech.edu/mailman/listinfo/pws