Changes to the way Infinity will be advertised?

After a long wait the ASA have spoken about speed claims on broadband services and after April next year ads can only claim speeds that at least 10% of people get. Of course that means you have a 9 in 10 chance of getting slower. One estimate of the impact on Infinty and similar services is they will have to claim 36 Mb/s rather than 40 Mb/s but ADSL2+ goes to 13Mb/s from 20 or 24Mb/s currently. 
They have also spoken about what "unlimited" means so BT should be able to claim unlimited "browsing" but not sure about unlimited usage totally given the traffic management on p2p. Should results in lots of arguments between suppliers and small print in ads.
Good analysis here from Thinkbroadband.

They would still be able to claim unlimited due to this
The legitimate user incurs no additional charge or suspension of service as a consequence of exceeding any usage threshold associated with an FUP, traffic management policy or the like.
BT state quite clearly that P2P is traffic managed. Using P2P does not lead to a suspension of service.

Similar Messages

  • [svn] 4005: Change in the way item renderers lay them selves out.

    Revision: 4005
    Author: [email protected]
    Date: 2008-11-03 17:07:38 -0800 (Mon, 03 Nov 2008)
    Log Message:
    Change in the way item renderers lay them selves out. Before we were using 100% width and 100% height. Now, we're using horizontalAlign and verticalAlign to accomplish this, which are properties added to VerticalLayout and HorizontalLayout, respectively. horizontalAlign takes values "left", "center", "right", "justify", and "contentJustify". "justify" sizes all elements to the width of the component. "contentJustify" sizes all elements to the size of the largest child (with a minimum of the width of the parent component). Similar, verticalAlign takes "top", "middle", "bottom", "justify", and "contentJustify".
    The default List skin sets the VerticalLayout's horizontalAlign to "contentJustify." Most lists should use "contentJustify" or "justify" if you don't want scrollbars. If you want to change your list to a horizontal list, you change the layout to a horizontal layout. However, you must set the verticalAlign property on the horizontal layout correctly--otherwise it'll default to "top" and probably won't do what you want.
    Ran checkintests and the following mustella tests: layout, list, Group, DataGroup, FxDataContainer, and FxContainer. Some DataGroup tests were failing but should be because of an unrelated, local change. All other tests are passing.
    QE Notes: Failing tests are excluded. Please update them (I think all just need to add verticalAlign="contentJustify" in the horizontal layout case) and re-include them. Also, please write tests for this new functionality.
    Doc Notes: None
    Bugs: SDK-17198
    Reviewer: Evtim
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17198
    Modified Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/flex4test.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/ItemRenderer.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/HorizontalLayout.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/LayoutBase.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/VerticalLayout.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxDataContainerSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxListSkin.mxml
    Added Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/HorizontalAlign.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/VerticalAlign.as

    Hi! The only way I know of is changing the screen resolution. Tom

  • Is there a change in the way 10g sees the rowid column.

    i have two databases in my test environment
    1. Oracle 10g on CentOS 5.3
    2. Oracle 9i on Windows Server 2003
    i am practicing simple SQL with the default HR schema created while creating databases using dbca.
    all i am doing is trying to display the employee with the 10th highest salary.
    in Oracle 10g i run the following command:
    SQL> select first_name || ' ' || last_name, salary from employees where
    rowid =
    (select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10
    minus
    select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10);
    FIRST_NAME||''||LAST_NAME                          SALARY
    Lisa Ozer                                           11500when i run the same command in 9i
    select first_name || ' ' || last_name, salary from employees where
    rowid =
    (select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10
    minus
    select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10)
    no rows selectedon digging deeper i found out that in 9i .... when i run the two sub-queries, give the same rowid as output.
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10;
    ROWID
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    10 rows selected.
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10;
    ROWID
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    9 rows selected.the same two queries in 10g give different rowids (this is correct)
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10;
    ROWID
    AAAMg3AAFAAAABYAAA
    AAAMg3AAFAAAABYAAB
    AAAMg3AAFAAAABYAAC
    AAAMg3AAFAAAABYAAt
    AAAMg3AAFAAAABYAAu
    AAAMg3AAFAAAABUAAD
    AAAMg3AAFAAAABUAAH
    AAAMg3AAFAAAABYAAI
    AAAMg3AAFAAAABYAAv
    AAAMg3AAFAAAABYABE
    10 rows selected.
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10;
    ROWID
    AAAMg3AAFAAAABYAAA
    AAAMg3AAFAAAABYAAB
    AAAMg3AAFAAAABYAAC
    AAAMg3AAFAAAABYAAt
    AAAMg3AAFAAAABYAAu
    AAAMg3AAFAAAABUAAD
    AAAMg3AAFAAAABUAAH
    AAAMg3AAFAAAABYAAI
    AAAMg3AAFAAAABYAAv
    9 rows selected.is there a change in the way Oracle 10g treats rowids from subqueries?
    when i change the query to include the rowid in the innermost sub-query things work as they should in both 10g and 9i
    select first_name || ' ' || last_name, salary from employees where
    rowid =
    (select rowid from (select rowid,first_name || ' ' || last_name from employees order by salary desc) where rownum <=10
    minus
    select rowid from (select rowid,first_name || ' ' || last_name from employees order by salary desc) where rownum < 10)

    OK,
    I didn't seem to have made myself clear. You state
    'the above query uses rownum to filter the top 10 and top 9 salaries and picks the person with the 10th highest salary.'
    As you are using row*id* , and rowids are random strings, and can change during the life of your table, you can not rely on the results of your query.
    Your usage of the rownum pseudo function (as opposed to the rownum analytical function is also incorrect, as rownum is assigned prior to ordering it.
    This
            select * from
             (select rownum rn, ename, sal
              from
              (select ename, sal from scott.emp order by sal desc)
              where rn=10is quite as sufficient, and doesn't use hacks like rowid.
    Sybrand Bakker
    Senior Oracle DBA
    Experts: those who did read documentation.

  • I can't see the page to by any thing because it has change for the way it was to black backround making it hard fore me, i can't see the page to by any thing because it has change for the way it was to black backround making it hard fore me

    i can't see the page to by anything because it has change from the way it was to a black backround making to hard to type the right info for payment detals

    This is a user to user help forum only. You are not addressing Apple here.
    My iPhone 4S, iPhone 5, and iPad 2 are running 6.1.3 with no such problem and the same with the overwhelming majority of iOS devices running 6.1.3.

  • Change in the way the library is sorted with the update 7.3

    Am I crazy or the sort has drasticaly change with the new update 7.3 of ITune.
    I used to put an exclamation mark before the artist in order to recognize the CDs I imported versus the one I downloaded or my other mp3.
    With the 7.3 update I now have the same artist repeated 5 to 6 times even though the artist name is exactly the same. It looks like this:
    !Pearl jam
    Pearl jam
    !Pearl jam
    !Pearl Jam
    Pearl jam
    And then goes to a different artist.
    Am I the only one with this problem and does anyone know how to fix this or can explain me what exactly is used in order to sort my library (both on my Ipod and my Itune)???
    Thanks
    S

    imjolly wrote:
    the errors appears to have significantly increased but from your btspeedtester results you download speed is ok for your connection speed/profile so just make sure that the errors don't start to affect your download speed
    tried bttspeedtester and worked fine and same as normal.  your results look more like beta version.  you can try again later and see if ok
    Hi imjolly,
    It was definitely the normal speedtester I ran and not the Beta Version.
    However, I have just come back in and run speedtester again and the display iback to normal, viz :-
    1. Best Effort Test: -provides background information.
    Download  Speed
    2.57 Mbps
    0 Mbps
    4 Mbps
    Max Achievable Speed
     Download speedachieved during the test was - 2.57 Mbps
     For your connection, the acceptable range of speeds is 1.2 Mbps-4 Mbps.
     IP Profile for your line is - 2.94 Mbps
    2. Upstream Test: -provides background information.
    Upload Speed
    0.35 Mbps
    0 Mbps
    0.45 Mbps
    Max Achievable Speed
    So it looks like a one-off error.  I could not afford to wait another hour to run another test before leaving this morning.
    You say "just make sure that the errors don't start to affect your download speed".  The hub stats and speedtester results suggest speed is consistently reliable at ~2.6Mbps.  However, my wife was trying to place an online grocery order yesterday afternoon and she said it was so slow she had to quit and come back to it in the evening.  So can these errors cause a short term drop in speed that will not be picked up by speed checks then ?  If that is the case, what can be done to reduce the errors please ? 
    Best regards,
    dfenceman
    Best regards,
    dfenceman

  • In trying to download Firefox 4.0, it "paused" at 37% of the way and will not finish the download. Why?

    I could not open NY Times articles today because Firefox would not let me. I reported this twice. I received a window telling me to update Firefox ~~ and I'm trying to do this. As I said, Firefox download4.0.dmg paused and will not finish the download. It's been over 10 minutes and I don't know how to proceed.

    You see the orange (on Linux gray) Firefox button if the Menu Bar is hidden, so you need to hide the Menu bar to get the new appearance.<br />
    If you need to access the hidden Menu bar then press F10 or hold down the Alt key to make the Menu Bar appear temporarily.<br />
    You can place the Tab Bar on top.
    * View > Toolbars : [ ] Menu Bar
    * View > Toolbars : [X] Tabs on Top

  • Is ADE for web truly on the way, or will it always require a tool download?

    I'm looking for something similar to Flash Paper but with DRM protection and support for standard file types like epub.  Requiring a download for my users (The ADE program as it is now) is not an option.  I'm excited by the second half of this ADE FAQ reply pasted below, but is this something truly in the works or just a fuzzy promise?
    http://www.adobe.com/products/digitaleditions/faq/
    Are Digital Editions capabilities available within the web browser, such as Reader and Flash Player?
    Not at the present time. The focus is to support an immersive, content-centric experience with eBooks and other digital publications. The lack of distracting web browser "chrome" offers a simpler, more engaging user experience. However, we recognize that certain workflows will benefit from native file document-viewing capabilities embedded within a larger browser-based web application, and we are evaluating options and timing for delivering this capability to content publishers
    Thanks!
    Dave

    You are not going to get an answer to this, other than it isn't available now.  Outside of occasional slips from our marketing folks, our pre-announcements tend to be limited to "it is now in a public beta".  Also any announcements would be on either the blog, developer site or official product site (or all three).

  • Is there a change in the way Firefox 4 displays fonts from CSS?

    This site is coded using standard CSS and had Arial Narrow as first font choice for certain elements. In Firefox 4 / Windows 7 those instances are now defaulting to secondary font - Arial or to the default font Times Roman. EVERY other browser including past Firefox have displayed Arial Narrow properly - assuming the user has it in their system fonts - which is the vast majority of visitors. NEED a fix for this!

    This worked for me:
    font-family: Arial;
    font-stretch: condensed;

  • If a server platform change is the way forward post advice here

    I should think a lot of you have started to investigate the possibility of a move away from Mac OS X in the server room now that the xserves days are numbered, and I'm sure many of you have limited experience of other server platforms.
    Its also pretty clear we are being left on our own to muddle through this.
    So how about we help each other out and discuss our options, if anyone is currently using Windows and Linux servers with Mac clients can you share some of your experience, what do you need to replicate all the services and functions we are used to on Mac OS X server.

    Help> Getting Started is a good starting point, as is Adobe TV - Quick Links to Elements Adobe TV Tutorials.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Cant get my screensaver to change. when i change it the previous screensaver will come back after awhile?

    has anyone had this problem?

    Triple-click the line below to select it, then copy (command-C) the text to the Clipboard:
    ~/Library/Preferences/ByHost
    In the Finder, select Go ▹ Go to Folder from the menu bar, paste (command-V) into the box that opens, and press return. A folder should open. Look inside it for a file with the name "com.apple.screensaver.*.plist", where * stands for a long string of letters, numbers, and dashes.
    Select the file and open the Info window.
    Does the dialog show "You can read and write" in the Sharing & Permissions section?
    In the General section, is the box labeled Locked checked?
    What is the Modified date?

  • HT5622 Same ID for iPhone an iPad, changed on the phone but will not allow/reflect change on iPad. How do I Chang so I can update?

    Has anyone made this work?

    It might help to log out and back in with your Apple ID:
    1. Go to the Settings app.
    2. Scroll down and tap iTunes & App Store.
    3. Tap your Apple ID at the top.
    4. Tap View Apple ID.
    5. Tap Sign Out.
    6. Sign back in again with your new info and it should work.
    Arthur

  • Has CS5 changed the way it saves a legacy file? (3.0.eps)

    We have been saving files for opening in a sign layout and vinyl cutting program (FlexiSign) for years as a version 3.eps. Since upgrading to CS5, the very old version of Flexisign we have been using can no longer even see the file as a choice to open. 3.0 eps Files saved from CS4 illustrator work just fine. We have a work around (saving as .ai3 files) so there really is not a problem, but I am curious if there has been a change in the way illustrator saves legacy files after all these years?
    In case your wondering the FlexiSign program is still running on a old G3 on OS 9.2, its a one trick pony but has been making money for years!
    thanks

    I'm running an even older cutting program, FlexiCUT 4.5, on an old Powerbook 1400 to drive a Rowland PNC24 cutter. I've always just back-saved to native .ai format, version 8. (Made myself some Suzuki V-Strom sweatshirts just last week. ;-) )
    I'm not where I can test the version 3 EPS from CS5 right now, though.
    JET

  • Is it possible to make a change in the library that is called in a subvi? (in this case the GetCoefficients in the Levemberg-Marguardt curve fit)

    Hi,
    I need to make a change in the way the new coefficients are calculated. It's the "get new coefficients.vi" in the nonlinear levenberg marquardt algorithm.
    A library is called, but the change must be made in that library. Is there any way to do this? I do understand C++ or similar language where the library might be programmed in, that's not the problem.
    with kind regards
    Hasse wiersma

    No, we do not have access to the source code for that shared library, it ships as part of LabVIEW and only NI has the source code. You will need to re-write (either in LabVIEW or C++/DLL) all the code completely.
    -Jim

  • SDK and Eclipse - are they the way for me to go?

    Hi,
    I've done a bit of reading and would just like someone to either steer me in the right direction on this or flatly say "No - Go back, you'll only enter a world of pain, flee while you still can".
    We wish to distribute a thin reporting client to a call centre, approx. 250 concurrent users. BO is strong on the User Admin side which we like. InfoView which could default to a particular report could in theory satisfy our needs. The problem is we don't wish to bamboozle the users (not in any way saying CSR in a call centre wouldn't be savvy enough to not to break it) and want to limit their view and what they can then do in this to be developed report.
    InfoView will allow each of the users to login to BO.
    Using SDK can I then configure our users experience/view of InfoView and then in combination with Access Rights basically only allow them to perform a very limited number if functions.
    What I'm really keen on creating is basically a form/display where the top toolbar has entries for inputs (query criteries) and the Display then return the entries matching the input criteria. Prompts are there or there abouts but just look n feel a bit clunky - a dynamic report that shows the Master data per row in a table then when you click on an individual Master Record the table expands (or something like that) to display the Detailed information associated with that Master record. 
    Also, I'd like to configure the CMC so that all but 2 or 3 of the tabs are allowed for the Call Centre Admin person to view.
    I like the way SDK will allow us to rebrand the tool.
    Should I use SDK - is it the only option that'll satisfy most of our needs at this stage?
    Edited by: Edward Berwick on Feb 11, 2009 5:10 PM
    Edited by: Edward Berwick on Feb 11, 2009 5:12 PM

    Hi Ted,
    thanks for the response.
    I'm not a java developer and am kinda hesitant to go down the SDK path.
    I'm hoping to build the report in WEBI, make available the report through InfoView, but you're saying I can't in anyway meddle with the InfoView GUI so as to make it more user friendly. OK.
    I was hoping there'd be a way to create a html layer that would better present the data (when I say better - InfoView just does more than we want our user base to view - since it may only cause difficulties)
    Have a look at what we're trying to achieve - I'd love if you could share with me how you'd think I should go about delivering such a reporting tool on the back of InfoView functionality.
    [http://docs.google.com/Doc?docid=dfr8cvrq_94f67wn4ft&hl=en]
    Cheers, Ed
    Edited by: Edward Berwick on Feb 11, 2009 5:44 PM

  • RE-Acknowledgement without any changes in the log???

    Hello Guyz,
    I am working on an issue where we have been receiving an excessive number of re-acknowledgments that are not as a result of a sales order change registering in the change log.
    This problem is creating a significant amount of additional work for us internally and it is impacting our ability to provide timely information to our customer regarding their order.
    Could you please advice what changes to the sales order will prompt a re-acknowledgement. I have checked everything there is no change in the programme or the SAP Scripts, there is no background job and there are no changes in the sales order,
    I would really appreciate if you could please help me out in resolving this issue, Appreciate your help and waiting for some urgent replies.---Thanks.
    MD

    If you want to see the fields that will trigger the log.
    go to AUT01.
    Select Change Document Object,
      Enter "VERKBELEG"  -( This is the change document object for sales documents )
    Press the display button. you can see all the tables that were enabled for logging changes.
    By clicking on each table, you can identify the fields that were enabled to trigger the change log.
    This is the answer to your question " where we can configure to trigger the log changes for sales order ".. I don't think it will solve ur main issue.
      You need to look into your business process and ur System architecture to resolve the main issue.
    Regards,
    Ajai.
    Don't forget to reward points if useful.

Maybe you are looking for

  • Table Column - Different UI elements in a column

    Hi, I have the following requirement. I need to create a table shown below.             COLUMN1              COLUMN2 ROW1      cell11                    cell21 ROW2      cell12                    cell22 I need cell11 and cell22 to be textviews and ce

  • Action reference in the MAIN view for other Views

    Hi Experts, I have created a view(MAIN) that contains SUBMIT button and also included four other views(Using ViewContainerUIElement) in the MAIN view itslef. So am calling the respective view based on some certain condition from MAIN view. Now my pro

  • Please help, unbelievably SLOW transfer rate.  No idea what to do.

    I bought a 500GB TC to use with my recently replaced (and updated) Macbook Pro. I started the time machine back-up process around 7PM last night and I woke up this morning to find it's only backed up 3GB/89GB. Now that is completely unacceptable. I h

  • Got an error while import script run in command prompt in R12

    hi ' i am running the below script in command prompt in R12, but it will give an error that error name: 'import' is not recognized as internal or external command, operable program or batch file. import C:\JDeveloper10g\jdevhome\jdev\myprojects\flsm\

  • Moving sql 7.0 to to sql 2008

    Can some kindly help me how to move sql 7.0 to sql 2008R2. We have 10 databases and there are 15 DTS Packages but when I script out the jobs I found that only one job is calling only two packages and seem like other are inactive. Can someone help me