Private Testing Only - MW

AID: 850
  • Status: Published

1220 points

  • Bymark_wills
  • TypeGeneral
  • Posted on2009-06-08 at 05:08:53
Various comments, bug, issues, wishes have been expressed in a few threads.

This is my attempt to varify what is and isn't. I have been able to varify most things already.

For a start, only formatting listed under "formatting Tips" will be used.

Text Formatting

Underline: to start, to end
Bold: to start, to end
Italic: to start, to end

Text formatting can be mixed and used within Steps, Bullets, and Quotes
All formatting tags must be closed within the container they were started

Adding Links
to begin the link tag
to end the link tag
Example: EE
Links can be used within Steps, Bullets, and Quotes

1

Steps

Adding Steps



2

title of step

will format a step number and title

will close the step formatting

3

use distinct heading 4 Steps not encapsulated


Adding 3a Steps
Adding 3b Steps
Adding 3c Steps
Adding 3d Steps

4

use distinct heading 4 Steps encapsulated


Adding 4a Steps
Adding 4b Steps
Adding 4c Steps
Adding 4d Steps





Adding Bullets

  • will begin formatting a bullet point
will close the bullet formatting

  • will begin formatting a bullet point and see what happens when it wraps around a faily log line which can sometime cause issues particularly where any form of scrolling becomes involved in the result sets. and just realised juft how very lon the ling must be to invoke wrapping regardless of window size.



  • will begin formatting a bullet point and see what happens when it wraps around a faily log line which can sometime cause issues particularly where any form of scrolling becomes involved in the result sets. and just realised juft how very lon the ling must be to invoke wrapping regardless of window size.





Adding Snippets

 will begin formatting the subsequent text as a code snippet  
                                    
1:

Select allOpen in new window

will close the code snippet formatting

 
will begin formatting the subsequent text as a code snippet  
                                    
1:
2:

Select allOpen in new window




If a > B + C then D
 
select <columns list> from <data source> where <conditions>
 
if A >= B then C else D+C end
 
........
                                    
1:
2:
3:
4:
5:
6:
7:

Select allOpen in new window


 will begin formatting a code snippet and see what happens when it wraps around a faily log line which can sometime cause issues particularly where any form of scrolling becomes involved in the result sets. and just realised juft how very lon the ling must be to invoke wrapping regardless of window size. 
                                    
1:

Select allOpen in new window



 
will begin formatting a snippet and see what happens when it wraps around a faily log line which can sometime cause issues particularly where any form of scrolling becomes involved in the result sets. and just realised juft how very lon the ling must be to invoke wrapping regardless of window size.
                                    
1:
2:

Select allOpen in new window



Adding Quotes

will begin formatting the subsequent text as a quote
will close the quote formatting

 will begin formatting a quote and see what happens when it wraps around a faily log line which can sometime cause issues particularly where any form of scrolling becomes involved in the result sets. and just realised juft how very lon the ling must be to invoke wrapping regardless of window size.



will begin formatting a quote and see what happens when it wraps around a faily log line which can sometime cause issues particularly where any form of scrolling becomes involved in the result sets. and just realised juft how very lon the ling must be to invoke wrapping regardless of window size.



Code snippet as an attachment small bits should be OK
 
If a > B + C then D
 
select <columns list> from <data source> where <conditions>
 
if A >= B then C else D+C end
 
........

Attached code snippet 1
 
Code snippet as an attachment small bits should be OK Check out the plus signs
 
If a > B   C then D
 
select <columns list> from <data source> where <conditions>
 
if A >= B then C else D-C end
 
and what about & ampersand 
 
........

                                    
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:

Select allOpen in new window


as above after edit ?? for plus + signs
would not embed into this position using the embedd button after changing... put it down the bottom
 
Code snippet as an attachment small bits should be OK Check out the plus signs
 
If a > B   C then D
 
select <columns list> from <data source> where <conditions>
 
if A >= B then C else D-C end
 
and what about & ampersand 
 
........

                                    
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:

Select allOpen in new window




Attached code snippet 2
will begin formatting a code snippet and see what happens when it wraps around a faily log line which can sometime cause issues particularly where any form of scrolling becomes involved in the result sets. and just realised juft how very lon the ling must be to invoke wrapping regardless of window size.
                                    
1:

Select allOpen in new window




Apart from code snippets, a lot of success depends on spacing and locating the control tags

Tried to test image attachment and complained about a URL problem
Tried to test file attachment and said it had an image so embedded that

 
plagiarism-checker.jpg
  • 256 KB
  • test file attachment
test file attachment


-- another file...
 
commenttype.jpg
  • 910 KB
  • add another file
add another file



So, tabs and tags in the list of attachments not in unison...

Keyboard characters.... Expert Skin
~`!@#$%^&*()_-+={[}]|\"':;<,>.?/
32 of them
they worked


Keyboard characters.... Premium Skin
~`!@#$%^&*()_-+={[}]|\"':;<,>.?/
32 of them

 
-- step 1 create some test data - note the change in names just for the purpose of testing
 
-- for membership, I added in a column agentid (but dont use it) - seems odd to use cname from membership with agentid from availability in SP
create table tmp_ee_membership (agentid int,cname varchar(100), dintervalstart datetime)     
create table tmp_ee_availability (agentid varchar(100), availability int)
 
insert tmp_ee_membership
select 1,'agent1','20091101'
union all select 2,'agent2','20091102'
union all select 3,'agent3','20091103'
union all select 4,'agent4','20091104'
union all select 5,'agent5','20091105'
 
insert tmp_ee_availability
select 'agent1',1
union all select 'agent2','2'
union all select 'agent3','3'
union all select 'agent5','5'
 
GO
 
-- step 2 try the "guts" of the procedure as interactive SQL in a query window
 
declare
 @begindatetime	datetime,
 @enddatetime datetime,
 @agentlist varchar(max)
 
set @begindatetime = '20091101'
set @enddatetime = '20091106'
        
/* GET LIST OF AGENTS */  
SELECT @agentlist = substring( (Select distinct ','''+cName+'''' as [data()]
From tmp_ee_Membership
Where dintervalstart >= @begindatetime
and dintervalstart < @enddatetime
and cname is not NULL
FOR XML PATH ('')),2,8000)   
select @agentlist
/*USE LIST OF AGENTS OBTAINED PREVIOUSLY HERE AND GET THEIR AVAILABILITY*/  
exec ('SELECT agentID, sum(availability)
From tmp_ee_Availability
Where agentID in ('+@agentlist+')  
Group by AgentID')
 
GO

                                    
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:

Select allOpen in new window

    Asked On
    2009-06-08 at 05:08:53ID850
    Tags

    Test

    Topic

    Consulting

    Views
    662

    Comments

    Expert Comment

    by: WaterStreet on 2009-06-08 at 05:55:35ID: 1473

    Hi Mark,

    Just to let you know that at least some of my alerts are working.  Just got the email for this: "PE Alert: Unverified Article posted"  because one of my PE Core Zones is ITPro

    But this article does not show when I go to our View Articles facility.

    regards

    Author Comment

    by: mark_wills on 2009-06-08 at 05:59:58ID: 1474

    Changed it to Author Review almost immediately... Should be there...  

    Chose "consulting" very much on purpose :)

    Do you want to help ?

    I have most "bugs" covered in creating an article, going through the various "other" issues....

    Author Comment

    by: mark_wills on 2009-06-10 at 16:05:42ID: 1509

    Admin comment

    Author Comment

    by: mark_wills on 2009-06-10 at 16:51:18ID: 1511

    Admin comment - this time premium skin...

    Expert Comment

    by: Netminder on 2009-06-10 at 17:35:50ID: 1513

    Testing in IE7, expert skin, regular comment (not private admin comment).

    Expert Comment

    by: ericpete on 2009-06-10 at 20:29:08ID: 1514

    ZA privs only, IE7, admin comment

    Expert Comment

    by: ericpete on 2009-06-10 at 20:31:31ID: 1515

    Let's try that again. ZA privs only... no Admin comment possible, no Edit Comment possible.

    Expert Comment

    by: ericpete on 2009-06-10 at 20:33:18ID: 1517

    PE privs only, Admin comment, IE7

    Expert Comment

    by: ericpete on 2009-06-10 at 20:43:43ID: 1520

    Both sets of privileges, IE7, Admin comment

    Expert Comment

    by: ericpete on 2009-06-10 at 20:45:30ID: 1522

    Mod privs, IE7, regular comment

    Author Comment

    by: mark_wills on 2009-06-10 at 20:49:36ID: 1523

    Looks like you have found the pattern...

    PE ZA privs selected admin comment.

    Add your Comment

    Please Sign up or Log in to comment on this article.

    Join Experts Exchange Today

    Gain Access to all our Tech Resources

    Get personalized answers

    Ask unlimited questions

    Access Proven Solutions

    Search 3.2 million solutions

    Read In-Depth How-To Guides

    1000+ articles, demos, & tips

    Watch Step by Step Tutorials

    Learn direct from top tech pros

    And Much More!

    Your complete tech resource

    See Plans and Pricing

    30-day free trial. Register in 60 seconds.

    Loading Advertisement...

    Top Consulting Experts

    1. DrDamnit

      27,384

      20 points yesterday

      Profile
      Rank: Genius
    2. leew

      10,763

      10 points yesterday

      Profile
      Rank: Savant
    3. cs97jjm3

      10,110

      0 points yesterday

      Profile
      Rank: Genius
    4. notacomputergeek

      8,436

      0 points yesterday

      Profile
      Rank: Wizard
    5. madunix

      8,320

      0 points yesterday

      Profile
      Rank: Sage
    6. hanccocka

      6,000

      0 points yesterday

      Profile
      Rank: Genius
    7. JZeolla

      5,000

      0 points yesterday

      Profile
    8. thinkpads_user

      4,736

      0 points yesterday

      Profile
      Rank: Genius
    9. nobus

      4,000

      0 points yesterday

      Profile
      Rank: Savant
    10. viki2000

      3,832

      0 points yesterday

      Profile
      Rank: Guru
    11. aburr

      3,600

      0 points yesterday

      Profile
      Rank: Genius
    12. Michael-Best

      3,100

      0 points yesterday

      Profile
      Rank: Sage
    13. x_com

      2,800

      0 points yesterday

      Profile
      Rank: Genius
    14. Cyclops3590

      2,800

      0 points yesterday

      Profile
      Rank: Genius
    15. breadtan

      2,800

      0 points yesterday

      Profile
      Rank: Genius
    16. limjianan

      2,800

      0 points yesterday

      Profile
      Rank: Genius
    17. Russell_Venable

      2,668

      0 points yesterday

      Profile
      Rank: Wizard
    18. dvt_localboy

      2,664

      0 points yesterday

      Profile
      Rank: Sage
    19. aarontomosky

      2,650

      0 points yesterday

      Profile
      Rank: Genius
    20. Tymetwister

      2,350

      0 points yesterday

      Profile
      Rank: Master
    21. mlmcc

      2,100

      0 points yesterday

      Profile
      Rank: Savant
    22. DavisMcCarn

      2,100

      0 points yesterday

      Profile
      Rank: Genius
    23. chakko

      2,100

      0 points yesterday

      Profile
      Rank: Genius
    24. stone5150

      2,080

      0 points yesterday

      Profile
      Rank: Guru
    25. sedgwick

      2,000

      0 points yesterday

      Profile
      Rank: Genius

    Hall Of Fame